hc
2023-08-08 f92d6635abca482ea1018fed138d654cb14b2138
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, 64, 0, 1, 64, 1024],
           "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":    1,
                                   "FpsValue":    25
                               },
                               "AecAntiFlicker":    {
                                   "enable":    1,
                                   "Frequency":    "AECV2_FLICKER_FREQUENCY_50HZ",
                                   "Mode":    "AECV2_ANTIFLICKER_AUTO_MODE"
                               },
                               "AecEnvLvCalib":    {
                                   "CalibFNumber":    1.6,
                                   "CurveCoeff":    [0.02859, 0.5972]
                               },
                               "AecWinScale":    {
                                   "InRawWinScale":    {
                                       "h_offs":    0,
                                       "v_offs":    0,
                                       "h_size":    1,
                                       "v_size":    1
                                   },
                                   "TmoRawWinScale":    {
                                       "h_offs":    0.1,
                                       "v_offs":    0.1,
                                       "h_size":    0.9,
                                       "v_size":    0.9
                                   },
                                   "YuvWinScale":    {
                                       "h_offs":    0,
                                       "v_offs":    0,
                                       "h_size":    1,
                                       "v_size":    1
                                   }
                               }
                           },
                           "LinearAeCtrl":    {
                               "RawStatsEn":    1,
                               "ToleranceIn":    10,
                               "ToleranceOut":    15,
                               "Evbias":    0,
                               "StrategyMode":    "AECV2_STRATEGY_MODE_LOWLIGHT_PRIOR",
                               "InitExp":    {
                                   "InitTimeValue":    0.003,
                                   "InitGainValue":    1,
                                   "InitIspDGainValue":    1,
                                   "InitPIrisGainValue":    512,
                                   "InitDCIrisDutyValue":    100
                               },
                               "Route":    {
                                   "TimeDot":    [0, 0.04, 0.04, 0.04, 0.04, 0.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.31933, 1, 1, 2.50981],
                                   "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.372935, 0.37602, 0.251045],
                                   "rotationMat":    [-0.589702, 0.807621, -0.326631, 0.807621, 0.589702, 0.560524, 0, 0, 1]
                               },
                               "rgb2RotationYuvMat":    [0.0351562, 0.136719, 0.0136719, 34.875, -0.0839844, 0.00195312, 0.0703125, 134.875, 0.046875, -0.0566406, 0.0507812, 109.812, 0, 0, 0, 1],
                               "extraWpRange":    [{
                                       "domain":    "CALIB_AWB_EXTRA_RANGE_DOMAIN_UV",
                                       "mode":    "CALIB_AWB_EXCLUDE_WP_MODE",
                                       "region":    [244, 249, 228, 211]
                                   }, {
                                       "domain":    "CALIB_AWB_EXTRA_RANGE_DOMAIN_XY",
                                       "mode":    "CALIB_AWB_EXCLUDE_WP_MODE",
                                       "region":    [-1096, -985, 140, 65]
                                   }, {
                                       "domain":    "CALIB_AWB_EXTRA_RANGE_DOMAIN_XY",
                                       "mode":    "CALIB_AWB_EXCLUDE_WP_MODE",
                                       "region":    [-40, 158, 121, 16]
                                   }, {
                                       "domain":    "CALIB_AWB_EXTRA_RANGE_DOMAIN_XY",
                                       "mode":    "CALIB_AWB_EXCLUDE_WP_MODE",
                                       "region":    [-235, -40, 237, 80]
                                   }, {
                                       "domain":    "CALIB_AWB_EXTRA_RANGE_DOMAIN_UV",
                                       "mode":    "CALIB_AWB_EXCLUDE_WP_MODE",
                                       "region":    [0, 0, 0, 0]
                                   }, {
                                       "domain":    "CALIB_AWB_EXTRA_RANGE_DOMAIN_UV",
                                       "mode":    "CALIB_AWB_EXCLUDE_WP_MODE",
                                       "region":    [0, 0, 0, 0]
                                   }, {
                                       "domain":    "CALIB_AWB_EXTRA_RANGE_DOMAIN_UV",
                                       "mode":    "CALIB_AWB_EXCLUDE_WP_MODE",
                                       "region":    [0, 0, 0, 0]
                                   }],
                               "wpDiffLumaWeight":    {
                                   "enable":    1,
                                   "wpDiffWeiEnableTh":    {
                                       "wpDiffWeiNoTh":    0.004,
                                       "wpDiffWeiLvValueTh":    64
                                   },
                                   "wpDiffwei_y":    [0, 16, 32, 64, 96, 128, 192, 224, 240],
                                   "perfectBin":    [0, 0, 0, 1, 1, 1, 1, 0],
                                   "wpDiffWeightLvSet":    [{
                                           "LvValue":    256,
                                           "ratioSet":    [{
                                                   "ratioValue":    0,
                                                   "weight":    [1, 1, 1, 1, 1, 1, 1, 1, 1]
                                               }, {
                                                   "ratioValue":    0.01,
                                                   "weight":    [1, 1, 1, 1, 1, 1, 1, 1, 1]
                                               }, {
                                                   "ratioValue":    0.1,
                                                   "weight":    [1, 1, 1, 1, 1, 1, 1, 1, 1]
                                               }],
                                           "ratioSet_len":    3
                                       }, {
                                           "LvValue":    8192,
                                           "ratioSet":    [{
                                                   "ratioValue":    0,
                                                   "weight":    [1, 1, 1, 1, 1, 1, 1, 1, 1]
                                               }, {
                                                   "ratioValue":    0.01,
                                                   "weight":    [1, 1, 1, 1, 1, 1, 1, 1, 1]
                                               }, {
                                                   "ratioValue":    0.1,
                                                   "weight":    [0, 0, 0.2, 0.5, 1, 1, 1, 0.5, 0]
                                               }],
                                           "ratioSet_len":    3
                                       }],
                                   "wpDiffWeightLvSet_len":    2
                               },
                               "wpDiffBlkWeiEnable":    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.31933, 1, 1, 2.50981],
                                       "uvRegion":    {
                                           "u":    [124.5, 54.5, 58.5, 125],
                                           "v":    [128, 114.5, 90.5, 127]
                                       },
                                       "xyRegion":    {
                                           "normal":    [-1.225, -0.73125, 0.0729253, -0.0435484],
                                           "big":    [-1.22875, -0.745, 0.092997, -0.0761649]
                                       },
                                       "rtYuvRegion":    {
                                           "thcurve_u":    [50, 54, 70, 78, 110, 142],
                                           "thcure_th":    [1.1875, 1.1875, 1.1875, 1.75, 2, 4],
                                           "lineVector":    [10, 140.875, 109.375, 186.688, 101.625, 110.5],
                                           "disP1P2":    15
                                       },
                                       "staWeight":    [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 75],
                                       "dayGainLvThSet":    [1024, 8192],
                                       "defaultDayGainLow":    [1.76901, 1, 1, 2.15255],
                                       "defaultDayGainHigh":    [1.9499, 1, 1, 1.66695],
                                       "xyType2Enable":    1
                                   }, {
                                       "name":    "CWF",
                                       "doorType":    "CALIB_AWB_DOOR_TYPE_INDOOR",
                                       "standardGainValue":    [1.76901, 1, 1, 2.15255],
                                       "uvRegion":    {
                                           "u":    [68.5, 74.5, 124, 123],
                                           "v":    [73.5, 60.5, 125, 125.5]
                                       },
                                       "xyRegion":    {
                                           "normal":    [-0.732778, -0.438333, 0.000487089, -0.0845602],
                                           "big":    [-0.737593, -0.43537, 0.0435897, -0.1]
                                       },
                                       "rtYuvRegion":    {
                                           "thcurve_u":    [50, 54, 70, 78, 110, 142],
                                           "thcure_th":    [1.125, 1.1875, 1.1875, 1.75, 2, 4],
                                           "lineVector":    [10, 137.812, 110.75, 190, 119.812, 103.938],
                                           "disP1P2":    15
                                       },
                                       "staWeight":    [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 70, 60, 50, 40],
                                       "dayGainLvThSet":    [1024, 8192],
                                       "defaultDayGainLow":    [1.76901, 1, 1, 2.15255],
                                       "defaultDayGainHigh":    [1.9499, 1, 1, 1.66695],
                                       "xyType2Enable":    1
                                   }, {
                                       "name":    "D50",
                                       "doorType":    "CALIB_AWB_DOOR_TYPE_AMBIGUITY",
                                       "standardGainValue":    [1.9499, 1, 1, 1.66695],
                                       "uvRegion":    {
                                           "u":    [74, 94, 126, 124.5],
                                           "v":    [59.5, 53.5, 124.5, 125.5]
                                       },
                                       "xyRegion":    {
                                           "normal":    [-0.426481, -0.171667, 0.0682934, -0.0644886],
                                           "big":    [-0.427963, -0.179074, 0.088365, -0.0845602]
                                       },
                                       "rtYuvRegion":    {
                                           "thcurve_u":    [50, 54, 70, 78, 110, 142],
                                           "thcure_th":    [1.1875, 1.3125, 1.375, 1.75, 2, 4],
                                           "lineVector":    [10, 135.75, 110, 191, 132.938, 108.5],
                                           "disP1P2":    15
                                       },
                                       "staWeight":    [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100],
                                       "dayGainLvThSet":    [1024, 8192],
                                       "defaultDayGainLow":    [1.76901, 1, 1, 2.15255],
                                       "defaultDayGainHigh":    [1.9499, 1, 1, 1.66695],
                                       "xyType2Enable":    1
                                   }, {
                                       "name":    "D65",
                                       "doorType":    "CALIB_AWB_DOOR_TYPE_OUTDOOR",
                                       "standardGainValue":    [2.18207, 1, 1, 1.45549],
                                       "uvRegion":    {
                                           "u":    [94, 112.5, 127.5, 126],
                                           "v":    [53.5, 48.5, 121, 124]
                                       },
                                       "xyRegion":    {
                                           "normal":    [-0.176111, 0.0712963, 0.0875931, -0.104632],
                                           "big":    [-0.186481, 0.0801852, 0.136228, -0.171023]
                                       },
                                       "rtYuvRegion":    {
                                           "thcurve_u":    [50, 54, 70, 78, 110, 142],
                                           "thcure_th":    [1.1875, 1.5, 1.5, 1.8125, 2, 4],
                                           "lineVector":    [10, 133.812, 109.625, 190.75, 143.812, 109.625],
                                           "disP1P2":    15
                                       },
                                       "staWeight":    [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 80, 70],
                                       "dayGainLvThSet":    [1024, 8192],
                                       "defaultDayGainLow":    [1.76901, 1, 1, 2.15255],
                                       "defaultDayGainHigh":    [1.9499, 1, 1, 1.66695],
                                       "xyType2Enable":    1
                                   }, {
                                       "name":    "D75",
                                       "doorType":    "CALIB_AWB_DOOR_TYPE_OUTDOOR",
                                       "standardGainValue":    [2.32318, 1, 1, 1.35032],
                                       "uvRegion":    {
                                           "u":    [131.5, 127, 112.5, 129.5],
                                           "v":    [121, 122.5, 48.5, 43.5]
                                       },
                                       "xyRegion":    {
                                           "normal":    [0.0835185, 0.369074, 0.0962136, -0.0938241],
                                           "big":    [0.0787037, 0.375, 0.142404, -0.181831]
                                       },
                                       "rtYuvRegion":    {
                                           "thcurve_u":    [50, 54, 70, 78, 110, 142],
                                           "thcure_th":    [1.1875, 1.3125, 1.5, 1.75, 2, 4],
                                           "lineVector":    [10, 132.688, 109.875, 190.25, 149.625, 110.688],
                                           "disP1P2":    15
                                       },
                                       "staWeight":    [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 80, 70, 50],
                                       "dayGainLvThSet":    [1024, 8192],
                                       "defaultDayGainLow":    [1.76901, 1, 1, 2.15255],
                                       "defaultDayGainHigh":    [1.9499, 1, 1, 1.66695],
                                       "xyType2Enable":    1
                                   }, {
                                       "name":    "HZ",
                                       "doorType":    "CALIB_AWB_DOOR_TYPE_INDOOR",
                                       "standardGainValue":    [1.05376, 1, 1, 2.97437],
                                       "uvRegion":    {
                                           "u":    [123.5, 57.5, 55.5, 124.5],
                                           "v":    [130.5, 140, 113.5, 128]
                                       },
                                       "xyRegion":    {
                                           "normal":    [-1.96056, -1.23625, 0.089909, -0.0310036],
                                           "big":    [-1.96278, -1.22944, 0.100717, -0.0837883]
                                       },
                                       "rtYuvRegion":    {
                                           "thcurve_u":    [50, 54, 70, 78, 110, 142],
                                           "thcure_th":    [1.1875, 1.3125, 1.3125, 1.75, 2, 4],
                                           "lineVector":    [10, 143.625, 108.562, 181.688, 86.5625, 115.438],
                                           "disP1P2":    15
                                       },
                                       "staWeight":    [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 75, 50],
                                       "dayGainLvThSet":    [1024, 8192],
                                       "defaultDayGainLow":    [1.76901, 1, 1, 2.15255],
                                       "defaultDayGainHigh":    [1.9499, 1, 1, 1.66695],
                                       "xyType2Enable":    1
                                   }, {
                                       "name":    "TL84",
                                       "doorType":    "CALIB_AWB_DOOR_TYPE_INDOOR",
                                       "standardGainValue":    [1.71132, 1, 1, 2.14938],
                                       "uvRegion":    {
                                           "u":    [124, 58, 68.5, 124.5],
                                           "v":    [126.5, 90, 73.5, 125.5]
                                       },
                                       "xyRegion":    {
                                           "normal":    [-0.728333, -0.433889, 0.0529823, -0.038241],
                                           "big":    [-0.73875, -0.433889, 0.088365, -0.066129]
                                       },
                                       "rtYuvRegion":    {
                                           "thcurve_u":    [50, 54, 70, 78, 110, 142],
                                           "thcure_th":    [1.1875, 1.1875, 1.3125, 1.75, 2, 4],
                                           "lineVector":    [10, 138.062, 110.062, 189.875, 118.312, 106.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.76901, 1, 1, 2.15255],
                                       "defaultDayGainHigh":    [1.9499, 1, 1, 1.66695],
                                       "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":    [50],
                                       "low_len":    1,
                                       "high":    [80],
                                       "high_len":    1
                                   }
                               },
                               "defaultNightGain":    [1.31933, 1, 1, 2.50981],
                               "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.031,
                                   "wpNumPercTh2":    0.2
                               },
                               "converged":    {
                                   "varThforUnDamp":    0.005,
                                   "varThforDamp":    0.005
                               },
                               "xyRegionStableSelection":    {
                                   "enable":    1,
                                   "wpNumTh":    {
                                       "lumaValue":    [0],
                                       "lumaValue_len":    1,
                                       "forBigType":    [80],
                                       "forBigType_len":    1,
                                       "forExtraType":    [80],
                                       "forExtraType_len":    1
                                   },
                                   "xyTypeListSize":    50,
                                   "varianceLumaTh":    0.06
                               },
                               "weightForNightGainCalc":    [25, 25, 25, 25],
                               "weightForNightGainCalc_len":    4,
                               "singleColorProces":    {
                                   "enable":    1,
                                   "colorBlock":    [{
                                           "index":    15,
                                           "meanC":    26.1455,
                                           "meanH":    30.4796
                                       }, {
                                           "index":    13,
                                           "meanC":    24.607,
                                           "meanH":    -75.964
                                       }, {
                                           "index":    5,
                                           "meanC":    10.9565,
                                           "meanH":    -67.7098
                                       }, {
                                           "index":    10,
                                           "meanC":    11.9595,
                                           "meanH":    -41.2431
                                       }, {
                                           "index":    14,
                                           "meanC":    19.0206,
                                           "meanH":    144.275
                                       }, {
                                           "index":    16,
                                           "meanC":    30.264,
                                           "meanH":    88.699
                                       }],
                                   "colorBlock_len":    6,
                                   "lsUsedForEstimation":    [{
                                           "name":    "A",
                                           "RGain":    1.31933,
                                           "BGain":    2.50981
                                       }, {
                                           "name":    "TL84",
                                           "RGain":    1.9499,
                                           "BGain":    1.66695
                                       }, {
                                           "name":    "D50",
                                           "RGain":    1.71132,
                                           "BGain":    2.14938
                                       }],
                                   "lsUsedForEstimation_len":    3,
                                   "alpha":    0.9
                               },
                               "lineRgBg":    [-0.8395, -0.5434, -2.741],
                               "lineRgProjCCT":    [1, -0.0003, 0.4559],
                               "chrAdpttAdj":    {
                                   "enable":    0,
                                   "targetGain":    [2.2099, 1, 1, 1.6302],
                                   "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":    [255, 253, 255, 255, 254, 256, 256, 256, 256, 256, 256, 256, 256],
                                   "R_Channel_len":    13,
                                   "Gr_Channel":    [256, 254, 256, 256, 257, 256, 256, 256, 256, 256, 256, 256, 256],
                                   "Gr_Channel_len":    13,
                                   "Gb_Channel":    [256, 254, 256, 256, 257, 256, 256, 256, 256, 256, 256, 256, 256],
                                   "Gb_Channel_len":    13,
                                   "B_Channel":    [255, 253, 255, 254, 254, 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.15, 1.15, 1.15, 1.12, 1.12, 1.12, 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":    "A",
                                       "wbGain":    [1.2422, 2.5859],
                                       "tableUsed":    [{
                                               "name":    "A_100"
                                           }, {
                                               "name":    "A_70"
                                           }],
                                       "tableUsed_len":    2,
                                       "gains":    [1, 4, 6, 8],
                                       "gains_len":    4,
                                       "vig":    [100, 100, 90, 70],
                                       "vig_len":    4
                                   }, {
                                       "usedForCase":    0,
                                       "name":    "CWF",
                                       "wbGain":    [1.7163, 2.2709],
                                       "tableUsed":    [{
                                               "name":    "CWF_100"
                                           }, {
                                               "name":    "CWF_70"
                                           }],
                                       "tableUsed_len":    2,
                                       "gains":    [1, 4, 6, 8],
                                       "gains_len":    4,
                                       "vig":    [100, 100, 90, 70],
                                       "vig_len":    4
                                   }, {
                                       "usedForCase":    0,
                                       "name":    "D50",
                                       "wbGain":    [2.0413, 1.565],
                                       "tableUsed":    [{
                                               "name":    "D50_100"
                                           }, {
                                               "name":    "D50_70"
                                           }],
                                       "tableUsed_len":    2,
                                       "gains":    [1, 4, 6, 8],
                                       "gains_len":    4,
                                       "vig":    [100, 100, 80, 70],
                                       "vig_len":    4
                                   }, {
                                       "usedForCase":    0,
                                       "name":    "D65",
                                       "wbGain":    [2.1927, 1.4514],
                                       "tableUsed":    [{
                                               "name":    "D65_100"
                                           }, {
                                               "name":    "D65_70"
                                           }],
                                       "tableUsed_len":    2,
                                       "gains":    [1, 4, 6, 8],
                                       "gains_len":    4,
                                       "vig":    [90, 85, 80, 70],
                                       "vig_len":    4
                                   }, {
                                       "usedForCase":    0,
                                       "name":    "D75",
                                       "wbGain":    [2.3467, 1.323],
                                       "tableUsed":    [{
                                               "name":    "D75_100"
                                           }, {
                                               "name":    "D75_70"
                                           }],
                                       "tableUsed_len":    2,
                                       "gains":    [1, 4, 6, 8],
                                       "gains_len":    4,
                                       "vig":    [90, 85, 80, 70],
                                       "vig_len":    4
                                   }, {
                                       "usedForCase":    0,
                                       "name":    "HZ",
                                       "wbGain":    [0.9985, 3.0212],
                                       "tableUsed":    [{
                                               "name":    "HZ_100"
                                           }, {
                                               "name":    "HZ_70"
                                           }],
                                       "tableUsed_len":    2,
                                       "gains":    [1, 4, 6, 8],
                                       "gains_len":    4,
                                       "vig":    [100, 100, 90, 70],
                                       "vig_len":    4
                                   }, {
                                       "usedForCase":    0,
                                       "name":    "TL84",
                                       "wbGain":    [1.622, 2.3057],
                                       "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":    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_A_100",
                                       "resolution":    "3264x2448",
                                       "illumination":    "A",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [4126, 3298, 2812, 2502, 2280, 2072, 1924, 1846, 1834, 1846, 1936, 2044, 2254, 2420, 2746, 3157, 4070, 3621, 3012, 2601, 2334, 2080, 1887, 1737, 1645, 1614, 1645, 1732, 1869, 2037, 2263, 2534, 2880, 3513, 3316, 2785, 2430, 2147, 1881, 1688, 1567, 1473, 1448, 1470, 1559, 1678, 1869, 2072, 2353, 2696, 3191, 3140, 2613, 2280, 1975, 1748, 1550, 1403, 1322, 1298, 1319, 1407, 1542, 1717, 1943, 2195, 2545, 3012, 3027, 2471, 2179, 1869, 1627, 1430, 1298, 1223, 1189, 1216, 1293, 1427, 1597, 1846, 2117, 2410, 2894, 2894, 2410, 2058, 1785, 1526, 1337, 1201, 1130, 1108, 1119, 1211, 1337, 1526, 1748, 2009, 2316, 2825, 2812, 2334, 2002, 1712, 1451, 1271, 1149, 1076, 1057, 1074, 1141, 1284, 1455, 1673, 1949, 2271, 2672, 2812, 2289, 1969, 1678, 1434, 1249, 1115, 1055, 1031, 1049, 1128, 1231, 1427, 1650, 1918, 2271, 2672, 2825, 2325, 1982, 1683, 1437, 1236, 1117, 1044, 1024, 1044, 1119, 1236, 1427, 1650, 1956, 2254, 2660, 2825, 2334, 2002, 1712, 1462, 1273, 1147, 1080, 1049, 1074, 1132, 1265, 1459, 1693, 1949, 2271, 2708, 2866, 2381, 2065, 1774, 1530, 1334, 1211, 1125, 1100, 1113, 1191, 1316, 1499, 1748, 2002, 2334, 2785, 3027, 2471, 2163, 1875, 1627, 1434, 1279, 1194, 1186, 1198, 1282, 1403, 1588, 1840, 2102, 2430, 2937, 3226, 2601, 2298, 1956, 1742, 1530, 1397, 1313, 1284, 1313, 1400, 1538, 1702, 1943, 2237, 2567, 3075, 3432, 2825, 2430, 2109, 1875, 1688, 1542, 1459, 1430, 1462, 1538, 1669, 1834, 2094, 2362, 2672, 3261, 3666, 2982, 2590, 2325, 2051, 1875, 1737, 1645, 1610, 1645, 1722, 1863, 2016, 2280, 2545, 2894, 3452, 4070, 3279, 2825, 2523, 2280, 2065, 1930, 1869, 1817, 1840, 1924, 2065, 2212, 2460, 2759, 3174, 4042, 5511, 3712, 3174, 2838, 2590, 2353, 2220, 2163, 2124, 2132, 2179, 2325, 2513, 2772, 3140, 3534, 5313]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [3693, 2996, 2530, 2306, 2054, 1929, 1805, 1724, 1696, 1708, 1801, 1879, 2025, 2196, 2421, 2834, 3566, 3264, 2749, 2366, 2107, 1899, 1753, 1654, 1576, 1559, 1569, 1636, 1737, 1865, 2031, 2271, 2611, 3059, 3021, 2530, 2202, 1976, 1770, 1618, 1507, 1434, 1401, 1417, 1486, 1593, 1720, 1889, 2089, 2405, 2890, 2812, 2351, 2071, 1837, 1650, 1486, 1385, 1315, 1278, 1303, 1359, 1459, 1618, 1779, 2003, 2264, 2649, 2649, 2257, 1976, 1733, 1542, 1398, 1274, 1203, 1183, 1201, 1256, 1369, 1504, 1681, 1904, 2157, 2556, 2593, 2163, 1889, 1654, 1451, 1289, 1191, 1128, 1099, 1118, 1189, 1292, 1434, 1614, 1837, 2071, 2437, 2521, 2150, 1856, 1600, 1398, 1254, 1141, 1080, 1054, 1072, 1120, 1231, 1385, 1556, 1770, 2042, 2437, 2462, 2132, 1814, 1576, 1380, 1229, 1120, 1050, 1024, 1046, 1109, 1217, 1354, 1542, 1762, 2020, 2328, 2495, 2125, 1823, 1572, 1374, 1217, 1109, 1052, 1027, 1037, 1104, 1219, 1354, 1542, 1766, 2025, 2336, 2574, 2138, 1837, 1614, 1403, 1256, 1139, 1075, 1054, 1075, 1120, 1231, 1382, 1569, 1796, 2083, 2389, 2630, 2189, 1904, 1669, 1462, 1292, 1181, 1116, 1101, 1116, 1177, 1296, 1431, 1632, 1860, 2132, 2478, 2749, 2271, 2003, 1724, 1552, 1385, 1263, 1206, 1168, 1185, 1263, 1364, 1504, 1704, 1934, 2202, 2574, 2913, 2397, 2083, 1837, 1654, 1495, 1377, 1306, 1272, 1306, 1359, 1480, 1621, 1801, 2014, 2285, 2749, 3034, 2556, 2250, 1965, 1779, 1618, 1498, 1425, 1409, 1442, 1504, 1603, 1745, 1939, 2157, 2454, 2867, 3339, 2834, 2374, 2157, 1945, 1779, 1650, 1589, 1569, 1593, 1636, 1762, 1904, 2089, 2314, 2639, 3138, 3730, 3046, 2649, 2314, 2101, 1950, 1832, 1762, 1733, 1766, 1823, 1929, 2071, 2271, 2521, 2924, 3602, 5113, 3401, 2913, 2556, 2314, 2132, 2025, 1976, 1934, 1987, 2065, 2157, 2314, 2512, 2823, 3264, 4974]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [3964, 3072, 2671, 2333, 2095, 1945, 1834, 1751, 1743, 1760, 1811, 1935, 2095, 2276, 2499, 2926, 3781, 3367, 2814, 2425, 2162, 1982, 1777, 1679, 1606, 1579, 1610, 1664, 1760, 1920, 2107, 2326, 2681, 3192, 3111, 2587, 2255, 2020, 1820, 1642, 1514, 1446, 1423, 1437, 1514, 1613, 1781, 1956, 2168, 2482, 2973, 2926, 2441, 2143, 1876, 1679, 1520, 1407, 1326, 1300, 1326, 1388, 1514, 1635, 1839, 2065, 2348, 2731, 2772, 2341, 2037, 1777, 1582, 1412, 1287, 1221, 1205, 1225, 1284, 1410, 1565, 1739, 1966, 2234, 2652, 2681, 2241, 1961, 1699, 1489, 1331, 1221, 1143, 1122, 1141, 1201, 1326, 1466, 1672, 1895, 2162, 2542, 2551, 2201, 1910, 1646, 1446, 1280, 1148, 1095, 1065, 1081, 1152, 1267, 1418, 1603, 1834, 2089, 2482, 2569, 2168, 1871, 1610, 1399, 1245, 1129, 1061, 1040, 1052, 1122, 1241, 1396, 1589, 1807, 2083, 2417, 2534, 2137, 1867, 1613, 1407, 1237, 1127, 1065, 1024, 1061, 1112, 1231, 1376, 1572, 1811, 2071, 2402, 2569, 2168, 1895, 1638, 1423, 1265, 1145, 1079, 1061, 1081, 1133, 1254, 1391, 1599, 1830, 2107, 2482, 2633, 2221, 1971, 1687, 1486, 1310, 1183, 1114, 1104, 1117, 1183, 1296, 1460, 1661, 1890, 2168, 2499, 2761, 2297, 2014, 1760, 1542, 1383, 1262, 1189, 1172, 1189, 1260, 1365, 1511, 1719, 1950, 2227, 2643, 2914, 2433, 2107, 1857, 1642, 1486, 1363, 1280, 1265, 1280, 1360, 1469, 1631, 1820, 2042, 2333, 2731, 3151, 2569, 2214, 1982, 1777, 1603, 1480, 1407, 1381, 1410, 1480, 1599, 1731, 1940, 2201, 2482, 2949, 3321, 2772, 2402, 2119, 1910, 1747, 1631, 1575, 1536, 1555, 1631, 1735, 1895, 2089, 2326, 2643, 3151, 3742, 3009, 2560, 2290, 2065, 1900, 1785, 1723, 1687, 1723, 1777, 1910, 2037, 2241, 2508, 2914, 3579, 5016, 3367, 2937, 2560, 2326, 2150, 2020, 1935, 1935, 1966, 2009, 2125, 2318, 2474, 2836, 3248, 5016]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [3507, 2733, 2331, 2107, 1884, 1823, 1704, 1617, 1654, 1654, 1704, 1767, 1896, 2138, 2331, 2707, 3422, 2930, 2516, 2154, 1948, 1778, 1654, 1538, 1506, 1514, 1522, 1572, 1635, 1767, 1896, 2138, 2472, 2930, 2787, 2293, 2017, 1847, 1654, 1530, 1437, 1388, 1362, 1388, 1430, 1514, 1635, 1789, 1989, 2275, 2682, 2494, 2204, 1909, 1704, 1538, 1444, 1324, 1276, 1265, 1265, 1336, 1437, 1538, 1683, 1884, 2138, 2584, 2451, 2076, 1835, 1617, 1459, 1324, 1248, 1181, 1162, 1201, 1254, 1324, 1459, 1635, 1801, 2032, 2369, 2331, 1989, 1735, 1563, 1395, 1254, 1171, 1121, 1121, 1130, 1167, 1259, 1395, 1555, 1735, 1948, 2204, 2239, 1935, 1724, 1514, 1330, 1216, 1125, 1086, 1058, 1095, 1130, 1222, 1355, 1506, 1693, 1909, 2222, 2204, 1909, 1674, 1498, 1312, 1191, 1099, 1062, 1024, 1062, 1116, 1191, 1324, 1482, 1664, 1884, 2138, 2204, 1909, 1664, 1467, 1306, 1176, 1091, 1047, 1024, 1043, 1108, 1186, 1324, 1444, 1664, 1884, 2222, 2204, 1909, 1683, 1498, 1324, 1181, 1108, 1078, 1028, 1050, 1108, 1211, 1330, 1467, 1664, 1884, 2154, 2257, 1989, 1745, 1530, 1355, 1254, 1134, 1082, 1082, 1078, 1143, 1227, 1336, 1506, 1683, 1935, 2171, 2389, 2003, 1801, 1581, 1423, 1300, 1201, 1130, 1108, 1162, 1181, 1276, 1430, 1589, 1778, 2032, 2331, 2516, 2122, 1859, 1674, 1506, 1381, 1265, 1216, 1191, 1222, 1271, 1375, 1498, 1664, 1847, 2076, 2430, 2707, 2293, 1975, 1745, 1589, 1459, 1381, 1312, 1300, 1330, 1375, 1452, 1572, 1724, 1909, 2154, 2584, 2787, 2430, 2107, 1871, 1693, 1589, 1506, 1452, 1416, 1437, 1482, 1581, 1683, 1835, 2017, 2331, 2871, 3382, 2632, 2312, 2003, 1823, 1724, 1617, 1563, 1522, 1563, 1607, 1704, 1801, 1975, 2222, 2516, 3157, 4435, 2930, 2584, 2138, 1962, 1884, 1778, 1704, 1704, 1704, 1724, 1859, 1935, 2154, 2472, 2842, 4301]
                                       }
                                   }, {
                                       "name":    "3264x2448_A_70",
                                       "resolution":    "3264x2448",
                                       "illumination":    "A",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [3195, 2722, 2425, 2228, 2080, 1926, 1812, 1751, 1743, 1751, 1822, 1902, 2058, 2161, 2373, 2617, 3156, 2914, 2556, 2297, 2123, 1937, 1788, 1666, 1589, 1563, 1589, 1662, 1772, 1900, 2063, 2243, 2454, 2835, 2740, 2417, 2188, 1990, 1784, 1627, 1525, 1443, 1421, 1440, 1518, 1618, 1773, 1925, 2125, 2347, 2647, 2646, 2309, 2087, 1859, 1679, 1511, 1381, 1308, 1286, 1305, 1385, 1504, 1651, 1831, 2015, 2254, 2548, 2588, 2215, 2018, 1779, 1579, 1407, 1287, 1217, 1184, 1210, 1282, 1404, 1552, 1758, 1965, 2165, 2484, 2505, 2181, 1926, 1713, 1492, 1323, 1196, 1128, 1107, 1117, 1206, 1323, 1492, 1679, 1883, 2102, 2450, 2454, 2128, 1885, 1653, 1426, 1262, 1146, 1075, 1057, 1073, 1139, 1275, 1430, 1617, 1839, 2075, 2342, 2462, 2096, 1861, 1625, 1412, 1242, 1114, 1055, 1031, 1049, 1126, 1225, 1406, 1599, 1816, 2081, 2350, 2476, 2129, 1874, 1631, 1416, 1230, 1116, 1044, 1024, 1044, 1118, 1230, 1406, 1600, 1851, 2068, 2343, 2473, 2134, 1890, 1656, 1439, 1265, 1145, 1080, 1049, 1074, 1130, 1258, 1436, 1639, 1843, 2081, 2379, 2497, 2167, 1941, 1709, 1500, 1323, 1207, 1124, 1099, 1112, 1188, 1305, 1471, 1686, 1885, 2128, 2432, 2610, 2232, 2018, 1794, 1587, 1415, 1272, 1191, 1183, 1195, 1274, 1386, 1550, 1763, 1964, 2197, 2539, 2743, 2322, 2121, 1857, 1685, 1501, 1381, 1304, 1276, 1304, 1384, 1508, 1648, 1845, 2068, 2294, 2625, 2869, 2481, 2214, 1977, 1794, 1639, 1512, 1438, 1412, 1441, 1508, 1622, 1757, 1964, 2156, 2357, 2738, 3002, 2573, 2321, 2143, 1935, 1797, 1682, 1603, 1572, 1603, 1668, 1786, 1904, 2104, 2284, 2504, 2842, 3240, 2762, 2478, 2281, 2110, 1946, 1840, 1793, 1748, 1766, 1835, 1946, 2052, 2229, 2425, 2681, 3220, 4165, 3031, 2709, 2502, 2340, 2168, 2071, 2031, 2000, 2004, 2035, 2144, 2275, 2448, 2682, 2898, 4026]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2892, 2497, 2204, 2068, 1890, 1803, 1708, 1643, 1620, 1629, 1704, 1760, 1865, 1979, 2119, 2376, 2803, 2654, 2353, 2107, 1932, 1781, 1670, 1591, 1526, 1512, 1520, 1575, 1656, 1751, 1869, 2031, 2247, 2505, 2519, 2216, 2000, 1843, 1685, 1563, 1470, 1406, 1377, 1390, 1450, 1541, 1641, 1768, 1906, 2117, 2421, 2394, 2097, 1910, 1738, 1591, 1452, 1364, 1301, 1267, 1290, 1340, 1427, 1562, 1687, 1852, 2027, 2269, 2293, 2039, 1843, 1657, 1501, 1376, 1264, 1197, 1178, 1195, 1246, 1349, 1466, 1611, 1782, 1957, 2220, 2266, 1974, 1779, 1594, 1422, 1277, 1186, 1126, 1098, 1116, 1184, 1280, 1406, 1558, 1733, 1898, 2143, 2221, 1973, 1757, 1550, 1376, 1246, 1139, 1079, 1054, 1071, 1118, 1223, 1364, 1510, 1681, 1882, 2154, 2181, 1963, 1724, 1531, 1361, 1223, 1119, 1050, 1024, 1046, 1108, 1211, 1336, 1500, 1678, 1868, 2073, 2210, 1959, 1733, 1529, 1356, 1211, 1108, 1052, 1027, 1037, 1103, 1213, 1337, 1501, 1682, 1874, 2082, 2271, 1968, 1744, 1566, 1383, 1249, 1137, 1075, 1054, 1075, 1119, 1225, 1363, 1525, 1708, 1922, 2122, 2308, 2006, 1799, 1613, 1436, 1282, 1178, 1115, 1100, 1115, 1174, 1286, 1407, 1580, 1760, 1958, 2187, 2390, 2065, 1878, 1658, 1517, 1369, 1256, 1202, 1166, 1182, 1256, 1349, 1472, 1640, 1818, 2007, 2251, 2499, 2154, 1936, 1750, 1604, 1468, 1362, 1297, 1265, 1297, 1345, 1454, 1574, 1718, 1876, 2062, 2371, 2564, 2263, 2061, 1851, 1708, 1574, 1471, 1406, 1392, 1422, 1476, 1561, 1677, 1828, 1983, 2181, 2436, 2758, 2456, 2142, 1998, 1841, 1709, 1602, 1551, 1534, 1554, 1589, 1694, 1804, 1940, 2092, 2302, 2607, 2993, 2582, 2336, 2106, 1956, 1844, 1752, 1695, 1671, 1699, 1744, 1826, 1930, 2070, 2233, 2488, 2900, 3886, 2799, 2504, 2272, 2108, 1978, 1900, 1866, 1832, 1876, 1935, 1999, 2108, 2236, 2434, 2697, 3789]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [3082, 2553, 2314, 2090, 1924, 1817, 1733, 1667, 1662, 1675, 1713, 1808, 1924, 2044, 2180, 2444, 2954, 2729, 2403, 2155, 1979, 1853, 1691, 1614, 1554, 1531, 1557, 1600, 1676, 1799, 1932, 2075, 2301, 2602, 2587, 2261, 2044, 1881, 1730, 1585, 1476, 1417, 1397, 1409, 1476, 1559, 1695, 1826, 1971, 2178, 2484, 2482, 2170, 1971, 1772, 1617, 1484, 1385, 1311, 1288, 1311, 1367, 1478, 1577, 1740, 1905, 2095, 2332, 2389, 2108, 1896, 1697, 1538, 1390, 1276, 1215, 1200, 1219, 1273, 1388, 1522, 1663, 1835, 2020, 2295, 2336, 2040, 1841, 1635, 1458, 1317, 1215, 1141, 1120, 1139, 1196, 1312, 1436, 1611, 1784, 1974, 2226, 2245, 2016, 1804, 1592, 1421, 1271, 1145, 1094, 1065, 1080, 1149, 1258, 1395, 1553, 1737, 1921, 2190, 2267, 1994, 1774, 1563, 1379, 1238, 1127, 1061, 1040, 1052, 1121, 1234, 1376, 1543, 1718, 1922, 2145, 2241, 1969, 1772, 1566, 1387, 1231, 1126, 1065, 1024, 1061, 1111, 1225, 1358, 1529, 1722, 1913, 2135, 2267, 1994, 1796, 1588, 1402, 1258, 1143, 1079, 1061, 1081, 1131, 1247, 1372, 1552, 1738, 1942, 2197, 2311, 2033, 1858, 1630, 1459, 1300, 1180, 1113, 1103, 1116, 1180, 1286, 1435, 1606, 1787, 1988, 2204, 2399, 2086, 1888, 1690, 1507, 1367, 1255, 1186, 1170, 1186, 1253, 1350, 1478, 1653, 1832, 2028, 2306, 2499, 2184, 1956, 1768, 1593, 1459, 1349, 1272, 1258, 1272, 1346, 1443, 1583, 1735, 1900, 2102, 2357, 2654, 2274, 2031, 1865, 1706, 1561, 1454, 1388, 1365, 1391, 1454, 1557, 1664, 1829, 2020, 2203, 2499, 2744, 2407, 2165, 1966, 1810, 1680, 1584, 1538, 1503, 1519, 1584, 1669, 1796, 1940, 2102, 2305, 2617, 3002, 2554, 2264, 2086, 1925, 1800, 1709, 1660, 1629, 1660, 1702, 1809, 1900, 2045, 2222, 2480, 2883, 3818, 2774, 2523, 2275, 2118, 1993, 1896, 1830, 1832, 1857, 1886, 1972, 2112, 2205, 2444, 2685, 3818]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2762, 2300, 2048, 1906, 1747, 1712, 1619, 1548, 1583, 1581, 1619, 1664, 1757, 1932, 2048, 2281, 2703, 2411, 2174, 1936, 1799, 1676, 1582, 1487, 1463, 1471, 1477, 1518, 1565, 1667, 1755, 1923, 2140, 2411, 2344, 2028, 1846, 1732, 1583, 1483, 1405, 1363, 1340, 1363, 1399, 1469, 1566, 1682, 1823, 2014, 2266, 2151, 1978, 1773, 1621, 1489, 1413, 1307, 1264, 1254, 1253, 1318, 1407, 1489, 1603, 1752, 1925, 2220, 2138, 1890, 1722, 1554, 1425, 1307, 1239, 1176, 1158, 1195, 1244, 1307, 1425, 1570, 1693, 1854, 2074, 2059, 1829, 1644, 1512, 1370, 1244, 1167, 1119, 1119, 1128, 1163, 1248, 1370, 1505, 1644, 1795, 1958, 1996, 1792, 1641, 1472, 1312, 1209, 1123, 1085, 1058, 1094, 1128, 1215, 1336, 1464, 1613, 1770, 1982, 1973, 1774, 1600, 1460, 1297, 1186, 1098, 1062, 1024, 1062, 1115, 1186, 1308, 1445, 1591, 1753, 1920, 1975, 1775, 1592, 1432, 1292, 1172, 1090, 1047, 1024, 1043, 1107, 1181, 1309, 1411, 1592, 1754, 1990, 1973, 1774, 1608, 1460, 1308, 1176, 1107, 1078, 1028, 1050, 1107, 1205, 1314, 1431, 1591, 1753, 1933, 2010, 1837, 1659, 1486, 1336, 1246, 1132, 1081, 1082, 1077, 1141, 1220, 1318, 1464, 1604, 1792, 1941, 2105, 1841, 1702, 1528, 1396, 1288, 1196, 1128, 1107, 1159, 1176, 1265, 1403, 1536, 1682, 1865, 2059, 2189, 1928, 1743, 1605, 1468, 1360, 1255, 1210, 1186, 1216, 1261, 1355, 1460, 1596, 1732, 1890, 2122, 2314, 2050, 1829, 1657, 1536, 1427, 1360, 1298, 1288, 1315, 1355, 1421, 1520, 1639, 1773, 1938, 2220, 2344, 2137, 1921, 1752, 1617, 1537, 1469, 1423, 1391, 1409, 1447, 1530, 1608, 1722, 1846, 2058, 2407, 2740, 2263, 2064, 1845, 1715, 1644, 1558, 1514, 1479, 1514, 1549, 1626, 1696, 1822, 1991, 2174, 2576, 3412, 2447, 2246, 1932, 1812, 1764, 1684, 1625, 1627, 1625, 1637, 1743, 1790, 1945, 2158, 2382, 3318]
                                       }
                                   }, {
                                       "name":    "3264x2448_CWF_100",
                                       "resolution":    "3264x2448",
                                       "illumination":    "CWF",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [3843, 2836, 2410, 2174, 2021, 1861, 1718, 1682, 1654, 1740, 1740, 1861, 1961, 2163, 2469, 2739, 3569, 3224, 2721, 2273, 2021, 1853, 1696, 1595, 1545, 1499, 1499, 1614, 1696, 1803, 1961, 2210, 2532, 3076, 2877, 2410, 2106, 1879, 1740, 1576, 1466, 1390, 1376, 1405, 1450, 1545, 1682, 1853, 2021, 2367, 2836, 2739, 2286, 1991, 1763, 1614, 1435, 1348, 1291, 1255, 1275, 1339, 1450, 1557, 1755, 1952, 2248, 2667, 2667, 2174, 1906, 1696, 1493, 1362, 1263, 1188, 1171, 1181, 1243, 1348, 1477, 1661, 1861, 2084, 2485, 2516, 2106, 1853, 1601, 1435, 1300, 1177, 1106, 1088, 1121, 1181, 1287, 1435, 1563, 1811, 2052, 2395, 2485, 2041, 1779, 1557, 1395, 1239, 1125, 1076, 1065, 1076, 1134, 1243, 1395, 1516, 1763, 2021, 2312, 2410, 2041, 1779, 1563, 1362, 1209, 1094, 1032, 1024, 1040, 1097, 1199, 1348, 1510, 1718, 1961, 2367, 2469, 2021, 1787, 1576, 1366, 1202, 1103, 1048, 1037, 1040, 1112, 1199, 1362, 1534, 1718, 1991, 2326, 2395, 2052, 1827, 1576, 1390, 1251, 1125, 1076, 1054, 1062, 1134, 1220, 1380, 1545, 1740, 1991, 2395, 2532, 2106, 1853, 1614, 1419, 1279, 1160, 1112, 1097, 1112, 1177, 1287, 1419, 1582, 1803, 2052, 2410, 2631, 2210, 1906, 1696, 1516, 1376, 1251, 1171, 1167, 1167, 1239, 1352, 1466, 1661, 1879, 2140, 2469, 2836, 2312, 2021, 1779, 1640, 1466, 1362, 1255, 1243, 1300, 1348, 1445, 1563, 1763, 1952, 2235, 2667, 2962, 2367, 2084, 1879, 1732, 1595, 1450, 1376, 1390, 1380, 1450, 1545, 1682, 1861, 2073, 2367, 2962, 3224, 2667, 2235, 2041, 1853, 1682, 1601, 1534, 1516, 1510, 1582, 1710, 1827, 1981, 2198, 2532, 3007, 3569, 2877, 2469, 2210, 2011, 1906, 1732, 1674, 1682, 1710, 1755, 1827, 1933, 2140, 2410, 2739, 3476, 4992, 3224, 2721, 2439, 2286, 2073, 1952, 1933, 1879, 1879, 1981, 2073, 2198, 2395, 2580, 3148, 4931]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [3573, 2847, 2513, 2213, 2018, 1875, 1764, 1665, 1626, 1653, 1750, 1810, 1983, 2124, 2407, 2778, 3555, 3104, 2619, 2264, 2036, 1864, 1715, 1603, 1528, 1491, 1528, 1570, 1653, 1796, 1983, 2213, 2532, 2983, 2847, 2459, 2092, 1906, 1737, 1559, 1444, 1386, 1364, 1386, 1444, 1531, 1669, 1820, 2036, 2334, 2733, 2800, 2295, 2018, 1764, 1581, 1444, 1335, 1295, 1264, 1271, 1324, 1426, 1549, 1707, 1955, 2213, 2532, 2570, 2164, 1922, 1682, 1501, 1353, 1254, 1187, 1165, 1165, 1247, 1327, 1466, 1626, 1834, 2105, 2513, 2504, 2092, 1834, 1614, 1409, 1290, 1175, 1127, 1108, 1116, 1159, 1257, 1397, 1570, 1791, 2024, 2366, 2459, 2054, 1782, 1592, 1378, 1230, 1132, 1079, 1047, 1059, 1114, 1206, 1353, 1518, 1737, 1983, 2287, 2416, 2060, 1764, 1528, 1353, 1206, 1105, 1056, 1036, 1043, 1100, 1199, 1324, 1501, 1715, 1983, 2310, 2407, 2079, 1764, 1549, 1353, 1204, 1103, 1052, 1024, 1047, 1105, 1193, 1324, 1508, 1715, 1983, 2295, 2477, 2079, 1806, 1577, 1378, 1230, 1132, 1075, 1056, 1079, 1116, 1216, 1361, 1528, 1750, 1989, 2366, 2486, 2164, 1880, 1626, 1418, 1275, 1171, 1100, 1086, 1119, 1165, 1261, 1403, 1599, 1806, 2042, 2416, 2629, 2213, 1955, 1702, 1488, 1356, 1247, 1169, 1159, 1171, 1236, 1353, 1472, 1653, 1875, 2144, 2532, 2766, 2318, 2054, 1791, 1622, 1454, 1353, 1268, 1261, 1268, 1335, 1435, 1570, 1750, 1966, 2264, 2570, 2945, 2504, 2171, 1922, 1728, 1581, 1447, 1397, 1348, 1378, 1457, 1570, 1677, 1875, 2073, 2390, 2744, 3104, 2701, 2318, 2092, 1849, 1728, 1622, 1549, 1511, 1549, 1603, 1707, 1810, 2036, 2264, 2570, 2932, 3573, 2970, 2541, 2228, 2018, 1859, 1782, 1702, 1694, 1694, 1741, 1864, 1983, 2192, 2450, 2800, 3465, 4699, 3299, 2847, 2513, 2287, 2105, 2006, 1927, 1864, 1955, 1983, 2036, 2206, 2450, 2733, 3191, 4866]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [3658, 2936, 2478, 2207, 2012, 1874, 1763, 1660, 1636, 1697, 1758, 1854, 1994, 2178, 2383, 2826, 3437, 3167, 2725, 2335, 2048, 1884, 1714, 1610, 1537, 1507, 1534, 1594, 1689, 1844, 2030, 2243, 2562, 3040, 2923, 2469, 2158, 1949, 1745, 1562, 1458, 1393, 1365, 1374, 1449, 1551, 1685, 1844, 2098, 2359, 2838, 2792, 2288, 2012, 1791, 1621, 1443, 1349, 1283, 1267, 1279, 1341, 1425, 1555, 1723, 1977, 2228, 2611, 2611, 2280, 1949, 1710, 1523, 1365, 1253, 1188, 1165, 1188, 1251, 1336, 1474, 1664, 1874, 2138, 2552, 2533, 2165, 1874, 1617, 1434, 1283, 1188, 1118, 1116, 1116, 1161, 1267, 1413, 1583, 1791, 2018, 2400, 2443, 2098, 1829, 1555, 1390, 1239, 1148, 1077, 1070, 1065, 1121, 1209, 1368, 1534, 1736, 2012, 2335, 2409, 2054, 1791, 1555, 1349, 1196, 1101, 1057, 1030, 1040, 1105, 1200, 1341, 1513, 1702, 1960, 2303, 2409, 2054, 1772, 1565, 1341, 1200, 1105, 1048, 1024, 1044, 1105, 1188, 1331, 1494, 1723, 1977, 2288, 2478, 2073, 1814, 1576, 1376, 1230, 1118, 1056, 1040, 1062, 1116, 1219, 1360, 1534, 1723, 2048, 2383, 2524, 2124, 1869, 1617, 1422, 1253, 1150, 1094, 1081, 1086, 1159, 1257, 1393, 1565, 1786, 2054, 2400, 2641, 2185, 1905, 1685, 1487, 1341, 1232, 1165, 1133, 1154, 1215, 1336, 1477, 1621, 1859, 2124, 2478, 2662, 2288, 2018, 1772, 1606, 1416, 1331, 1246, 1237, 1253, 1298, 1407, 1572, 1736, 1977, 2228, 2621, 2936, 2443, 2138, 1874, 1689, 1534, 1431, 1352, 1323, 1352, 1422, 1534, 1664, 1859, 2105, 2351, 2704, 3167, 2641, 2280, 2000, 1814, 1697, 1565, 1497, 1462, 1487, 1565, 1664, 1805, 2018, 2228, 2552, 2974, 3508, 2874, 2496, 2165, 2000, 1859, 1723, 1652, 1636, 1652, 1697, 1805, 1994, 2118, 2409, 2769, 3403, 4921, 3167, 2736, 2533, 2199, 2048, 1960, 1900, 1829, 1854, 1977, 2030, 2138, 2383, 2693, 3000, 4750]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [3130, 2548, 2211, 1953, 1739, 1609, 1627, 1551, 1512, 1528, 1609, 1672, 1700, 1916, 2118, 2465, 3036, 2783, 2313, 1966, 1801, 1609, 1535, 1454, 1387, 1406, 1413, 1468, 1528, 1627, 1791, 1928, 2261, 2733, 2592, 2164, 1892, 1681, 1528, 1433, 1350, 1309, 1275, 1275, 1350, 1413, 1551, 1653, 1823, 2046, 2406, 2349, 1992, 1759, 1601, 1426, 1338, 1244, 1199, 1190, 1214, 1254, 1309, 1433, 1584, 1759, 1953, 2313, 2244, 1892, 1681, 1535, 1393, 1259, 1171, 1162, 1132, 1149, 1176, 1254, 1387, 1482, 1635, 1869, 2133, 2133, 1834, 1627, 1482, 1332, 1190, 1136, 1099, 1075, 1079, 1132, 1209, 1309, 1433, 1601, 1801, 2089, 2074, 1801, 1609, 1447, 1275, 1171, 1099, 1045, 1024, 1064, 1087, 1162, 1270, 1374, 1535, 1770, 2074, 1992, 1759, 1575, 1406, 1270, 1145, 1068, 1035, 1024, 1031, 1068, 1149, 1239, 1387, 1551, 1729, 2005, 2032, 1770, 1551, 1393, 1254, 1149, 1064, 1042, 1031, 1024, 1056, 1132, 1244, 1393, 1551, 1739, 2074, 2089, 1801, 1575, 1406, 1254, 1149, 1068, 1042, 1031, 1031, 1068, 1149, 1259, 1387, 1535, 1791, 2032, 2089, 1834, 1584, 1433, 1292, 1209, 1111, 1064, 1053, 1068, 1107, 1176, 1275, 1406, 1601, 1770, 2089, 2261, 1869, 1653, 1454, 1332, 1239, 1149, 1111, 1079, 1087, 1158, 1224, 1309, 1454, 1627, 1857, 2180, 2313, 1966, 1729, 1559, 1406, 1303, 1224, 1190, 1158, 1171, 1209, 1309, 1393, 1528, 1700, 1916, 2244, 2406, 2089, 1834, 1627, 1505, 1393, 1303, 1254, 1254, 1244, 1303, 1368, 1505, 1609, 1770, 1992, 2406, 2592, 2261, 1953, 1770, 1584, 1490, 1393, 1368, 1332, 1356, 1393, 1433, 1584, 1700, 1916, 2164, 2548, 2890, 2425, 2133, 1869, 1681, 1601, 1512, 1468, 1454, 1454, 1490, 1584, 1681, 1834, 2032, 2406, 2890, 3952, 2708, 2368, 2005, 1892, 1729, 1653, 1584, 1627, 1575, 1601, 1759, 1823, 2005, 2180, 2592, 4004]
                                       }
                                   }, {
                                       "name":    "3264x2448_CWF_70",
                                       "resolution":    "3264x2448",
                                       "illumination":    "CWF",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [2997, 2377, 2110, 1961, 1862, 1745, 1632, 1606, 1583, 1657, 1651, 1745, 1812, 1952, 2156, 2305, 2806, 2625, 2332, 2032, 1860, 1741, 1619, 1538, 1498, 1458, 1456, 1555, 1619, 1698, 1810, 1982, 2186, 2517, 2412, 2121, 1920, 1759, 1659, 1525, 1432, 1365, 1353, 1379, 1417, 1497, 1607, 1737, 1850, 2087, 2381, 2338, 2045, 1842, 1673, 1558, 1405, 1329, 1278, 1245, 1263, 1321, 1419, 1507, 1666, 1809, 2014, 2283, 2307, 1971, 1783, 1624, 1456, 1343, 1253, 1183, 1167, 1176, 1234, 1329, 1441, 1593, 1745, 1897, 2165, 2205, 1927, 1747, 1546, 1407, 1288, 1173, 1104, 1087, 1119, 1176, 1275, 1407, 1512, 1711, 1882, 2110, 2192, 1881, 1689, 1511, 1373, 1231, 1123, 1075, 1065, 1075, 1132, 1235, 1373, 1474, 1675, 1864, 2054, 2139, 1886, 1693, 1519, 1344, 1203, 1093, 1032, 1024, 1040, 1096, 1194, 1331, 1471, 1639, 1818, 2104, 2189, 1871, 1701, 1532, 1348, 1197, 1102, 1048, 1037, 1040, 1111, 1194, 1345, 1494, 1640, 1845, 2074, 2127, 1895, 1735, 1531, 1371, 1244, 1123, 1076, 1054, 1062, 1132, 1214, 1361, 1503, 1658, 1844, 2127, 2230, 1936, 1754, 1563, 1396, 1270, 1157, 1111, 1096, 1111, 1174, 1277, 1396, 1534, 1710, 1890, 2132, 2296, 2014, 1793, 1632, 1483, 1360, 1244, 1168, 1165, 1164, 1233, 1337, 1436, 1601, 1770, 1955, 2168, 2439, 2084, 1882, 1699, 1591, 1441, 1348, 1248, 1237, 1291, 1334, 1421, 1520, 1684, 1823, 2021, 2307, 2509, 2110, 1921, 1775, 1665, 1553, 1425, 1359, 1373, 1363, 1425, 1507, 1620, 1759, 1912, 2110, 2509, 2671, 2324, 2027, 1899, 1759, 1621, 1557, 1499, 1484, 1477, 1539, 1647, 1736, 1847, 1996, 2217, 2509, 2876, 2452, 2191, 2019, 1878, 1805, 1662, 1615, 1625, 1648, 1682, 1735, 1810, 1960, 2143, 2346, 2808, 3802, 2667, 2354, 2177, 2085, 1927, 1837, 1828, 1783, 1780, 1862, 1927, 2011, 2141, 2243, 2610, 3759]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2808, 2385, 2191, 1993, 1859, 1757, 1672, 1591, 1558, 1580, 1660, 1701, 1830, 1920, 2108, 2334, 2796, 2538, 2253, 2025, 1873, 1751, 1636, 1546, 1483, 1450, 1483, 1516, 1581, 1692, 1828, 1984, 2186, 2450, 2389, 2159, 1909, 1783, 1656, 1510, 1412, 1361, 1342, 1361, 1412, 1484, 1596, 1709, 1862, 2061, 2304, 2385, 2052, 1865, 1674, 1528, 1413, 1317, 1282, 1253, 1259, 1307, 1397, 1499, 1624, 1812, 1986, 2180, 2231, 1962, 1797, 1612, 1463, 1334, 1244, 1182, 1161, 1160, 1238, 1310, 1431, 1562, 1721, 1914, 2186, 2196, 1915, 1731, 1558, 1383, 1278, 1171, 1125, 1107, 1114, 1155, 1246, 1372, 1518, 1693, 1859, 2087, 2172, 1892, 1692, 1543, 1357, 1223, 1130, 1078, 1047, 1059, 1112, 1199, 1334, 1475, 1652, 1832, 2034, 2144, 1902, 1679, 1487, 1336, 1200, 1104, 1056, 1036, 1043, 1099, 1194, 1308, 1462, 1636, 1837, 2059, 2139, 1920, 1681, 1507, 1336, 1199, 1102, 1052, 1024, 1047, 1104, 1188, 1309, 1470, 1637, 1838, 2049, 2193, 1918, 1717, 1532, 1359, 1224, 1130, 1075, 1056, 1079, 1115, 1210, 1343, 1487, 1667, 1842, 2104, 2193, 1985, 1778, 1574, 1395, 1266, 1168, 1099, 1086, 1118, 1162, 1252, 1381, 1549, 1713, 1882, 2137, 2295, 2016, 1836, 1638, 1457, 1341, 1240, 1166, 1157, 1168, 1230, 1338, 1442, 1593, 1766, 1959, 2218, 2384, 2089, 1911, 1709, 1575, 1429, 1339, 1260, 1254, 1260, 1322, 1411, 1527, 1673, 1835, 2045, 2231, 2496, 2221, 1994, 1813, 1661, 1540, 1423, 1379, 1333, 1361, 1432, 1530, 1615, 1771, 1912, 2129, 2342, 2582, 2351, 2096, 1943, 1756, 1663, 1576, 1513, 1480, 1513, 1558, 1644, 1721, 1894, 2051, 2247, 2453, 2879, 2524, 2249, 2034, 1884, 1764, 1707, 1641, 1636, 1634, 1670, 1768, 1854, 2004, 2175, 2393, 2800, 3597, 2723, 2452, 2237, 2085, 1955, 1884, 1823, 1769, 1847, 1864, 1895, 2017, 2186, 2363, 2642, 3713]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2868, 2452, 2163, 1988, 1854, 1756, 1671, 1587, 1567, 1619, 1667, 1738, 1839, 1964, 2089, 2370, 2713, 2583, 2335, 2082, 1883, 1768, 1635, 1552, 1491, 1465, 1488, 1537, 1613, 1733, 1868, 2008, 2209, 2491, 2446, 2167, 1963, 1820, 1663, 1512, 1425, 1368, 1343, 1350, 1416, 1502, 1610, 1729, 1914, 2080, 2382, 2379, 2046, 1860, 1698, 1564, 1412, 1330, 1270, 1256, 1267, 1323, 1396, 1505, 1638, 1830, 1998, 2240, 2263, 2058, 1820, 1637, 1483, 1345, 1243, 1183, 1161, 1183, 1241, 1318, 1438, 1596, 1756, 1941, 2217, 2219, 1976, 1766, 1561, 1406, 1271, 1183, 1116, 1114, 1114, 1157, 1256, 1387, 1530, 1693, 1853, 2113, 2159, 1929, 1733, 1509, 1369, 1231, 1145, 1076, 1070, 1065, 1119, 1202, 1348, 1490, 1651, 1857, 2072, 2138, 1897, 1703, 1512, 1332, 1191, 1100, 1057, 1030, 1040, 1104, 1195, 1324, 1473, 1625, 1817, 2053, 2140, 1899, 1688, 1522, 1325, 1195, 1104, 1048, 1024, 1044, 1104, 1183, 1315, 1457, 1644, 1833, 2043, 2194, 1913, 1724, 1531, 1357, 1224, 1117, 1056, 1040, 1062, 1115, 1213, 1342, 1493, 1643, 1892, 2117, 2224, 1951, 1768, 1566, 1399, 1245, 1147, 1093, 1081, 1085, 1156, 1249, 1371, 1518, 1695, 1892, 2124, 2304, 1993, 1793, 1622, 1456, 1327, 1226, 1162, 1131, 1151, 1209, 1322, 1447, 1564, 1752, 1942, 2175, 2303, 2065, 1880, 1692, 1560, 1393, 1318, 1239, 1231, 1246, 1287, 1385, 1529, 1660, 1844, 2015, 2271, 2489, 2172, 1967, 1771, 1626, 1497, 1407, 1336, 1309, 1336, 1399, 1497, 1603, 1757, 1939, 2097, 2312, 2629, 2303, 2064, 1863, 1724, 1635, 1523, 1465, 1434, 1456, 1523, 1605, 1717, 1879, 2021, 2233, 2484, 2832, 2450, 2212, 1981, 1868, 1764, 1654, 1595, 1583, 1595, 1630, 1716, 1863, 1942, 2142, 2369, 2755, 3752, 2624, 2365, 2253, 2012, 1905, 1844, 1799, 1738, 1758, 1858, 1890, 1960, 2131, 2332, 2500, 3632]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2498, 2162, 1954, 1781, 1625, 1528, 1552, 1490, 1457, 1470, 1536, 1582, 1592, 1751, 1881, 2100, 2432, 2304, 2017, 1785, 1676, 1530, 1477, 1411, 1354, 1373, 1378, 1424, 1470, 1546, 1667, 1754, 1977, 2268, 2198, 1926, 1743, 1589, 1471, 1395, 1325, 1290, 1259, 1258, 1325, 1377, 1491, 1565, 1686, 1833, 2059, 2039, 1807, 1646, 1531, 1388, 1315, 1231, 1191, 1182, 1205, 1241, 1288, 1394, 1516, 1646, 1775, 2012, 1976, 1739, 1590, 1481, 1364, 1245, 1165, 1158, 1129, 1145, 1170, 1241, 1358, 1433, 1550, 1720, 1890, 1902, 1700, 1550, 1439, 1311, 1182, 1133, 1098, 1074, 1078, 1129, 1201, 1290, 1394, 1527, 1672, 1867, 1864, 1679, 1539, 1411, 1260, 1166, 1097, 1045, 1024, 1064, 1086, 1157, 1256, 1344, 1474, 1653, 1864, 1803, 1647, 1512, 1375, 1257, 1141, 1067, 1035, 1024, 1031, 1067, 1145, 1228, 1358, 1491, 1621, 1813, 1837, 1657, 1492, 1364, 1242, 1145, 1063, 1042, 1031, 1024, 1056, 1129, 1233, 1364, 1492, 1631, 1870, 1881, 1683, 1512, 1375, 1242, 1145, 1067, 1042, 1031, 1031, 1067, 1145, 1247, 1358, 1477, 1674, 1835, 1876, 1707, 1517, 1398, 1276, 1202, 1109, 1064, 1053, 1068, 1105, 1170, 1260, 1373, 1532, 1653, 1876, 2003, 1729, 1573, 1413, 1311, 1229, 1145, 1109, 1078, 1086, 1154, 1215, 1290, 1413, 1550, 1719, 1939, 2030, 1799, 1631, 1502, 1376, 1287, 1216, 1185, 1154, 1166, 1201, 1293, 1364, 1474, 1606, 1758, 1976, 2083, 1885, 1709, 1554, 1459, 1366, 1287, 1243, 1244, 1233, 1287, 1343, 1459, 1538, 1655, 1807, 2083, 2198, 2003, 1793, 1666, 1521, 1447, 1365, 1345, 1312, 1334, 1365, 1395, 1521, 1605, 1763, 1926, 2165, 2382, 2104, 1919, 1733, 1592, 1535, 1464, 1428, 1417, 1415, 1444, 1520, 1592, 1703, 1838, 2089, 2382, 3074, 2281, 2077, 1823, 1754, 1631, 1575, 1519, 1559, 1511, 1529, 1657, 1696, 1823, 1930, 2195, 3110]
                                       }
                                   }, {
                                       "name":    "3264x2448_D50_100",
                                       "resolution":    "3264x2448",
                                       "illumination":    "D50",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [3563, 2927, 2529, 2174, 2017, 1868, 1729, 1687, 1638, 1647, 1751, 1868, 1974, 2157, 2462, 2896, 4026, 3309, 2700, 2299, 2017, 1819, 1708, 1609, 1555, 1505, 1555, 1600, 1687, 1819, 2017, 2244, 2575, 3055, 3055, 2462, 2092, 1881, 1708, 1538, 1428, 1392, 1352, 1413, 1489, 1530, 1677, 1819, 2017, 2318, 2896, 2927, 2262, 2017, 1751, 1609, 1458, 1313, 1283, 1260, 1266, 1332, 1428, 1564, 1740, 1946, 2244, 2754, 2674, 2208, 1906, 1697, 1513, 1365, 1232, 1175, 1180, 1180, 1243, 1385, 1513, 1628, 1856, 2124, 2624, 2754, 2046, 1843, 1657, 1465, 1266, 1165, 1105, 1110, 1114, 1165, 1295, 1392, 1582, 1796, 2124, 2462, 2506, 2061, 1807, 1582, 1413, 1232, 1132, 1063, 1075, 1088, 1141, 1211, 1358, 1538, 1751, 2002, 2358, 2462, 2017, 1751, 1530, 1345, 1190, 1114, 1047, 1024, 1051, 1088, 1211, 1358, 1538, 1740, 1974, 2318, 2419, 2061, 1762, 1547, 1385, 1185, 1105, 1071, 1028, 1063, 1119, 1211, 1378, 1489, 1708, 1974, 2440, 2624, 2124, 1784, 1600, 1378, 1232, 1110, 1055, 1071, 1075, 1114, 1243, 1385, 1547, 1784, 2017, 2398, 2506, 2157, 1856, 1647, 1428, 1313, 1175, 1105, 1092, 1092, 1165, 1283, 1413, 1600, 1856, 2061, 2506, 2700, 2157, 1906, 1729, 1538, 1332, 1254, 1190, 1160, 1165, 1227, 1326, 1497, 1657, 1881, 2124, 2529, 2958, 2318, 2017, 1762, 1628, 1458, 1358, 1266, 1238, 1272, 1326, 1435, 1591, 1751, 1988, 2157, 2700, 3055, 2462, 2174, 1868, 1708, 1582, 1465, 1385, 1365, 1385, 1465, 1538, 1708, 1881, 2124, 2358, 2838, 3474, 2700, 2262, 2046, 1906, 1677, 1600, 1538, 1473, 1538, 1591, 1697, 1807, 2002, 2226, 2552, 3124, 3913, 2838, 2506, 2262, 2061, 1919, 1708, 1740, 1638, 1708, 1751, 1856, 2002, 2141, 2462, 2896, 3518, 4705, 3349, 2838, 2529, 2299, 2124, 1988, 1974, 1946, 1933, 2017, 2124, 2244, 2506, 2674, 3159, 4956]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [3825, 3056, 2647, 2246, 2066, 1876, 1719, 1670, 1638, 1689, 1744, 1775, 1944, 2148, 2420, 2864, 3638, 3276, 2732, 2307, 2073, 1859, 1689, 1611, 1532, 1475, 1512, 1594, 1656, 1813, 1983, 2246, 2647, 3171, 2979, 2502, 2188, 1876, 1709, 1552, 1446, 1388, 1347, 1369, 1425, 1536, 1689, 1882, 2088, 2325, 2878, 2797, 2325, 2010, 1786, 1615, 1453, 1354, 1267, 1246, 1240, 1323, 1436, 1540, 1729, 1950, 2237, 2567, 2758, 2221, 1983, 1670, 1509, 1354, 1243, 1176, 1160, 1169, 1230, 1338, 1475, 1647, 1870, 2117, 2502, 2534, 2148, 1841, 1620, 1412, 1272, 1167, 1112, 1090, 1096, 1156, 1267, 1412, 1577, 1797, 2080, 2381, 2470, 2102, 1813, 1573, 1376, 1240, 1112, 1076, 1057, 1066, 1114, 1203, 1344, 1528, 1744, 1996, 2353, 2502, 2088, 1775, 1552, 1347, 1210, 1080, 1048, 1033, 1042, 1090, 1205, 1347, 1497, 1729, 2003, 2289, 2481, 2110, 1791, 1577, 1338, 1193, 1100, 1038, 1024, 1038, 1096, 1181, 1329, 1528, 1709, 2010, 2362, 2534, 2110, 1797, 1573, 1385, 1220, 1136, 1070, 1055, 1057, 1123, 1203, 1326, 1509, 1739, 2003, 2450, 2578, 2196, 1870, 1615, 1408, 1275, 1149, 1092, 1094, 1094, 1149, 1256, 1388, 1548, 1819, 2073, 2372, 2612, 2280, 1983, 1689, 1501, 1357, 1220, 1172, 1153, 1167, 1228, 1329, 1460, 1661, 1847, 2204, 2512, 2878, 2325, 2088, 1819, 1611, 1475, 1318, 1261, 1228, 1283, 1318, 1429, 1594, 1744, 1963, 2307, 2732, 2979, 2556, 2221, 1919, 1714, 1552, 1460, 1376, 1329, 1372, 1453, 1552, 1709, 1888, 2140, 2450, 2950, 3331, 2758, 2353, 2030, 1876, 1714, 1573, 1520, 1501, 1497, 1624, 1709, 1847, 2052, 2325, 2623, 3137, 3705, 3025, 2567, 2316, 2052, 1853, 1734, 1744, 1661, 1714, 1786, 1859, 2066, 2280, 2523, 2823, 3638, 5201, 3331, 2878, 2556, 2325, 2110, 2044, 1906, 1853, 1870, 2003, 2088, 2188, 2420, 2758, 3331, 4705]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [3656, 3056, 2536, 2328, 2076, 1886, 1784, 1717, 1703, 1679, 1784, 1801, 1973, 2257, 2442, 2825, 3845, 3405, 2772, 2365, 2128, 1868, 1743, 1655, 1548, 1524, 1548, 1624, 1713, 1823, 2062, 2301, 2685, 3120, 3025, 2569, 2167, 1948, 1727, 1606, 1483, 1402, 1376, 1409, 1468, 1544, 1698, 1892, 2175, 2442, 2893, 2825, 2328, 2098, 1779, 1628, 1497, 1351, 1287, 1273, 1265, 1333, 1433, 1619, 1768, 2020, 2337, 2637, 2721, 2283, 1993, 1693, 1536, 1367, 1265, 1199, 1173, 1185, 1247, 1348, 1472, 1651, 1910, 2191, 2602, 2547, 2215, 1898, 1655, 1450, 1316, 1175, 1112, 1100, 1116, 1171, 1268, 1412, 1589, 1828, 2113, 2494, 2494, 2136, 1784, 1589, 1383, 1221, 1131, 1080, 1057, 1078, 1131, 1226, 1380, 1540, 1774, 2091, 2384, 2463, 2151, 1795, 1564, 1348, 1197, 1106, 1047, 1033, 1057, 1120, 1199, 1339, 1528, 1738, 1980, 2384, 2473, 2076, 1784, 1548, 1348, 1209, 1110, 1047, 1024, 1038, 1110, 1194, 1304, 1509, 1743, 2013, 2328, 2547, 2113, 1834, 1581, 1383, 1221, 1127, 1076, 1053, 1072, 1120, 1204, 1348, 1540, 1774, 2027, 2365, 2525, 2159, 1851, 1624, 1450, 1249, 1162, 1096, 1090, 1100, 1175, 1255, 1412, 1581, 1801, 2136, 2433, 2649, 2249, 1910, 1722, 1486, 1348, 1216, 1164, 1164, 1159, 1226, 1324, 1450, 1642, 1868, 2207, 2515, 2893, 2365, 2084, 1779, 1602, 1443, 1336, 1242, 1221, 1252, 1321, 1402, 1577, 1753, 1987, 2301, 2602, 2965, 2494, 2199, 1910, 1688, 1577, 1433, 1367, 1318, 1339, 1426, 1516, 1679, 1851, 2113, 2423, 2907, 3348, 2746, 2365, 2048, 1834, 1693, 1577, 1528, 1490, 1520, 1564, 1679, 1806, 2055, 2301, 2625, 3072, 3656, 2965, 2547, 2257, 2027, 1851, 1722, 1717, 1655, 1669, 1743, 1828, 1993, 2207, 2494, 2851, 3526, 4845, 3293, 2965, 2463, 2257, 2013, 1980, 1857, 1898, 1880, 1973, 2020, 2199, 2483, 2772, 3222, 5008]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [3493, 2791, 2385, 2082, 1979, 1766, 1684, 1594, 1623, 1645, 1684, 1792, 1886, 2070, 2354, 2791, 3493, 2975, 2518, 2196, 1990, 1757, 1638, 1573, 1508, 1489, 1501, 1553, 1660, 1749, 1896, 2119, 2417, 2769, 2769, 2339, 2058, 1792, 1630, 1560, 1430, 1350, 1360, 1355, 1402, 1508, 1638, 1792, 2024, 2279, 2609, 2609, 2196, 1906, 1684, 1501, 1430, 1310, 1243, 1238, 1256, 1310, 1419, 1533, 1676, 1886, 2119, 2466, 2466, 2119, 1876, 1601, 1495, 1335, 1205, 1174, 1137, 1137, 1226, 1310, 1430, 1623, 1829, 2058, 2433, 2354, 2012, 1766, 1560, 1386, 1247, 1148, 1089, 1092, 1112, 1163, 1243, 1386, 1527, 1716, 2001, 2279, 2265, 1990, 1716, 1520, 1365, 1193, 1096, 1063, 1039, 1060, 1126, 1193, 1360, 1508, 1699, 1906, 2119, 2209, 1926, 1676, 1471, 1350, 1166, 1086, 1039, 1042, 1045, 1076, 1155, 1306, 1495, 1699, 1906, 2082, 2237, 1979, 1684, 1471, 1306, 1201, 1051, 1042, 1024, 1036, 1086, 1166, 1335, 1441, 1699, 1906, 2309, 2170, 1979, 1766, 1465, 1360, 1193, 1076, 1042, 1024, 1042, 1076, 1205, 1335, 1477, 1699, 1906, 2251, 2323, 1979, 1740, 1540, 1381, 1238, 1126, 1070, 1051, 1073, 1112, 1226, 1355, 1495, 1724, 1990, 2209, 2385, 2012, 1838, 1608, 1430, 1301, 1182, 1148, 1102, 1123, 1213, 1283, 1413, 1560, 1749, 2001, 2385, 2501, 2196, 1958, 1676, 1527, 1391, 1310, 1201, 1193, 1201, 1292, 1365, 1465, 1676, 1838, 2106, 2401, 2667, 2309, 2001, 1766, 1594, 1489, 1386, 1310, 1310, 1325, 1381, 1477, 1587, 1792, 1947, 2251, 2687, 2927, 2483, 2170, 1937, 1749, 1594, 1508, 1465, 1402, 1447, 1471, 1630, 1749, 1857, 2144, 2401, 2707, 3427, 2647, 2339, 2024, 1876, 1757, 1660, 1601, 1623, 1560, 1623, 1707, 1801, 2024, 2196, 2647, 3272, 4610, 2903, 2518, 2183, 2106, 1896, 1792, 1716, 1676, 1660, 1810, 1886, 1979, 2183, 2483, 2903, 4440]
                                       }
                                   }, {
                                       "name":    "3264x2448_D50_70",
                                       "resolution":    "3264x2448",
                                       "illumination":    "D50",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [2801, 2445, 2203, 1961, 1859, 1751, 1641, 1610, 1569, 1575, 1661, 1751, 1822, 1947, 2151, 2422, 3125, 2687, 2316, 2053, 1857, 1712, 1630, 1551, 1507, 1463, 1507, 1543, 1611, 1712, 1857, 2009, 2219, 2502, 2545, 2162, 1909, 1761, 1631, 1491, 1397, 1367, 1331, 1387, 1453, 1483, 1603, 1708, 1846, 2048, 2426, 2482, 2025, 1864, 1663, 1554, 1426, 1296, 1270, 1249, 1254, 1314, 1398, 1513, 1653, 1804, 2011, 2350, 2312, 1999, 1783, 1625, 1474, 1345, 1223, 1170, 1175, 1175, 1234, 1364, 1474, 1564, 1740, 1930, 2273, 2394, 1877, 1738, 1597, 1435, 1255, 1161, 1103, 1109, 1112, 1161, 1283, 1367, 1529, 1697, 1942, 2163, 2209, 1898, 1714, 1534, 1390, 1224, 1130, 1063, 1075, 1087, 1139, 1204, 1339, 1494, 1664, 1848, 2091, 2181, 1866, 1668, 1489, 1328, 1185, 1113, 1047, 1024, 1051, 1087, 1205, 1340, 1496, 1658, 1829, 2065, 2149, 1905, 1679, 1506, 1366, 1180, 1104, 1071, 1028, 1063, 1118, 1206, 1360, 1452, 1631, 1831, 2165, 2311, 1956, 1697, 1553, 1359, 1226, 1109, 1055, 1071, 1075, 1113, 1236, 1366, 1505, 1697, 1866, 2129, 2209, 1979, 1757, 1593, 1404, 1303, 1172, 1104, 1092, 1091, 1162, 1274, 1390, 1550, 1757, 1898, 2209, 2351, 1969, 1793, 1662, 1504, 1318, 1247, 1187, 1158, 1162, 1221, 1312, 1465, 1597, 1772, 1942, 2216, 2534, 2089, 1879, 1683, 1580, 1433, 1344, 1258, 1232, 1264, 1313, 1411, 1546, 1674, 1854, 1957, 2332, 2581, 2187, 1997, 1765, 1643, 1541, 1440, 1368, 1350, 1368, 1440, 1500, 1643, 1777, 1955, 2103, 2414, 2859, 2350, 2049, 1903, 1806, 1617, 1556, 1503, 1444, 1503, 1547, 1635, 1718, 1865, 2020, 2233, 2597, 3126, 2422, 2220, 2062, 1921, 1817, 1640, 1675, 1585, 1646, 1679, 1761, 1870, 1961, 2185, 2467, 2839, 3601, 2760, 2445, 2250, 2096, 1971, 1868, 1864, 1842, 1828, 1893, 1971, 2049, 2231, 2317, 2618, 3776]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2985, 2541, 2296, 2019, 1900, 1757, 1633, 1595, 1569, 1612, 1654, 1670, 1797, 1940, 2118, 2398, 2854, 2663, 2340, 2060, 1904, 1746, 1613, 1553, 1486, 1436, 1468, 1537, 1584, 1707, 1828, 2011, 2275, 2586, 2488, 2193, 1988, 1757, 1631, 1503, 1414, 1363, 1326, 1346, 1394, 1489, 1614, 1762, 1905, 2053, 2412, 2383, 2076, 1858, 1693, 1559, 1422, 1335, 1255, 1236, 1230, 1306, 1406, 1491, 1643, 1807, 2005, 2207, 2378, 2009, 1850, 1601, 1471, 1335, 1234, 1171, 1156, 1164, 1221, 1320, 1439, 1581, 1752, 1924, 2178, 2220, 1962, 1737, 1564, 1386, 1261, 1163, 1110, 1089, 1095, 1152, 1256, 1386, 1525, 1698, 1905, 2098, 2180, 1932, 1719, 1526, 1355, 1232, 1110, 1075, 1057, 1066, 1112, 1197, 1325, 1485, 1658, 1843, 2087, 2213, 1926, 1689, 1509, 1330, 1204, 1079, 1048, 1033, 1042, 1089, 1199, 1330, 1459, 1648, 1854, 2042, 2199, 1946, 1705, 1533, 1322, 1188, 1099, 1038, 1024, 1038, 1095, 1176, 1313, 1488, 1632, 1861, 2103, 2239, 1944, 1709, 1529, 1366, 1214, 1134, 1070, 1055, 1057, 1122, 1197, 1310, 1470, 1657, 1854, 2171, 2267, 2012, 1769, 1564, 1386, 1266, 1146, 1091, 1093, 1093, 1146, 1248, 1367, 1503, 1724, 1908, 2102, 2281, 2072, 1861, 1626, 1469, 1342, 1214, 1169, 1151, 1164, 1222, 1315, 1431, 1601, 1742, 2009, 2202, 2471, 2095, 1940, 1734, 1564, 1449, 1306, 1253, 1222, 1275, 1306, 1406, 1549, 1667, 1832, 2080, 2357, 2522, 2263, 2037, 1810, 1649, 1513, 1435, 1359, 1315, 1355, 1428, 1513, 1644, 1783, 1968, 2177, 2500, 2752, 2396, 2125, 1889, 1779, 1650, 1531, 1486, 1470, 1465, 1578, 1646, 1754, 1908, 2102, 2289, 2606, 2975, 2566, 2270, 2108, 1913, 1758, 1664, 1679, 1606, 1652, 1710, 1764, 1925, 2078, 2234, 2410, 2926, 3948, 2747, 2477, 2272, 2117, 1959, 1917, 1804, 1760, 1772, 1881, 1940, 2002, 2161, 2383, 2747, 3601]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2866, 2541, 2209, 2086, 1908, 1766, 1689, 1637, 1627, 1603, 1689, 1693, 1822, 2028, 2135, 2369, 2999, 2757, 2371, 2107, 1950, 1754, 1661, 1592, 1501, 1480, 1501, 1564, 1634, 1715, 1895, 2055, 2304, 2549, 2522, 2246, 1971, 1819, 1647, 1552, 1448, 1376, 1353, 1383, 1434, 1496, 1622, 1771, 1977, 2146, 2424, 2404, 2079, 1933, 1687, 1571, 1462, 1332, 1274, 1262, 1253, 1315, 1403, 1563, 1677, 1867, 2086, 2260, 2349, 2060, 1858, 1622, 1495, 1347, 1255, 1193, 1169, 1180, 1238, 1329, 1436, 1584, 1787, 1985, 2256, 2230, 2018, 1786, 1595, 1421, 1303, 1171, 1110, 1099, 1114, 1167, 1257, 1386, 1536, 1725, 1933, 2188, 2200, 1961, 1693, 1540, 1362, 1214, 1129, 1079, 1057, 1077, 1129, 1219, 1359, 1496, 1685, 1923, 2112, 2182, 1979, 1707, 1520, 1331, 1192, 1105, 1047, 1033, 1057, 1119, 1194, 1322, 1487, 1656, 1834, 2118, 2192, 1917, 1698, 1506, 1331, 1204, 1109, 1047, 1024, 1038, 1109, 1189, 1290, 1471, 1662, 1864, 2075, 2249, 1947, 1741, 1536, 1364, 1215, 1125, 1076, 1053, 1072, 1119, 1198, 1331, 1498, 1688, 1874, 2103, 2224, 1980, 1752, 1572, 1425, 1241, 1159, 1095, 1090, 1099, 1172, 1247, 1389, 1533, 1708, 1961, 2151, 2311, 2046, 1797, 1656, 1455, 1333, 1210, 1161, 1162, 1156, 1220, 1310, 1421, 1583, 1760, 2011, 2205, 2483, 2128, 1936, 1699, 1556, 1419, 1323, 1235, 1215, 1245, 1309, 1380, 1533, 1675, 1853, 2075, 2256, 2512, 2213, 2018, 1802, 1625, 1536, 1409, 1350, 1305, 1324, 1403, 1480, 1617, 1750, 1945, 2155, 2467, 2764, 2387, 2135, 1905, 1742, 1631, 1534, 1494, 1460, 1486, 1522, 1619, 1717, 1911, 2082, 2291, 2558, 2939, 2520, 2254, 2058, 1892, 1757, 1653, 1655, 1600, 1611, 1672, 1736, 1862, 2016, 2211, 2432, 2845, 3699, 2718, 2545, 2196, 2060, 1875, 1861, 1761, 1800, 1781, 1855, 1881, 2012, 2213, 2394, 2665, 3813]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2752, 2343, 2090, 1886, 1827, 1663, 1602, 1528, 1556, 1573, 1602, 1685, 1748, 1876, 2066, 2343, 2752, 2444, 2175, 1970, 1834, 1658, 1568, 1519, 1464, 1449, 1458, 1501, 1587, 1651, 1755, 1908, 2097, 2294, 2331, 2064, 1880, 1685, 1561, 1511, 1399, 1328, 1338, 1333, 1373, 1463, 1568, 1685, 1852, 2017, 2211, 2239, 1972, 1770, 1604, 1456, 1400, 1293, 1232, 1228, 1245, 1293, 1390, 1485, 1597, 1753, 1910, 2129, 2150, 1925, 1757, 1540, 1458, 1317, 1197, 1169, 1134, 1133, 1218, 1294, 1398, 1559, 1717, 1875, 2124, 2077, 1848, 1671, 1509, 1362, 1237, 1144, 1088, 1091, 1110, 1159, 1233, 1362, 1479, 1628, 1839, 2018, 2016, 1838, 1633, 1477, 1345, 1187, 1095, 1063, 1039, 1060, 1124, 1187, 1340, 1466, 1618, 1767, 1900, 1977, 1788, 1602, 1435, 1333, 1162, 1085, 1039, 1042, 1045, 1075, 1151, 1291, 1457, 1622, 1772, 1875, 2002, 1835, 1610, 1436, 1292, 1196, 1051, 1042, 1024, 1036, 1085, 1162, 1319, 1408, 1623, 1773, 2060, 1946, 1833, 1681, 1429, 1342, 1188, 1075, 1042, 1024, 1042, 1075, 1199, 1318, 1440, 1622, 1772, 2011, 2063, 1829, 1655, 1496, 1360, 1230, 1124, 1070, 1051, 1072, 1110, 1219, 1336, 1454, 1641, 1838, 1972, 2102, 1848, 1734, 1553, 1403, 1288, 1177, 1146, 1101, 1121, 1207, 1271, 1387, 1509, 1656, 1839, 2102, 2177, 1989, 1828, 1607, 1487, 1370, 1298, 1195, 1188, 1195, 1281, 1345, 1430, 1607, 1725, 1915, 2099, 2283, 2063, 1851, 1676, 1540, 1455, 1365, 1296, 1297, 1310, 1360, 1444, 1534, 1699, 1805, 2016, 2299, 2449, 2178, 1973, 1809, 1667, 1541, 1471, 1435, 1378, 1418, 1437, 1574, 1667, 1740, 1952, 2114, 2284, 2773, 2275, 2086, 1863, 1761, 1673, 1597, 1549, 1571, 1512, 1564, 1629, 1696, 1863, 1970, 2275, 2660, 3534, 2427, 2195, 1968, 1933, 1775, 1696, 1636, 1603, 1587, 1712, 1766, 1827, 1968, 2167, 2427, 3415]
                                       }
                                   }, {
                                       "name":    "3264x2448_D65_100",
                                       "resolution":    "3264x2448",
                                       "illumination":    "D65",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [3961, 3057, 2569, 2328, 2059, 1924, 1785, 1700, 1674, 1700, 1785, 1868, 2059, 2231, 2471, 2919, 3775, 3210, 2745, 2328, 2100, 1868, 1728, 1623, 1560, 1545, 1560, 1623, 1700, 1868, 2046, 2246, 2611, 3210, 3087, 2529, 2200, 1936, 1737, 1607, 1454, 1410, 1368, 1404, 1488, 1568, 1728, 1924, 2156, 2415, 3057, 2867, 2345, 2086, 1815, 1623, 1468, 1328, 1276, 1251, 1291, 1351, 1448, 1607, 1815, 2021, 2294, 2745, 2654, 2200, 1959, 1718, 1516, 1351, 1246, 1182, 1173, 1173, 1251, 1351, 1495, 1691, 1924, 2231, 2611, 2654, 2200, 1868, 1615, 1422, 1266, 1186, 1116, 1079, 1116, 1173, 1281, 1441, 1623, 1826, 2100, 2509, 2590, 2100, 1847, 1583, 1391, 1232, 1120, 1061, 1051, 1072, 1136, 1232, 1422, 1560, 1815, 2059, 2452, 2509, 2059, 1826, 1591, 1368, 1191, 1105, 1058, 1027, 1047, 1120, 1218, 1374, 1538, 1766, 2046, 2397, 2529, 2086, 1815, 1568, 1368, 1218, 1097, 1037, 1024, 1037, 1094, 1213, 1374, 1545, 1785, 2059, 2415, 2590, 2100, 1826, 1591, 1391, 1232, 1132, 1068, 1037, 1058, 1109, 1200, 1404, 1583, 1815, 2046, 2452, 2590, 2142, 1868, 1648, 1441, 1281, 1173, 1105, 1083, 1094, 1173, 1291, 1441, 1607, 1847, 2127, 2471, 2792, 2246, 1924, 1700, 1523, 1362, 1236, 1156, 1148, 1191, 1236, 1351, 1509, 1674, 1959, 2185, 2611, 2817, 2345, 2046, 1826, 1615, 1441, 1334, 1266, 1251, 1276, 1345, 1448, 1607, 1785, 2059, 2294, 2745, 2973, 2509, 2200, 1936, 1737, 1607, 1448, 1404, 1374, 1391, 1488, 1583, 1728, 1901, 2142, 2415, 2919, 3275, 2721, 2345, 2086, 1868, 1737, 1640, 1560, 1523, 1523, 1607, 1718, 1857, 2086, 2294, 2590, 3147, 3775, 2973, 2529, 2246, 2021, 1924, 1756, 1700, 1718, 1718, 1785, 1924, 1983, 2231, 2471, 2867, 3606, 5087, 3378, 2892, 2529, 2362, 2142, 2059, 1971, 1901, 1983, 2008, 2156, 2278, 2471, 2745, 3210, 5087]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [3795, 2895, 2488, 2210, 2042, 1887, 1754, 1684, 1671, 1663, 1763, 1820, 2023, 2139, 2443, 2787, 3499, 3214, 2666, 2316, 2061, 1856, 1701, 1599, 1544, 1510, 1513, 1573, 1675, 1801, 2011, 2217, 2545, 3012, 2871, 2470, 2126, 1908, 1714, 1573, 1457, 1399, 1363, 1374, 1448, 1527, 1684, 1851, 2073, 2365, 2776, 2753, 2308, 2023, 1806, 1607, 1448, 1352, 1287, 1253, 1277, 1352, 1442, 1555, 1740, 1947, 2254, 2604, 2676, 2232, 1947, 1705, 1513, 1365, 1253, 1176, 1170, 1176, 1239, 1346, 1470, 1650, 1866, 2126, 2545, 2545, 2146, 1866, 1630, 1420, 1280, 1170, 1114, 1094, 1105, 1168, 1270, 1408, 1584, 1791, 2099, 2399, 2470, 2106, 1820, 1573, 1371, 1233, 1131, 1068, 1055, 1066, 1114, 1224, 1363, 1527, 1754, 1999, 2357, 2416, 2061, 1791, 1562, 1360, 1204, 1101, 1056, 1024, 1043, 1099, 1195, 1328, 1523, 1731, 2011, 2374, 2507, 2073, 1806, 1559, 1374, 1217, 1105, 1051, 1027, 1038, 1112, 1197, 1328, 1503, 1745, 2017, 2308, 2507, 2119, 1835, 1584, 1388, 1226, 1135, 1078, 1045, 1071, 1114, 1217, 1360, 1548, 1763, 2054, 2365, 2574, 2188, 1871, 1634, 1442, 1277, 1164, 1107, 1087, 1099, 1168, 1277, 1417, 1581, 1801, 2080, 2416, 2666, 2217, 1964, 1696, 1513, 1354, 1242, 1176, 1150, 1181, 1233, 1338, 1483, 1671, 1887, 2167, 2479, 2787, 2341, 2054, 1806, 1607, 1451, 1328, 1265, 1242, 1263, 1335, 1457, 1581, 1763, 1976, 2262, 2676, 2972, 2479, 2188, 1903, 1731, 1581, 1470, 1397, 1365, 1391, 1451, 1570, 1688, 1871, 2106, 2399, 2787, 3214, 2698, 2332, 2080, 1866, 1718, 1599, 1523, 1499, 1527, 1596, 1696, 1840, 2042, 2285, 2584, 3026, 3611, 2972, 2564, 2239, 2042, 1887, 1772, 1705, 1684, 1705, 1758, 1887, 2036, 2217, 2507, 2846, 3445, 4903, 3325, 2846, 2516, 2239, 2106, 1947, 1925, 1840, 1919, 1964, 2042, 2269, 2425, 2709, 3124, 4698]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [3674, 2933, 2477, 2244, 2014, 1863, 1755, 1719, 1693, 1693, 1750, 1857, 2032, 2207, 2477, 2845, 3483, 3199, 2685, 2306, 2083, 1868, 1723, 1627, 1562, 1548, 1548, 1592, 1693, 1832, 2032, 2229, 2572, 2999, 2858, 2477, 2129, 1933, 1750, 1585, 1476, 1411, 1384, 1396, 1460, 1562, 1676, 1868, 2090, 2414, 2833, 2810, 2306, 2032, 1798, 1627, 1483, 1345, 1286, 1264, 1288, 1348, 1444, 1566, 1755, 1973, 2259, 2685, 2633, 2207, 1933, 1710, 1527, 1373, 1274, 1175, 1177, 1175, 1243, 1340, 1476, 1676, 1868, 2150, 2504, 2533, 2136, 1857, 1627, 1432, 1271, 1179, 1120, 1100, 1118, 1169, 1274, 1402, 1585, 1812, 2070, 2458, 2414, 2090, 1802, 1573, 1367, 1236, 1130, 1073, 1045, 1066, 1120, 1231, 1367, 1551, 1750, 2014, 2346, 2414, 2064, 1783, 1541, 1359, 1211, 1107, 1045, 1024, 1046, 1094, 1198, 1332, 1509, 1723, 1984, 2330, 2414, 2045, 1764, 1527, 1348, 1211, 1102, 1051, 1024, 1045, 1094, 1196, 1332, 1506, 1723, 1990, 2306, 2405, 2064, 1812, 1555, 1365, 1225, 1120, 1060, 1040, 1056, 1113, 1218, 1348, 1520, 1737, 2014, 2330, 2495, 2109, 1857, 1611, 1423, 1266, 1159, 1089, 1084, 1094, 1151, 1257, 1393, 1577, 1798, 2064, 2346, 2633, 2164, 1938, 1693, 1473, 1324, 1225, 1151, 1133, 1153, 1207, 1324, 1466, 1655, 1842, 2116, 2504, 2707, 2298, 2014, 1769, 1600, 1411, 1324, 1248, 1227, 1255, 1311, 1420, 1555, 1732, 1938, 2222, 2685, 2933, 2458, 2116, 1894, 1710, 1541, 1432, 1367, 1337, 1359, 1426, 1520, 1680, 1857, 2083, 2388, 2775, 3067, 2653, 2274, 2026, 1832, 1680, 1577, 1527, 1483, 1506, 1577, 1680, 1812, 2002, 2244, 2552, 3053, 3576, 2895, 2477, 2222, 2026, 1832, 1723, 1668, 1655, 1676, 1723, 1847, 1984, 2157, 2432, 2810, 3412, 4845, 3215, 2775, 2414, 2185, 2045, 1911, 1900, 1847, 1878, 1916, 2070, 2185, 2405, 2696, 3096, 4580]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [3195, 2638, 2235, 2000, 1856, 1738, 1653, 1576, 1559, 1576, 1617, 1698, 1810, 1921, 2246, 2531, 3291, 2843, 2474, 2106, 1864, 1725, 1593, 1511, 1456, 1427, 1456, 1495, 1576, 1685, 1818, 2028, 2355, 2754, 2576, 2235, 1947, 1788, 1593, 1475, 1400, 1340, 1316, 1332, 1382, 1456, 1576, 1718, 1896, 2158, 2591, 2474, 2076, 1833, 1653, 1506, 1369, 1289, 1231, 1221, 1241, 1270, 1365, 1495, 1623, 1795, 2056, 2406, 2317, 2000, 1766, 1565, 1418, 1293, 1207, 1150, 1135, 1150, 1188, 1278, 1400, 1559, 1725, 1964, 2235, 2212, 1947, 1705, 1511, 1369, 1221, 1147, 1090, 1082, 1098, 1138, 1241, 1332, 1470, 1653, 1896, 2168, 2168, 1872, 1660, 1446, 1300, 1178, 1093, 1059, 1041, 1051, 1101, 1188, 1312, 1432, 1623, 1818, 2126, 2158, 1872, 1635, 1432, 1304, 1159, 1085, 1041, 1024, 1056, 1074, 1150, 1263, 1427, 1593, 1833, 2126, 2106, 1864, 1641, 1418, 1281, 1144, 1077, 1043, 1039, 1041, 1074, 1150, 1289, 1418, 1599, 1810, 2066, 2190, 1864, 1623, 1475, 1304, 1178, 1085, 1039, 1034, 1041, 1090, 1166, 1281, 1441, 1617, 1841, 2096, 2190, 1921, 1698, 1506, 1332, 1201, 1112, 1085, 1051, 1074, 1118, 1197, 1328, 1470, 1641, 1864, 2158, 2269, 1973, 1738, 1548, 1396, 1252, 1169, 1121, 1101, 1121, 1178, 1263, 1365, 1537, 1705, 1947, 2269, 2433, 2037, 1788, 1617, 1461, 1340, 1241, 1178, 1169, 1175, 1252, 1340, 1456, 1582, 1795, 2028, 2367, 2531, 2190, 1938, 1718, 1576, 1441, 1340, 1278, 1252, 1281, 1352, 1409, 1543, 1698, 1872, 2106, 2474, 2862, 2393, 2037, 1818, 1653, 1543, 1446, 1387, 1374, 1369, 1470, 1543, 1672, 1818, 2009, 2246, 2686, 3195, 2591, 2201, 1921, 1788, 1679, 1559, 1506, 1506, 1543, 1565, 1660, 1759, 1913, 2137, 2488, 2999, 4089, 2807, 2446, 2168, 1938, 1833, 1705, 1653, 1635, 1641, 1685, 1810, 1921, 2076, 2317, 2737, 4331]
                                       }
                                   }, {
                                       "name":    "3264x2448_D65_70",
                                       "resolution":    "3264x2448",
                                       "illumination":    "D65",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [3080, 2542, 2234, 2086, 1894, 1799, 1690, 1622, 1601, 1622, 1690, 1751, 1894, 2007, 2158, 2439, 2950, 2615, 2350, 2077, 1927, 1754, 1648, 1564, 1512, 1500, 1512, 1564, 1623, 1754, 1881, 2011, 2247, 2615, 2569, 2215, 1998, 1808, 1656, 1553, 1421, 1384, 1346, 1378, 1452, 1518, 1648, 1798, 1962, 2125, 2546, 2436, 2092, 1923, 1719, 1566, 1435, 1310, 1264, 1241, 1278, 1332, 1417, 1552, 1719, 1868, 2051, 2343, 2296, 1992, 1829, 1644, 1477, 1332, 1237, 1177, 1169, 1168, 1241, 1332, 1458, 1620, 1799, 2018, 2263, 2315, 2005, 1760, 1559, 1395, 1255, 1181, 1114, 1078, 1114, 1169, 1269, 1413, 1566, 1724, 1922, 2200, 2276, 1931, 1749, 1535, 1370, 1224, 1118, 1061, 1051, 1071, 1134, 1224, 1399, 1514, 1721, 1896, 2166, 2219, 1901, 1734, 1545, 1350, 1186, 1104, 1058, 1027, 1047, 1119, 1212, 1355, 1496, 1681, 1890, 2129, 2237, 1926, 1726, 1525, 1350, 1212, 1096, 1037, 1024, 1037, 1093, 1207, 1356, 1504, 1699, 1903, 2145, 2284, 1936, 1734, 1545, 1372, 1226, 1130, 1068, 1037, 1058, 1108, 1195, 1384, 1538, 1725, 1890, 2173, 2276, 1966, 1767, 1594, 1417, 1272, 1170, 1104, 1083, 1093, 1170, 1281, 1417, 1557, 1749, 1953, 2181, 2424, 2044, 1809, 1636, 1490, 1347, 1230, 1153, 1146, 1188, 1230, 1336, 1476, 1612, 1840, 1993, 2281, 2424, 2111, 1904, 1741, 1568, 1417, 1321, 1258, 1244, 1268, 1332, 1424, 1561, 1704, 1915, 2069, 2368, 2518, 2225, 2019, 1825, 1669, 1564, 1424, 1386, 1358, 1373, 1461, 1542, 1661, 1794, 1970, 2149, 2476, 2710, 2367, 2118, 1937, 1772, 1671, 1593, 1524, 1491, 1489, 1562, 1654, 1763, 1937, 2076, 2263, 2614, 3026, 2526, 2239, 2049, 1886, 1821, 1683, 1639, 1658, 1655, 1709, 1821, 1854, 2036, 2192, 2444, 2903, 3868, 2782, 2488, 2250, 2149, 1986, 1930, 1862, 1802, 1872, 1886, 1998, 2078, 2203, 2372, 2656, 3868]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2964, 2421, 2171, 1990, 1880, 1767, 1663, 1608, 1598, 1589, 1671, 1709, 1864, 1932, 2136, 2340, 2757, 2618, 2289, 2067, 1894, 1744, 1624, 1542, 1497, 1468, 1469, 1519, 1601, 1696, 1852, 1987, 2196, 2471, 2407, 2168, 1937, 1784, 1636, 1522, 1424, 1374, 1341, 1350, 1415, 1481, 1609, 1735, 1893, 2085, 2336, 2349, 2062, 1869, 1711, 1552, 1417, 1333, 1274, 1243, 1265, 1333, 1411, 1505, 1653, 1805, 2019, 2235, 2314, 2018, 1819, 1632, 1474, 1345, 1243, 1171, 1166, 1171, 1230, 1327, 1435, 1583, 1749, 1931, 2211, 2228, 1960, 1759, 1573, 1393, 1268, 1166, 1112, 1093, 1103, 1164, 1259, 1382, 1531, 1693, 1921, 2113, 2180, 1936, 1725, 1526, 1351, 1225, 1129, 1068, 1055, 1066, 1112, 1217, 1343, 1484, 1667, 1846, 2090, 2144, 1903, 1703, 1518, 1342, 1198, 1100, 1056, 1024, 1043, 1098, 1190, 1312, 1483, 1650, 1860, 2110, 2219, 1915, 1718, 1517, 1356, 1211, 1104, 1051, 1027, 1038, 1111, 1192, 1312, 1465, 1664, 1867, 2059, 2217, 1952, 1742, 1539, 1369, 1220, 1133, 1078, 1045, 1071, 1113, 1211, 1342, 1506, 1679, 1897, 2103, 2264, 2005, 1770, 1581, 1418, 1268, 1161, 1106, 1087, 1098, 1165, 1268, 1394, 1533, 1708, 1914, 2137, 2324, 2020, 1844, 1632, 1480, 1339, 1236, 1173, 1148, 1178, 1227, 1324, 1452, 1610, 1777, 1978, 2176, 2400, 2108, 1911, 1723, 1561, 1426, 1315, 1257, 1236, 1255, 1322, 1432, 1537, 1684, 1843, 2043, 2314, 2517, 2201, 2009, 1796, 1664, 1540, 1444, 1379, 1350, 1373, 1426, 1530, 1625, 1768, 1939, 2136, 2375, 2664, 2349, 2107, 1932, 1771, 1654, 1555, 1489, 1468, 1493, 1552, 1634, 1748, 1900, 2068, 2258, 2523, 2906, 2525, 2267, 2043, 1905, 1788, 1698, 1644, 1627, 1644, 1685, 1788, 1899, 2025, 2221, 2428, 2786, 3739, 2742, 2452, 2239, 2045, 1955, 1832, 1821, 1748, 1816, 1847, 1900, 2070, 2165, 2344, 2592, 3596]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2879, 2449, 2162, 2018, 1856, 1746, 1664, 1639, 1618, 1616, 1660, 1741, 1871, 1988, 2162, 2384, 2745, 2607, 2304, 2059, 1912, 1754, 1643, 1567, 1514, 1502, 1501, 1536, 1617, 1723, 1870, 1997, 2217, 2461, 2397, 2174, 1939, 1806, 1668, 1533, 1441, 1385, 1361, 1371, 1426, 1512, 1602, 1750, 1907, 2124, 2379, 2393, 2061, 1877, 1704, 1570, 1449, 1326, 1273, 1253, 1275, 1329, 1413, 1515, 1666, 1827, 2023, 2297, 2280, 1998, 1806, 1637, 1487, 1353, 1264, 1170, 1173, 1170, 1234, 1322, 1440, 1607, 1751, 1951, 2179, 2219, 1952, 1751, 1570, 1405, 1260, 1174, 1118, 1099, 1116, 1165, 1263, 1377, 1532, 1711, 1897, 2159, 2136, 1922, 1709, 1526, 1347, 1228, 1128, 1072, 1045, 1066, 1118, 1223, 1347, 1506, 1663, 1858, 2081, 2142, 1905, 1696, 1499, 1341, 1205, 1106, 1045, 1024, 1046, 1093, 1193, 1316, 1470, 1643, 1838, 2075, 2144, 1891, 1681, 1487, 1331, 1206, 1101, 1051, 1024, 1045, 1093, 1191, 1316, 1468, 1644, 1844, 2057, 2135, 1905, 1722, 1512, 1347, 1219, 1119, 1060, 1040, 1056, 1112, 1212, 1331, 1480, 1656, 1863, 2075, 2200, 1938, 1758, 1560, 1400, 1257, 1156, 1088, 1084, 1093, 1148, 1249, 1371, 1529, 1706, 1900, 2081, 2298, 1975, 1821, 1630, 1443, 1310, 1219, 1148, 1131, 1150, 1202, 1310, 1436, 1595, 1738, 1935, 2196, 2338, 2073, 1876, 1690, 1554, 1389, 1311, 1241, 1221, 1248, 1299, 1397, 1513, 1657, 1811, 2010, 2321, 2487, 2184, 1948, 1788, 1645, 1503, 1408, 1350, 1323, 1343, 1403, 1484, 1618, 1756, 1920, 2127, 2366, 2554, 2313, 2059, 1886, 1740, 1620, 1534, 1493, 1453, 1473, 1534, 1620, 1723, 1865, 2034, 2233, 2543, 2881, 2466, 2197, 2029, 1891, 1740, 1654, 1610, 1600, 1617, 1654, 1753, 1854, 1974, 2161, 2400, 2762, 3699, 2660, 2396, 2156, 2000, 1903, 1801, 1799, 1754, 1779, 1805, 1924, 2000, 2149, 2334, 2571, 3513]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2544, 2229, 1973, 1819, 1723, 1639, 1575, 1512, 1499, 1512, 1543, 1604, 1685, 1755, 1981, 2149, 2611, 2348, 2141, 1898, 1729, 1630, 1528, 1463, 1417, 1392, 1417, 1448, 1513, 1596, 1690, 1835, 2050, 2283, 2186, 1982, 1788, 1681, 1529, 1433, 1371, 1319, 1297, 1311, 1354, 1416, 1513, 1621, 1746, 1921, 2197, 2135, 1875, 1708, 1576, 1460, 1344, 1274, 1221, 1212, 1231, 1256, 1340, 1450, 1550, 1676, 1859, 2083, 2033, 1827, 1663, 1507, 1387, 1278, 1199, 1146, 1132, 1146, 1181, 1263, 1370, 1502, 1627, 1798, 1969, 1965, 1794, 1618, 1465, 1346, 1212, 1143, 1089, 1081, 1097, 1135, 1231, 1311, 1428, 1573, 1752, 1930, 1939, 1739, 1584, 1410, 1284, 1172, 1092, 1059, 1041, 1051, 1099, 1182, 1295, 1397, 1552, 1693, 1905, 1936, 1743, 1565, 1399, 1289, 1155, 1084, 1041, 1024, 1056, 1073, 1146, 1250, 1394, 1528, 1710, 1911, 1896, 1737, 1572, 1387, 1268, 1141, 1076, 1043, 1039, 1041, 1073, 1146, 1275, 1387, 1534, 1691, 1864, 1962, 1736, 1555, 1438, 1289, 1173, 1084, 1039, 1034, 1041, 1089, 1162, 1267, 1407, 1549, 1716, 1886, 1956, 1780, 1618, 1464, 1314, 1195, 1110, 1084, 1051, 1073, 1116, 1191, 1310, 1432, 1567, 1732, 1931, 2010, 1816, 1647, 1498, 1371, 1242, 1165, 1119, 1100, 1119, 1173, 1252, 1342, 1488, 1618, 1794, 2010, 2124, 1858, 1682, 1554, 1426, 1322, 1232, 1173, 1165, 1170, 1242, 1322, 1422, 1523, 1688, 1850, 2072, 2179, 1967, 1797, 1634, 1524, 1410, 1322, 1266, 1242, 1269, 1333, 1381, 1494, 1616, 1741, 1899, 2135, 2400, 2107, 1863, 1707, 1582, 1495, 1414, 1362, 1351, 1346, 1436, 1495, 1599, 1707, 1840, 1991, 2269, 2604, 2232, 1974, 1776, 1685, 1604, 1506, 1463, 1464, 1496, 1511, 1587, 1660, 1770, 1923, 2152, 2461, 3170, 2355, 2138, 1956, 1792, 1720, 1620, 1580, 1566, 1570, 1603, 1701, 1778, 1881, 2037, 2303, 3339]
                                       }
                                   }, {
                                       "name":    "3264x2448_D75_100",
                                       "resolution":    "3264x2448",
                                       "illumination":    "D75",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [4057, 3248, 2635, 2340, 2136, 1951, 1795, 1753, 1763, 1785, 1852, 1964, 2105, 2322, 2521, 2953, 3895, 3321, 2895, 2418, 2167, 1900, 1785, 1654, 1617, 1574, 1626, 1635, 1795, 1888, 2090, 2359, 2708, 3248, 3248, 2500, 2216, 1964, 1785, 1608, 1509, 1456, 1381, 1435, 1509, 1608, 1774, 1951, 2183, 2458, 3110, 2953, 2398, 2075, 1841, 1635, 1525, 1387, 1290, 1279, 1301, 1387, 1479, 1617, 1829, 2075, 2340, 2683, 2839, 2233, 1991, 1712, 1582, 1381, 1262, 1225, 1171, 1205, 1279, 1375, 1525, 1722, 1964, 2216, 2659, 2708, 2216, 1951, 1682, 1501, 1301, 1215, 1131, 1113, 1109, 1200, 1325, 1501, 1692, 1888, 2183, 2500, 2635, 2167, 1876, 1644, 1435, 1251, 1148, 1057, 1053, 1085, 1167, 1290, 1442, 1654, 1829, 2136, 2588, 2566, 2090, 1852, 1574, 1394, 1220, 1101, 1050, 1042, 1046, 1105, 1241, 1387, 1582, 1795, 2105, 2458, 2588, 2075, 1852, 1608, 1375, 1225, 1097, 1046, 1024, 1039, 1089, 1225, 1381, 1541, 1829, 2090, 2521, 2635, 2167, 1864, 1608, 1435, 1257, 1113, 1053, 1057, 1057, 1135, 1246, 1428, 1617, 1864, 2105, 2418, 2839, 2200, 1964, 1692, 1486, 1337, 1200, 1139, 1085, 1153, 1210, 1331, 1456, 1673, 1876, 2200, 2635, 2839, 2359, 2046, 1785, 1557, 1375, 1296, 1205, 1185, 1215, 1279, 1381, 1549, 1732, 1964, 2268, 2683, 3014, 2418, 2090, 1841, 1644, 1449, 1343, 1290, 1296, 1290, 1375, 1494, 1626, 1852, 2061, 2340, 2812, 3077, 2521, 2233, 1938, 1785, 1599, 1509, 1421, 1421, 1435, 1494, 1574, 1795, 1938, 2167, 2500, 3045, 3321, 2759, 2340, 2090, 1938, 1763, 1635, 1565, 1541, 1541, 1654, 1774, 1876, 2075, 2303, 2683, 3143, 3844, 3077, 2635, 2285, 2136, 1964, 1841, 1785, 1732, 1774, 1807, 1925, 2061, 2268, 2588, 2953, 3844, 5211, 3359, 3014, 2611, 2418, 2183, 2090, 2046, 2046, 2075, 2105, 2167, 2303, 2635, 2953, 3399, 5120]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [3711, 3002, 2580, 2209, 2064, 1882, 1738, 1689, 1655, 1734, 1716, 1850, 1977, 2166, 2428, 2923, 3908, 3286, 2741, 2301, 2083, 1892, 1707, 1615, 1550, 1525, 1540, 1588, 1698, 1855, 1983, 2231, 2663, 3270, 2989, 2437, 2124, 1898, 1720, 1561, 1468, 1390, 1367, 1405, 1448, 1558, 1672, 1860, 2064, 2376, 2823, 2823, 2301, 2014, 1810, 1584, 1458, 1353, 1278, 1263, 1273, 1326, 1417, 1565, 1747, 1954, 2209, 2685, 2663, 2231, 1954, 1707, 1518, 1353, 1265, 1184, 1175, 1190, 1235, 1359, 1471, 1635, 1830, 2138, 2560, 2580, 2151, 1898, 1655, 1452, 1293, 1192, 1135, 1125, 1127, 1175, 1280, 1433, 1591, 1815, 2097, 2455, 2455, 2110, 1824, 1584, 1423, 1253, 1141, 1092, 1074, 1092, 1149, 1244, 1376, 1550, 1780, 2045, 2376, 2455, 2090, 1805, 1558, 1367, 1221, 1123, 1060, 1035, 1064, 1103, 1201, 1353, 1518, 1752, 1995, 2359, 2455, 2077, 1785, 1554, 1353, 1207, 1123, 1050, 1024, 1043, 1114, 1219, 1324, 1508, 1698, 1995, 2301, 2642, 2097, 1845, 1561, 1388, 1244, 1145, 1085, 1064, 1081, 1133, 1239, 1359, 1558, 1752, 2014, 2350, 2707, 2187, 1882, 1655, 1452, 1313, 1184, 1135, 1104, 1133, 1194, 1298, 1445, 1615, 1805, 2083, 2419, 2685, 2247, 1977, 1738, 1525, 1373, 1256, 1197, 1159, 1197, 1265, 1345, 1478, 1672, 1903, 2180, 2590, 2859, 2384, 2051, 1815, 1603, 1452, 1337, 1268, 1246, 1278, 1345, 1433, 1584, 1766, 1972, 2239, 2707, 3072, 2560, 2138, 1914, 1707, 1558, 1455, 1376, 1373, 1385, 1455, 1536, 1698, 1866, 2070, 2428, 2884, 3286, 2763, 2342, 2090, 1887, 1729, 1611, 1529, 1511, 1536, 1588, 1689, 1830, 2026, 2262, 2663, 3044, 3711, 3030, 2653, 2262, 2064, 1898, 1752, 1711, 1689, 1720, 1752, 1898, 2020, 2187, 2580, 2897, 3629, 5160, 3422, 2923, 2492, 2301, 2077, 1954, 1926, 1882, 1903, 1972, 2051, 2254, 2419, 2823, 3238, 4752]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [3822, 3058, 2578, 2267, 2035, 1917, 1763, 1739, 1699, 1681, 1748, 1889, 2029, 2163, 2500, 2896, 3652, 3337, 2728, 2331, 2080, 1900, 1748, 1635, 1554, 1547, 1543, 1611, 1712, 1862, 2010, 2275, 2662, 3101, 3002, 2490, 2121, 1900, 1744, 1565, 1471, 1405, 1417, 1414, 1442, 1543, 1708, 1889, 2067, 2417, 2883, 2762, 2267, 2029, 1777, 1603, 1454, 1367, 1289, 1267, 1284, 1333, 1429, 1580, 1721, 1962, 2251, 2662, 2662, 2177, 1917, 1703, 1525, 1367, 1259, 1195, 1172, 1195, 1255, 1361, 1487, 1656, 1841, 2128, 2558, 2568, 2134, 1873, 1635, 1451, 1312, 1200, 1137, 1124, 1149, 1191, 1294, 1429, 1611, 1852, 2080, 2500, 2538, 2074, 1821, 1600, 1414, 1250, 1164, 1105, 1081, 1094, 1149, 1236, 1378, 1532, 1772, 2023, 2348, 2462, 2035, 1777, 1532, 1367, 1202, 1122, 1047, 1034, 1059, 1110, 1204, 1331, 1498, 1730, 1986, 2315, 2408, 1986, 1777, 1532, 1358, 1202, 1114, 1047, 1024, 1054, 1107, 1189, 1331, 1498, 1725, 1957, 2340, 2481, 2080, 1801, 1550, 1378, 1240, 1122, 1076, 1045, 1079, 1126, 1231, 1370, 1543, 1758, 2023, 2382, 2558, 2155, 1878, 1631, 1435, 1279, 1182, 1110, 1107, 1110, 1180, 1294, 1429, 1588, 1821, 2074, 2471, 2662, 2236, 1906, 1681, 1504, 1339, 1231, 1180, 1155, 1178, 1236, 1358, 1474, 1639, 1889, 2134, 2578, 2797, 2275, 1986, 1777, 1584, 1423, 1328, 1247, 1220, 1247, 1317, 1411, 1565, 1730, 1939, 2221, 2672, 2935, 2426, 2080, 1857, 1694, 1540, 1405, 1361, 1347, 1355, 1417, 1532, 1664, 1821, 2054, 2399, 2809, 3254, 2728, 2291, 2023, 1816, 1677, 1588, 1515, 1491, 1518, 1588, 1664, 1816, 1962, 2191, 2609, 3207, 3673, 2988, 2578, 2214, 2017, 1857, 1748, 1694, 1703, 1677, 1767, 1836, 1974, 2170, 2500, 2871, 3612, 5388, 3354, 2822, 2490, 2221, 2042, 1974, 1945, 1873, 1934, 1889, 2054, 2214, 2408, 2797, 3238, 4906]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [3326, 2769, 2360, 2056, 1881, 1701, 1641, 1624, 1527, 1568, 1601, 1689, 1920, 1985, 2224, 2673, 3374, 2964, 2541, 2172, 1920, 1759, 1568, 1507, 1437, 1446, 1446, 1488, 1585, 1689, 1881, 2065, 2434, 2837, 2704, 2278, 1985, 1786, 1596, 1464, 1369, 1330, 1282, 1300, 1369, 1437, 1537, 1707, 1912, 2203, 2613, 2473, 2112, 1858, 1647, 1460, 1341, 1254, 1202, 1196, 1228, 1251, 1369, 1437, 1579, 1800, 2029, 2447, 2313, 2020, 1766, 1558, 1415, 1289, 1215, 1154, 1129, 1157, 1199, 1275, 1394, 1522, 1720, 1969, 2267, 2384, 1977, 1707, 1517, 1357, 1247, 1151, 1105, 1092, 1105, 1146, 1228, 1341, 1478, 1695, 1912, 2278, 2256, 1920, 1670, 1469, 1307, 1193, 1126, 1076, 1066, 1084, 1115, 1193, 1322, 1420, 1647, 1904, 2151, 2192, 1904, 1618, 1433, 1282, 1166, 1066, 1047, 1045, 1057, 1094, 1157, 1268, 1390, 1579, 1822, 2112, 2182, 1881, 1612, 1424, 1278, 1148, 1079, 1031, 1024, 1035, 1076, 1146, 1264, 1377, 1585, 1836, 2142, 2224, 1912, 1664, 1437, 1282, 1178, 1092, 1057, 1054, 1054, 1086, 1178, 1275, 1415, 1601, 1873, 2122, 2245, 1969, 1707, 1478, 1334, 1218, 1126, 1094, 1084, 1084, 1113, 1224, 1334, 1478, 1676, 1881, 2192, 2348, 2029, 1773, 1532, 1402, 1251, 1199, 1143, 1126, 1129, 1178, 1254, 1369, 1537, 1707, 1969, 2372, 2447, 2093, 1836, 1612, 1428, 1322, 1231, 1181, 1169, 1178, 1228, 1338, 1433, 1579, 1807, 2029, 2384, 2584, 2224, 1944, 1701, 1483, 1394, 1318, 1258, 1241, 1268, 1334, 1402, 1527, 1652, 1912, 2074, 2555, 2890, 2447, 2093, 1881, 1652, 1537, 1451, 1386, 1386, 1398, 1433, 1532, 1624, 1793, 2020, 2313, 2769, 3279, 2673, 2336, 2003, 1807, 1695, 1574, 1517, 1527, 1517, 1596, 1658, 1807, 1960, 2213, 2598, 3302, 4359, 2803, 2500, 2172, 1985, 1836, 1746, 1664, 1624, 1652, 1676, 1904, 1960, 2103, 2384, 2803, 4400]
                                       }
                                   }, {
                                       "name":    "3264x2448_D75_70",
                                       "resolution":    "3264x2448",
                                       "illumination":    "D75",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [3147, 2685, 2286, 2096, 1959, 1822, 1699, 1669, 1680, 1697, 1749, 1833, 1933, 2081, 2197, 2464, 3034, 2695, 2466, 2149, 1983, 1782, 1698, 1591, 1564, 1526, 1572, 1574, 1707, 1771, 1918, 2102, 2322, 2642, 2689, 2192, 2011, 1832, 1699, 1554, 1472, 1427, 1358, 1407, 1472, 1554, 1689, 1821, 1984, 2159, 2586, 2502, 2135, 1913, 1742, 1577, 1488, 1366, 1277, 1267, 1288, 1366, 1446, 1561, 1731, 1913, 2088, 2295, 2441, 2019, 1856, 1639, 1538, 1360, 1252, 1219, 1167, 1199, 1268, 1355, 1485, 1648, 1833, 2005, 2300, 2357, 2019, 1833, 1620, 1469, 1288, 1209, 1129, 1112, 1107, 1195, 1311, 1469, 1629, 1778, 1991, 2193, 2312, 1987, 1774, 1591, 1411, 1243, 1145, 1057, 1053, 1084, 1164, 1280, 1418, 1600, 1733, 1961, 2275, 2265, 1927, 1757, 1529, 1374, 1214, 1100, 1050, 1042, 1046, 1104, 1234, 1368, 1537, 1707, 1940, 2178, 2285, 1916, 1759, 1562, 1357, 1219, 1096, 1046, 1024, 1039, 1088, 1219, 1363, 1500, 1738, 1929, 2231, 2320, 1993, 1768, 1561, 1413, 1250, 1112, 1053, 1057, 1057, 1133, 1239, 1407, 1569, 1768, 1940, 2145, 2476, 2015, 1852, 1634, 1459, 1326, 1196, 1138, 1085, 1152, 1206, 1320, 1431, 1617, 1774, 2015, 2312, 2461, 2138, 1916, 1713, 1521, 1359, 1288, 1201, 1182, 1211, 1272, 1365, 1514, 1665, 1844, 2062, 2338, 2578, 2172, 1942, 1754, 1595, 1425, 1330, 1281, 1288, 1281, 1360, 1467, 1578, 1764, 1917, 2107, 2420, 2597, 2235, 2047, 1827, 1713, 1557, 1481, 1402, 1403, 1415, 1467, 1534, 1722, 1827, 1991, 2218, 2573, 2744, 2397, 2114, 1941, 1834, 1695, 1588, 1528, 1508, 1506, 1606, 1705, 1779, 1928, 2083, 2337, 2611, 3076, 2606, 2325, 2082, 1986, 1857, 1760, 1716, 1670, 1706, 1729, 1822, 1921, 2067, 2287, 2511, 3076, 3955, 2768, 2583, 2317, 2196, 2022, 1957, 1928, 1931, 1954, 1970, 2008, 2099, 2336, 2535, 2797, 3891]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2905, 2501, 2243, 1989, 1898, 1763, 1649, 1612, 1584, 1652, 1630, 1735, 1825, 1954, 2124, 2442, 3043, 2670, 2347, 2055, 1912, 1775, 1629, 1556, 1503, 1481, 1493, 1532, 1621, 1743, 1828, 1998, 2287, 2658, 2496, 2142, 1935, 1776, 1641, 1511, 1434, 1365, 1345, 1379, 1415, 1509, 1599, 1743, 1885, 2094, 2371, 2403, 2057, 1862, 1714, 1531, 1426, 1334, 1266, 1252, 1261, 1309, 1388, 1514, 1659, 1811, 1982, 2297, 2304, 2018, 1825, 1634, 1479, 1334, 1255, 1179, 1171, 1185, 1226, 1340, 1436, 1570, 1718, 1941, 2223, 2256, 1964, 1786, 1595, 1423, 1281, 1187, 1133, 1123, 1125, 1171, 1268, 1406, 1537, 1714, 1919, 2157, 2168, 1939, 1729, 1536, 1400, 1245, 1139, 1091, 1074, 1091, 1146, 1236, 1355, 1505, 1690, 1884, 2105, 2175, 1927, 1716, 1515, 1349, 1215, 1122, 1060, 1035, 1064, 1102, 1196, 1336, 1478, 1669, 1847, 2098, 2178, 1918, 1699, 1512, 1336, 1202, 1122, 1050, 1024, 1043, 1113, 1213, 1309, 1470, 1622, 1849, 2053, 2326, 1933, 1751, 1518, 1369, 1237, 1143, 1085, 1064, 1081, 1131, 1232, 1341, 1515, 1669, 1863, 2091, 2370, 2004, 1780, 1601, 1427, 1303, 1181, 1134, 1103, 1132, 1191, 1288, 1420, 1564, 1712, 1916, 2140, 2339, 2045, 1855, 1670, 1491, 1357, 1249, 1194, 1157, 1194, 1258, 1330, 1448, 1611, 1791, 1989, 2264, 2457, 2144, 1908, 1731, 1557, 1427, 1324, 1260, 1240, 1270, 1332, 1409, 1540, 1687, 1840, 2024, 2338, 2594, 2266, 1967, 1806, 1642, 1519, 1430, 1359, 1357, 1368, 1430, 1498, 1634, 1764, 1909, 2160, 2449, 2718, 2400, 2116, 1941, 1789, 1664, 1566, 1495, 1480, 1501, 1545, 1628, 1739, 1886, 2049, 2321, 2537, 2979, 2570, 2339, 2062, 1924, 1798, 1680, 1649, 1631, 1657, 1680, 1798, 1886, 2000, 2280, 2467, 2920, 3919, 2815, 2512, 2220, 2097, 1930, 1838, 1822, 1785, 1801, 1854, 1908, 2058, 2160, 2434, 2677, 3634]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2983, 2543, 2242, 2037, 1874, 1793, 1671, 1656, 1623, 1605, 1658, 1769, 1869, 1952, 2180, 2422, 2864, 2707, 2337, 2079, 1910, 1782, 1665, 1574, 1506, 1501, 1496, 1553, 1633, 1749, 1851, 2034, 2286, 2535, 2505, 2184, 1933, 1777, 1662, 1515, 1437, 1379, 1392, 1388, 1410, 1495, 1631, 1768, 1888, 2126, 2416, 2356, 2029, 1874, 1685, 1548, 1422, 1347, 1276, 1256, 1271, 1315, 1399, 1527, 1636, 1818, 2016, 2279, 2303, 1973, 1793, 1631, 1485, 1347, 1249, 1189, 1168, 1189, 1245, 1342, 1450, 1589, 1727, 1933, 2222, 2247, 1950, 1765, 1577, 1422, 1299, 1195, 1135, 1122, 1147, 1186, 1282, 1402, 1555, 1746, 1905, 2193, 2235, 1909, 1726, 1550, 1391, 1242, 1161, 1104, 1081, 1093, 1146, 1228, 1357, 1488, 1683, 1866, 2083, 2181, 1881, 1691, 1491, 1349, 1196, 1121, 1047, 1034, 1059, 1109, 1198, 1315, 1460, 1649, 1839, 2063, 2140, 1841, 1692, 1492, 1341, 1197, 1113, 1047, 1024, 1054, 1106, 1184, 1315, 1460, 1646, 1816, 2085, 2196, 1919, 1712, 1507, 1359, 1233, 1121, 1076, 1045, 1079, 1124, 1225, 1352, 1501, 1674, 1871, 2117, 2251, 1977, 1776, 1579, 1411, 1270, 1179, 1109, 1106, 1109, 1177, 1284, 1405, 1539, 1726, 1909, 2181, 2321, 2035, 1793, 1619, 1472, 1325, 1225, 1177, 1153, 1175, 1230, 1343, 1444, 1581, 1779, 1950, 2254, 2408, 2054, 1852, 1697, 1540, 1400, 1315, 1240, 1214, 1240, 1305, 1389, 1522, 1655, 1812, 2009, 2311, 2489, 2158, 1917, 1756, 1631, 1502, 1383, 1345, 1332, 1339, 1394, 1495, 1603, 1724, 1895, 2136, 2392, 2694, 2372, 2073, 1883, 1726, 1617, 1545, 1482, 1461, 1485, 1545, 1605, 1726, 1831, 1991, 2278, 2659, 2952, 2538, 2279, 2022, 1883, 1762, 1676, 1634, 1644, 1618, 1693, 1743, 1846, 1985, 2216, 2447, 2907, 4079, 2764, 2433, 2218, 2030, 1900, 1856, 1839, 1777, 1829, 1781, 1911, 2024, 2151, 2413, 2677, 3741]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2635, 2327, 2071, 1865, 1744, 1607, 1564, 1555, 1470, 1505, 1529, 1596, 1777, 1807, 1964, 2255, 2669, 2436, 2193, 1951, 1776, 1660, 1506, 1459, 1400, 1409, 1408, 1442, 1521, 1599, 1743, 1864, 2111, 2343, 2282, 2016, 1820, 1679, 1531, 1423, 1342, 1309, 1265, 1281, 1342, 1399, 1479, 1611, 1759, 1957, 2214, 2135, 1904, 1730, 1571, 1419, 1318, 1241, 1193, 1188, 1218, 1238, 1344, 1398, 1511, 1681, 1837, 2115, 2030, 1844, 1663, 1501, 1384, 1274, 1207, 1150, 1126, 1153, 1192, 1261, 1365, 1469, 1623, 1802, 1994, 2101, 1819, 1620, 1470, 1335, 1237, 1147, 1103, 1091, 1103, 1142, 1219, 1320, 1435, 1609, 1765, 2017, 2009, 1779, 1593, 1431, 1290, 1187, 1124, 1075, 1066, 1083, 1113, 1187, 1305, 1386, 1573, 1766, 1925, 1964, 1770, 1550, 1400, 1268, 1162, 1065, 1047, 1045, 1057, 1093, 1153, 1255, 1360, 1516, 1700, 1899, 1957, 1752, 1546, 1392, 1265, 1144, 1078, 1031, 1024, 1035, 1075, 1142, 1252, 1349, 1522, 1714, 1925, 1989, 1777, 1591, 1404, 1268, 1173, 1091, 1057, 1054, 1054, 1085, 1173, 1262, 1383, 1535, 1744, 1907, 2000, 1820, 1626, 1439, 1316, 1211, 1124, 1093, 1084, 1083, 1111, 1217, 1316, 1439, 1598, 1746, 1958, 2072, 1863, 1677, 1484, 1377, 1241, 1194, 1141, 1124, 1127, 1173, 1244, 1346, 1488, 1620, 1813, 2091, 2135, 1904, 1723, 1549, 1396, 1305, 1222, 1176, 1165, 1173, 1219, 1320, 1401, 1520, 1698, 1851, 2086, 2220, 1995, 1802, 1619, 1440, 1367, 1301, 1247, 1231, 1256, 1316, 1374, 1479, 1576, 1775, 1873, 2197, 2421, 2150, 1909, 1761, 1581, 1490, 1418, 1361, 1363, 1373, 1402, 1485, 1556, 1685, 1849, 2044, 2331, 2665, 2295, 2083, 1845, 1701, 1618, 1519, 1473, 1483, 1473, 1539, 1586, 1701, 1809, 1984, 2237, 2682, 3359, 2352, 2180, 1959, 1832, 1723, 1656, 1590, 1556, 1579, 1595, 1782, 1811, 1903, 2090, 2352, 3387]
                                       }
                                   }, {
                                       "name":    "3264x2448_HZ_100",
                                       "resolution":    "3264x2448",
                                       "illumination":    "HZ",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [4417, 3517, 2971, 2590, 2357, 2197, 1998, 1901, 1833, 1901, 1965, 2130, 2304, 2553, 2946, 3399, 4283, 3721, 3129, 2720, 2397, 2156, 1943, 1777, 1705, 1661, 1688, 1782, 1901, 2111, 2365, 2639, 3009, 3535, 3535, 2922, 2544, 2217, 1959, 1742, 1597, 1496, 1471, 1508, 1597, 1734, 1922, 2150, 2473, 2773, 3415, 3335, 2730, 2373, 2062, 1809, 1586, 1435, 1337, 1318, 1361, 1435, 1565, 1755, 2009, 2296, 2639, 3199, 3156, 2600, 2231, 1901, 1665, 1462, 1315, 1228, 1201, 1228, 1308, 1459, 1634, 1871, 2183, 2517, 2984, 3088, 2481, 2183, 1814, 1565, 1343, 1226, 1128, 1102, 1125, 1214, 1343, 1538, 1791, 2093, 2447, 2946, 2910, 2439, 2093, 1742, 1489, 1284, 1152, 1075, 1069, 1082, 1160, 1289, 1474, 1717, 2021, 2342, 2817, 2984, 2422, 2044, 1721, 1462, 1254, 1120, 1053, 1024, 1059, 1127, 1248, 1429, 1684, 1987, 2357, 2806, 2922, 2422, 2062, 1721, 1462, 1257, 1120, 1053, 1028, 1047, 1127, 1259, 1438, 1680, 2009, 2365, 2806, 2946, 2422, 2074, 1760, 1489, 1284, 1158, 1082, 1047, 1069, 1136, 1279, 1471, 1713, 1998, 2373, 2829, 3009, 2508, 2124, 1800, 1551, 1348, 1193, 1138, 1113, 1127, 1199, 1332, 1538, 1809, 2111, 2397, 2922, 3074, 2581, 2238, 1927, 1653, 1450, 1298, 1201, 1177, 1214, 1296, 1421, 1623, 1881, 2183, 2581, 3061, 3335, 2752, 2406, 2044, 1777, 1569, 1421, 1325, 1305, 1348, 1407, 1531, 1738, 2009, 2326, 2639, 3199, 3625, 2922, 2517, 2203, 1970, 1738, 1572, 1462, 1456, 1474, 1565, 1713, 1943, 2170, 2481, 2829, 3319, 3884, 3129, 2709, 2422, 2143, 1943, 1791, 1668, 1661, 1668, 1768, 1891, 2093, 2342, 2669, 3009, 3644, 4258, 3449, 2971, 2639, 2373, 2176, 1987, 1927, 1881, 1907, 1993, 2130, 2326, 2553, 2898, 3304, 4086, 5936, 3884, 3415, 3009, 2679, 2447, 2304, 2267, 2197, 2197, 2326, 2447, 2669, 2875, 3243, 3644, 5477]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [3773, 3054, 2584, 2368, 2081, 1922, 1814, 1746, 1708, 1768, 1809, 1876, 2033, 2191, 2441, 2915, 3713, 3328, 2724, 2392, 2119, 1902, 1746, 1656, 1578, 1561, 1582, 1614, 1712, 1892, 2027, 2254, 2623, 3122, 3002, 2529, 2205, 1971, 1768, 1607, 1495, 1425, 1389, 1417, 1482, 1582, 1733, 1912, 2125, 2400, 2952, 2903, 2368, 2081, 1814, 1648, 1482, 1367, 1297, 1283, 1295, 1354, 1458, 1593, 1768, 1993, 2283, 2703, 2683, 2240, 1971, 1717, 1534, 1378, 1267, 1184, 1178, 1180, 1251, 1381, 1498, 1668, 1902, 2171, 2584, 2633, 2178, 1902, 1629, 1443, 1283, 1184, 1129, 1092, 1118, 1174, 1262, 1434, 1600, 1837, 2094, 2476, 2511, 2119, 1833, 1607, 1392, 1247, 1122, 1067, 1045, 1061, 1125, 1225, 1381, 1547, 1786, 2039, 2424, 2511, 2106, 1837, 1554, 1362, 1223, 1108, 1047, 1024, 1045, 1102, 1198, 1339, 1534, 1768, 2039, 2400, 2476, 2106, 1814, 1571, 1378, 1210, 1101, 1045, 1024, 1039, 1109, 1196, 1354, 1547, 1773, 2033, 2392, 2556, 2112, 1828, 1582, 1383, 1247, 1134, 1079, 1041, 1067, 1131, 1236, 1381, 1554, 1804, 2081, 2424, 2623, 2164, 1902, 1660, 1434, 1292, 1184, 1111, 1106, 1115, 1159, 1274, 1431, 1600, 1866, 2081, 2476, 2745, 2298, 2010, 1751, 1527, 1383, 1247, 1184, 1159, 1184, 1255, 1378, 1521, 1668, 1933, 2205, 2556, 2892, 2400, 2112, 1837, 1641, 1485, 1354, 1285, 1264, 1280, 1349, 1473, 1614, 1795, 2016, 2352, 2724, 3108, 2575, 2212, 1965, 1768, 1614, 1504, 1440, 1397, 1403, 1485, 1600, 1738, 1960, 2144, 2502, 2940, 3312, 2800, 2416, 2119, 1954, 1773, 1645, 1585, 1568, 1582, 1656, 1733, 1902, 2081, 2352, 2714, 3122, 3753, 3028, 2683, 2336, 2119, 1982, 1823, 1755, 1751, 1764, 1833, 1960, 2094, 2283, 2594, 2915, 3694, 4832, 3408, 3002, 2652, 2384, 2191, 2069, 2004, 1954, 1982, 2045, 2144, 2321, 2584, 2811, 3266, 5113]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [3789, 3068, 2586, 2339, 2090, 1974, 1836, 1716, 1720, 1758, 1831, 1963, 2103, 2278, 2605, 2965, 3769, 3327, 2823, 2452, 2174, 1941, 1758, 1656, 1578, 1568, 1578, 1633, 1745, 1920, 2103, 2346, 2736, 3281, 3136, 2586, 2293, 2013, 1799, 1622, 1504, 1423, 1403, 1432, 1489, 1585, 1776, 1952, 2160, 2522, 2990, 2928, 2452, 2154, 1895, 1637, 1501, 1389, 1317, 1288, 1310, 1373, 1486, 1648, 1831, 2066, 2402, 2834, 2779, 2362, 2042, 1763, 1557, 1409, 1281, 1209, 1177, 1213, 1272, 1387, 1527, 1737, 1990, 2264, 2694, 2715, 2271, 1968, 1691, 1473, 1317, 1197, 1137, 1112, 1143, 1201, 1303, 1464, 1633, 1885, 2180, 2549, 2625, 2221, 1905, 1648, 1426, 1265, 1147, 1079, 1056, 1070, 1143, 1252, 1423, 1600, 1817, 2115, 2605, 2605, 2180, 1895, 1614, 1395, 1228, 1128, 1051, 1034, 1061, 1119, 1230, 1387, 1578, 1803, 2078, 2452, 2596, 2180, 1900, 1589, 1400, 1230, 1112, 1050, 1024, 1045, 1121, 1220, 1373, 1568, 1812, 2115, 2452, 2674, 2221, 1905, 1622, 1432, 1259, 1134, 1072, 1048, 1069, 1121, 1239, 1395, 1592, 1831, 2122, 2452, 2674, 2264, 1947, 1675, 1464, 1307, 1169, 1107, 1090, 1111, 1169, 1288, 1440, 1637, 1855, 2174, 2540, 2801, 2331, 2042, 1737, 1534, 1379, 1241, 1167, 1154, 1167, 1241, 1352, 1504, 1707, 1963, 2250, 2715, 2904, 2469, 2128, 1855, 1640, 1470, 1355, 1268, 1237, 1265, 1334, 1458, 1607, 1831, 2048, 2394, 2801, 3136, 2596, 2221, 1968, 1754, 1589, 1470, 1389, 1373, 1389, 1440, 1589, 1716, 1947, 2201, 2478, 2916, 3407, 2812, 2444, 2122, 1910, 1741, 1603, 1534, 1514, 1534, 1607, 1720, 1880, 2066, 2331, 2664, 3149, 3729, 3068, 2634, 2293, 2072, 1920, 1776, 1687, 1671, 1683, 1763, 1895, 2019, 2242, 2558, 2916, 3634, 5098, 3457, 2965, 2634, 2362, 2115, 1979, 1968, 1920, 1974, 1996, 2122, 2278, 2549, 2823, 3342, 4821]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [3491, 2854, 2439, 2091, 1920, 1816, 1736, 1723, 1639, 1686, 1723, 1845, 1985, 2002, 2365, 2722, 3598, 3000, 2545, 2252, 1985, 1816, 1698, 1552, 1542, 1512, 1532, 1583, 1686, 1802, 2002, 2169, 2545, 3039, 2854, 2365, 2073, 1874, 1650, 1542, 1456, 1412, 1395, 1387, 1465, 1552, 1698, 1845, 2055, 2342, 2786, 2660, 2230, 1968, 1723, 1573, 1429, 1339, 1281, 1288, 1310, 1363, 1456, 1605, 1723, 1920, 2274, 2660, 2464, 2129, 1874, 1639, 1474, 1355, 1254, 1196, 1178, 1202, 1267, 1387, 1474, 1605, 1860, 2129, 2464, 2319, 2002, 1789, 1583, 1387, 1288, 1184, 1133, 1111, 1149, 1196, 1295, 1395, 1583, 1775, 2055, 2365, 2319, 1968, 1723, 1532, 1339, 1221, 1111, 1086, 1056, 1101, 1149, 1234, 1363, 1542, 1736, 1985, 2274, 2210, 1968, 1736, 1502, 1317, 1184, 1111, 1056, 1042, 1061, 1106, 1227, 1355, 1502, 1674, 1920, 2230, 2210, 1936, 1698, 1493, 1317, 1184, 1101, 1042, 1024, 1056, 1106, 1221, 1347, 1532, 1674, 1985, 2252, 2319, 1936, 1723, 1493, 1339, 1184, 1106, 1061, 1033, 1081, 1111, 1209, 1339, 1512, 1698, 1985, 2230, 2252, 1936, 1749, 1552, 1355, 1247, 1149, 1076, 1066, 1076, 1149, 1227, 1395, 1532, 1698, 1920, 2252, 2365, 2055, 1802, 1627, 1421, 1281, 1184, 1144, 1127, 1155, 1202, 1267, 1395, 1583, 1802, 2019, 2365, 2545, 2129, 1920, 1686, 1512, 1387, 1288, 1227, 1202, 1221, 1281, 1379, 1502, 1650, 1874, 2091, 2545, 2820, 2274, 2002, 1775, 1594, 1474, 1379, 1310, 1317, 1324, 1387, 1465, 1605, 1749, 1985, 2252, 2660, 2925, 2439, 2129, 1874, 1723, 1605, 1542, 1447, 1421, 1456, 1474, 1594, 1698, 1920, 2073, 2439, 2854, 3295, 2690, 2274, 2002, 1860, 1749, 1639, 1583, 1583, 1583, 1605, 1736, 1845, 2002, 2210, 2660, 3342, 4327, 3039, 2572, 2210, 1985, 1816, 1789, 1749, 1686, 1749, 1749, 1874, 2055, 2129, 2464, 2925, 4409]
                                       }
                                   }, {
                                       "name":    "3264x2448_HZ_70",
                                       "resolution":    "3264x2448",
                                       "illumination":    "HZ",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [3399, 2886, 2549, 2300, 2144, 2034, 1877, 1800, 1742, 1800, 1848, 1976, 2100, 2270, 2530, 2797, 3305, 2987, 2646, 2393, 2176, 2003, 1838, 1702, 1644, 1606, 1628, 1707, 1801, 1964, 2149, 2328, 2554, 2851, 2904, 2526, 2283, 2050, 1853, 1676, 1553, 1464, 1442, 1475, 1553, 1669, 1820, 1992, 2224, 2408, 2815, 2795, 2404, 2165, 1936, 1735, 1545, 1411, 1322, 1305, 1345, 1411, 1525, 1686, 1889, 2100, 2330, 2691, 2688, 2321, 2063, 1808, 1614, 1437, 1303, 1221, 1196, 1221, 1296, 1434, 1586, 1781, 2022, 2253, 2554, 2658, 2240, 2035, 1739, 1529, 1329, 1220, 1126, 1101, 1123, 1208, 1329, 1504, 1718, 1957, 2211, 2546, 2532, 2216, 1966, 1680, 1462, 1275, 1149, 1074, 1069, 1081, 1157, 1279, 1448, 1657, 1902, 2135, 2458, 2601, 2209, 1927, 1665, 1439, 1247, 1119, 1053, 1024, 1059, 1125, 1241, 1408, 1631, 1877, 2154, 2458, 2554, 2211, 1945, 1666, 1440, 1250, 1119, 1053, 1028, 1047, 1126, 1252, 1417, 1628, 1898, 2163, 2460, 2570, 2209, 1954, 1700, 1464, 1276, 1156, 1082, 1047, 1069, 1134, 1271, 1447, 1657, 1887, 2167, 2476, 2611, 2274, 1993, 1733, 1520, 1336, 1190, 1137, 1112, 1126, 1195, 1321, 1508, 1741, 1981, 2181, 2542, 2647, 2323, 2083, 1842, 1611, 1431, 1290, 1198, 1174, 1210, 1288, 1403, 1583, 1800, 2035, 2323, 2637, 2828, 2446, 2214, 1935, 1717, 1538, 1404, 1315, 1297, 1338, 1391, 1502, 1681, 1904, 2145, 2353, 2722, 3017, 2559, 2287, 2060, 1880, 1686, 1540, 1441, 1436, 1452, 1534, 1663, 1856, 2031, 2257, 2484, 2783, 3166, 2690, 2420, 2226, 2016, 1858, 1732, 1624, 1620, 1624, 1711, 1811, 1972, 2158, 2386, 2595, 2986, 3377, 2893, 2596, 2379, 2191, 2044, 1891, 1846, 1806, 1827, 1897, 2004, 2150, 2307, 2537, 2781, 3252, 4462, 3160, 2897, 2641, 2415, 2249, 2145, 2123, 2065, 2061, 2164, 2249, 2407, 2532, 2763, 2980, 4141]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2948, 2540, 2246, 2119, 1912, 1797, 1716, 1663, 1631, 1682, 1711, 1757, 1872, 1975, 2134, 2436, 2906, 2701, 2334, 2128, 1943, 1784, 1664, 1593, 1528, 1514, 1532, 1555, 1633, 1775, 1865, 2017, 2256, 2551, 2505, 2215, 2002, 1839, 1684, 1553, 1459, 1398, 1365, 1390, 1447, 1531, 1653, 1788, 1936, 2113, 2468, 2464, 2111, 1918, 1718, 1589, 1448, 1347, 1284, 1271, 1282, 1335, 1426, 1539, 1677, 1844, 2042, 2311, 2319, 2025, 1839, 1643, 1494, 1358, 1257, 1179, 1174, 1175, 1241, 1360, 1460, 1599, 1780, 1968, 2242, 2298, 1987, 1790, 1572, 1415, 1271, 1179, 1127, 1091, 1116, 1170, 1251, 1406, 1545, 1733, 1917, 2174, 2213, 1947, 1737, 1557, 1371, 1239, 1120, 1067, 1045, 1061, 1123, 1218, 1360, 1502, 1695, 1879, 2144, 2220, 1941, 1744, 1511, 1344, 1217, 1107, 1047, 1024, 1045, 1101, 1193, 1322, 1493, 1683, 1884, 2131, 2194, 1943, 1725, 1528, 1360, 1205, 1100, 1045, 1024, 1039, 1108, 1191, 1337, 1506, 1689, 1881, 2127, 2257, 1946, 1736, 1537, 1364, 1240, 1132, 1079, 1041, 1067, 1129, 1229, 1362, 1511, 1715, 1920, 2150, 2303, 1985, 1797, 1605, 1410, 1282, 1181, 1110, 1105, 1114, 1156, 1265, 1407, 1550, 1766, 1915, 2185, 2387, 2087, 1884, 1682, 1493, 1367, 1240, 1181, 1157, 1181, 1248, 1362, 1488, 1607, 1817, 2010, 2237, 2482, 2157, 1961, 1750, 1592, 1458, 1340, 1277, 1257, 1272, 1335, 1447, 1567, 1713, 1878, 2117, 2351, 2621, 2278, 2029, 1851, 1698, 1571, 1476, 1420, 1380, 1385, 1458, 1558, 1670, 1846, 1972, 2219, 2492, 2737, 2429, 2177, 1966, 1849, 1704, 1597, 1547, 1533, 1544, 1607, 1668, 1803, 1933, 2124, 2361, 2595, 3010, 2568, 2363, 2125, 1971, 1873, 1744, 1689, 1688, 1697, 1753, 1853, 1950, 2080, 2292, 2481, 2967, 3690, 2804, 2574, 2350, 2167, 2029, 1939, 1891, 1849, 1871, 1918, 1988, 2114, 2295, 2424, 2698, 3886]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2960, 2550, 2248, 2095, 1920, 1842, 1735, 1636, 1642, 1673, 1731, 1832, 1931, 2046, 2263, 2473, 2946, 2700, 2410, 2177, 1989, 1817, 1674, 1593, 1528, 1521, 1528, 1573, 1663, 1799, 1929, 2091, 2343, 2666, 2606, 2260, 2075, 1875, 1711, 1567, 1467, 1396, 1379, 1404, 1453, 1533, 1691, 1822, 1965, 2209, 2496, 2483, 2179, 1980, 1789, 1579, 1466, 1368, 1303, 1276, 1296, 1353, 1452, 1589, 1733, 1906, 2138, 2411, 2394, 2125, 1900, 1684, 1515, 1387, 1270, 1203, 1173, 1207, 1262, 1366, 1487, 1661, 1856, 2045, 2328, 2363, 2065, 1848, 1628, 1443, 1304, 1192, 1135, 1111, 1141, 1196, 1290, 1434, 1575, 1775, 1989, 2231, 2304, 2033, 1800, 1594, 1403, 1256, 1145, 1078, 1056, 1070, 1141, 1244, 1400, 1550, 1722, 1943, 2288, 2296, 2004, 1796, 1566, 1375, 1222, 1126, 1051, 1034, 1061, 1118, 1224, 1368, 1533, 1714, 1917, 2173, 2291, 2006, 1801, 1544, 1381, 1224, 1111, 1050, 1024, 1045, 1120, 1214, 1355, 1525, 1723, 1950, 2175, 2351, 2038, 1804, 1574, 1410, 1252, 1132, 1072, 1048, 1069, 1120, 1232, 1375, 1546, 1739, 1955, 2173, 2344, 2069, 1837, 1619, 1438, 1297, 1166, 1106, 1090, 1110, 1166, 1278, 1416, 1584, 1756, 1993, 2236, 2431, 2115, 1912, 1669, 1500, 1363, 1235, 1164, 1152, 1164, 1235, 1337, 1472, 1642, 1843, 2047, 2363, 2492, 2214, 1974, 1766, 1591, 1444, 1341, 1260, 1231, 1257, 1321, 1433, 1561, 1745, 1905, 2152, 2411, 2643, 2295, 2037, 1853, 1685, 1548, 1444, 1371, 1357, 1371, 1416, 1548, 1650, 1835, 2020, 2200, 2474, 2809, 2439, 2200, 1968, 1810, 1675, 1558, 1499, 1482, 1499, 1562, 1656, 1783, 1920, 2106, 2322, 2615, 2992, 2599, 2324, 2088, 1931, 1818, 1701, 1627, 1615, 1624, 1690, 1796, 1885, 2046, 2262, 2482, 2923, 3876, 2841, 2545, 2336, 2149, 1963, 1860, 1859, 1819, 1864, 1875, 1969, 2078, 2266, 2434, 2755, 3682]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2751, 2390, 2133, 1893, 1777, 1706, 1647, 1642, 1570, 1610, 1636, 1731, 1832, 1821, 2075, 2292, 2826, 2462, 2196, 2015, 1830, 1709, 1621, 1500, 1495, 1470, 1486, 1528, 1610, 1697, 1844, 1948, 2196, 2490, 2394, 2085, 1893, 1755, 1579, 1494, 1423, 1386, 1371, 1362, 1431, 1503, 1622, 1730, 1878, 2067, 2343, 2278, 1999, 1823, 1638, 1521, 1399, 1321, 1269, 1276, 1296, 1343, 1424, 1550, 1638, 1782, 2035, 2278, 2148, 1934, 1756, 1573, 1438, 1336, 1244, 1190, 1174, 1196, 1257, 1366, 1438, 1543, 1744, 1934, 2148, 2049, 1840, 1691, 1530, 1363, 1276, 1179, 1131, 1110, 1147, 1191, 1283, 1370, 1530, 1679, 1884, 2086, 2060, 1819, 1640, 1488, 1321, 1214, 1109, 1085, 1056, 1100, 1146, 1226, 1343, 1497, 1651, 1834, 2024, 1978, 1824, 1655, 1463, 1301, 1179, 1110, 1056, 1042, 1061, 1105, 1221, 1337, 1463, 1600, 1783, 1994, 1980, 1798, 1622, 1456, 1302, 1179, 1100, 1042, 1024, 1056, 1105, 1215, 1330, 1492, 1601, 1840, 2014, 2066, 1797, 1643, 1455, 1322, 1179, 1105, 1061, 1033, 1081, 1110, 1203, 1322, 1472, 1621, 1838, 1994, 2006, 1792, 1663, 1507, 1336, 1239, 1146, 1075, 1066, 1075, 1146, 1220, 1373, 1488, 1618, 1779, 2006, 2086, 1884, 1703, 1570, 1394, 1269, 1179, 1142, 1125, 1152, 1197, 1256, 1370, 1530, 1703, 1854, 2086, 2211, 1934, 1795, 1615, 1473, 1366, 1277, 1220, 1197, 1215, 1270, 1359, 1464, 1583, 1756, 1902, 2211, 2400, 2035, 1851, 1684, 1540, 1441, 1358, 1296, 1304, 1309, 1366, 1433, 1550, 1661, 1837, 2017, 2278, 2448, 2144, 1939, 1755, 1644, 1551, 1502, 1418, 1395, 1427, 1439, 1541, 1622, 1795, 1893, 2144, 2394, 2677, 2308, 2033, 1844, 1747, 1666, 1578, 1533, 1534, 1533, 1547, 1655, 1734, 1844, 1982, 2285, 2711, 3336, 2529, 2237, 1990, 1832, 1706, 1694, 1665, 1611, 1665, 1659, 1756, 1891, 1924, 2152, 2444, 3394]
                                       }
                                   }, {
                                       "name":    "3264x2448_TL84_100",
                                       "resolution":    "3264x2448",
                                       "illumination":    "TL84",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [3642, 2815, 2401, 2160, 1963, 1865, 1745, 1660, 1608, 1702, 1753, 1848, 1935, 2160, 2346, 2739, 3517, 3188, 2567, 2231, 2011, 1815, 1695, 1589, 1553, 1502, 1536, 1602, 1681, 1807, 1973, 2160, 2535, 3023, 2957, 2459, 2105, 1873, 1702, 1565, 1464, 1389, 1357, 1399, 1459, 1559, 1702, 1865, 2052, 2346, 2796, 2668, 2231, 1963, 1760, 1602, 1459, 1339, 1293, 1249, 1281, 1348, 1454, 1589, 1776, 1963, 2207, 2616, 2600, 2127, 1908, 1681, 1502, 1366, 1234, 1181, 1154, 1181, 1249, 1339, 1496, 1653, 1831, 2073, 2504, 2504, 2105, 1831, 1608, 1433, 1293, 1191, 1110, 1092, 1098, 1167, 1277, 1454, 1589, 1783, 2031, 2444, 2430, 2002, 1783, 1565, 1385, 1249, 1125, 1070, 1058, 1067, 1138, 1209, 1385, 1536, 1730, 1963, 2333, 2401, 2002, 1745, 1541, 1366, 1209, 1101, 1050, 1029, 1048, 1098, 1191, 1353, 1524, 1730, 1963, 2243, 2430, 2002, 1753, 1541, 1357, 1209, 1101, 1050, 1024, 1024, 1092, 1198, 1339, 1496, 1709, 1973, 2294, 2430, 2042, 1783, 1577, 1385, 1257, 1135, 1072, 1053, 1053, 1101, 1234, 1357, 1541, 1745, 2002, 2373, 2444, 2052, 1831, 1602, 1409, 1293, 1198, 1122, 1084, 1113, 1161, 1265, 1438, 1608, 1791, 2031, 2401, 2685, 2149, 1908, 1702, 1513, 1371, 1245, 1167, 1138, 1171, 1219, 1339, 1464, 1647, 1882, 2116, 2567, 2739, 2243, 2002, 1776, 1589, 1464, 1353, 1273, 1249, 1265, 1326, 1409, 1565, 1776, 1945, 2207, 2633, 2854, 2444, 2105, 1908, 1723, 1565, 1454, 1389, 1357, 1389, 1454, 1553, 1674, 1882, 2073, 2333, 2854, 3213, 2567, 2256, 2011, 1848, 1681, 1608, 1541, 1518, 1518, 1589, 1660, 1815, 1963, 2207, 2600, 2979, 3547, 2874, 2459, 2207, 2031, 1873, 1730, 1702, 1660, 1674, 1753, 1848, 1963, 2127, 2387, 2685, 3547, 4633, 3238, 2758, 2444, 2256, 2083, 1982, 1882, 1873, 1882, 1973, 2002, 2243, 2430, 2739, 3091, 4740]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [3620, 2844, 2491, 2216, 1966, 1835, 1739, 1699, 1636, 1716, 1721, 1815, 1920, 2110, 2418, 2693, 3506, 3140, 2608, 2269, 2020, 1825, 1699, 1581, 1544, 1516, 1527, 1581, 1652, 1781, 1943, 2172, 2500, 2932, 2945, 2436, 2117, 1893, 1699, 1566, 1459, 1401, 1369, 1404, 1437, 1534, 1656, 1815, 2039, 2325, 2726, 2682, 2254, 1996, 1781, 1593, 1459, 1358, 1291, 1245, 1289, 1338, 1416, 1541, 1708, 1898, 2187, 2578, 2538, 2151, 1882, 1686, 1496, 1369, 1250, 1181, 1162, 1177, 1238, 1330, 1447, 1616, 1820, 2070, 2454, 2519, 2110, 1815, 1612, 1431, 1291, 1177, 1117, 1104, 1110, 1175, 1281, 1410, 1559, 1786, 2002, 2341, 2427, 2045, 1786, 1559, 1383, 1236, 1131, 1060, 1058, 1072, 1129, 1220, 1366, 1530, 1730, 1960, 2223, 2392, 2039, 1767, 1548, 1358, 1216, 1104, 1058, 1024, 1053, 1106, 1196, 1336, 1496, 1699, 1932, 2269, 2392, 2026, 1781, 1534, 1372, 1216, 1099, 1048, 1029, 1048, 1102, 1200, 1336, 1506, 1716, 1932, 2341, 2436, 2051, 1791, 1566, 1398, 1245, 1133, 1072, 1053, 1067, 1119, 1231, 1352, 1534, 1757, 1966, 2308, 2472, 2117, 1877, 1669, 1443, 1302, 1183, 1106, 1091, 1106, 1158, 1274, 1401, 1570, 1771, 2045, 2400, 2578, 2194, 1904, 1699, 1506, 1358, 1241, 1185, 1168, 1168, 1250, 1347, 1459, 1644, 1856, 2117, 2519, 2796, 2308, 2008, 1791, 1596, 1459, 1352, 1284, 1255, 1289, 1341, 1447, 1585, 1739, 1937, 2231, 2578, 2893, 2472, 2144, 1898, 1748, 1574, 1459, 1392, 1360, 1392, 1443, 1548, 1703, 1845, 2077, 2366, 2726, 3201, 2682, 2285, 2064, 1856, 1708, 1608, 1534, 1516, 1544, 1581, 1682, 1800, 2039, 2246, 2538, 2984, 3581, 2971, 2519, 2231, 2045, 1877, 1757, 1690, 1686, 1708, 1771, 1882, 2020, 2172, 2427, 2807, 3506, 4633, 3216, 2844, 2436, 2254, 2097, 1943, 1882, 1856, 1877, 1882, 2039, 2201, 2418, 2682, 3096, 4666]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [3604, 2880, 2479, 2235, 1986, 1868, 1740, 1691, 1682, 1695, 1745, 1812, 1992, 2134, 2416, 2759, 3604, 3140, 2681, 2274, 2061, 1863, 1722, 1616, 1541, 1523, 1527, 1578, 1674, 1817, 2011, 2213, 2527, 3011, 2867, 2442, 2162, 1911, 1731, 1585, 1472, 1403, 1385, 1385, 1453, 1559, 1695, 1868, 2087, 2381, 2867, 2714, 2314, 2017, 1792, 1593, 1462, 1371, 1283, 1268, 1293, 1343, 1449, 1574, 1749, 1951, 2220, 2617, 2566, 2176, 1934, 1700, 1502, 1374, 1256, 1186, 1169, 1180, 1235, 1354, 1485, 1649, 1852, 2114, 2517, 2517, 2127, 1868, 1608, 1446, 1283, 1184, 1112, 1094, 1114, 1178, 1266, 1418, 1601, 1782, 2067, 2364, 2451, 2061, 1797, 1585, 1383, 1235, 1139, 1067, 1043, 1078, 1120, 1240, 1371, 1534, 1745, 1992, 2347, 2389, 2061, 1792, 1541, 1351, 1210, 1110, 1034, 1035, 1052, 1097, 1190, 1346, 1523, 1713, 1969, 2364, 2364, 2061, 1759, 1559, 1351, 1206, 1101, 1043, 1024, 1043, 1099, 1184, 1346, 1499, 1726, 1992, 2290, 2461, 2061, 1817, 1566, 1385, 1235, 1125, 1072, 1043, 1052, 1110, 1217, 1354, 1527, 1726, 1945, 2314, 2488, 2127, 1832, 1605, 1430, 1259, 1155, 1086, 1074, 1086, 1157, 1266, 1403, 1589, 1792, 2035, 2364, 2586, 2184, 1911, 1695, 1482, 1340, 1223, 1163, 1155, 1163, 1219, 1335, 1475, 1620, 1827, 2114, 2507, 2783, 2274, 2035, 1759, 1585, 1430, 1306, 1259, 1226, 1249, 1324, 1424, 1574, 1726, 1945, 2258, 2596, 2867, 2461, 2127, 1873, 1682, 1537, 1437, 1346, 1332, 1377, 1424, 1513, 1678, 1863, 2100, 2322, 2703, 3186, 2627, 2290, 2035, 1812, 1674, 1552, 1495, 1462, 1502, 1563, 1649, 1797, 1986, 2184, 2527, 3011, 3508, 2892, 2461, 2176, 1969, 1817, 1731, 1661, 1645, 1653, 1700, 1827, 1928, 2127, 2416, 2714, 3399, 4813, 3140, 2748, 2442, 2213, 1998, 1884, 1873, 1832, 1827, 1906, 2017, 2155, 2416, 2596, 3111, 4779]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [3252, 2701, 2238, 2018, 1758, 1647, 1575, 1575, 1566, 1549, 1637, 1619, 1758, 2003, 2255, 2490, 3045, 2727, 2387, 2091, 1837, 1706, 1566, 1485, 1455, 1412, 1455, 1477, 1575, 1647, 1791, 1976, 2273, 2701, 2627, 2186, 1873, 1716, 1575, 1477, 1365, 1339, 1315, 1333, 1385, 1440, 1524, 1647, 1848, 2122, 2469, 2448, 2061, 1780, 1610, 1493, 1333, 1291, 1246, 1210, 1236, 1274, 1352, 1433, 1610, 1780, 2003, 2367, 2238, 1923, 1706, 1541, 1391, 1321, 1210, 1175, 1142, 1175, 1215, 1291, 1391, 1516, 1706, 1923, 2255, 2186, 1873, 1666, 1485, 1352, 1230, 1161, 1090, 1098, 1098, 1138, 1230, 1333, 1477, 1619, 1848, 2186, 2186, 1837, 1637, 1433, 1285, 1215, 1111, 1078, 1062, 1066, 1138, 1161, 1291, 1405, 1583, 1825, 2138, 2122, 1825, 1575, 1426, 1291, 1161, 1082, 1062, 1024, 1062, 1090, 1165, 1274, 1412, 1575, 1802, 2076, 2138, 1802, 1583, 1426, 1285, 1156, 1098, 1035, 1028, 1054, 1078, 1161, 1285, 1405, 1601, 1802, 2061, 2122, 1802, 1637, 1412, 1291, 1190, 1107, 1062, 1046, 1046, 1111, 1180, 1268, 1405, 1610, 1837, 2061, 2122, 1837, 1637, 1485, 1339, 1199, 1124, 1066, 1078, 1062, 1111, 1210, 1333, 1440, 1619, 1825, 2203, 2273, 1936, 1676, 1516, 1385, 1246, 1190, 1111, 1111, 1124, 1175, 1252, 1358, 1508, 1676, 1885, 2238, 2273, 2018, 1780, 1566, 1426, 1309, 1230, 1180, 1180, 1190, 1252, 1339, 1433, 1549, 1726, 1936, 2255, 2490, 2122, 1837, 1666, 1508, 1405, 1333, 1274, 1246, 1297, 1321, 1412, 1508, 1666, 1837, 2076, 2406, 2627, 2255, 1962, 1780, 1619, 1516, 1426, 1391, 1365, 1385, 1412, 1508, 1601, 1758, 1923, 2255, 2603, 3045, 2534, 2186, 1910, 1758, 1647, 1524, 1508, 1493, 1485, 1541, 1610, 1716, 1885, 2122, 2367, 3145, 4144, 2701, 2367, 2091, 1837, 1716, 1686, 1575, 1619, 1619, 1666, 1758, 1848, 2018, 2238, 2651, 3972]
                                       }
                                   }, {
                                       "name":    "3264x2448_TL84_70",
                                       "resolution":    "3264x2448",
                                       "illumination":    "TL84",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [2857, 2361, 2103, 1949, 1813, 1748, 1655, 1587, 1542, 1624, 1662, 1733, 1790, 1949, 2060, 2305, 2769, 2599, 2213, 1998, 1852, 1708, 1618, 1533, 1505, 1460, 1490, 1545, 1606, 1701, 1820, 1941, 2188, 2479, 2472, 2159, 1919, 1754, 1625, 1515, 1430, 1364, 1335, 1374, 1426, 1510, 1625, 1747, 1875, 2070, 2351, 2284, 2000, 1818, 1670, 1547, 1427, 1321, 1280, 1239, 1269, 1329, 1422, 1536, 1685, 1818, 1981, 2244, 2254, 1932, 1785, 1611, 1464, 1346, 1225, 1176, 1150, 1176, 1240, 1321, 1459, 1586, 1719, 1888, 2179, 2196, 1926, 1728, 1553, 1406, 1281, 1186, 1108, 1091, 1097, 1163, 1266, 1425, 1536, 1686, 1864, 2148, 2148, 1848, 1692, 1518, 1364, 1241, 1123, 1070, 1058, 1067, 1136, 1202, 1364, 1492, 1646, 1815, 2071, 2132, 1853, 1663, 1499, 1348, 1203, 1100, 1050, 1029, 1048, 1097, 1186, 1336, 1484, 1649, 1820, 2005, 2157, 1854, 1671, 1500, 1340, 1204, 1100, 1050, 1024, 1024, 1091, 1193, 1323, 1459, 1632, 1830, 2048, 2155, 1887, 1696, 1532, 1366, 1250, 1133, 1072, 1053, 1053, 1100, 1228, 1339, 1499, 1663, 1853, 2109, 2160, 1890, 1735, 1552, 1387, 1283, 1194, 1121, 1084, 1112, 1158, 1256, 1414, 1558, 1700, 1873, 2125, 2339, 1963, 1795, 1638, 1480, 1355, 1239, 1164, 1136, 1168, 1213, 1325, 1434, 1588, 1773, 1935, 2246, 2363, 2027, 1866, 1696, 1544, 1439, 1339, 1265, 1242, 1257, 1313, 1387, 1522, 1696, 1817, 1998, 2280, 2427, 2172, 1939, 1800, 1657, 1525, 1429, 1371, 1342, 1371, 1429, 1514, 1612, 1778, 1912, 2083, 2427, 2663, 2245, 2044, 1873, 1755, 1620, 1563, 1506, 1486, 1485, 1546, 1601, 1725, 1832, 2004, 2271, 2488, 2860, 2450, 2183, 2016, 1895, 1776, 1660, 1641, 1605, 1615, 1681, 1754, 1836, 1949, 2124, 2304, 2860, 3550, 2677, 2383, 2181, 2059, 1936, 1863, 1783, 1777, 1783, 1855, 1866, 2049, 2169, 2368, 2567, 3625]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2841, 2383, 2173, 1995, 1816, 1722, 1650, 1621, 1567, 1636, 1634, 1705, 1777, 1909, 2116, 2270, 2761, 2564, 2245, 2029, 1859, 1717, 1622, 1526, 1497, 1473, 1482, 1526, 1580, 1679, 1795, 1951, 2161, 2412, 2463, 2141, 1929, 1771, 1623, 1516, 1426, 1375, 1347, 1378, 1405, 1487, 1584, 1704, 1865, 2053, 2299, 2295, 2019, 1846, 1689, 1539, 1427, 1339, 1278, 1235, 1276, 1320, 1387, 1492, 1625, 1763, 1965, 2215, 2206, 1952, 1763, 1615, 1459, 1349, 1241, 1176, 1158, 1172, 1229, 1312, 1413, 1553, 1709, 1885, 2140, 2208, 1930, 1714, 1556, 1404, 1279, 1173, 1115, 1103, 1108, 1171, 1269, 1384, 1508, 1689, 1840, 2067, 2146, 1884, 1695, 1513, 1362, 1228, 1129, 1060, 1058, 1071, 1127, 1213, 1346, 1486, 1646, 1813, 1983, 2125, 1884, 1682, 1506, 1340, 1210, 1103, 1058, 1024, 1053, 1105, 1191, 1319, 1458, 1622, 1794, 2026, 2127, 1875, 1696, 1494, 1354, 1210, 1098, 1048, 1029, 1048, 1101, 1195, 1320, 1468, 1638, 1795, 2086, 2160, 1894, 1703, 1522, 1378, 1238, 1131, 1072, 1053, 1067, 1118, 1225, 1335, 1493, 1673, 1822, 2057, 2182, 1945, 1775, 1613, 1419, 1292, 1180, 1105, 1091, 1105, 1155, 1265, 1379, 1523, 1682, 1884, 2124, 2254, 2000, 1792, 1635, 1474, 1343, 1235, 1182, 1166, 1165, 1243, 1332, 1430, 1585, 1750, 1936, 2208, 2407, 2081, 1871, 1709, 1551, 1434, 1338, 1276, 1248, 1280, 1328, 1423, 1541, 1663, 1810, 2018, 2237, 2456, 2195, 1972, 1792, 1679, 1534, 1434, 1374, 1345, 1374, 1419, 1510, 1639, 1745, 1915, 2109, 2328, 2654, 2336, 2068, 1918, 1762, 1645, 1563, 1499, 1484, 1509, 1538, 1621, 1712, 1897, 2036, 2222, 2492, 2885, 2524, 2231, 2036, 1907, 1780, 1684, 1630, 1628, 1646, 1697, 1784, 1886, 1987, 2157, 2398, 2830, 3550, 2661, 2450, 2174, 2058, 1948, 1829, 1783, 1762, 1778, 1775, 1898, 2013, 2160, 2323, 2571, 3573]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2830, 2410, 2164, 2011, 1833, 1751, 1651, 1614, 1608, 1617, 1655, 1702, 1838, 1928, 2115, 2320, 2830, 2564, 2301, 2033, 1894, 1750, 1642, 1557, 1494, 1480, 1482, 1523, 1600, 1710, 1852, 1984, 2182, 2470, 2404, 2146, 1967, 1787, 1651, 1533, 1438, 1377, 1362, 1361, 1420, 1510, 1619, 1750, 1904, 2098, 2404, 2319, 2067, 1864, 1699, 1539, 1430, 1351, 1270, 1257, 1280, 1325, 1418, 1522, 1661, 1808, 1991, 2245, 2228, 1972, 1807, 1628, 1464, 1354, 1246, 1181, 1165, 1175, 1226, 1335, 1448, 1582, 1737, 1921, 2190, 2206, 1944, 1760, 1553, 1418, 1271, 1179, 1110, 1093, 1112, 1173, 1255, 1392, 1546, 1685, 1894, 2085, 2165, 1898, 1705, 1537, 1362, 1227, 1137, 1067, 1043, 1077, 1118, 1232, 1351, 1490, 1659, 1840, 2082, 2122, 1903, 1704, 1499, 1334, 1204, 1109, 1034, 1035, 1052, 1096, 1185, 1329, 1483, 1634, 1825, 2102, 2104, 1905, 1676, 1517, 1334, 1201, 1100, 1043, 1024, 1043, 1098, 1179, 1329, 1461, 1647, 1846, 2045, 2180, 1903, 1726, 1522, 1366, 1228, 1123, 1072, 1043, 1052, 1109, 1211, 1336, 1486, 1646, 1805, 2062, 2195, 1953, 1736, 1555, 1406, 1250, 1152, 1085, 1074, 1085, 1154, 1257, 1381, 1540, 1700, 1876, 2096, 2261, 1992, 1798, 1631, 1451, 1326, 1217, 1160, 1153, 1160, 1213, 1321, 1445, 1564, 1725, 1934, 2198, 2397, 2053, 1894, 1681, 1541, 1407, 1294, 1251, 1220, 1242, 1311, 1401, 1530, 1651, 1817, 2040, 2251, 2436, 2186, 1957, 1770, 1620, 1499, 1413, 1330, 1318, 1360, 1401, 1477, 1616, 1761, 1934, 2074, 2311, 2643, 2292, 2073, 1894, 1723, 1614, 1511, 1463, 1434, 1470, 1522, 1591, 1709, 1851, 1985, 2213, 2512, 2832, 2464, 2184, 1990, 1841, 1726, 1661, 1604, 1591, 1596, 1633, 1735, 1806, 1949, 2148, 2326, 2752, 3676, 2604, 2375, 2179, 2023, 1862, 1777, 1775, 1741, 1734, 1796, 1879, 1975, 2158, 2256, 2582, 3653]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2584, 2276, 1975, 1834, 1641, 1560, 1506, 1511, 1505, 1488, 1561, 1536, 1641, 1822, 1988, 2119, 2439, 2263, 2074, 1885, 1706, 1614, 1504, 1439, 1416, 1378, 1416, 1432, 1512, 1563, 1667, 1793, 1987, 2244, 2224, 1943, 1727, 1619, 1513, 1435, 1339, 1318, 1296, 1312, 1357, 1402, 1467, 1560, 1706, 1893, 2106, 2115, 1863, 1664, 1539, 1449, 1310, 1276, 1235, 1202, 1226, 1260, 1328, 1394, 1539, 1664, 1816, 2053, 1972, 1764, 1611, 1486, 1362, 1304, 1202, 1170, 1139, 1170, 1207, 1276, 1362, 1464, 1611, 1764, 1985, 1944, 1732, 1584, 1441, 1330, 1221, 1157, 1089, 1097, 1097, 1135, 1221, 1312, 1434, 1543, 1712, 1944, 1953, 1709, 1564, 1398, 1270, 1208, 1109, 1077, 1062, 1066, 1136, 1156, 1275, 1372, 1516, 1699, 1915, 1907, 1703, 1512, 1393, 1277, 1157, 1081, 1062, 1024, 1062, 1089, 1161, 1261, 1381, 1512, 1683, 1870, 1922, 1685, 1520, 1394, 1272, 1152, 1097, 1035, 1028, 1054, 1077, 1157, 1272, 1375, 1536, 1685, 1860, 1907, 1683, 1567, 1381, 1277, 1185, 1106, 1062, 1046, 1046, 1110, 1175, 1255, 1374, 1543, 1713, 1858, 1902, 1709, 1564, 1445, 1321, 1193, 1122, 1066, 1078, 1062, 1109, 1203, 1315, 1404, 1548, 1699, 1967, 2013, 1785, 1593, 1469, 1361, 1236, 1185, 1109, 1110, 1122, 1171, 1242, 1336, 1462, 1593, 1743, 1985, 1999, 1842, 1675, 1508, 1394, 1293, 1221, 1175, 1175, 1185, 1242, 1321, 1401, 1493, 1628, 1775, 1985, 2148, 1912, 1712, 1588, 1462, 1377, 1315, 1262, 1236, 1284, 1304, 1384, 1462, 1588, 1712, 1875, 2083, 2224, 1998, 1801, 1674, 1552, 1471, 1395, 1366, 1343, 1361, 1382, 1463, 1536, 1655, 1769, 1998, 2206, 2495, 2188, 1962, 1767, 1659, 1576, 1474, 1464, 1452, 1443, 1490, 1543, 1623, 1746, 1910, 2059, 2567, 3208, 2276, 2076, 1893, 1707, 1620, 1604, 1511, 1552, 1550, 1586, 1656, 1717, 1834, 1975, 2239, 3088]
                                       }
                                   }, {
                                       "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":    8,
                               "y_alpha_curve":    [0, 64, 128, 192, 256, 320, 384, 448, 512, 576, 640, 704, 768, 832, 896, 960, 1024],
                               "gain_alphaScale_curve":    {
                                   "gain":    [1, 2, 4, 8, 16, 32, 64, 128, 256],
                                   "scale":    [1, 0.8, 0.8, 0.9, 1, 1, 1, 1, 1]
                               }
                           },
                           "manualPara":    {
                               "ccMatrix":    [1, 0, 0, 0, 1, 0, 0, 0, 1],
                               "ccOffsets":    [0, 0, 0]
                           },
                           "TuningPara":    {
                               "damp_enable":    1,
                               "illu_estim":    {
                                   "interp_enable":    0,
                                   "default_illu":    "A",
                                   "weightRB":    [1, 1],
                                   "prob_limit":    0.2,
                                   "frame_no":    8
                               },
                               "aCcmCof":    [{
                                       "name":    "A",
                                       "awbGain":    [1.3452, 2.4161],
                                       "minDist":    0.05,
                                       "matrixUsed":    ["A_100", "A_74"],
                                       "matrixUsed_len":    2,
                                       "gain_sat_curve":    {
                                           "gains":    [1, 4, 6, 16],
                                           "sat":    [90, 88, 80, 50]
                                       }
                                   }, {
                                       "name":    "CWF",
                                       "awbGain":    [1.8123, 2.0694],
                                       "minDist":    0.05,
                                       "matrixUsed":    ["CWF_100", "CWF_74"],
                                       "matrixUsed_len":    2,
                                       "gain_sat_curve":    {
                                           "gains":    [1, 4, 6, 16],
                                           "sat":    [90, 88, 80, 50]
                                       }
                                   }, {
                                       "name":    "D50",
                                       "awbGain":    [2.0413, 1.565],
                                       "minDist":    0.05,
                                       "matrixUsed":    ["D50_100", "D50_74"],
                                       "matrixUsed_len":    2,
                                       "gain_sat_curve":    {
                                           "gains":    [1, 4, 6, 16],
                                           "sat":    [90, 88, 80, 50]
                                       }
                                   }, {
                                       "name":    "D65",
                                       "awbGain":    [2.204, 1.4498],
                                       "minDist":    0.05,
                                       "matrixUsed":    ["D65_100", "D65_74"],
                                       "matrixUsed_len":    2,
                                       "gain_sat_curve":    {
                                           "gains":    [1, 4, 6, 16],
                                           "sat":    [90, 88, 80, 50]
                                       }
                                   }, {
                                       "name":    "D75",
                                       "awbGain":    [2.3379, 1.3483],
                                       "minDist":    0.05,
                                       "matrixUsed":    ["D75_100", "D75_74"],
                                       "matrixUsed_len":    2,
                                       "gain_sat_curve":    {
                                           "gains":    [1, 4, 6, 16],
                                           "sat":    [90, 88, 80, 50]
                                       }
                                   }, {
                                       "name":    "HZ",
                                       "awbGain":    [1.1019, 2.9858],
                                       "minDist":    0.05,
                                       "matrixUsed":    ["HZ_100", "HZ_74"],
                                       "matrixUsed_len":    2,
                                       "gain_sat_curve":    {
                                           "gains":    [1, 4, 6, 16],
                                           "sat":    [90, 88, 80, 50]
                                       }
                                   }, {
                                       "name":    "TL84",
                                       "awbGain":    [1.7523, 2.1252],
                                       "minDist":    0.05,
                                       "matrixUsed":    ["TL84_100", "TL84_74"],
                                       "matrixUsed_len":    2,
                                       "gain_sat_curve":    {
                                           "gains":    [1, 4, 6, 16],
                                           "sat":    [90, 88, 80, 50]
                                       }
                                   }],
                               "aCcmCof_len":    7,
                               "matrixAll":    [{
                                       "name":    "A_100",
                                       "illumination":    "A",
                                       "saturation":    100,
                                       "ccMatrix":    [1.6891, -0.5521, -0.137, -0.3788, 1.5903, -0.2116, -0.1644, -0.948, 2.1124],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "A_74",
                                       "illumination":    "A",
                                       "saturation":    74,
                                       "ccMatrix":    [1.3186, -0.2377, -0.081, -0.2115, 1.3487, -0.1372, -0.0538, -0.529, 1.5828],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "CWF_100",
                                       "illumination":    "CWF",
                                       "saturation":    100,
                                       "ccMatrix":    [2.2712, -1.2488, -0.0224, -0.4072, 1.5721, -0.1649, -0.107, -0.5879, 1.6949],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "CWF_74",
                                       "illumination":    "CWF",
                                       "saturation":    74,
                                       "ccMatrix":    [1.792, -0.7994, 0.0074, -0.1898, 1.2888, -0.0989, 0.0311, -0.3086, 1.2775],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "D50_100",
                                       "illumination":    "D50",
                                       "saturation":    100,
                                       "ccMatrix":    [1.655, -0.9098, 0.2548, -0.2647, 1.2982, -0.0335, 0.16, -0.7713, 1.6113],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "D50_74",
                                       "illumination":    "D50",
                                       "saturation":    74,
                                       "ccMatrix":    [1.5565, -0.5177, -0.0389, -0.0858, 1.3389, -0.2531, 0.0647, -0.2656, 1.201],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "D65_100",
                                       "illumination":    "D65",
                                       "saturation":    100,
                                       "ccMatrix":    [2.0667, -1.0499, -0.0168, -0.2201, 1.594, -0.3739, -0.0537, -0.4778, 1.5315],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "D65_74",
                                       "illumination":    "D65",
                                       "saturation":    74,
                                       "ccMatrix":    [1.6549, -0.6301, -0.0248, -0.0372, 1.327, -0.2899, 0.0849, -0.2052, 1.1202],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "D75_100",
                                       "illumination":    "D75",
                                       "saturation":    100,
                                       "ccMatrix":    [2.155, -1.122, -0.033, -0.2227, 1.6076, -0.3849, -0.0495, -0.4337, 1.4832],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "D75_74",
                                       "illumination":    "D75",
                                       "saturation":    74,
                                       "ccMatrix":    [1.7269, -0.6857, -0.0411, -0.0325, 1.3349, -0.3024, 0.0946, -0.1747, 1.0801],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "HZ_100",
                                       "illumination":    "HZ",
                                       "saturation":    100,
                                       "ccMatrix":    [1.5916, -0.3465, -0.2451, -0.4361, 1.5559, -0.1198, -0.4226, -1.2969, 2.7195],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "HZ_74",
                                       "illumination":    "HZ",
                                       "saturation":    74,
                                       "ccMatrix":    [1.2224, -0.0853, -0.1371, -0.2778, 1.3236, -0.0457, -0.2688, -0.787, 2.0558],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "TL84_100",
                                       "illumination":    "TL84",
                                       "saturation":    100,
                                       "ccMatrix":    [1.935, -0.8598, -0.0752, -0.3278, 1.5314, -0.2036, -0.1164, -0.5772, 1.6936],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "TL84_74",
                                       "illumination":    "TL84",
                                       "saturation":    74,
                                       "ccMatrix":    [1.5289, -0.4872, -0.0417, -0.1454, 1.283, -0.1376, 0.01, -0.2765, 1.2665],
                                       "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":    [440, 385, 336, 292, 226, 191, 187, 202, 220, 235, 241, 238, 224, 203, 176, 155]
                                           }, {
                                               "iso":    100,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [747, 638, 535, 436, 251, 141, 120, 135, 114, 187, 226, 237, 222, 181, 112, 100]
                                           }, {
                                               "iso":    200,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [1233, 1094, 966, 850, 657, 526, 459, 448, 464, 483, 490, 477, 440, 383, 313, 262]
                                           }, {
                                               "iso":    400,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [1076, 1002, 936, 877, 783, 717, 674, 647, 628, 612, 593, 567, 534, 494, 452, 416]
                                           }, {
                                               "iso":    800,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [2708, 2445, 2204, 1986, 1624, 1366, 1209, 1136, 1113, 1104, 1082, 1031, 942, 813, 655, 512]
                                           }, {
                                               "iso":    1600,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }, {
                                               "iso":    3200,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }, {
                                               "iso":    6400,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }, {
                                               "iso":    12800,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }, {
                                               "iso":    25600,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }, {
                                               "iso":    51200,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }, {
                                               "iso":    102400,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }, {
                                               "iso":    204800,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }],
                                       "Calib_ISO_len":    13
                                   }, {
                                       "SNR_Mode":    "HSNR",
                                       "Sensor_Mode":    "hcg",
                                       "Calib_ISO":    [{
                                               "iso":    50,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [329, 292, 258, 227, 176, 141, 124, 121, 127, 133, 137, 135, 127, 113, 94, 75]
                                           }, {
                                               "iso":    100,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [747, 638, 535, 436, 251, 141, 120, 135, 114, 187, 226, 237, 222, 181, 112, 100]
                                           }, {
                                               "iso":    200,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [835, 721, 614, 514, 336, 194, 120, 147, 207, 256, 284, 288, 267, 221, 148, 120]
                                           }, {
                                               "iso":    400,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [789, 703, 625, 553, 435, 354, 311, 301, 308, 318, 321, 312, 288, 249, 198, 147]
                                           }, {
                                               "iso":    800,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [761, 707, 658, 614, 542, 490, 454, 430, 414, 401, 386, 366, 341, 309, 273, 238]
                                           }, {
                                               "iso":    1600,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }, {
                                               "iso":    3200,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }, {
                                               "iso":    6400,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }, {
                                               "iso":    12800,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }, {
                                               "iso":    25600,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }, {
                                               "iso":    51200,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }, {
                                               "iso":    102400,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }, {
                                               "iso":    204800,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }],
                                       "Calib_ISO_len":    13
                                   }],
                               "Setting_len":    2
                           },
                           "Bayernr2D":    {
                               "enable":    1,
                               "Setting":    [{
                                       "SNR_Mode":    "LSNR",
                                       "Sensor_Mode":    "lcg",
                                       "Tuning_ISO":    [{
                                               "iso":    50,
                                               "gauss_guide":    1,
                                               "filter_strength":    15,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    100,
                                               "gauss_guide":    1,
                                               "filter_strength":    15,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    200,
                                               "gauss_guide":    1,
                                               "filter_strength":    15,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    400,
                                               "gauss_guide":    1,
                                               "filter_strength":    15,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    800,
                                               "gauss_guide":    1,
                                               "filter_strength":    15,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    1600,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.8,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    3200,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.7,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    6400,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.7,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    12800,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.7,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    25600,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.7,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    51200,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.7,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    102400,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.7,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    204800,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.7,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }],
                                       "Tuning_ISO_len":    13
                                   }, {
                                       "SNR_Mode":    "HSNR",
                                       "Sensor_Mode":    "hcg",
                                       "Tuning_ISO":    [{
                                               "iso":    50,
                                               "gauss_guide":    0,
                                               "filter_strength":    4,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    100,
                                               "gauss_guide":    0,
                                               "filter_strength":    4,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    200,
                                               "gauss_guide":    0,
                                               "filter_strength":    4,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    400,
                                               "gauss_guide":    0,
                                               "filter_strength":    4,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    800,
                                               "gauss_guide":    0,
                                               "filter_strength":    4,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    1600,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.7,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    3200,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.7,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    6400,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.7,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    12800,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.7,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    25600,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.7,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    51200,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.7,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    102400,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.7,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    204800,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.7,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }],
                                       "Tuning_ISO_len":    13
                                   }],
                               "Setting_len":    2
                           },
                           "Bayernr3D":    {
                               "enable":    0,
                               "Setting":    [{
                                       "SNR_Mode":    "LSNR",
                                       "Sensor_Mode":    "lcg",
                                       "Tuning_ISO":    [{
                                               "iso":    50,
                                               "filter_strength":    0.5,
                                               "sp_filter_strength":    0.55,
                                               "lo_clipwgt":    0.9,
                                               "hi_clipwgt":    0.88,
                                               "softwgt":    0
                                           }, {
                                               "iso":    100,
                                               "filter_strength":    0.5,
                                               "sp_filter_strength":    0.55,
                                               "lo_clipwgt":    0.9,
                                               "hi_clipwgt":    0.88,
                                               "softwgt":    0
                                           }, {
                                               "iso":    200,
                                               "filter_strength":    0.5,
                                               "sp_filter_strength":    0.6,
                                               "lo_clipwgt":    0.9,
                                               "hi_clipwgt":    0.88,
                                               "softwgt":    0
                                           }, {
                                               "iso":    400,
                                               "filter_strength":    0.5,
                                               "sp_filter_strength":    0.6,
                                               "lo_clipwgt":    0.9,
                                               "hi_clipwgt":    0.88,
                                               "softwgt":    0
                                           }, {
                                               "iso":    800,
                                               "filter_strength":    0.5,
                                               "sp_filter_strength":    0.65,
                                               "lo_clipwgt":    0.9,
                                               "hi_clipwgt":    0.88,
                                               "softwgt":    0
                                           }, {
                                               "iso":    1600,
                                               "filter_strength":    0.1,
                                               "sp_filter_strength":    0.65,
                                               "lo_clipwgt":    0.9,
                                               "hi_clipwgt":    0.9,
                                               "softwgt":    0
                                           }, {
                                               "iso":    3200,
                                               "filter_strength":    0.1,
                                               "sp_filter_strength":    0.65,
                                               "lo_clipwgt":    0.5,
                                               "hi_clipwgt":    0.5,
                                               "softwgt":    0
                                           }, {
                                               "iso":    6400,
                                               "filter_strength":    0.5,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.5,
                                               "hi_clipwgt":    0.5,
                                               "softwgt":    0
                                           }, {
                                               "iso":    12800,
                                               "filter_strength":    0.5,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.5,
                                               "hi_clipwgt":    0.5,
                                               "softwgt":    0
                                           }, {
                                               "iso":    25600,
                                               "filter_strength":    0.6,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.5,
                                               "hi_clipwgt":    0.5,
                                               "softwgt":    0
                                           }, {
                                               "iso":    51200,
                                               "filter_strength":    0.6,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.5,
                                               "hi_clipwgt":    0.5,
                                               "softwgt":    0
                                           }, {
                                               "iso":    102400,
                                               "filter_strength":    0.7,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.5,
                                               "hi_clipwgt":    0.5,
                                               "softwgt":    0
                                           }, {
                                               "iso":    204800,
                                               "filter_strength":    0.7,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.5,
                                               "hi_clipwgt":    0.5,
                                               "softwgt":    0
                                           }],
                                       "Tuning_ISO_len":    13
                                   }, {
                                       "SNR_Mode":    "HSNR",
                                       "Sensor_Mode":    "hcg",
                                       "Tuning_ISO":    [{
                                               "iso":    50,
                                               "filter_strength":    0.1,
                                               "sp_filter_strength":    0.55,
                                               "lo_clipwgt":    0.9,
                                               "hi_clipwgt":    0.9,
                                               "softwgt":    0
                                           }, {
                                               "iso":    100,
                                               "filter_strength":    0.1,
                                               "sp_filter_strength":    0.55,
                                               "lo_clipwgt":    0.9,
                                               "hi_clipwgt":    0.9,
                                               "softwgt":    0
                                           }, {
                                               "iso":    200,
                                               "filter_strength":    0.1,
                                               "sp_filter_strength":    0.6,
                                               "lo_clipwgt":    0.9,
                                               "hi_clipwgt":    0.9,
                                               "softwgt":    0
                                           }, {
                                               "iso":    400,
                                               "filter_strength":    0.1,
                                               "sp_filter_strength":    0.6,
                                               "lo_clipwgt":    0.9,
                                               "hi_clipwgt":    0.9,
                                               "softwgt":    0
                                           }, {
                                               "iso":    800,
                                               "filter_strength":    0.1,
                                               "sp_filter_strength":    0.65,
                                               "lo_clipwgt":    0.9,
                                               "hi_clipwgt":    0.9,
                                               "softwgt":    0
                                           }, {
                                               "iso":    1600,
                                               "filter_strength":    0.1,
                                               "sp_filter_strength":    0.65,
                                               "lo_clipwgt":    0.9,
                                               "hi_clipwgt":    0.9,
                                               "softwgt":    0
                                           }, {
                                               "iso":    3200,
                                               "filter_strength":    0.1,
                                               "sp_filter_strength":    0.65,
                                               "lo_clipwgt":    0.5,
                                               "hi_clipwgt":    0.5,
                                               "softwgt":    0
                                           }, {
                                               "iso":    6400,
                                               "filter_strength":    0.5,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.5,
                                               "hi_clipwgt":    0.5,
                                               "softwgt":    0
                                           }, {
                                               "iso":    12800,
                                               "filter_strength":    0.5,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.5,
                                               "hi_clipwgt":    0.5,
                                               "softwgt":    0
                                           }, {
                                               "iso":    25600,
                                               "filter_strength":    0.6,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.5,
                                               "hi_clipwgt":    0.5,
                                               "softwgt":    0
                                           }, {
                                               "iso":    51200,
                                               "filter_strength":    0.6,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.5,
                                               "hi_clipwgt":    0.5,
                                               "softwgt":    0
                                           }, {
                                               "iso":    102400,
                                               "filter_strength":    0.7,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.5,
                                               "hi_clipwgt":    0.5,
                                               "softwgt":    0
                                           }, {
                                               "iso":    204800,
                                               "filter_strength":    0.7,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.5,
                                               "hi_clipwgt":    0.5,
                                               "softwgt":    0
                                           }],
                                       "Tuning_ISO_len":    13
                                   }],
                               "Setting_len":    2
                           }
                       },
                       "cnr_v1":    {
                           "Version":    "",
                           "TuningPara":    {
                               "enable":    1,
                               "Kernel_Coeff":    {
                                   "kernel_5x5":    [1, 0.8825, 0.7788, 0.6065, 0.3679]
                               },
                               "Setting":    [{
                                       "SNR_Mode":    "LSNR",
                                       "Sensor_Mode":    "lcg",
                                       "Tuning_ISO":    [{
                                               "iso":    50,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    30,
                                               "color_sat_adj_alpha":    0.4,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    50,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    30,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    40,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    0.5
                                           }, {
                                               "iso":    100,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    30,
                                               "color_sat_adj_alpha":    0.4,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    50,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    30,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    40,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    0.5
                                           }, {
                                               "iso":    200,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    30,
                                               "color_sat_adj_alpha":    0.4,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    50,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    30,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    40,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    0.5
                                           }, {
                                               "iso":    400,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    30,
                                               "color_sat_adj_alpha":    0.4,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    50,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    30,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    40,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    0.5
                                           }, {
                                               "iso":    800,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    30,
                                               "color_sat_adj_alpha":    0.4,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    50,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    30,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    40,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    0.5
                                           }, {
                                               "iso":    1600,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    10.2,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    4,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    4,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    3200,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    10.2,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    4,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    4,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    6400,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    10.2,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    4,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    4,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    12800,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    10.2,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    4,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    4,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    25600,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    10.2,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    4,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    4,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    51200,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    10.2,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    4,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    4,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    102400,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    10.2,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    4,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    4,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    204800,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    10.2,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    4,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    4,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    1
                                           }],
                                       "Tuning_ISO_len":    13
                                   }, {
                                       "SNR_Mode":    "HSNR",
                                       "Sensor_Mode":    "hcg",
                                       "Tuning_ISO":    [{
                                               "iso":    50,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    10.2,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    4,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    4,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    100,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    10.2,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    4,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    4,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    200,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    10.2,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    4,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    4,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    400,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    10.2,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    4,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    4,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    800,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    10.2,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    4,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    4,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    1600,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    10.2,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    4,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    4,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    3200,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    10.2,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    4,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    4,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    6400,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    10.2,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    4,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    4,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    12800,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    10.2,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    4,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    4,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    25600,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    10.2,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    4,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    4,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    51200,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    10.2,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    4,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    4,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    102400,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    10.2,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    4,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    4,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    204800,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    10.2,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    4,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    4,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    1
                                           }],
                                       "Tuning_ISO_len":    13
                                   }],
                               "Setting_len":    2
                           }
                       },
                       "ynr_v2":    {
                           "Version":    "",
                           "CalibPara":    {
                               "Setting":    [{
                                       "SNR_Mode":    "LSNR",
                                       "Sensor_Mode":    "lcg",
                                       "Calib_ISO":    [{
                                               "iso":    50,
                                               "sigma_curve":    [5.26063e-13, -4.31051e-09, 6.01295e-06, 0.00733553, 30.2968],
                                               "ynr_ci_l":    0.35887,
                                               "ynr_ci_h":    0.218965
                                           }, {
                                               "iso":    100,
                                               "sigma_curve":    [-8.51864e-13, 8.4477e-09, -3.1173e-05, 0.0431732, 20.4729],
                                               "ynr_ci_l":    0.266861,
                                               "ynr_ci_h":    0.176977
                                           }, {
                                               "iso":    200,
                                               "sigma_curve":    [-1.91013e-12, 1.68572e-08, -5.42127e-05, 0.0644649, 50.8293],
                                               "ynr_ci_l":    0.264338,
                                               "ynr_ci_h":    0.176603
                                           }, {
                                               "iso":    400,
                                               "sigma_curve":    [-1.39053e-12, 1.37088e-08, -5.30971e-05, 0.0730568, 77.3162],
                                               "ynr_ci_l":    0.260614,
                                               "ynr_ci_h":    0.169545
                                           }, {
                                               "iso":    800,
                                               "sigma_curve":    [-7.56352e-13, 8.08215e-09, -4.17244e-05, 0.0722224, 122.519],
                                               "ynr_ci_l":    0.292136,
                                               "ynr_ci_h":    0.186536
                                           }, {
                                               "iso":    1600,
                                               "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":    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":    [-3.79338e-13, 4.20139e-09, -1.65728e-05, 0.0227778, 17.7731],
                                               "ynr_ci_l":    0.264599,
                                               "ynr_ci_h":    0.186359
                                           }, {
                                               "iso":    100,
                                               "sigma_curve":    [-8.51864e-13, 8.4477e-09, -3.1173e-05, 0.0431732, 20.4729],
                                               "ynr_ci_l":    0.266861,
                                               "ynr_ci_h":    0.176977
                                           }, {
                                               "iso":    200,
                                               "sigma_curve":    [-1.01774e-12, 1.07758e-08, -4.22101e-05, 0.0597135, 28.7999],
                                               "ynr_ci_l":    0.259483,
                                               "ynr_ci_h":    0.166846
                                           }, {
                                               "iso":    400,
                                               "sigma_curve":    [-1.32816e-12, 1.29829e-08, -4.53493e-05, 0.0511179, 55.0177],
                                               "ynr_ci_l":    0.254945,
                                               "ynr_ci_h":    0.156095
                                           }, {
                                               "iso":    800,
                                               "sigma_curve":    [-1.76225e-12, 1.64389e-08, -5.4805e-05, 0.0586055, 72.3208],
                                               "ynr_ci_l":    0.267207,
                                               "ynr_ci_h":    0.157733
                                           }, {
                                               "iso":    1600,
                                               "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":    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":    20,
                                               "low_bf_1":    20,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.1,
                                               "low_dist_adj":    8,
                                               "low_weight":    1,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.9,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    20,
                                               "high_weight":    1,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1.05, 1.1, 1.1, 1.2, 1.4, 1.6, 1.8, 2, 2.2, 2.4, 2.8, 3, 3.5, 4]
                                           }, {
                                               "iso":    100,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    20,
                                               "low_bf_1":    20,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.1,
                                               "low_dist_adj":    8,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.9,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    20,
                                               "high_weight":    1,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1.05, 1.1, 1.1, 1.2, 1.4, 1.6, 1.8, 2, 2.2, 2.4, 2.8, 3, 3.5, 4]
                                           }, {
                                               "iso":    200,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    20,
                                               "low_bf_1":    20,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.1,
                                               "low_dist_adj":    8,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.9,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    20,
                                               "high_weight":    1,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1.05, 1.1, 1.1, 1.2, 1.4, 1.6, 1.8, 2, 2.2, 2.4, 2.8, 3, 3.5, 4]
                                           }, {
                                               "iso":    400,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    20,
                                               "low_bf_1":    20,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.1,
                                               "low_dist_adj":    8,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.9,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    20,
                                               "high_weight":    1,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1.05, 1.1, 1.1, 1.2, 1.4, 1.6, 1.8, 2, 2.2, 2.4, 2.8, 3, 3.5, 4]
                                           }, {
                                               "iso":    800,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    20,
                                               "low_bf_1":    20,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.1,
                                               "low_dist_adj":    8,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.9,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    20,
                                               "high_weight":    1,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1.05, 1.1, 1.1, 1.2, 1.4, 1.6, 1.8, 2, 2.2, 2.4, 2.8, 3, 3.5, 4]
                                           }, {
                                               "iso":    1600,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    5,
                                               "low_bf_1":    5,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.5,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.78,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1.05, 1.1, 1.1, 1.2, 1.4, 1.6, 1.8, 2, 2.2, 2.4, 2.8, 3.5]
                                           }, {
                                               "iso":    3200,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    0.95,
                                               "low_bf_1":    0.5,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.2,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.78,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    6400,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    1,
                                               "low_bf_1":    0.5,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.2,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.78,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    12800,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    1.1,
                                               "low_bf_1":    0.5,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.2,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.78,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    25600,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    1.1,
                                               "low_bf_1":    0.5,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.2,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.78,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    51200,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    1.1,
                                               "low_bf_1":    0.5,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.2,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.78,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    102400,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    1.1,
                                               "low_bf_1":    0.5,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.2,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.78,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    204800,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    1.1,
                                               "low_bf_1":    0.5,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.2,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.78,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }],
                                       "Tuning_ISO_len":    13
                                   }, {
                                       "SNR_Mode":    "HSNR",
                                       "Sensor_Mode":    "hcg",
                                       "Tuning_ISO":    [{
                                               "iso":    50,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    0.5,
                                               "low_bf_1":    0.6,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.5,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.2,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.78,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    100,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    0.5,
                                               "low_bf_1":    0.6,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.2,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.78,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    200,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    0.5,
                                               "low_bf_1":    0.6,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.2,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.78,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    400,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    0.5,
                                               "low_bf_1":    0.6,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.2,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.78,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    800,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    0.5,
                                               "low_bf_1":    0.6,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.2,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.78,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    1600,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    0.5,
                                               "low_bf_1":    0.6,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.2,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.78,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    3200,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    0.5,
                                               "low_bf_1":    0.6,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.2,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.78,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    6400,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    0.5,
                                               "low_bf_1":    0.6,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.2,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.78,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    12800,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    0.5,
                                               "low_bf_1":    0.6,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.2,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.78,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    25600,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    0.5,
                                               "low_bf_1":    0.6,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.2,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.78,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    51200,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    0.5,
                                               "low_bf_1":    0.6,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.2,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.78,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    102400,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    0.5,
                                               "low_bf_1":    0.6,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.2,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.78,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    204800,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    0.5,
                                               "low_bf_1":    0.6,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.2,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.78,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }],
                                       "Tuning_ISO_len":    13
                                   }],
                               "Setting_len":    2
                           }
                       },
                       "sharp_v3":    {
                           "Version":    "",
                           "TuningPara":    {
                               "enable":    1,
                               "Setting":    [{
                                       "SNR_Mode":    "LSNR",
                                       "Sensor_Mode":    "lcg",
                                       "Tuning_ISO":    [{
                                               "iso":    50,
                                               "pbf_gain":    0.8,
                                               "pbf_ratio":    0.5,
                                               "pbf_add":    1,
                                               "gaus_ratio":    0.5,
                                               "sharp_ratio":    10,
                                               "bf_gain":    2,
                                               "bf_ratio":    5,
                                               "bf_add":    32,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [12, 16, 20, 24, 28, 24, 20, 20],
                                                   "hf_clip":    [64, 96, 128, 160, 192, 160, 128, 0],
                                                   "local_sharp_strength":    [512, 512, 512, 512, 512, 512, 512, 512]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    100,
                                               "pbf_gain":    0.8,
                                               "pbf_ratio":    0.5,
                                               "pbf_add":    1,
                                               "gaus_ratio":    0.5,
                                               "sharp_ratio":    10,
                                               "bf_gain":    3,
                                               "bf_ratio":    5,
                                               "bf_add":    32,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [24, 32, 40, 48, 56, 48, 48, 40],
                                                   "hf_clip":    [64, 96, 128, 160, 192, 160, 128, 0],
                                                   "local_sharp_strength":    [512, 512, 512, 512, 512, 512, 512, 512]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    200,
                                               "pbf_gain":    0.8,
                                               "pbf_ratio":    0.5,
                                               "pbf_add":    1,
                                               "gaus_ratio":    0.5,
                                               "sharp_ratio":    10,
                                               "bf_gain":    3,
                                               "bf_ratio":    5,
                                               "bf_add":    32,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [24, 32, 40, 48, 56, 48, 48, 40],
                                                   "hf_clip":    [64, 96, 128, 160, 192, 160, 128, 0],
                                                   "local_sharp_strength":    [512, 512, 512, 512, 512, 512, 512, 512]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    400,
                                               "pbf_gain":    0.8,
                                               "pbf_ratio":    0.5,
                                               "pbf_add":    1,
                                               "gaus_ratio":    0.5,
                                               "sharp_ratio":    10,
                                               "bf_gain":    4,
                                               "bf_ratio":    5,
                                               "bf_add":    32,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [32, 40, 48, 56, 64, 56, 48, 40],
                                                   "hf_clip":    [64, 96, 128, 160, 192, 160, 128, 0],
                                                   "local_sharp_strength":    [512, 512, 512, 512, 512, 512, 512, 512]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    800,
                                               "pbf_gain":    0.8,
                                               "pbf_ratio":    0.5,
                                               "pbf_add":    1,
                                               "gaus_ratio":    1,
                                               "sharp_ratio":    10,
                                               "bf_gain":    4,
                                               "bf_ratio":    5,
                                               "bf_add":    32,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [40, 48, 56, 64, 80, 64, 56, 48],
                                                   "hf_clip":    [64, 96, 128, 160, 192, 160, 128, 0],
                                                   "local_sharp_strength":    [512, 512, 512, 512, 512, 512, 512, 512]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    1600,
                                               "pbf_gain":    0.8,
                                               "pbf_ratio":    0.2,
                                               "pbf_add":    1,
                                               "gaus_ratio":    1,
                                               "sharp_ratio":    8,
                                               "bf_gain":    4,
                                               "bf_ratio":    1,
                                               "bf_add":    32,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 128, 160, 192, 160, 128, 0],
                                                   "local_sharp_strength":    [256, 256, 256, 256, 256, 256, 256, 256]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    3200,
                                               "pbf_gain":    0.8,
                                               "pbf_ratio":    0.2,
                                               "pbf_add":    1,
                                               "gaus_ratio":    1,
                                               "sharp_ratio":    8,
                                               "bf_gain":    4,
                                               "bf_ratio":    1,
                                               "bf_add":    32,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 128, 160, 192, 160, 128, 0],
                                                   "local_sharp_strength":    [128, 128, 128, 128, 128, 128, 128, 128]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    6400,
                                               "pbf_gain":    0.8,
                                               "pbf_ratio":    0.3,
                                               "pbf_add":    1,
                                               "gaus_ratio":    1,
                                               "sharp_ratio":    8,
                                               "bf_gain":    4,
                                               "bf_ratio":    1,
                                               "bf_add":    32,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 128, 160, 192, 160, 128, 0],
                                                   "local_sharp_strength":    [128, 128, 128, 128, 128, 128, 128, 128]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    12800,
                                               "pbf_gain":    0.8,
                                               "pbf_ratio":    0.4,
                                               "pbf_add":    1,
                                               "gaus_ratio":    1,
                                               "sharp_ratio":    8,
                                               "bf_gain":    4,
                                               "bf_ratio":    1,
                                               "bf_add":    32,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 128, 160, 192, 160, 128, 0],
                                                   "local_sharp_strength":    [128, 128, 128, 128, 128, 128, 128, 128]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    25600,
                                               "pbf_gain":    0.8,
                                               "pbf_ratio":    0.4,
                                               "pbf_add":    1,
                                               "gaus_ratio":    1,
                                               "sharp_ratio":    8,
                                               "bf_gain":    4,
                                               "bf_ratio":    1,
                                               "bf_add":    32,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 128, 160, 192, 160, 128, 0],
                                                   "local_sharp_strength":    [128, 128, 128, 128, 128, 128, 128, 128]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    51200,
                                               "pbf_gain":    0.8,
                                               "pbf_ratio":    0.4,
                                               "pbf_add":    1,
                                               "gaus_ratio":    1,
                                               "sharp_ratio":    8,
                                               "bf_gain":    4,
                                               "bf_ratio":    1,
                                               "bf_add":    32,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 128, 160, 192, 160, 128, 0],
                                                   "local_sharp_strength":    [128, 128, 128, 128, 128, 128, 128, 128]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    102400,
                                               "pbf_gain":    0.8,
                                               "pbf_ratio":    0.4,
                                               "pbf_add":    1,
                                               "gaus_ratio":    1,
                                               "sharp_ratio":    8,
                                               "bf_gain":    4,
                                               "bf_ratio":    1,
                                               "bf_add":    32,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 128, 160, 192, 160, 128, 0],
                                                   "local_sharp_strength":    [128, 128, 128, 128, 128, 128, 128, 128]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    204800,
                                               "pbf_gain":    0.8,
                                               "pbf_ratio":    0.4,
                                               "pbf_add":    1,
                                               "gaus_ratio":    1,
                                               "sharp_ratio":    8,
                                               "bf_gain":    4,
                                               "bf_ratio":    1,
                                               "bf_add":    32,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 128, 160, 192, 160, 128, 0],
                                                   "local_sharp_strength":    [128, 128, 128, 128, 128, 128, 128, 128]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }],
                                       "Tuning_ISO_len":    13
                                   }, {
                                       "SNR_Mode":    "HSNR",
                                       "Sensor_Mode":    "hcg",
                                       "Tuning_ISO":    [{
                                               "iso":    50,
                                               "pbf_gain":    0.8,
                                               "pbf_ratio":    0,
                                               "pbf_add":    1,
                                               "gaus_ratio":    0,
                                               "sharp_ratio":    6,
                                               "bf_gain":    2,
                                               "bf_ratio":    1,
                                               "bf_add":    32,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [8, 12, 16, 16, 24, 20, 16, 16],
                                                   "hf_clip":    [64, 96, 12, 16, 19, 16, 12, 0],
                                                   "local_sharp_strength":    [1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    100,
                                               "pbf_gain":    0.8,
                                               "pbf_ratio":    0,
                                               "pbf_add":    1,
                                               "gaus_ratio":    0,
                                               "sharp_ratio":    6,
                                               "bf_gain":    3,
                                               "bf_ratio":    1,
                                               "bf_add":    32,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [12, 16, 20, 24, 28, 24, 20, 20],
                                                   "hf_clip":    [64, 96, 12, 16, 19, 16, 12, 0],
                                                   "local_sharp_strength":    [1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    200,
                                               "pbf_gain":    0.8,
                                               "pbf_ratio":    0,
                                               "pbf_add":    1,
                                               "gaus_ratio":    0,
                                               "sharp_ratio":    6,
                                               "bf_gain":    3,
                                               "bf_ratio":    1,
                                               "bf_add":    32,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [24, 32, 40, 48, 56, 48, 48, 40],
                                                   "hf_clip":    [64, 96, 12, 16, 19, 16, 12, 0],
                                                   "local_sharp_strength":    [512, 512, 512, 512, 512, 512, 512, 512]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    400,
                                               "pbf_gain":    0.8,
                                               "pbf_ratio":    0,
                                               "pbf_add":    1,
                                               "gaus_ratio":    0,
                                               "sharp_ratio":    7,
                                               "bf_gain":    4,
                                               "bf_ratio":    1,
                                               "bf_add":    32,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [32, 40, 48, 56, 64, 56, 48, 40],
                                                   "hf_clip":    [64, 96, 12, 16, 19, 16, 12, 0],
                                                   "local_sharp_strength":    [512, 512, 512, 512, 512, 512, 512, 512]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    800,
                                               "pbf_gain":    0.8,
                                               "pbf_ratio":    0.2,
                                               "pbf_add":    1,
                                               "gaus_ratio":    1,
                                               "sharp_ratio":    7,
                                               "bf_gain":    4,
                                               "bf_ratio":    1,
                                               "bf_add":    32,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [40, 48, 56, 64, 80, 64, 56, 48],
                                                   "hf_clip":    [64, 96, 12, 16, 19, 16, 12, 0],
                                                   "local_sharp_strength":    [512, 512, 512, 512, 512, 512, 512, 512]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    1600,
                                               "pbf_gain":    0.8,
                                               "pbf_ratio":    0.2,
                                               "pbf_add":    1,
                                               "gaus_ratio":    1,
                                               "sharp_ratio":    8,
                                               "bf_gain":    4,
                                               "bf_ratio":    1,
                                               "bf_add":    32,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 12, 16, 19, 16, 12, 0],
                                                   "local_sharp_strength":    [256, 256, 256, 256, 256, 256, 256, 256]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    3200,
                                               "pbf_gain":    0.8,
                                               "pbf_ratio":    0.2,
                                               "pbf_add":    1,
                                               "gaus_ratio":    1,
                                               "sharp_ratio":    8,
                                               "bf_gain":    4,
                                               "bf_ratio":    1,
                                               "bf_add":    32,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 12, 16, 19, 16, 12, 0],
                                                   "local_sharp_strength":    [128, 128, 128, 128, 128, 128, 128, 128]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    6400,
                                               "pbf_gain":    0.8,
                                               "pbf_ratio":    0.3,
                                               "pbf_add":    1,
                                               "gaus_ratio":    1,
                                               "sharp_ratio":    8,
                                               "bf_gain":    4,
                                               "bf_ratio":    1,
                                               "bf_add":    32,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 12, 16, 19, 16, 12, 0],
                                                   "local_sharp_strength":    [128, 128, 128, 128, 128, 128, 128, 128]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    12800,
                                               "pbf_gain":    0.8,
                                               "pbf_ratio":    0.4,
                                               "pbf_add":    1,
                                               "gaus_ratio":    1,
                                               "sharp_ratio":    8,
                                               "bf_gain":    4,
                                               "bf_ratio":    1,
                                               "bf_add":    32,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 12, 16, 19, 16, 12, 0],
                                                   "local_sharp_strength":    [128, 128, 128, 128, 128, 128, 128, 128]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    25600,
                                               "pbf_gain":    0.8,
                                               "pbf_ratio":    0.4,
                                               "pbf_add":    1,
                                               "gaus_ratio":    1,
                                               "sharp_ratio":    8,
                                               "bf_gain":    4,
                                               "bf_ratio":    1,
                                               "bf_add":    32,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 12, 16, 19, 16, 12, 0],
                                                   "local_sharp_strength":    [128, 128, 128, 128, 128, 128, 128, 128]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    51200,
                                               "pbf_gain":    0.8,
                                               "pbf_ratio":    0.4,
                                               "pbf_add":    1,
                                               "gaus_ratio":    1,
                                               "sharp_ratio":    8,
                                               "bf_gain":    4,
                                               "bf_ratio":    1,
                                               "bf_add":    32,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 12, 16, 19, 16, 12, 0],
                                                   "local_sharp_strength":    [128, 128, 128, 128, 128, 128, 128, 128]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    102400,
                                               "pbf_gain":    0.8,
                                               "pbf_ratio":    0.4,
                                               "pbf_add":    1,
                                               "gaus_ratio":    1,
                                               "sharp_ratio":    8,
                                               "bf_gain":    4,
                                               "bf_ratio":    1,
                                               "bf_add":    32,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 12, 16, 19, 16, 12, 0],
                                                   "local_sharp_strength":    [128, 128, 128, 128, 128, 128, 128, 128]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    204800,
                                               "pbf_gain":    0.8,
                                               "pbf_ratio":    0.4,
                                               "pbf_add":    1,
                                               "gaus_ratio":    1,
                                               "sharp_ratio":    8,
                                               "bf_gain":    4,
                                               "bf_ratio":    1,
                                               "bf_add":    32,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 12, 16, 19, 16, 12, 0],
                                                   "local_sharp_strength":    [128, 128, 128, 128, 128, 128, 128, 128]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }],
                                       "Tuning_ISO_len":    13
                                   }],
                               "Setting_len":    2
                           }
                       }
                   }
               }],
           "sub_scene_len":    1
       }],
   "main_scene_len":    1,
   "uapi":    [],
   "uapi_len":    0,
   "sys_static_cfg":    {
       "algoSwitch":    {
           "enable":    0,
           "enable_algos":    [],
           "enable_algos_len":    0
       }
   }
}