hc
2023-02-15 9c2dfff96adcfcdf2a1143893a7dd749b9f3677a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
{
   "sensor_calib":    {
       "resolution":    {
           "width":    2112,
           "height":    1568
       },
       "Gain2Reg":    {
           "GainMode":    "EXPGAIN_MODE_LINEAR",
           "GainRange":    [1, 15.5, 16, 0, 1, 16, 248],
           "GainRange_len":    7
       },
       "Time2Reg":    {
           "fCoeff":    [0, 0, 1, 0.5]
       },
       "CISGainSet":    {
           "CISAgainRange":    {
               "Min":    1,
               "Max":    15.5
           },
           "CISExtraAgainRange":    {
               "Min":    1,
               "Max":    1
           },
           "CISDgainRange":    {
               "Min":    1,
               "Max":    1
           },
           "CISIspDgainRange":    {
               "Min":    1,
               "Max":    1
           },
           "CISHdrGainIndSetEn":    1
       },
       "CISTimeSet":    {
           "Linear":    {
               "CISTimeRegMin":    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":    0
   },
   "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":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 3, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 3, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 2, 2, 3, 3, 4, 3, 3, 2, 2, 1, 1, 1, 1, 1, 1, 2, 2, 3, 3, 4, 3, 3, 2, 2, 1, 1, 1, 1, 1, 2, 3, 3, 4, 4, 5, 4, 4, 3, 3, 2, 1, 1, 1, 1, 1, 2, 2, 3, 3, 4, 3, 3, 2, 2, 1, 1, 1, 1, 1, 1, 2, 2, 3, 3, 4, 3, 3, 2, 2, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 3, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 3, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                               "AecManualCtrl":    {
                                   "LinearAE":    {
                                       "ManualTimeEn":    1,
                                       "ManualGainEn":    1,
                                       "ManualIspDgainEn":    1,
                                       "TimeValue":    0.01,
                                       "GainValue":    1,
                                       "IspDGainValue":    1
                                   },
                                   "HdrAE":    {
                                       "ManualTimeEn":    1,
                                       "ManualGainEn":    1,
                                       "ManualIspDgainEn":    1,
                                       "TimeValue":    [0.01, 0.02, 0.03],
                                       "GainValue":    [1, 1, 1],
                                       "IspDGainValue":    [1, 1, 1]
                                   }
                               },
                               "AecSpeed":    {
                                   "DampOver":    0.15,
                                   "DampUnder":    0.45,
                                   "DampDark2Bright":    0.15,
                                   "DampBright2Dark":    0.45
                               },
                               "AecDelayFrmNum":    {
                                   "BlackDelay":    2,
                                   "WhiteDelay":    2
                               },
                               "AecFrameRateMode":    {
                                   "isFpsFix":    1,
                                   "FpsValue":    0
                               },
                               "AecAntiFlicker":    {
                                   "enable":    1,
                                   "Frequency":    "AECV2_FLICKER_FREQUENCY_50HZ",
                                   "Mode":    "AECV2_ANTIFLICKER_AUTO_MODE"
                               },
                               "AecEnvLvCalib":    {
                                   "CalibFNumber":    1.6,
                                   "CurveCoeff":    [0.0286, 0.5972]
                               },
                               "AecWinScale":    {
                                   "InRawWinScale":    {
                                       "h_offs":    0,
                                       "v_offs":    0,
                                       "h_size":    1,
                                       "v_size":    1
                                   },
                                   "TmoRawWinScale":    {
                                       "h_offs":    0.1,
                                       "v_offs":    0.1,
                                       "h_size":    0.9,
                                       "v_size":    0.9
                                   },
                                   "YuvWinScale":    {
                                       "h_offs":    0,
                                       "v_offs":    0,
                                       "h_size":    1,
                                       "v_size":    1
                                   }
                               }
                           },
                           "LinearAeCtrl":    {
                               "RawStatsEn":    1,
                               "ToleranceIn":    10,
                               "ToleranceOut":    15,
                               "Evbias":    0,
                               "StrategyMode":    "AECV2_STRATEGY_MODE_LOWLIGHT_PRIOR",
                               "InitExp":    {
                                   "InitTimeValue":    0.003,
                                   "InitGainValue":    1,
                                   "InitIspDGainValue":    1,
                                   "InitPIrisGainValue":    512,
                                   "InitDCIrisDutyValue":    100
                               },
                               "Route":    {
                                   "TimeDot":    [0, 0.01, 0.01, 0.02, 0.03, 0.03],
                                   "TimeDot_len":    6,
                                   "GainDot":    [1, 1, 4, 8, 12, 15.5],
                                   "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.02325, 0.0465, 0.1395, 0.2325, 0.3255],
                                   "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.02325, 0.0465, 0.093, 0.1395, 0.2325, 0.3255],
                                       "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, 15.5],
                                   "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, 15.5],
                                   "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, 15.5],
                                   "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.00465, 0.01395, 0.02325, 0.0465, 0.093],
                                       "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.02325, 0.0465, 0.093, 0.2325, 0.3255, 0.465],
                                   "MExpLevel_len":    6,
                                   "MSetPoint":    [60, 60, 55, 50, 45, 40],
                                   "MSetPoint_len":    6
                               },
                               "SframeCtrl":    {
                                   "HLROIExpandEn":    0,
                                   "HLLumaTolerance":    12,
                                   "SfrmSetPoint":    {
                                       "SExpLevel":    [0, 0.002325, 0.006975, 0.011625, 0.0186, 0.0279],
                                       "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.11028, 1, 1, 2.25364],
                                   "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.333286, 0.333539, 0.333175],
                                   "rotationMat":    [-0.678458, 0.734639, -0.223848, 0.734639, 0.678458, 0.407006, 0, 0, 1]
                               },
                               "rgb2RotationYuvMat":    [0.0371094, 0.136719, 0.015625, 32.5, -0.0898438, 0.0078125, 0.0625, 136.812, 0.0390625, -0.0585938, 0.0585938, 112.125, 0, 0, 0, 1],
                               "extraWpRange":    [{
                                       "domain":    "CALIB_AWB_EXTRA_RANGE_DOMAIN_UV",
                                       "mode":    "CALIB_AWB_EXCLUDE_WP_MODE",
                                       "region":    [0, 0, 0, 0]
                                   }, {
                                       "domain":    "CALIB_AWB_EXTRA_RANGE_DOMAIN_UV",
                                       "mode":    "CALIB_AWB_EXCLUDE_WP_MODE",
                                       "region":    [0, 0, 0, 0]
                                   }, {
                                       "domain":    "CALIB_AWB_EXTRA_RANGE_DOMAIN_UV",
                                       "mode":    "CALIB_AWB_EXCLUDE_WP_MODE",
                                       "region":    [0, 0, 0, 0]
                                   }, {
                                       "domain":    "CALIB_AWB_EXTRA_RANGE_DOMAIN_UV",
                                       "mode":    "CALIB_AWB_EXCLUDE_WP_MODE",
                                       "region":    [0, 0, 0, 0]
                                   }, {
                                       "domain":    "CALIB_AWB_EXTRA_RANGE_DOMAIN_UV",
                                       "mode":    "CALIB_AWB_EXCLUDE_WP_MODE",
                                       "region":    [0, 0, 0, 0]
                                   }, {
                                       "domain":    "CALIB_AWB_EXTRA_RANGE_DOMAIN_UV",
                                       "mode":    "CALIB_AWB_EXCLUDE_WP_MODE",
                                       "region":    [0, 0, 0, 0]
                                   }, {
                                       "domain":    "CALIB_AWB_EXTRA_RANGE_DOMAIN_UV",
                                       "mode":    "CALIB_AWB_EXCLUDE_WP_MODE",
                                       "region":    [0, 0, 0, 0]
                                   }],
                               "wpDiffLumaWeight":    {
                                   "enable":    1,
                                   "wpDiffWeiEnableTh":    {
                                       "wpDiffWeiNoTh":    0.004,
                                       "wpDiffWeiLvValueTh":    64
                                   },
                                   "wpDiffwei_y":    [0, 16, 32, 64, 96, 128, 192, 224, 240],
                                   "perfectBin":    [0, 0, 0, 1, 1, 1, 1, 0],
                                   "wpDiffWeightLvSet":    [{
                                           "LvValue":    256,
                                           "ratioSet":    [{
                                                   "ratioValue":    0,
                                                   "weight":    [1, 1, 1, 1, 1, 1, 1, 1, 1]
                                               }, {
                                                   "ratioValue":    0.01,
                                                   "weight":    [1, 1, 1, 1, 1, 1, 1, 1, 1]
                                               }, {
                                                   "ratioValue":    0.1,
                                                   "weight":    [1, 1, 1, 1, 1, 1, 1, 1, 1]
                                               }],
                                           "ratioSet_len":    3
                                       }, {
                                           "LvValue":    8192,
                                           "ratioSet":    [{
                                                   "ratioValue":    0,
                                                   "weight":    [1, 1, 1, 1, 1, 1, 1, 1, 1]
                                               }, {
                                                   "ratioValue":    0.01,
                                                   "weight":    [1, 1, 1, 1, 1, 1, 1, 1, 1]
                                               }, {
                                                   "ratioValue":    0.1,
                                                   "weight":    [0, 0, 0.2, 0.5, 1, 1, 1, 0.5, 0]
                                               }],
                                           "ratioSet_len":    3
                                       }],
                                   "wpDiffWeightLvSet_len":    2
                               },
                               "wpDiffBlkWeiEnable":    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.11028, 1, 1, 2.25364],
                                       "uvRegion":    {
                                           "u":    [122.5, 53, 55.5, 123],
                                           "v":    [129, 142, 108, 127]
                                       },
                                       "xyRegion":    {
                                           "normal":    [-1.06715, -0.730116, 0.0991566, -0.0348193],
                                           "big":    [-1.06845, -0.730116, 0.144458, -0.0483133]
                                       },
                                       "rtYuvRegion":    {
                                           "thcurve_u":    [50, 54, 70, 78, 110, 142],
                                           "thcure_th":    [1, 2, 3, 5, 6, 6],
                                           "lineVector":    [10, 142.812, 112.25, 185.5, 98.4375, 113],
                                           "disP1P2":    15
                                       },
                                       "staWeight":    [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 75],
                                       "dayGainLvThSet":    [1024, 8192],
                                       "defaultDayGainLow":    [1.58506, 1, 1, 2.07415],
                                       "defaultDayGainHigh":    [1.62782, 1, 1, 1.64269],
                                       "xyType2Enable":    1
                                   }, {
                                       "name":    "CWF",
                                       "doorType":    "CALIB_AWB_DOOR_TYPE_INDOOR",
                                       "standardGainValue":    [1.58506, 1, 1, 2.07415],
                                       "uvRegion":    {
                                           "u":    [57.5, 68.5, 124.5, 124],
                                           "v":    [93.5, 67, 124, 125]
                                       },
                                       "xyRegion":    {
                                           "normal":    [-0.731412, -0.401289, -0.0630924, -0.120281],
                                           "big":    [-0.73314, -0.402153, -0.0643775, -0.126064]
                                       },
                                       "rtYuvRegion":    {
                                           "thcurve_u":    [50, 54, 70, 78, 110, 142],
                                           "thcure_th":    [1, 2, 3, 5, 6, 6],
                                           "lineVector":    [10, 139.75, 113.5, 189.75, 119.938, 104.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.58506, 1, 1, 2.07415],
                                       "defaultDayGainHigh":    [1.62782, 1, 1, 1.64269],
                                       "xyType2Enable":    1
                                   }, {
                                       "name":    "D50",
                                       "doorType":    "CALIB_AWB_DOOR_TYPE_AMBIGUITY",
                                       "standardGainValue":    [1.62782, 1, 1, 1.64269],
                                       "uvRegion":    {
                                           "u":    [63, 88.5, 125.5, 124.5],
                                           "v":    [76, 53, 123.5, 125]
                                       },
                                       "xyRegion":    {
                                           "normal":    [-0.401289, -0.0944985, 0.076988, -0.0258233],
                                           "big":    [-0.401289, -0.0944985, 0.0891968, -0.0887952]
                                       },
                                       "rtYuvRegion":    {
                                           "thcurve_u":    [50, 54, 70, 78, 110, 142],
                                           "thcure_th":    [1, 2, 3, 5, 6, 6],
                                           "lineVector":    [10, 138.375, 113.062, 190.75, 128.5, 110.75],
                                           "disP1P2":    15
                                       },
                                       "staWeight":    [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100],
                                       "dayGainLvThSet":    [1024, 8192],
                                       "defaultDayGainLow":    [1.58506, 1, 1, 2.07415],
                                       "defaultDayGainHigh":    [1.62782, 1, 1, 1.64269],
                                       "xyType2Enable":    1
                                   }, {
                                       "name":    "D65",
                                       "doorType":    "CALIB_AWB_DOOR_TYPE_OUTDOOR",
                                       "standardGainValue":    [1.84706, 1, 1, 1.45781],
                                       "uvRegion":    {
                                           "u":    [83, 104, 127, 125.5],
                                           "v":    [63, 51.5, 123, 123.5]
                                       },
                                       "xyRegion":    {
                                           "normal":    [-0.0936343, 0.0835262, 0.0712048, -0.0406024],
                                           "big":    [-0.0936343, 0.0835262, 0.104618, -0.0669478]
                                       },
                                       "rtYuvRegion":    {
                                           "thcurve_u":    [50, 54, 70, 78, 110, 142],
                                           "thcure_th":    [1, 2, 3, 5, 6, 6],
                                           "lineVector":    [10, 137.25, 112.125, 191, 138.375, 113.062],
                                           "disP1P2":    15
                                       },
                                       "staWeight":    [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 80, 70],
                                       "dayGainLvThSet":    [1024, 8192],
                                       "defaultDayGainLow":    [1.58506, 1, 1, 2.07415],
                                       "defaultDayGainHigh":    [1.62782, 1, 1, 1.64269],
                                       "xyType2Enable":    1
                                   }, {
                                       "name":    "D75",
                                       "doorType":    "CALIB_AWB_DOOR_TYPE_OUTDOOR",
                                       "standardGainValue":    [1.96911, 1, 1, 1.3686],
                                       "uvRegion":    {
                                           "u":    [128, 127, 99, 117],
                                           "v":    [120, 123, 54, 43]
                                       },
                                       "xyRegion":    {
                                           "normal":    [0.0835262, 0.390316, 0.0242972, -0.0637349],
                                           "big":    [0.082662, 0.390316, 0.0435743, -0.0791566]
                                       },
                                       "rtYuvRegion":    {
                                           "thcurve_u":    [50, 54, 70, 78, 110, 142],
                                           "thcure_th":    [1, 2, 3, 5, 6, 6],
                                           "lineVector":    [10, 136.25, 112.625, 190.812, 144.312, 113.438],
                                           "disP1P2":    15
                                       },
                                       "staWeight":    [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 80, 70, 50],
                                       "dayGainLvThSet":    [1024, 8192],
                                       "defaultDayGainLow":    [1.58506, 1, 1, 2.07415],
                                       "defaultDayGainHigh":    [1.62782, 1, 1, 1.64269],
                                       "xyType2Enable":    1
                                   }, {
                                       "name":    "HZ",
                                       "doorType":    "CALIB_AWB_DOOR_TYPE_INDOOR",
                                       "standardGainValue":    [0.916003, 1, 1, 2.47606],
                                       "uvRegion":    {
                                           "u":    [122, 54, 53, 122.5],
                                           "v":    [131.5, 167.5, 135.5, 129]
                                       },
                                       "xyRegion":    {
                                           "normal":    [-1.48975, -1.06975, 0.0712048, -0.0406024],
                                           "big":    [-1.49104, -1.06845, 0.0914458, -0.0714458]
                                       },
                                       "rtYuvRegion":    {
                                           "thcurve_u":    [50, 60, 80, 100, 152, 250],
                                           "thcure_th":    [20, 25, 30, 40, 70, 120],
                                           "lineVector":    [10, 144.875, 111.688, 180.812, 85.125, 116.875],
                                           "disP1P2":    15
                                       },
                                       "staWeight":    [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 75, 50],
                                       "dayGainLvThSet":    [1024, 8192],
                                       "defaultDayGainLow":    [1.58506, 1, 1, 2.07415],
                                       "defaultDayGainHigh":    [1.62782, 1, 1, 1.64269],
                                       "xyType2Enable":    1
                                   }, {
                                       "name":    "TL84",
                                       "doorType":    "CALIB_AWB_DOOR_TYPE_INDOOR",
                                       "standardGainValue":    [1.47376, 1, 1, 2.08028],
                                       "uvRegion":    {
                                           "u":    [123, 55.5, 60, 124],
                                           "v":    [127, 112, 73.5, 124.5]
                                       },
                                       "xyRegion":    {
                                           "normal":    [-0.730116, -0.401289, 0.029759, -0.0624498],
                                           "big":    [-0.730548, -0.400856, 0.0683132, -0.0630924]
                                       },
                                       "rtYuvRegion":    {
                                           "thcurve_u":    [50, 54, 70, 78, 110, 142],
                                           "thcure_th":    [1, 2, 3, 5, 6, 6],
                                           "lineVector":    [10, 140.25, 113.25, 189.25, 115.938, 106.875],
                                           "disP1P2":    15
                                       },
                                       "staWeight":    [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 80, 70, 60, 60],
                                       "dayGainLvThSet":    [1024, 8192],
                                       "defaultDayGainLow":    [1.58506, 1, 1, 2.07415],
                                       "defaultDayGainHigh":    [1.62782, 1, 1, 1.64269],
                                       "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.11028, 1, 1, 2.25364],
                               "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":    23.1522,
                                           "meanH":    26.4611
                                       }, {
                                           "index":    13,
                                           "meanC":    20.0168,
                                           "meanH":    -77.1479
                                       }, {
                                           "index":    5,
                                           "meanC":    8.95928,
                                           "meanH":    -65.2591
                                       }, {
                                           "index":    10,
                                           "meanC":    9.90431,
                                           "meanH":    -33.6794
                                       }, {
                                           "index":    14,
                                           "meanC":    15.6389,
                                           "meanH":    150.187
                                       }, {
                                           "index":    16,
                                           "meanC":    23.4425,
                                           "meanH":    86.8538
                                       }],
                                   "colorBlock_len":    6,
                                   "lsUsedForEstimation":    [{
                                           "name":    "A",
                                           "RGain":    1.11028,
                                           "BGain":    2.25364
                                       }, {
                                           "name":    "TL84",
                                           "RGain":    1.62782,
                                           "BGain":    1.64269
                                       }, {
                                           "name":    "D50",
                                           "RGain":    1.47376,
                                           "BGain":    2.08028
                                       }],
                                   "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":    [65, 66.8125, 66, 67.5625, 66, 64, 64, 64, 64, 64, 64, 64, 64],
                                   "R_Channel_len":    13,
                                   "Gr_Channel":    [64, 66.25, 66, 65.1875, 66, 64, 64, 64, 64, 64, 64, 64, 64],
                                   "Gr_Channel_len":    13,
                                   "Gb_Channel":    [66, 67.4375, 66.1875, 66.4375, 66, 64, 64, 64, 64, 64, 64, 64, 64],
                                   "Gb_Channel_len":    13,
                                   "B_Channel":    [66, 67.3125, 67, 67.625, 68, 64, 64, 64, 64, 64, 64, 64, 64],
                                   "B_Channel_len":    13
                               }
                           }
                       },
                       "adegamma_calib":    {
                           "DegammaTuningPara":    {
                               "degamma_en":    0,
                               "X_axis":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                               "curve_R":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                               "curve_G":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                               "curve_B":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
                           }
                       },
                       "agic_calib_v21":    {
                           "GicTuningPara":    {
                               "enable":    0,
                               "gr_ration":    0,
                               "GicData":    {
                                   "ISO":    [50, 100, 200, 400, 800, 1600, 3200, 6400, 12800],
                                   "ISO_len":    9,
                                   "min_busy_thre":    [40, 40, 40, 40, 40, 40, 40, 40, 40],
                                   "min_busy_thre_len":    9,
                                   "min_grad_thr1":    [16, 16, 16, 16, 16, 16, 16, 16, 16],
                                   "min_grad_thr1_len":    9,
                                   "min_grad_thr2":    [8, 8, 8, 8, 8, 8, 8, 8, 8],
                                   "min_grad_thr2_len":    9,
                                   "k_grad1":    [64, 64, 64, 64, 64, 64, 64, 64, 64],
                                   "k_grad1_len":    9,
                                   "k_grad2":    [2, 2, 2, 2, 2, 2, 2, 2, 2],
                                   "k_grad2_len":    9,
                                   "gb_thre":    [32, 32, 32, 32, 32, 32, 32, 32, 32],
                                   "gb_thre_len":    9,
                                   "maxCorV":    [10, 10, 10, 10, 10, 10, 10, 10, 10],
                                   "maxCorV_len":    9,
                                   "maxCorVboth":    [20, 20, 20, 20, 20, 20, 20, 20, 20],
                                   "maxCorVboth_len":    9,
                                   "dark_thre":    [120, 120, 120, 120, 120, 120, 120, 120, 120],
                                   "dark_thre_len":    9,
                                   "dark_threHi":    [240, 240, 240, 240, 240, 240, 240, 240, 240],
                                   "dark_threHi_len":    9,
                                   "k_grad1_dark":    [64, 64, 64, 64, 64, 64, 64, 64, 64],
                                   "k_grad1_dark_len":    9,
                                   "k_grad2_dark":    [2, 2, 2, 2, 2, 2, 2, 2, 2],
                                   "k_grad2_dark_len":    9,
                                   "min_grad_thr_dark1":    [16, 16, 16, 16, 16, 16, 16, 16, 16],
                                   "min_grad_thr_dark1_len":    9,
                                   "min_grad_thr_dark2":    [8, 8, 8, 8, 8, 8, 8, 8, 8],
                                   "min_grad_thr_dark2_len":    9,
                                   "noiseCurve_0":    [0, 0, 0, 0, 0, 0, 0, 0, 0],
                                   "noiseCurve_0_len":    9,
                                   "noiseCurve_1":    [0, 0, 0, 0, 0, 0, 0, 0, 0],
                                   "noiseCurve_1_len":    9,
                                   "NoiseScale":    [0, 0, 0, 0, 0, 0, 0, 0, 0],
                                   "NoiseScale_len":    9,
                                   "NoiseBase":    [0, 0, 0, 0, 0, 0, 0, 0, 0],
                                   "NoiseBase_len":    9,
                                   "globalStrength":    [1, 1, 1, 1, 1, 1, 1, 1, 1],
                                   "globalStrength_len":    9,
                                   "diff_clip":    [32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767],
                                   "diff_clip_len":    9
                               }
                           }
                       },
                       "adehaze_calib_v21":    {
                           "DehazeTuningPara":    {
                               "Enable":    1,
                               "cfg_alpha":    0,
                               "ByPassThr":    0,
                               "dehaze_setting":    {
                                   "en":    0,
                                   "air_lc_en":    1,
                                   "stab_fnum":    8,
                                   "sigma":    6,
                                   "wt_sigma":    8,
                                   "air_sigma":    120,
                                   "tmax_sigma":    0.01,
                                   "pre_wet":    0.01,
                                   "DehazeData":    {
                                       "EnvLv":    [0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.7, 0.9, 1],
                                       "EnvLv_len":    9,
                                       "dc_min_th":    [64, 64, 64, 64, 64, 64, 64, 64, 64],
                                       "dc_min_th_len":    9,
                                       "dc_max_th":    [192, 192, 192, 192, 192, 192, 192, 192, 192],
                                       "dc_max_th_len":    9,
                                       "yhist_th":    [249, 249, 249, 249, 249, 249, 249, 249, 249],
                                       "yhist_th_len":    9,
                                       "yblk_th":    [0.002, 0.002, 0.002, 0.002, 0.002, 0.002, 0.002, 0.002, 0.002],
                                       "yblk_th_len":    9,
                                       "dark_th":    [250, 250, 250, 250, 250, 250, 250, 250, 250],
                                       "dark_th_len":    9,
                                       "bright_min":    [180, 180, 180, 180, 180, 180, 180, 180, 180],
                                       "bright_min_len":    9,
                                       "bright_max":    [240, 240, 240, 240, 240, 240, 240, 240, 240],
                                       "bright_max_len":    9,
                                       "wt_max":    [0.9, 0.9, 0.9, 0.9, 0.9, 0.9, 0.9, 0.9, 0.9],
                                       "wt_max_len":    9,
                                       "air_min":    [200, 200, 200, 200, 200, 200, 200, 200, 200],
                                       "air_min_len":    9,
                                       "air_max":    [250, 250, 250, 250, 250, 250, 250, 250, 250],
                                       "air_max_len":    9,
                                       "tmax_base":    [125, 125, 125, 125, 125, 125, 125, 125, 125],
                                       "tmax_base_len":    9,
                                       "tmax_off":    [0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1],
                                       "tmax_off_len":    9,
                                       "tmax_max":    [0.8, 0.8, 0.8, 0.8, 0.8, 0.8, 0.8, 0.8, 0.8],
                                       "tmax_max_len":    9,
                                       "cfg_wt":    [0.8, 0.8, 0.8, 0.8, 0.8, 0.8, 0.8, 0.8, 0.8],
                                       "cfg_wt_len":    9,
                                       "cfg_air":    [210, 210, 210, 210, 210, 210, 210, 210, 210],
                                       "cfg_air_len":    9,
                                       "cfg_tmax":    [0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2],
                                       "cfg_tmax_len":    9,
                                       "dc_weitcur":    [1, 1, 1, 1, 1, 1, 1, 1, 1],
                                       "dc_weitcur_len":    9,
                                       "bf_weight":    [0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5],
                                       "bf_weight_len":    9,
                                       "range_sigma":    [0.14, 0.14, 0.14, 0.14, 0.14, 0.14, 0.14, 0.14, 0.14],
                                       "range_sigma_len":    9,
                                       "space_sigma_pre":    [0.14, 0.14, 0.14, 0.14, 0.14, 0.14, 0.14, 0.14, 0.14],
                                       "space_sigma_pre_len":    9,
                                       "space_sigma_cur":    [0.14, 0.14, 0.14, 0.14, 0.14, 0.14, 0.14, 0.14, 0.14],
                                       "space_sigma_cur_len":    9
                                   }
                               },
                               "enhance_setting":    {
                                   "en":    1,
                                   "enhance_curve":    [0, 64, 128, 192, 256, 320, 384, 448, 512, 576, 640, 704, 768, 832, 896, 960, 1023],
                                   "EnhanceData":    {
                                       "EnvLv":    [0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.7, 0.9, 1],
                                       "EnvLv_len":    9,
                                       "enhance_value":    [1.25, 1.25, 1.25, 1.2, 1.2, 1.2, 1.1, 1.1, 1],
                                       "enhance_value_len":    9,
                                       "enhance_chroma":    [1.5, 1.4, 1.3, 1.2, 1.2, 1.2, 1.1, 1.1, 1],
                                       "enhance_chroma_len":    9
                                   }
                               },
                               "hist_setting":    {
                                   "en":    0,
                                   "hist_para_en":    1,
                                   "HistData":    {
                                       "EnvLv":    [0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.7, 0.9, 1],
                                       "EnvLv_len":    9,
                                       "hist_gratio":    [2, 2, 2, 2, 2, 2, 2, 2, 2],
                                       "hist_gratio_len":    9,
                                       "hist_th_off":    [64, 64, 64, 64, 64, 64, 64, 64, 64],
                                       "hist_th_off_len":    9,
                                       "hist_k":    [2, 2, 2, 2, 2, 2, 2, 2, 2],
                                       "hist_k_len":    9,
                                       "hist_min":    [0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015],
                                       "hist_min_len":    9,
                                       "hist_scale":    [0.09, 0.09, 0.09, 0.09, 0.09, 0.09, 0.09, 0.09, 0.09],
                                       "hist_scale_len":    9,
                                       "cfg_gratio":    [2, 2, 2, 2, 2, 2, 2, 2, 2],
                                       "cfg_gratio_len":    9
                                   }
                               }
                           }
                       },
                       "adpcc_calib":    {
                           "DpccTuningPara":    {
                               "Enable":    1,
                               "Fast_Mode":    {
                                   "Fast_mode_en":    0,
                                   "Single_enable":    0,
                                   "Double_enable":    0,
                                   "Triple_enable":    0,
                                   "Fast_Data":    {
                                       "ISO":    [50, 100, 200, 400, 800, 1600, 3200, 6400, 12800, 25600, 51200, 102400, 204800],
                                       "ISO_len":    13,
                                       "Single_level":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                       "Single_level_len":    13,
                                       "Double_level":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                       "Double_level_len":    13,
                                       "Triple_level":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                       "Triple_level_len":    13
                                   }
                               },
                               "Expert_Mode":    {
                                   "stage1_Enable":    1,
                                   "grayscale_mode":    0,
                                   "dpcc_out_sel":    1,
                                   "stage1_g_3x3":    0,
                                   "stage1_rb_3x3":    0,
                                   "stage1_inc_rb_center":    1,
                                   "stage1_inc_g_center":    1,
                                   "rk_out_sel":    1,
                                   "SetEnable":    {
                                       "ISO":    [50, 100, 200, 400, 800, 1500, 1507, 1510, 3200, 6400, 12800, 102400, 204800],
                                       "fix_set":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                       "set1":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                       "set2":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                       "set3":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
                                   },
                                   "set1":    {
                                       "RK":    {
                                           "RK_enable":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "rb_sw_mindis":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "g_sw_mindis":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "sw_dis_scale_min":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "sw_dis_scale_max":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
                                       },
                                       "LC":    {
                                           "LC_enable":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "rb_line_thr":    [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8],
                                           "g_line_thr":    [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8],
                                           "rb_line_mad_fac":    [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4],
                                           "g_line_mad_fac":    [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4]
                                       },
                                       "PG":    {
                                           "PG_enable":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "rb_pg_fac":    [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4],
                                           "g_pg_fac":    [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]
                                       },
                                       "RND":    {
                                           "RND_enable":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "rb_rnd_thr":    [10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10],
                                           "g_rnd_thr":    [10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10],
                                           "rb_rnd_offs":    [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3],
                                           "g_rnd_offs":    [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]
                                       },
                                       "RG":    {
                                           "RG_enable":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "rb_rg_fac":    [32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32],
                                           "g_rg_fac":    [32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32]
                                       },
                                       "RO":    {
                                           "RO_enable":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "rb_ro_lim":    [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2],
                                           "g_ro_lim":    [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
                                       }
                                   },
                                   "set2":    {
                                       "RK":    {
                                           "RK_enable":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "rb_sw_mindis":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "g_sw_mindis":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "sw_dis_scale_min":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "sw_dis_scale_max":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
                                       },
                                       "LC":    {
                                           "LC_enable":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "rb_line_thr":    [16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16],
                                           "g_line_thr":    [24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24],
                                           "rb_line_mad_fac":    [16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16],
                                           "g_line_mad_fac":    [12, 12, 8, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                       },
                                       "PG":    {
                                           "PG_enable":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "rb_pg_fac":    [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4],
                                           "g_pg_fac":    [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]
                                       },
                                       "RND":    {
                                           "RND_enable":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "rb_rnd_thr":    [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8],
                                           "g_rnd_thr":    [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8],
                                           "rb_rnd_offs":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "g_rnd_offs":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
                                       },
                                       "RG":    {
                                           "RG_enable":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "rb_rg_fac":    [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8],
                                           "g_rg_fac":    [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8]
                                       },
                                       "RO":    {
                                           "RO_enable":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "rb_ro_lim":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "g_ro_lim":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
                                       }
                                   },
                                   "set3":    {
                                       "RK":    {
                                           "RK_enable":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "rb_sw_mindis":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "g_sw_mindis":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "sw_dis_scale_min":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "sw_dis_scale_max":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
                                       },
                                       "LC":    {
                                           "LC_enable":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "rb_line_thr":    [32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32],
                                           "g_line_thr":    [32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32],
                                           "rb_line_mad_fac":    [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4],
                                           "g_line_mad_fac":    [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4]
                                       },
                                       "PG":    {
                                           "PG_enable":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "rb_pg_fac":    [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4],
                                           "g_pg_fac":    [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]
                                       },
                                       "RND":    {
                                           "RND_enable":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "rb_rnd_thr":    [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8],
                                           "g_rnd_thr":    [6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6],
                                           "rb_rnd_offs":    [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3],
                                           "g_rnd_offs":    [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]
                                       },
                                       "RG":    {
                                           "RG_enable":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "rb_rg_fac":    [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4],
                                           "g_rg_fac":    [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4]
                                       },
                                       "RO":    {
                                           "RO_enable":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "rb_ro_lim":    [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2],
                                           "g_ro_lim":    [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
                                       }
                                   }
                               },
                               "Dpcc_pdaf":    {
                                   "en":    0,
                                   "point_en":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                   "offsetx":    0,
                                   "offsety":    0,
                                   "wrapx":    0,
                                   "wrapy":    0,
                                   "wrapx_num":    0,
                                   "wrapy_num":    0,
                                   "point_x":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                   "point_y":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                   "forward_med":    0
                               },
                               "Sensor_dpcc":    {
                                   "sensor_dpcc_auto_en":    0,
                                   "max_level":    20,
                                   "SensorDpcc_Data":    {
                                       "ISO":    [50, 100, 200, 400, 800, 1500, 1507, 1510, 3200, 6400, 12800, 102400, 204800],
                                       "ISO_len":    13,
                                       "level_single":    [19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19],
                                       "level_single_len":    13,
                                       "level_multiple":    [19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19],
                                       "level_multiple_len":    13
                                   }
                               }
                           }
                       },
                       "amerge_calib":    {
                           "MergeTuningPara":    {
                               "OECurve":    {
                                   "EnvLv":    [0, 0.005, 0.01, 0.05, 0.1, 0.15, 0.2, 0.3, 0.4, 0.5, 0.6, 0.8, 1],
                                   "EnvLv_len":    13,
                                   "Smooth":    [0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4],
                                   "Smooth_len":    13,
                                   "Offset":    [210, 210, 210, 210, 210, 210, 210, 210, 210, 210, 210, 210, 210],
                                   "Offset_len":    13
                               },
                               "MDCurve":    {
                                   "MoveCoef":    [0, 0.005, 0.01, 0.05, 0.1, 0.15, 0.2, 0.3, 0.4, 0.5, 0.6, 0.8, 1],
                                   "MoveCoef_len":    13,
                                   "LM_smooth":    [0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4],
                                   "LM_smooth_len":    13,
                                   "LM_offset":    [0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38],
                                   "LM_offset_len":    13,
                                   "MS_smooth":    [0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4],
                                   "MS_smooth_len":    13,
                                   "MS_offset":    [0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38],
                                   "MS_offset_len":    13
                               },
                               "ByPassThr":    0,
                               "OECurve_damp":    0.3,
                               "MDCurveLM_damp":    0.3,
                               "MDCurveMS_damp":    0.3
                           }
                       },
                       "adrc_calib":    {
                           "DrcTuningPara":    {
                               "Enable":    0,
                               "DrcGain":    {
                                   "EnvLv":    [0, 0.005, 0.01, 0.05, 0.1, 0.15, 0.2, 0.3, 0.4, 0.5, 0.6, 0.8, 1],
                                   "EnvLv_len":    13,
                                   "DrcGain":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                   "DrcGain_len":    13,
                                   "Alpha":    [0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2],
                                   "Alpha_len":    13,
                                   "Clip":    [16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16],
                                   "Clip_len":    13
                               },
                               "HiLight":    {
                                   "EnvLv":    [0, 0.005, 0.01, 0.05, 0.1, 0.15, 0.2, 0.3, 0.4, 0.5, 0.6, 0.8, 1],
                                   "EnvLv_len":    13,
                                   "Strength":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                   "Strength_len":    13
                               },
                               "LocalTMOSetting":    {
                                   "LocalTMOData":    {
                                       "EnvLv":    [0, 0.005, 0.01, 0.05, 0.1, 0.15, 0.2, 0.3, 0.4, 0.5, 0.6, 0.8, 1],
                                       "EnvLv_len":    13,
                                       "LocalWeit":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                       "LocalWeit_len":    13,
                                       "GlobalContrast":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                       "GlobalContrast_len":    13,
                                       "LoLitContrast":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                       "LoLitContrast_len":    13
                                   },
                                   "curPixWeit":    0.376471,
                                   "preFrameWeit":    1,
                                   "Range_force_sgm":    0,
                                   "Range_sgm_cur":    0.125015,
                                   "Range_sgm_pre":    0.125015,
                                   "Space_sgm_cur":    4068,
                                   "Space_sgm_pre":    3968
                               },
                               "CompressSetting":    {
                                   "Mode":    "COMPRESS_AUTO",
                                   "Manual_curve":    [0, 558, 1087, 1588, 2063, 2515, 2944, 3353, 3744, 4473, 5139, 5751, 6316, 6838, 7322, 7772, 8192]
                               },
                               "Scale_y":    [0, 2, 20, 76, 193, 381, 631, 772, 919, 1066, 1211, 1479, 1700, 1863, 1968, 2024, 2048],
                               "ByPassThr":    0,
                               "Edge_Weit":    0.0627451,
                               "OutPutLongFrame":    0,
                               "IIR_frame":    16,
                               "Tolerance":    0,
                               "damp":    0.9
                           }
                       },
                       "cpsl":    {
                           "param":    {
                               "enable":    1,
                               "mode":    "RK_AIQ_OP_MODE_AUTO",
                               "force_gray":    1,
                               "light_src":    "LED",
                               "auto_adjust_sens":    50,
                               "auto_on2off_th":    3000,
                               "auto_off2on_th":    100,
                               "auto_sw_interval":    0,
                               "manual_on":    0,
                               "manual_strength":    100
                           }
                       },
                       "orb":    {
                           "param":    {
                               "orb_en":    0
                           }
                       },
                       "debayer":    {
                           "param":    {
                               "debayer_en":    1,
                               "debayer_filter1":    [2, -6, 0, 6, -2],
                               "debayer_filter2":    [2, -4, 4, -4, 2],
                               "debayer_gain_offset":    4,
                               "debayer_offset":    1,
                               "debayer_clip_en":    1,
                               "debayer_filter_g_en":    1,
                               "debayer_filter_c_en":    1,
                               "debayer_thed0":    3,
                               "debayer_thed1":    6,
                               "debayer_dist_scale":    8,
                               "debayer_cnr_strength":    5,
                               "debayer_shift_num":    2,
                               "array":    {
                                   "ISO":    [50, 100, 200, 400, 800, 1600, 3200, 6400, 12800],
                                   "sharp_strength":    [4, 4, 4, 4, 4, 4, 4, 4, 4],
                                   "debayer_hf_offset":    [1, 1, 1, 1, 1, 1, 1, 1, 1]
                               }
                           }
                       },
                       "cproc":    {
                           "param":    {
                               "enable":    1,
                               "brightness":    128,
                               "contrast":    128,
                               "saturation":    128,
                               "hue":    128
                           }
                       },
                       "ie":    {
                           "param":    {
                               "enable":    0,
                               "mode":    0
                           }
                       },
                       "lsc_v2":    {
                           "common":    {
                               "enable":    1,
                               "resolutionAll":    [{
                                       "name":    "2112x1568",
                                       "lsc_sect_size_x":    [132, 132, 132, 132, 132, 132, 132, 132],
                                       "lsc_sect_size_y":    [98, 98, 98, 98, 98, 98, 98, 98]
                                   }],
                               "resolutionAll_len":    1
                           },
                           "alscCoef":    {
                               "damp_enable":    1,
                               "illAll":    [{
                                       "usedForCase":    0,
                                       "name":    "A",
                                       "wbGain":    [1.0778, 2.3065],
                                       "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.55, 2.1469],
                                       "tableUsed":    [{
                                               "name":    "CWF_100"
                                           }, {
                                               "name":    "CWF_70"
                                           }],
                                       "tableUsed_len":    2,
                                       "gains":    [1, 4, 6, 8],
                                       "gains_len":    4,
                                       "vig":    [100, 100, 90, 70],
                                       "vig_len":    4
                                   }, {
                                       "usedForCase":    0,
                                       "name":    "D50",
                                       "wbGain":    [1.5725, 1.7229],
                                       "tableUsed":    [{
                                               "name":    "D50_100"
                                           }, {
                                               "name":    "D50_70"
                                           }],
                                       "tableUsed_len":    2,
                                       "gains":    [1, 4, 6, 8],
                                       "gains_len":    4,
                                       "vig":    [100, 100, 90, 70],
                                       "vig_len":    4
                                   }, {
                                       "usedForCase":    0,
                                       "name":    "D65",
                                       "wbGain":    [1.785, 1.5311],
                                       "tableUsed":    [{
                                               "name":    "D65_100"
                                           }, {
                                               "name":    "D65_70"
                                           }],
                                       "tableUsed_len":    2,
                                       "gains":    [1, 4, 6, 8],
                                       "gains_len":    4,
                                       "vig":    [100, 100, 90, 70],
                                       "vig_len":    4
                                   }, {
                                       "usedForCase":    0,
                                       "name":    "D75",
                                       "wbGain":    [1.9123, 1.4359],
                                       "tableUsed":    [{
                                               "name":    "D75_100"
                                           }, {
                                               "name":    "D75_70"
                                           }],
                                       "tableUsed_len":    2,
                                       "gains":    [1, 4, 6, 8],
                                       "gains_len":    4,
                                       "vig":    [100, 100, 90, 70],
                                       "vig_len":    4
                                   }, {
                                       "usedForCase":    0,
                                       "name":    "HZ",
                                       "wbGain":    [0.8897, 2.5622],
                                       "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.4309, 2.0897],
                                       "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_100"
                                           }, {
                                               "name":    "GRAY_70"
                                           }],
                                       "tableUsed_len":    2,
                                       "gains":    [1, 10, 31, 64],
                                       "gains_len":    4,
                                       "vig":    [90, 60, 25, 0],
                                       "vig_len":    4
                                   }],
                               "illAll_len":    8
                           },
                           "tbl":    {
                               "tableAll":    [{
                                       "name":    "2112x1568_A_100",
                                       "resolution":    "2112x1568",
                                       "illumination":    "A",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [6813, 5391, 4409, 3748, 3219, 2894, 2665, 2526, 2462, 2486, 2585, 2760, 3078, 3479, 4127, 5106, 5972, 5837, 4944, 4062, 3388, 2949, 2665, 2408, 2254, 2178, 2203, 2315, 2510, 2790, 3179, 3766, 4647, 5667, 5391, 4460, 3625, 3054, 2674, 2357, 2107, 1943, 1868, 1887, 2004, 2203, 2494, 2841, 3344, 4105, 5073, 4912, 4062, 3315, 2810, 2408, 2096, 1833, 1667, 1595, 1619, 1731, 1929, 2222, 2594, 3078, 3730, 4647, 4565, 3748, 3078, 2629, 2222, 1864, 1609, 1444, 1375, 1392, 1505, 1700, 2014, 2394, 2831, 3448, 4287, 4335, 3542, 2927, 2462, 2046, 1697, 1441, 1279, 1208, 1231, 1346, 1532, 1833, 2228, 2684, 3273, 4000, 4172, 3402, 2810, 2329, 1910, 1563, 1312, 1157, 1098, 1114, 1215, 1412, 1708, 2101, 2568, 3128, 3841, 4000, 3287, 2741, 2274, 1833, 1491, 1234, 1103, 1045, 1059, 1162, 1337, 1636, 2025, 2510, 3054, 3730, 3959, 3259, 2731, 2248, 1799, 1460, 1213, 1083, 1024, 1042, 1128, 1307, 1602, 2009, 2486, 3042, 3642, 4000, 3287, 2721, 2267, 1824, 1485, 1234, 1101, 1048, 1055, 1148, 1341, 1625, 2019, 2526, 3042, 3730, 4127, 3358, 2790, 2322, 1919, 1557, 1305, 1155, 1098, 1114, 1213, 1410, 1704, 2107, 2585, 3153, 3822, 4335, 3494, 2916, 2454, 2030, 1723, 1430, 1263, 1202, 1238, 1330, 1532, 1820, 2222, 2693, 3232, 3979, 4538, 3712, 3078, 2603, 2203, 1859, 1589, 1433, 1362, 1402, 1497, 1704, 2004, 2401, 2862, 3433, 4217, 4944, 4000, 3287, 2800, 2423, 2090, 1829, 1657, 1589, 1609, 1727, 1929, 2241, 2620, 3078, 3748, 4565, 5281, 4384, 3575, 3042, 2647, 2350, 2096, 1929, 1864, 1882, 1993, 2209, 2518, 2873, 3358, 4105, 5073, 5794, 4881, 4000, 3388, 2938, 2647, 2408, 2241, 2197, 2203, 2322, 2526, 2790, 3166, 3748, 4592, 5585, 6471, 5317, 4311, 3625, 3179, 2841, 2620, 2494, 2431, 2478, 2560, 2731, 3030, 3433, 4105, 5073, 5927]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [5925, 4686, 3913, 3305, 2880, 2592, 2425, 2310, 2272, 2285, 2383, 2521, 2774, 3154, 3686, 4508, 5317, 5027, 4276, 3515, 2994, 2625, 2383, 2194, 2068, 2018, 2033, 2127, 2285, 2506, 2821, 3358, 4086, 4937, 4608, 3840, 3166, 2676, 2383, 2132, 1933, 1799, 1743, 1757, 1856, 2033, 2266, 2552, 2994, 3606, 4532, 4254, 3529, 2890, 2491, 2177, 1920, 1710, 1580, 1519, 1533, 1623, 1799, 2043, 2336, 2728, 3318, 4106, 3950, 3253, 2702, 2336, 2003, 1721, 1519, 1385, 1327, 1342, 1438, 1601, 1839, 2154, 2529, 3049, 3770, 3719, 3083, 2576, 2206, 1877, 1574, 1366, 1240, 1185, 1202, 1292, 1455, 1693, 2018, 2404, 2870, 3545, 3606, 2952, 2476, 2105, 1757, 1473, 1255, 1135, 1087, 1100, 1185, 1346, 1580, 1916, 2285, 2765, 3385, 3485, 2870, 2397, 2033, 1682, 1401, 1200, 1083, 1039, 1050, 1132, 1280, 1522, 1856, 2236, 2702, 3318, 3470, 2850, 2390, 2018, 1666, 1371, 1172, 1065, 1024, 1033, 1103, 1261, 1505, 1831, 2236, 2667, 3278, 3470, 2870, 2411, 2043, 1682, 1396, 1190, 1087, 1039, 1050, 1121, 1282, 1516, 1843, 2242, 2693, 3305, 3560, 2952, 2469, 2105, 1746, 1473, 1262, 1139, 1086, 1100, 1182, 1344, 1583, 1911, 2291, 2756, 3399, 3703, 3049, 2568, 2194, 1860, 1611, 1378, 1234, 1175, 1213, 1288, 1453, 1689, 2013, 2425, 2880, 3545, 3969, 3266, 2711, 2336, 2013, 1739, 1514, 1385, 1331, 1353, 1438, 1601, 1839, 2154, 2537, 3049, 3788, 4232, 3500, 2880, 2498, 2194, 1933, 1707, 1586, 1528, 1536, 1636, 1795, 2058, 2343, 2737, 3278, 4086, 4634, 3822, 3130, 2702, 2411, 2149, 1952, 1827, 1746, 1776, 1864, 2043, 2266, 2568, 2962, 3606, 4436, 4996, 4298, 3515, 3005, 2633, 2411, 2224, 2105, 2058, 2053, 2143, 2317, 2521, 2841, 3305, 4046, 4967, 5530, 4660, 3876, 3278, 2841, 2608, 2440, 2330, 2279, 2304, 2383, 2537, 2737, 3142, 3736, 4459, 5317]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [5853, 4699, 3943, 3303, 2881, 2562, 2380, 2239, 2186, 2204, 2307, 2479, 2730, 3130, 3766, 4595, 5469, 5133, 4355, 3587, 2984, 2619, 2353, 2164, 2022, 1974, 1983, 2072, 2239, 2486, 2813, 3343, 4119, 5101, 4835, 3943, 3214, 2712, 2373, 2114, 1911, 1773, 1707, 1725, 1823, 1998, 2245, 2555, 3006, 3699, 4647, 4401, 3587, 2952, 2516, 2186, 1915, 1697, 1552, 1488, 1507, 1605, 1776, 2032, 2353, 2757, 3384, 4223, 4139, 3343, 2776, 2373, 2032, 1732, 1507, 1371, 1312, 1325, 1425, 1590, 1860, 2192, 2586, 3141, 3888, 3870, 3153, 2610, 2251, 1906, 1584, 1368, 1231, 1171, 1192, 1282, 1452, 1711, 2057, 2471, 2973, 3682, 3715, 3038, 2562, 2158, 1792, 1483, 1263, 1134, 1081, 1094, 1182, 1355, 1615, 1965, 2366, 2851, 3512, 3603, 2973, 2471, 2109, 1732, 1425, 1204, 1087, 1037, 1050, 1137, 1294, 1546, 1889, 2320, 2785, 3439, 3618, 2932, 2479, 2077, 1707, 1405, 1196, 1071, 1024, 1034, 1113, 1276, 1535, 1872, 2301, 2776, 3411, 3650, 2973, 2493, 2104, 1721, 1429, 1215, 1091, 1045, 1051, 1132, 1298, 1558, 1906, 2320, 2804, 3454, 3715, 3038, 2562, 2169, 1803, 1501, 1276, 1145, 1091, 1098, 1187, 1357, 1618, 1960, 2393, 2871, 3527, 3907, 3165, 2652, 2263, 1911, 1637, 1384, 1237, 1179, 1215, 1290, 1467, 1721, 2077, 2486, 2984, 3650, 4139, 3370, 2794, 2393, 2047, 1750, 1529, 1389, 1323, 1349, 1439, 1612, 1876, 2209, 2627, 3165, 3870, 4448, 3587, 2984, 2578, 2227, 1951, 1732, 1581, 1523, 1532, 1634, 1811, 2072, 2400, 2794, 3384, 4245, 4780, 3943, 3226, 2776, 2421, 2169, 1946, 1811, 1743, 1773, 1864, 2052, 2301, 2610, 3061, 3699, 4673, 5229, 4425, 3618, 3049, 2677, 2428, 2221, 2093, 2027, 2042, 2136, 2301, 2531, 2871, 3397, 4099, 5040, 5732, 4835, 3981, 3343, 2911, 2619, 2421, 2301, 2239, 2270, 2353, 2516, 2776, 3141, 3732, 4570, 5364]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [4950, 4298, 3536, 3003, 2591, 2308, 2155, 2033, 2000, 2000, 2105, 2250, 2433, 2793, 3339, 4055, 4692, 4572, 4102, 3402, 2837, 2467, 2236, 2057, 1935, 1894, 1904, 1977, 2130, 2353, 2649, 3135, 3880, 4572, 4298, 3758, 3055, 2573, 2250, 2022, 1836, 1705, 1658, 1665, 1747, 1894, 2143, 2401, 2815, 3434, 4102, 3839, 3402, 2771, 2369, 2069, 1817, 1628, 1505, 1450, 1462, 1557, 1705, 1925, 2222, 2591, 3162, 3839, 3681, 3162, 2610, 2250, 1925, 1665, 1462, 1347, 1280, 1298, 1378, 1530, 1772, 2057, 2417, 2930, 3536, 3468, 2979, 2467, 2130, 1799, 1518, 1327, 1206, 1152, 1167, 1257, 1399, 1628, 1945, 2279, 2771, 3308, 3278, 2883, 2417, 2033, 1705, 1433, 1236, 1120, 1076, 1083, 1156, 1307, 1537, 1826, 2209, 2649, 3135, 3219, 2815, 2353, 1988, 1650, 1383, 1183, 1076, 1033, 1045, 1116, 1257, 1474, 1772, 2155, 2610, 3107, 3190, 2793, 2338, 1977, 1643, 1372, 1167, 1067, 1024, 1033, 1096, 1244, 1462, 1764, 2143, 2591, 3081, 3219, 2815, 2353, 1988, 1650, 1383, 1186, 1083, 1042, 1054, 1113, 1262, 1474, 1772, 2155, 2591, 3107, 3278, 2860, 2401, 2045, 1713, 1456, 1248, 1130, 1086, 1096, 1167, 1312, 1550, 1836, 2222, 2649, 3190, 3468, 2979, 2501, 2143, 1808, 1578, 1342, 1215, 1167, 1202, 1270, 1410, 1643, 1956, 2308, 2771, 3308, 3607, 3162, 2629, 2264, 1945, 1681, 1480, 1352, 1298, 1327, 1405, 1550, 1781, 2069, 2450, 2930, 3571, 3880, 3434, 2793, 2417, 2105, 1855, 1650, 1518, 1474, 1486, 1557, 1721, 1967, 2250, 2629, 3162, 3839, 4247, 3719, 3107, 2610, 2308, 2069, 1855, 1738, 1689, 1697, 1790, 1945, 2169, 2450, 2860, 3502, 4197, 4572, 4102, 3434, 2883, 2519, 2308, 2117, 2011, 1945, 1945, 2045, 2182, 2385, 2688, 3162, 3880, 4572, 4818, 4351, 3571, 3029, 2629, 2353, 2209, 2057, 2045, 2057, 2130, 2264, 2467, 2771, 3434, 4010, 4754]
                                       }
                                   }, {
                                       "name":    "2112x1568_A_70",
                                       "resolution":    "2112x1568",
                                       "illumination":    "A",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [5076, 4286, 3678, 3245, 2871, 2636, 2463, 2355, 2302, 2319, 2393, 2520, 2752, 3026, 3457, 4073, 4488, 4525, 4045, 3478, 3008, 2691, 2479, 2272, 2144, 2079, 2098, 2188, 2342, 2553, 2833, 3238, 3816, 4401, 4292, 3742, 3178, 2770, 2488, 2235, 2024, 1882, 1814, 1829, 1929, 2095, 2328, 2587, 2945, 3461, 4054, 4001, 3480, 2962, 2593, 2277, 2018, 1787, 1636, 1570, 1591, 1690, 1863, 2109, 2403, 2761, 3211, 3798, 3785, 3265, 2791, 2458, 2127, 1816, 1585, 1431, 1365, 1380, 1485, 1661, 1936, 2248, 2579, 3018, 3568, 3642, 3123, 2683, 2325, 1977, 1667, 1429, 1274, 1205, 1227, 1337, 1509, 1779, 2114, 2471, 2899, 3377, 3538, 3025, 2596, 2216, 1858, 1543, 1306, 1156, 1097, 1113, 1211, 1398, 1668, 2008, 2383, 2795, 3273, 3414, 2940, 2544, 2172, 1790, 1476, 1231, 1103, 1045, 1059, 1160, 1327, 1603, 1943, 2339, 2742, 3197, 3386, 2920, 2538, 2150, 1759, 1447, 1211, 1083, 1024, 1042, 1127, 1299, 1572, 1930, 2320, 2735, 3131, 3414, 2940, 2526, 2166, 1781, 1471, 1231, 1101, 1048, 1055, 1146, 1331, 1593, 1938, 2353, 2732, 3197, 3502, 2988, 2578, 2210, 1867, 1538, 1299, 1154, 1097, 1113, 1209, 1396, 1664, 2013, 2398, 2816, 3258, 3642, 3083, 2673, 2318, 1962, 1691, 1418, 1258, 1199, 1234, 1321, 1509, 1766, 2108, 2479, 2865, 3360, 3764, 3235, 2791, 2434, 2110, 1811, 1566, 1420, 1352, 1390, 1477, 1665, 1926, 2254, 2605, 3005, 3514, 4025, 3429, 2938, 2584, 2291, 2012, 1783, 1627, 1564, 1581, 1687, 1863, 2126, 2426, 2761, 3226, 3735, 4209, 3682, 3137, 2760, 2464, 2229, 2014, 1868, 1810, 1825, 1919, 2100, 2349, 2615, 2957, 3461, 4054, 4493, 3996, 3427, 3008, 2681, 2463, 2272, 2133, 2096, 2098, 2194, 2356, 2553, 2822, 3224, 3774, 4341, 4837, 4231, 3601, 3145, 2837, 2590, 2423, 2326, 2275, 2312, 2371, 2495, 2712, 2988, 3440, 4049, 4456]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [4455, 3760, 3289, 2884, 2586, 2376, 2252, 2163, 2133, 2141, 2216, 2314, 2497, 2761, 3111, 3627, 4029, 3936, 3530, 3036, 2677, 2410, 2229, 2079, 1975, 1933, 1943, 2019, 2142, 2307, 2532, 2909, 3384, 3870, 3706, 3251, 2798, 2445, 2230, 2030, 1864, 1747, 1697, 1708, 1793, 1941, 2126, 2339, 2656, 3066, 3649, 3497, 3049, 2602, 2313, 2068, 1855, 1671, 1553, 1497, 1509, 1589, 1742, 1947, 2176, 2465, 2878, 3384, 3305, 2857, 2468, 2196, 1925, 1681, 1498, 1373, 1318, 1332, 1421, 1568, 1774, 2033, 2319, 2690, 3165, 3155, 2741, 2377, 2094, 1820, 1549, 1356, 1236, 1182, 1199, 1284, 1436, 1648, 1924, 2227, 2563, 3017, 3086, 2647, 2302, 2011, 1714, 1457, 1250, 1134, 1087, 1099, 1182, 1334, 1547, 1839, 2134, 2489, 2909, 3001, 2587, 2239, 1951, 1647, 1389, 1197, 1083, 1039, 1050, 1130, 1272, 1495, 1788, 2097, 2444, 2867, 2993, 2573, 2235, 1939, 1633, 1361, 1170, 1065, 1024, 1033, 1102, 1254, 1480, 1767, 2099, 2417, 2838, 2989, 2587, 2252, 1960, 1647, 1384, 1188, 1087, 1039, 1050, 1120, 1274, 1490, 1776, 2102, 2437, 2856, 3049, 2647, 2296, 2011, 1704, 1457, 1257, 1138, 1086, 1099, 1179, 1332, 1550, 1834, 2139, 2482, 2920, 3142, 2712, 2370, 2083, 1804, 1584, 1368, 1230, 1173, 1209, 1280, 1434, 1644, 1919, 2245, 2571, 3017, 3320, 2868, 2475, 2196, 1935, 1698, 1494, 1373, 1322, 1342, 1421, 1568, 1774, 2033, 2326, 2690, 3179, 3480, 3025, 2594, 2319, 2083, 1867, 1668, 1559, 1506, 1512, 1601, 1739, 1960, 2183, 2473, 2846, 3368, 3725, 3237, 2768, 2468, 2254, 2046, 1881, 1773, 1700, 1726, 1800, 1950, 2126, 2352, 2629, 3066, 3577, 3913, 3547, 3036, 2687, 2417, 2254, 2106, 2009, 1969, 1961, 2033, 2170, 2320, 2549, 2866, 3353, 3892, 4178, 3740, 3260, 2862, 2553, 2389, 2266, 2181, 2139, 2158, 2216, 2328, 2465, 2751, 3150, 3590, 4029]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [4404, 3769, 3313, 2882, 2587, 2350, 2213, 2100, 2057, 2069, 2149, 2278, 2460, 2741, 3174, 3692, 4136, 4013, 3591, 3094, 2669, 2405, 2202, 2052, 1933, 1892, 1898, 1969, 2101, 2290, 2526, 2897, 3409, 3989, 3876, 3333, 2838, 2476, 2221, 2014, 1843, 1723, 1663, 1678, 1762, 1909, 2107, 2341, 2666, 3140, 3735, 3609, 3096, 2655, 2334, 2076, 1850, 1658, 1527, 1467, 1484, 1572, 1721, 1937, 2191, 2490, 2932, 3473, 3453, 2931, 2531, 2229, 1952, 1691, 1487, 1360, 1304, 1315, 1408, 1558, 1794, 2067, 2368, 2765, 3257, 3274, 2799, 2407, 2134, 1847, 1559, 1358, 1227, 1169, 1189, 1274, 1433, 1665, 1959, 2286, 2649, 3126, 3173, 2719, 2378, 2060, 1747, 1466, 1258, 1133, 1081, 1093, 1179, 1343, 1580, 1884, 2205, 2562, 3011, 3095, 2674, 2305, 2021, 1694, 1413, 1201, 1087, 1037, 1050, 1135, 1286, 1518, 1818, 2171, 2515, 2964, 3112, 2642, 2314, 1993, 1672, 1394, 1194, 1071, 1024, 1034, 1112, 1269, 1509, 1804, 2156, 2510, 2945, 3133, 2674, 2324, 2016, 1684, 1416, 1212, 1091, 1045, 1051, 1130, 1289, 1529, 1834, 2171, 2531, 2976, 3173, 2719, 2378, 2070, 1757, 1484, 1271, 1144, 1091, 1097, 1184, 1345, 1583, 1879, 2229, 2579, 3023, 3303, 2809, 2443, 2145, 1851, 1609, 1373, 1233, 1176, 1211, 1282, 1447, 1674, 1977, 2299, 2658, 3100, 3453, 2954, 2547, 2247, 1966, 1708, 1508, 1377, 1314, 1339, 1422, 1578, 1808, 2082, 2403, 2785, 3243, 3645, 3096, 2682, 2389, 2113, 1883, 1691, 1554, 1501, 1508, 1599, 1754, 1973, 2233, 2521, 2932, 3490, 3835, 3333, 2848, 2531, 2263, 2064, 1876, 1758, 1697, 1723, 1800, 1958, 2157, 2388, 2711, 3140, 3754, 4083, 3645, 3119, 2724, 2455, 2269, 2103, 1998, 1941, 1951, 2027, 2156, 2329, 2574, 2940, 3394, 3945, 4320, 3871, 3342, 2915, 2612, 2399, 2249, 2155, 2104, 2128, 2189, 2310, 2498, 2750, 3147, 3673, 4062]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [3772, 3470, 2994, 2638, 2343, 2131, 2016, 1918, 1892, 1889, 1972, 2081, 2210, 2467, 2839, 3288, 3592, 3605, 3396, 2945, 2546, 2273, 2099, 1956, 1854, 1819, 1826, 1883, 2005, 2175, 2388, 2729, 3225, 3605, 3474, 3187, 2706, 2357, 2112, 1931, 1774, 1659, 1618, 1622, 1692, 1814, 2017, 2209, 2507, 2930, 3327, 3179, 2946, 2502, 2205, 1970, 1759, 1593, 1482, 1431, 1441, 1526, 1655, 1840, 2076, 2349, 2752, 3179, 3096, 2783, 2389, 2119, 1854, 1628, 1444, 1337, 1273, 1289, 1363, 1501, 1713, 1947, 2223, 2592, 2983, 2956, 2654, 2282, 2025, 1747, 1496, 1318, 1202, 1150, 1164, 1250, 1382, 1587, 1857, 2118, 2480, 2830, 2824, 2589, 2250, 1946, 1665, 1418, 1232, 1119, 1076, 1082, 1153, 1297, 1507, 1757, 2067, 2392, 2710, 2787, 2540, 2200, 1909, 1617, 1372, 1181, 1076, 1033, 1045, 1115, 1250, 1450, 1711, 2025, 2367, 2697, 2767, 2524, 2189, 1901, 1611, 1362, 1165, 1067, 1024, 1033, 1095, 1238, 1439, 1705, 2016, 2353, 2679, 2787, 2540, 2200, 1909, 1617, 1372, 1184, 1083, 1042, 1054, 1112, 1255, 1450, 1711, 2025, 2350, 2697, 2824, 2569, 2236, 1957, 1673, 1440, 1243, 1129, 1086, 1095, 1164, 1302, 1519, 1766, 2078, 2392, 2754, 2956, 2654, 2312, 2037, 1755, 1553, 1333, 1211, 1165, 1199, 1263, 1393, 1601, 1867, 2143, 2480, 2830, 3038, 2783, 2405, 2132, 1872, 1643, 1461, 1342, 1290, 1317, 1389, 1520, 1721, 1957, 2251, 2592, 3010, 3211, 2972, 2520, 2248, 2003, 1794, 1614, 1494, 1454, 1464, 1526, 1670, 1878, 2101, 2382, 2752, 3179, 3436, 3156, 2749, 2388, 2163, 1973, 1792, 1690, 1647, 1652, 1732, 1861, 2040, 2251, 2545, 2984, 3398, 3605, 3396, 2970, 2584, 2318, 2162, 2010, 1923, 1866, 1863, 1945, 2051, 2202, 2421, 2751, 3225, 3605, 3680, 3509, 3021, 2659, 2375, 2170, 2063, 1939, 1932, 1939, 1994, 2093, 2238, 2449, 2914, 3255, 3635]
                                       }
                                   }, {
                                       "name":    "2112x1568_CWF_100",
                                       "resolution":    "2112x1568",
                                       "illumination":    "CWF",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [5913, 4544, 3758, 3130, 2700, 2430, 2232, 2140, 2096, 2107, 2185, 2347, 2566, 2994, 3563, 4353, 5045, 4984, 4263, 3444, 2930, 2566, 2282, 2086, 1966, 1903, 1920, 2014, 2162, 2387, 2700, 3228, 3937, 4810, 4595, 3828, 3084, 2598, 2307, 2044, 1851, 1720, 1665, 1692, 1780, 1929, 2162, 2444, 2849, 3533, 4307, 4263, 3444, 2830, 2401, 2118, 1843, 1651, 1529, 1459, 1480, 1570, 1727, 1948, 2244, 2614, 3203, 4014, 3864, 3179, 2631, 2269, 1966, 1685, 1480, 1358, 1298, 1306, 1409, 1558, 1780, 2075, 2430, 2951, 3626, 3626, 2972, 2488, 2140, 1835, 1540, 1349, 1225, 1169, 1186, 1278, 1433, 1658, 1957, 2307, 2772, 3444, 3533, 2889, 2401, 2034, 1727, 1453, 1262, 1134, 1092, 1092, 1176, 1344, 1558, 1860, 2220, 2682, 3228, 3415, 2791, 2333, 1976, 1658, 1385, 1196, 1086, 1042, 1050, 1131, 1278, 1501, 1811, 2162, 2582, 3130, 3360, 2772, 2333, 1957, 1638, 1367, 1179, 1072, 1024, 1034, 1106, 1258, 1490, 1787, 2162, 2582, 3130, 3387, 2772, 2333, 1985, 1658, 1385, 1189, 1089, 1040, 1050, 1128, 1278, 1501, 1803, 2173, 2614, 3130, 3473, 2849, 2387, 2044, 1706, 1453, 1251, 1131, 1086, 1095, 1183, 1340, 1564, 1868, 2220, 2682, 3280, 3594, 2994, 2473, 2129, 1819, 1588, 1353, 1221, 1163, 1200, 1274, 1438, 1671, 1976, 2333, 2791, 3415, 3864, 3154, 2582, 2244, 1938, 1685, 1474, 1349, 1298, 1323, 1404, 1570, 1811, 2118, 2459, 2972, 3626, 4093, 3415, 2791, 2401, 2107, 1851, 1658, 1523, 1480, 1480, 1570, 1742, 1995, 2282, 2648, 3228, 4014, 4544, 3793, 3038, 2582, 2294, 2044, 1851, 1727, 1678, 1692, 1787, 1957, 2197, 2503, 2910, 3563, 4446, 4984, 4219, 3415, 2889, 2519, 2282, 2096, 1976, 1920, 1938, 2024, 2197, 2430, 2772, 3254, 4053, 4867, 5374, 4495, 3758, 3084, 2700, 2401, 2244, 2118, 2086, 2107, 2173, 2374, 2598, 3016, 3594, 4399, 5237]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [5398, 4454, 3640, 3092, 2687, 2413, 2275, 2159, 2130, 2145, 2227, 2350, 2589, 2949, 3500, 4163, 4899, 4683, 4031, 3300, 2806, 2459, 2251, 2048, 1954, 1896, 1924, 1997, 2152, 2350, 2665, 3138, 3860, 4683, 4333, 3619, 2976, 2528, 2251, 2003, 1841, 1712, 1676, 1676, 1774, 1918, 2123, 2404, 2793, 3406, 4191, 4031, 3317, 2734, 2333, 2061, 1815, 1637, 1520, 1464, 1478, 1561, 1712, 1936, 2212, 2558, 3107, 3860, 3703, 3077, 2558, 2212, 1913, 1650, 1471, 1341, 1289, 1308, 1394, 1550, 1755, 2048, 2377, 2869, 3578, 3519, 2922, 2450, 2088, 1794, 1520, 1330, 1213, 1162, 1184, 1269, 1419, 1633, 1918, 2275, 2722, 3352, 3370, 2806, 2350, 2003, 1689, 1428, 1237, 1123, 1081, 1089, 1169, 1324, 1538, 1835, 2181, 2610, 3217, 3283, 2710, 2291, 1954, 1633, 1364, 1179, 1078, 1036, 1046, 1119, 1264, 1481, 1784, 2137, 2548, 3138, 3266, 2687, 2291, 1930, 1617, 1349, 1167, 1063, 1024, 1029, 1098, 1239, 1458, 1764, 2116, 2538, 3122, 3300, 2710, 2308, 1954, 1625, 1376, 1184, 1081, 1039, 1044, 1114, 1261, 1485, 1789, 2152, 2558, 3122, 3370, 2781, 2359, 2022, 1694, 1438, 1244, 1127, 1080, 1089, 1175, 1321, 1553, 1852, 2196, 2610, 3233, 3519, 2895, 2440, 2102, 1789, 1561, 1347, 1218, 1169, 1202, 1266, 1419, 1642, 1948, 2291, 2734, 3424, 3769, 3077, 2579, 2219, 1924, 1681, 1474, 1355, 1300, 1324, 1403, 1561, 1784, 2068, 2413, 2908, 3619, 4006, 3317, 2734, 2368, 2095, 1852, 1654, 1527, 1488, 1495, 1580, 1735, 1948, 2243, 2600, 3153, 3860, 4363, 3619, 3004, 2558, 2283, 2048, 1857, 1745, 1685, 1703, 1789, 1954, 2159, 2450, 2831, 3462, 4275, 4753, 4057, 3352, 2856, 2508, 2291, 2116, 1997, 1954, 1960, 2041, 2189, 2395, 2722, 3169, 3884, 4789, 5264, 4454, 3682, 3092, 2722, 2469, 2283, 2196, 2166, 2189, 2251, 2413, 2621, 2976, 3500, 4304, 5264]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [5563, 4447, 3661, 3082, 2672, 2393, 2220, 2138, 2090, 2083, 2182, 2332, 2565, 2941, 3502, 4269, 4962, 4849, 4080, 3355, 2825, 2467, 2227, 2043, 1921, 1893, 1887, 1974, 2131, 2341, 2683, 3142, 3883, 4742, 4509, 3682, 3024, 2555, 2259, 2011, 1823, 1707, 1641, 1663, 1753, 1898, 2131, 2402, 2825, 3464, 4269, 4159, 3373, 2752, 2367, 2076, 1833, 1633, 1507, 1449, 1469, 1558, 1711, 1932, 2235, 2596, 3158, 3930, 3836, 3127, 2617, 2259, 1927, 1658, 1465, 1337, 1281, 1294, 1398, 1546, 1787, 2090, 2420, 2927, 3661, 3641, 2968, 2495, 2145, 1823, 1539, 1337, 1211, 1155, 1180, 1261, 1420, 1650, 1956, 2316, 2776, 3483, 3502, 2875, 2420, 2043, 1716, 1446, 1246, 1124, 1079, 1090, 1171, 1332, 1562, 1876, 2227, 2706, 3321, 3391, 2776, 2332, 1992, 1654, 1386, 1191, 1083, 1039, 1051, 1132, 1279, 1503, 1833, 2189, 2628, 3237, 3373, 2764, 2341, 1974, 1629, 1369, 1171, 1074, 1024, 1036, 1109, 1259, 1493, 1792, 2182, 2617, 3173, 3409, 2812, 2358, 1999, 1667, 1392, 1198, 1086, 1042, 1054, 1126, 1281, 1517, 1823, 2204, 2650, 3221, 3502, 2862, 2402, 2056, 1720, 1459, 1256, 1138, 1088, 1097, 1180, 1337, 1577, 1904, 2259, 2683, 3338, 3620, 2968, 2505, 2160, 1823, 1589, 1360, 1225, 1167, 1207, 1281, 1439, 1676, 1986, 2358, 2825, 3483, 3883, 3158, 2639, 2251, 1950, 1698, 1493, 1363, 1302, 1337, 1411, 1581, 1807, 2117, 2495, 2996, 3747, 4159, 3427, 2812, 2448, 2117, 1865, 1667, 1543, 1482, 1496, 1581, 1753, 1992, 2291, 2650, 3237, 4029, 4509, 3747, 3082, 2628, 2324, 2069, 1876, 1758, 1693, 1716, 1813, 1962, 2212, 2486, 2888, 3540, 4386, 4924, 4159, 3409, 2888, 2535, 2307, 2124, 1999, 1962, 1974, 2050, 2212, 2429, 2752, 3237, 4004, 4886, 5377, 4574, 3791, 3142, 2740, 2486, 2316, 2189, 2160, 2167, 2267, 2411, 2650, 3052, 3600, 4386, 5203]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [4358, 3852, 3227, 2677, 2360, 2080, 1970, 1872, 1837, 1837, 1895, 2010, 2203, 2541, 3000, 3708, 4234, 4117, 3708, 3093, 2584, 2253, 2051, 1883, 1782, 1751, 1751, 1826, 1957, 2140, 2417, 2856, 3451, 4117, 3902, 3411, 2777, 2360, 2066, 1848, 1701, 1601, 1543, 1551, 1627, 1761, 1945, 2203, 2584, 3159, 3755, 3575, 3093, 2519, 2171, 1907, 1682, 1527, 1418, 1379, 1392, 1460, 1601, 1771, 2024, 2323, 2829, 3451, 3335, 2856, 2378, 2051, 1782, 1559, 1392, 1289, 1246, 1257, 1324, 1460, 1636, 1907, 2219, 2677, 3298, 3159, 2701, 2287, 1945, 1691, 1439, 1284, 1182, 1142, 1150, 1216, 1348, 1535, 1793, 2095, 2519, 3031, 3000, 2607, 2203, 1872, 1592, 1366, 1206, 1108, 1068, 1072, 1142, 1268, 1453, 1711, 2010, 2398, 2912, 2970, 2562, 2140, 1826, 1543, 1324, 1159, 1072, 1035, 1038, 1108, 1226, 1405, 1672, 1983, 2341, 2856, 2912, 2541, 2140, 1826, 1551, 1312, 1146, 1068, 1024, 1035, 1080, 1211, 1392, 1654, 1970, 2360, 2803, 2970, 2562, 2171, 1848, 1543, 1324, 1164, 1072, 1038, 1049, 1103, 1231, 1418, 1672, 1983, 2378, 2803, 3062, 2607, 2203, 1883, 1601, 1379, 1216, 1124, 1076, 1080, 1146, 1278, 1453, 1730, 2037, 2437, 2912, 3159, 2701, 2270, 1957, 1691, 1496, 1301, 1201, 1159, 1182, 1226, 1360, 1559, 1837, 2140, 2562, 3126, 3335, 2856, 2378, 2080, 1782, 1575, 1392, 1295, 1262, 1278, 1342, 1474, 1663, 1920, 2270, 2701, 3227, 3575, 3093, 2562, 2219, 1945, 1711, 1559, 1439, 1405, 1411, 1489, 1627, 1848, 2066, 2398, 2912, 3532, 3852, 3373, 2803, 2378, 2125, 1883, 1730, 1636, 1575, 1601, 1663, 1815, 2024, 2270, 2630, 3227, 3852, 4175, 3803, 3093, 2630, 2323, 2125, 1945, 1860, 1804, 1804, 1872, 2024, 2219, 2498, 2941, 3619, 4295, 4295, 3902, 3298, 2777, 2398, 2155, 2010, 1932, 1907, 1920, 1997, 2125, 2323, 2653, 3062, 3852, 4422]
                                       }
                                   }, {
                                       "name":    "2112x1568_CWF_70",
                                       "resolution":    "2112x1568",
                                       "illumination":    "CWF",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [4446, 3654, 3168, 2741, 2434, 2236, 2083, 2013, 1977, 1983, 2042, 2164, 2322, 2630, 3015, 3511, 3839, 3904, 3520, 2978, 2624, 2359, 2139, 1982, 1882, 1827, 1840, 1917, 2033, 2204, 2431, 2804, 3269, 3778, 3696, 3242, 2730, 2378, 2162, 1951, 1788, 1673, 1624, 1647, 1722, 1846, 2034, 2246, 2535, 3009, 3481, 3504, 2980, 2552, 2233, 2015, 1783, 1615, 1505, 1440, 1458, 1539, 1676, 1861, 2096, 2369, 2785, 3313, 3238, 2797, 2407, 2136, 1891, 1647, 1461, 1347, 1290, 1297, 1393, 1527, 1720, 1963, 2234, 2609, 3053, 3081, 2648, 2300, 2034, 1780, 1517, 1340, 1221, 1167, 1183, 1271, 1415, 1615, 1868, 2143, 2481, 2937, 3027, 2594, 2236, 1947, 1686, 1437, 1257, 1133, 1092, 1091, 1173, 1332, 1527, 1788, 2077, 2419, 2784, 2944, 2520, 2182, 1898, 1624, 1374, 1193, 1086, 1042, 1050, 1129, 1270, 1476, 1747, 2031, 2343, 2716, 2904, 2506, 2185, 1883, 1606, 1357, 1177, 1072, 1024, 1034, 1105, 1251, 1466, 1726, 2033, 2345, 2719, 2922, 2504, 2182, 1907, 1624, 1374, 1187, 1089, 1040, 1050, 1126, 1270, 1476, 1740, 2041, 2370, 2716, 2980, 2560, 2224, 1956, 1666, 1437, 1246, 1130, 1086, 1094, 1180, 1328, 1532, 1795, 2077, 2419, 2825, 3056, 2666, 2287, 2024, 1766, 1563, 1343, 1217, 1161, 1197, 1267, 1419, 1627, 1886, 2165, 2497, 2914, 3238, 2776, 2364, 2114, 1866, 1647, 1455, 1339, 1290, 1313, 1388, 1539, 1749, 2001, 2259, 2626, 3053, 3374, 2957, 2519, 2233, 2005, 1791, 1622, 1499, 1460, 1458, 1539, 1690, 1903, 2129, 2398, 2805, 3313, 3658, 3214, 2692, 2364, 2151, 1951, 1788, 1680, 1636, 1647, 1729, 1872, 2065, 2296, 2586, 3032, 3585, 3904, 3486, 2955, 2589, 2318, 2139, 1991, 1891, 1843, 1857, 1926, 2064, 2241, 2491, 2825, 3358, 3819, 4069, 3617, 3168, 2704, 2434, 2211, 2094, 1993, 1968, 1983, 2031, 2188, 2348, 2648, 3039, 3545, 3973]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [4086, 3586, 3075, 2710, 2423, 2221, 2121, 2029, 2007, 2017, 2079, 2167, 2341, 2594, 2965, 3369, 3737, 3685, 3341, 2862, 2520, 2266, 2112, 1947, 1871, 1821, 1844, 1901, 2024, 2172, 2401, 2731, 3210, 3685, 3500, 3077, 2641, 2318, 2113, 1913, 1779, 1666, 1634, 1632, 1717, 1836, 1999, 2211, 2489, 2908, 3394, 3326, 2877, 2470, 2174, 1963, 1757, 1602, 1496, 1444, 1456, 1530, 1662, 1850, 2067, 2321, 2708, 3195, 3113, 2713, 2344, 2085, 1843, 1614, 1452, 1331, 1281, 1299, 1379, 1520, 1697, 1939, 2188, 2542, 3015, 2997, 2606, 2267, 1987, 1742, 1498, 1321, 1209, 1160, 1181, 1262, 1401, 1592, 1833, 2115, 2440, 2865, 2897, 2524, 2191, 1918, 1650, 1413, 1233, 1122, 1081, 1088, 1166, 1313, 1508, 1765, 2042, 2359, 2775, 2838, 2451, 2145, 1878, 1600, 1353, 1177, 1078, 1036, 1046, 1118, 1257, 1457, 1722, 2009, 2314, 2722, 2828, 2434, 2147, 1858, 1586, 1339, 1165, 1063, 1024, 1029, 1097, 1233, 1436, 1705, 1992, 2308, 2712, 2852, 2451, 2160, 1878, 1593, 1365, 1182, 1081, 1039, 1044, 1113, 1254, 1460, 1727, 2022, 2323, 2709, 2897, 2503, 2199, 1936, 1655, 1423, 1240, 1126, 1080, 1088, 1172, 1310, 1522, 1780, 2055, 2359, 2788, 2997, 2584, 2258, 2000, 1738, 1537, 1338, 1214, 1167, 1199, 1259, 1401, 1600, 1860, 2129, 2450, 2922, 3164, 2713, 2362, 2091, 1853, 1643, 1455, 1344, 1292, 1314, 1387, 1530, 1724, 1957, 2219, 2574, 3047, 3307, 2877, 2470, 2204, 1994, 1792, 1618, 1503, 1467, 1472, 1548, 1683, 1861, 2095, 2357, 2745, 3195, 3522, 3077, 2664, 2344, 2141, 1954, 1794, 1697, 1643, 1658, 1731, 1869, 2031, 2251, 2521, 2952, 3457, 3736, 3361, 2904, 2562, 2309, 2147, 2009, 1910, 1874, 1877, 1941, 2057, 2211, 2449, 2756, 3228, 3762, 3992, 3586, 3108, 2710, 2453, 2270, 2128, 2062, 2039, 2056, 2100, 2221, 2368, 2616, 2965, 3474, 3992]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [4201, 3581, 3092, 2702, 2411, 2204, 2073, 2011, 1972, 1962, 2039, 2151, 2321, 2587, 2967, 3448, 3781, 3806, 3379, 2907, 2536, 2273, 2091, 1943, 1841, 1818, 1810, 1881, 2006, 2164, 2416, 2735, 3227, 3728, 3632, 3126, 2680, 2341, 2120, 1921, 1762, 1661, 1602, 1620, 1697, 1818, 2006, 2210, 2516, 2954, 3452, 3424, 2923, 2486, 2204, 1977, 1774, 1598, 1484, 1430, 1448, 1527, 1661, 1846, 2088, 2354, 2749, 3249, 3216, 2754, 2395, 2127, 1855, 1622, 1447, 1327, 1274, 1285, 1382, 1516, 1727, 1976, 2225, 2589, 3080, 3093, 2645, 2306, 2038, 1769, 1516, 1328, 1207, 1153, 1177, 1254, 1402, 1608, 1867, 2150, 2485, 2968, 3003, 2582, 2253, 1955, 1675, 1431, 1241, 1123, 1079, 1089, 1168, 1321, 1530, 1802, 2083, 2440, 2858, 2925, 2507, 2182, 1913, 1620, 1375, 1189, 1083, 1039, 1051, 1130, 1271, 1477, 1767, 2055, 2382, 2802, 2914, 2500, 2192, 1898, 1598, 1359, 1169, 1074, 1024, 1036, 1108, 1252, 1469, 1731, 2051, 2375, 2753, 2940, 2538, 2205, 1920, 1633, 1381, 1195, 1086, 1042, 1054, 1124, 1273, 1491, 1758, 2068, 2400, 2789, 3003, 2571, 2237, 1967, 1679, 1443, 1251, 1137, 1088, 1096, 1177, 1326, 1545, 1828, 2111, 2420, 2872, 3077, 2645, 2315, 2052, 1769, 1563, 1350, 1221, 1165, 1203, 1273, 1420, 1632, 1895, 2187, 2525, 2968, 3253, 2779, 2414, 2120, 1877, 1659, 1474, 1352, 1294, 1327, 1395, 1549, 1745, 2000, 2290, 2646, 3147, 3424, 2966, 2536, 2275, 2014, 1804, 1630, 1518, 1462, 1473, 1549, 1700, 1901, 2137, 2399, 2813, 3325, 3632, 3178, 2728, 2404, 2177, 1973, 1811, 1709, 1650, 1670, 1753, 1876, 2078, 2282, 2568, 3014, 3540, 3861, 3440, 2950, 2589, 2332, 2162, 2016, 1912, 1881, 1889, 1949, 2077, 2240, 2474, 2811, 3320, 3833, 4071, 3676, 3194, 2751, 2468, 2284, 2157, 2056, 2034, 2037, 2114, 2220, 2392, 2678, 3044, 3536, 3949]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [3358, 3137, 2751, 2372, 2148, 1934, 1853, 1775, 1747, 1744, 1788, 1874, 2016, 2261, 2573, 3029, 3271, 3274, 3092, 2695, 2333, 2088, 1935, 1799, 1714, 1688, 1686, 1747, 1851, 1990, 2193, 2504, 2894, 3274, 3178, 2912, 2476, 2173, 1948, 1773, 1649, 1562, 1510, 1516, 1581, 1693, 1841, 2038, 2316, 2713, 3068, 2977, 2696, 2289, 2031, 1824, 1634, 1498, 1399, 1363, 1374, 1435, 1559, 1700, 1902, 2123, 2483, 2882, 2826, 2531, 2189, 1941, 1722, 1528, 1377, 1281, 1240, 1250, 1312, 1435, 1588, 1813, 2052, 2384, 2797, 2712, 2422, 2125, 1857, 1646, 1420, 1276, 1179, 1140, 1148, 1210, 1333, 1501, 1720, 1958, 2270, 2611, 2602, 2356, 2062, 1799, 1559, 1354, 1202, 1107, 1068, 1071, 1140, 1259, 1428, 1652, 1892, 2180, 2532, 2587, 2326, 2012, 1761, 1515, 1315, 1157, 1072, 1035, 1038, 1107, 1220, 1385, 1619, 1873, 2139, 2495, 2543, 2311, 2014, 1762, 1524, 1304, 1144, 1068, 1024, 1035, 1079, 1206, 1373, 1604, 1863, 2157, 2456, 2587, 2326, 2039, 1781, 1515, 1315, 1162, 1072, 1038, 1049, 1102, 1225, 1397, 1619, 1873, 2170, 2453, 2651, 2356, 2062, 1809, 1567, 1366, 1212, 1123, 1076, 1079, 1144, 1269, 1428, 1669, 1915, 2213, 2532, 2712, 2422, 2110, 1868, 1646, 1475, 1293, 1198, 1157, 1179, 1220, 1345, 1523, 1760, 1997, 2306, 2686, 2826, 2531, 2189, 1967, 1722, 1543, 1377, 1286, 1255, 1270, 1329, 1448, 1612, 1824, 2096, 2403, 2742, 2977, 2696, 2325, 2074, 1858, 1661, 1528, 1419, 1388, 1392, 1462, 1583, 1770, 1939, 2186, 2550, 2944, 3140, 2882, 2497, 2189, 2001, 1804, 1676, 1595, 1540, 1562, 1614, 1743, 1911, 2096, 2354, 2767, 3140, 3316, 3166, 2695, 2372, 2149, 2000, 1855, 1786, 1737, 1735, 1789, 1911, 2059, 2261, 2572, 3024, 3403, 3314, 3174, 2807, 2453, 2180, 1999, 1889, 1828, 1809, 1818, 1877, 1973, 2117, 2352, 2622, 3137, 3403]
                                       }
                                   }, {
                                       "name":    "2112x1568_D50_100",
                                       "resolution":    "2112x1568",
                                       "illumination":    "D50",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [6366, 5193, 4169, 3483, 3026, 2704, 2492, 2342, 2300, 2331, 2420, 2593, 2856, 3280, 3913, 4846, 5656, 5533, 4712, 3883, 3198, 2778, 2492, 2289, 2117, 2057, 2083, 2191, 2375, 2634, 2991, 3556, 4386, 5302, 5039, 4239, 3436, 2872, 2516, 2219, 2009, 1854, 1795, 1808, 1918, 2100, 2364, 2690, 3178, 3883, 4801, 4712, 3824, 3100, 2647, 2310, 2001, 1758, 1618, 1549, 1558, 1671, 1848, 2117, 2455, 2856, 3532, 4386, 4311, 3532, 2922, 2479, 2100, 1802, 1558, 1411, 1340, 1366, 1464, 1660, 1925, 2259, 2661, 3259, 3974, 4069, 3345, 2763, 2331, 1962, 1639, 1407, 1257, 1201, 1215, 1313, 1494, 1764, 2109, 2529, 3081, 3767, 3883, 3218, 2661, 2219, 1854, 1526, 1289, 1154, 1099, 1111, 1207, 1384, 1650, 2009, 2444, 2922, 3607, 3767, 3100, 2593, 2153, 1770, 1456, 1224, 1095, 1041, 1060, 1149, 1313, 1588, 1947, 2375, 2872, 3532, 3712, 3063, 2580, 2126, 1746, 1431, 1204, 1076, 1024, 1039, 1124, 1293, 1558, 1925, 2342, 2856, 3459, 3767, 3119, 2593, 2163, 1770, 1456, 1227, 1097, 1039, 1060, 1139, 1316, 1588, 1939, 2375, 2889, 3483, 3883, 3158, 2647, 2219, 1834, 1530, 1289, 1149, 1095, 1107, 1209, 1384, 1660, 2016, 2444, 2939, 3659, 4037, 3302, 2733, 2321, 1954, 1671, 1411, 1260, 1195, 1233, 1316, 1503, 1783, 2135, 2554, 3081, 3767, 4239, 3507, 2889, 2492, 2109, 1802, 1563, 1419, 1355, 1377, 1473, 1655, 1939, 2300, 2718, 3280, 4005, 4626, 3796, 3081, 2647, 2300, 2001, 1777, 1618, 1558, 1573, 1677, 1875, 2153, 2479, 2922, 3556, 4348, 5039, 4169, 3390, 2889, 2529, 2249, 2016, 1868, 1808, 1821, 1925, 2117, 2386, 2733, 3198, 3943, 4846, 5473, 4626, 3767, 3198, 2793, 2516, 2300, 2153, 2109, 2117, 2210, 2386, 2675, 3026, 3556, 4424, 5415, 5851, 5039, 4102, 3436, 2991, 2718, 2492, 2364, 2300, 2342, 2432, 2607, 2889, 3302, 3913, 4846, 5785]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [5564, 4546, 3807, 3208, 2782, 2526, 2340, 2229, 2192, 2192, 2280, 2448, 2670, 3048, 3617, 4348, 5068, 4822, 4166, 3459, 2925, 2542, 2313, 2127, 1999, 1955, 1960, 2061, 2229, 2426, 2772, 3247, 3958, 4793, 4470, 3771, 3084, 2626, 2326, 2077, 1885, 1753, 1707, 1707, 1804, 1979, 2198, 2486, 2904, 3552, 4372, 4166, 3429, 2832, 2433, 2127, 1868, 1665, 1539, 1484, 1496, 1588, 1749, 1984, 2293, 2652, 3221, 3958, 3862, 3183, 2652, 2300, 1955, 1689, 1484, 1355, 1300, 1317, 1403, 1569, 1808, 2116, 2463, 2991, 3684, 3650, 3014, 2550, 2174, 1842, 1551, 1353, 1224, 1170, 1180, 1273, 1426, 1665, 1984, 2347, 2801, 3490, 3505, 2904, 2433, 2061, 1730, 1455, 1245, 1129, 1081, 1096, 1170, 1330, 1566, 1890, 2260, 2715, 3301, 3400, 2832, 2368, 2019, 1668, 1393, 1191, 1080, 1037, 1051, 1127, 1273, 1507, 1821, 2204, 2652, 3261, 3371, 2812, 2361, 1989, 1644, 1367, 1172, 1064, 1024, 1031, 1102, 1249, 1487, 1804, 2180, 2635, 3221, 3429, 2842, 2382, 2014, 1671, 1391, 1191, 1081, 1040, 1050, 1121, 1275, 1507, 1829, 2216, 2661, 3261, 3490, 2904, 2448, 2077, 1737, 1457, 1259, 1135, 1088, 1093, 1180, 1337, 1569, 1894, 2273, 2725, 3357, 3667, 3014, 2534, 2180, 1842, 1601, 1362, 1232, 1175, 1207, 1277, 1441, 1675, 1999, 2368, 2842, 3490, 3862, 3195, 2670, 2306, 1984, 1715, 1507, 1372, 1315, 1349, 1428, 1588, 1829, 2139, 2502, 3002, 3718, 4188, 3444, 2852, 2463, 2162, 1903, 1696, 1563, 1513, 1521, 1611, 1772, 2014, 2326, 2697, 3234, 4039, 4521, 3771, 3108, 2670, 2368, 2116, 1913, 1792, 1730, 1756, 1846, 2004, 2235, 2526, 2925, 3568, 4396, 4942, 4210, 3474, 2925, 2592, 2368, 2174, 2056, 2014, 2019, 2110, 2260, 2494, 2801, 3274, 3998, 4851, 5376, 4546, 3807, 3195, 2812, 2550, 2361, 2260, 2222, 2254, 2340, 2479, 2715, 3060, 3633, 4420, 5269]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [5663, 4566, 3788, 3199, 2807, 2485, 2326, 2204, 2151, 2157, 2248, 2410, 2649, 3029, 3601, 4391, 5153, 4901, 4251, 3476, 2919, 2540, 2306, 2117, 1986, 1933, 1943, 2026, 2204, 2432, 2768, 3264, 3977, 4842, 4618, 3806, 3136, 2649, 2333, 2073, 1883, 1736, 1682, 1703, 1791, 1966, 2192, 2508, 2930, 3569, 4415, 4228, 3491, 2867, 2462, 2134, 1874, 1668, 1534, 1466, 1488, 1579, 1751, 1986, 2293, 2684, 3264, 4037, 3938, 3251, 2702, 2313, 1976, 1699, 1485, 1355, 1298, 1308, 1409, 1570, 1811, 2140, 2500, 3029, 3771, 3736, 3064, 2581, 2198, 1861, 1567, 1355, 1219, 1164, 1179, 1271, 1430, 1678, 2001, 2395, 2867, 3538, 3569, 2962, 2485, 2095, 1748, 1461, 1253, 1131, 1084, 1095, 1174, 1337, 1576, 1919, 2299, 2749, 3402, 3476, 2877, 2417, 2042, 1685, 1407, 1202, 1086, 1040, 1049, 1134, 1281, 1525, 1857, 2248, 2712, 3346, 3476, 2857, 2410, 2031, 1675, 1383, 1181, 1073, 1024, 1036, 1109, 1267, 1510, 1840, 2241, 2693, 3291, 3507, 2898, 2424, 2042, 1692, 1412, 1204, 1089, 1043, 1055, 1123, 1289, 1531, 1861, 2260, 2712, 3332, 3585, 2951, 2492, 2111, 1767, 1477, 1261, 1136, 1084, 1097, 1190, 1350, 1591, 1924, 2326, 2787, 3402, 3753, 3064, 2581, 2210, 1866, 1624, 1378, 1237, 1177, 1215, 1281, 1458, 1696, 2031, 2417, 2908, 3569, 3977, 3251, 2721, 2353, 2016, 1732, 1516, 1378, 1317, 1348, 1432, 1598, 1844, 2174, 2572, 3064, 3788, 4297, 3507, 2908, 2508, 2192, 1919, 1707, 1570, 1513, 1513, 1614, 1791, 2042, 2353, 2739, 3291, 4078, 4672, 3825, 3173, 2702, 2388, 2128, 1933, 1803, 1736, 1744, 1848, 2026, 2254, 2556, 2984, 3650, 4489, 5055, 4273, 3507, 2973, 2614, 2381, 2192, 2057, 2011, 2011, 2111, 2273, 2516, 2826, 3332, 4078, 5024, 5507, 4645, 3843, 3251, 2807, 2556, 2395, 2293, 2210, 2248, 2339, 2492, 2739, 3124, 3701, 4514, 5324]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [4621, 3986, 3259, 2756, 2412, 2155, 2015, 1923, 1861, 1907, 1955, 2097, 2282, 2616, 3085, 3791, 4202, 4241, 3791, 3148, 2616, 2293, 2069, 1923, 1832, 1783, 1783, 1854, 1989, 2175, 2463, 2893, 3531, 4280, 3952, 3453, 2806, 2375, 2106, 1876, 1710, 1604, 1561, 1566, 1656, 1783, 1980, 2217, 2602, 3148, 3854, 3586, 3148, 2573, 2206, 1931, 1710, 1540, 1431, 1380, 1401, 1467, 1599, 1796, 2050, 2388, 2875, 3558, 3427, 2893, 2412, 2078, 1803, 1566, 1388, 1285, 1237, 1247, 1325, 1453, 1656, 1915, 2227, 2676, 3236, 3214, 2740, 2316, 1989, 1698, 1444, 1278, 1183, 1131, 1142, 1214, 1336, 1545, 1803, 2125, 2531, 3085, 3106, 2661, 2238, 1907, 1610, 1368, 1202, 1107, 1071, 1071, 1134, 1257, 1458, 1723, 2041, 2450, 2930, 3006, 2587, 2196, 1861, 1566, 1329, 1157, 1069, 1038, 1040, 1102, 1217, 1414, 1679, 2006, 2388, 2893, 2986, 2573, 2175, 1854, 1551, 1314, 1145, 1059, 1024, 1035, 1079, 1208, 1397, 1661, 1997, 2388, 2858, 3025, 2573, 2196, 1876, 1577, 1336, 1159, 1071, 1035, 1045, 1102, 1220, 1418, 1686, 2015, 2412, 2875, 3045, 2661, 2249, 1907, 1621, 1380, 1214, 1112, 1071, 1079, 1145, 1278, 1467, 1736, 2069, 2450, 2967, 3214, 2740, 2305, 1989, 1704, 1510, 1303, 1192, 1145, 1177, 1227, 1360, 1561, 1832, 2155, 2545, 3085, 3427, 2893, 2425, 2106, 1810, 1588, 1418, 1306, 1260, 1288, 1340, 1481, 1667, 1939, 2271, 2724, 3305, 3642, 3127, 2573, 2238, 1972, 1749, 1571, 1453, 1422, 1422, 1491, 1627, 1846, 2097, 2425, 2930, 3558, 3952, 3427, 2823, 2425, 2135, 1923, 1749, 1650, 1599, 1615, 1686, 1832, 2023, 2260, 2646, 3214, 3919, 4280, 3822, 3127, 2646, 2339, 2125, 1972, 1869, 1839, 1846, 1907, 2032, 2238, 2517, 2948, 3586, 4360, 4487, 3986, 3353, 2806, 2412, 2196, 2023, 1964, 1907, 1931, 1997, 2155, 2305, 2676, 3127, 3886, 4401]
                                       }
                                   }, {
                                       "name":    "2112x1568_D50_70",
                                       "resolution":    "2112x1568",
                                       "illumination":    "D50",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [4763, 4138, 3490, 3029, 2709, 2472, 2311, 2192, 2158, 2182, 2248, 2376, 2566, 2864, 3289, 3879, 4266, 4304, 3866, 3333, 2849, 2543, 2326, 2165, 2020, 1968, 1989, 2076, 2222, 2418, 2675, 3069, 3615, 4136, 4028, 3567, 3022, 2614, 2348, 2110, 1934, 1798, 1746, 1756, 1850, 2001, 2213, 2457, 2808, 3285, 3850, 3848, 3287, 2780, 2450, 2188, 1930, 1716, 1590, 1526, 1532, 1634, 1788, 2014, 2281, 2574, 3051, 3598, 3587, 3087, 2657, 2324, 2015, 1757, 1536, 1399, 1331, 1355, 1446, 1623, 1854, 2127, 2432, 2862, 3324, 3432, 2959, 2540, 2207, 1899, 1611, 1396, 1252, 1198, 1211, 1305, 1473, 1714, 2006, 2336, 2739, 3193, 3307, 2871, 2465, 2116, 1805, 1508, 1284, 1153, 1098, 1110, 1203, 1371, 1613, 1924, 2274, 2621, 3087, 3227, 2781, 2413, 2061, 1730, 1443, 1221, 1095, 1041, 1060, 1147, 1304, 1558, 1872, 2220, 2588, 3038, 3187, 2753, 2404, 2038, 1709, 1419, 1202, 1076, 1024, 1039, 1123, 1285, 1530, 1853, 2193, 2578, 2984, 3227, 2797, 2413, 2070, 1730, 1443, 1224, 1097, 1039, 1060, 1137, 1307, 1558, 1864, 2220, 2603, 2999, 3307, 2820, 2452, 2116, 1787, 1512, 1284, 1148, 1094, 1106, 1205, 1371, 1623, 1930, 2274, 2636, 3128, 3406, 2923, 2514, 2198, 1891, 1642, 1400, 1255, 1192, 1229, 1307, 1481, 1732, 2029, 2358, 2739, 3193, 3531, 3066, 2629, 2335, 2023, 1757, 1541, 1406, 1345, 1366, 1454, 1619, 1866, 2164, 2482, 2880, 3348, 3782, 3265, 2764, 2450, 2179, 1930, 1734, 1590, 1534, 1547, 1640, 1813, 2046, 2302, 2629, 3071, 3569, 4028, 3512, 2984, 2628, 2359, 2137, 1940, 1812, 1758, 1768, 1856, 2017, 2232, 2494, 2825, 3333, 3884, 4260, 3800, 3239, 2849, 2555, 2347, 2175, 2052, 2016, 2020, 2093, 2232, 2453, 2704, 3069, 3644, 4218, 4403, 4023, 3437, 2991, 2679, 2484, 2311, 2211, 2158, 2192, 2259, 2389, 2593, 2882, 3289, 3879, 4357]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [4202, 3655, 3206, 2805, 2503, 2319, 2178, 2091, 2062, 2059, 2125, 2251, 2409, 2674, 3057, 3507, 3855, 3786, 3445, 2991, 2620, 2338, 2167, 2019, 1912, 1875, 1877, 1959, 2092, 2238, 2491, 2819, 3285, 3765, 3603, 3197, 2730, 2402, 2179, 1981, 1819, 1704, 1663, 1661, 1745, 1892, 2065, 2282, 2581, 3024, 3529, 3429, 2968, 2553, 2262, 2023, 1806, 1628, 1514, 1463, 1473, 1556, 1696, 1893, 2139, 2401, 2800, 3270, 3237, 2800, 2425, 2164, 1881, 1651, 1465, 1344, 1292, 1308, 1387, 1538, 1746, 1999, 2262, 2642, 3098, 3100, 2683, 2354, 2065, 1787, 1527, 1343, 1220, 1168, 1177, 1266, 1408, 1622, 1893, 2177, 2505, 2974, 3005, 2606, 2264, 1971, 1689, 1439, 1241, 1128, 1081, 1095, 1167, 1319, 1534, 1815, 2112, 2447, 2842, 2932, 2554, 2213, 1938, 1634, 1382, 1189, 1080, 1037, 1051, 1125, 1265, 1481, 1756, 2068, 2402, 2821, 2913, 2540, 2209, 1912, 1612, 1357, 1170, 1064, 1024, 1031, 1101, 1242, 1463, 1742, 2049, 2390, 2792, 2956, 2563, 2226, 1933, 1636, 1380, 1189, 1081, 1040, 1050, 1120, 1267, 1481, 1763, 2079, 2410, 2821, 2993, 2606, 2277, 1986, 1695, 1441, 1254, 1134, 1088, 1092, 1177, 1326, 1537, 1819, 2123, 2456, 2887, 3114, 2683, 2340, 2070, 1787, 1575, 1352, 1228, 1173, 1203, 1270, 1422, 1631, 1906, 2196, 2540, 2974, 3237, 2810, 2440, 2169, 1908, 1675, 1487, 1361, 1307, 1339, 1411, 1556, 1765, 2020, 2296, 2651, 3124, 3446, 2980, 2570, 2288, 2054, 1839, 1658, 1537, 1491, 1497, 1577, 1717, 1920, 2168, 2439, 2810, 3332, 3641, 3197, 2750, 2440, 2216, 2016, 1845, 1741, 1685, 1707, 1783, 1914, 2098, 2316, 2598, 3036, 3547, 3874, 3479, 3003, 2620, 2381, 2216, 2061, 1964, 1929, 1930, 2003, 2120, 2297, 2515, 2841, 3316, 3808, 4070, 3655, 3206, 2794, 2529, 2339, 2196, 2119, 2089, 2114, 2178, 2278, 2447, 2684, 3070, 3561, 3996]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [4271, 3670, 3191, 2798, 2524, 2283, 2166, 2069, 2026, 2028, 2097, 2219, 2391, 2659, 3045, 3539, 3914, 3844, 3511, 3004, 2615, 2336, 2161, 2010, 1900, 1855, 1861, 1928, 2070, 2243, 2488, 2833, 3300, 3801, 3713, 3225, 2773, 2422, 2185, 1977, 1818, 1688, 1640, 1658, 1733, 1880, 2060, 2301, 2603, 3037, 3561, 3477, 3018, 2583, 2287, 2029, 1812, 1631, 1510, 1446, 1466, 1547, 1698, 1895, 2139, 2428, 2835, 3331, 3296, 2856, 2468, 2175, 1901, 1660, 1466, 1344, 1290, 1299, 1393, 1539, 1749, 2021, 2294, 2673, 3166, 3168, 2725, 2381, 2086, 1805, 1542, 1345, 1215, 1162, 1176, 1264, 1412, 1634, 1908, 2219, 2560, 3012, 3056, 2655, 2310, 2002, 1706, 1445, 1248, 1130, 1084, 1094, 1171, 1326, 1544, 1841, 2146, 2476, 2923, 2993, 2593, 2257, 1959, 1650, 1395, 1199, 1086, 1040, 1049, 1132, 1273, 1498, 1789, 2107, 2453, 2889, 2997, 2579, 2253, 1951, 1641, 1372, 1179, 1073, 1024, 1036, 1108, 1260, 1485, 1775, 2103, 2439, 2848, 3018, 2610, 2263, 1959, 1656, 1400, 1201, 1089, 1043, 1055, 1122, 1281, 1504, 1793, 2118, 2453, 2878, 3069, 2646, 2316, 2017, 1723, 1461, 1256, 1135, 1084, 1096, 1187, 1338, 1558, 1846, 2170, 2508, 2923, 3182, 2725, 2381, 2097, 1809, 1597, 1368, 1233, 1175, 1211, 1273, 1438, 1651, 1935, 2238, 2595, 3036, 3326, 2856, 2484, 2211, 1937, 1691, 1496, 1367, 1309, 1338, 1415, 1565, 1779, 2051, 2356, 2702, 3179, 3530, 3031, 2618, 2327, 2082, 1854, 1668, 1544, 1491, 1490, 1580, 1735, 1946, 2191, 2475, 2856, 3362, 3754, 3240, 2804, 2468, 2234, 2027, 1864, 1751, 1691, 1696, 1785, 1934, 2115, 2342, 2647, 3101, 3617, 3956, 3528, 3029, 2660, 2401, 2227, 2077, 1965, 1926, 1923, 2004, 2131, 2316, 2536, 2888, 3377, 3933, 4162, 3729, 3234, 2840, 2524, 2345, 2226, 2148, 2078, 2108, 2177, 2289, 2467, 2736, 3123, 3631, 4034]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [3542, 3237, 2776, 2436, 2192, 1999, 1893, 1820, 1768, 1806, 1840, 1949, 2083, 2322, 2640, 3091, 3249, 3364, 3156, 2739, 2360, 2123, 1951, 1835, 1760, 1718, 1715, 1772, 1880, 2020, 2232, 2533, 2956, 3392, 3215, 2945, 2500, 2186, 1984, 1798, 1658, 1565, 1527, 1530, 1608, 1713, 1872, 2050, 2331, 2704, 3142, 2985, 2741, 2334, 2062, 1845, 1660, 1510, 1412, 1364, 1383, 1442, 1557, 1723, 1925, 2178, 2520, 2964, 2898, 2561, 2218, 1965, 1741, 1535, 1373, 1277, 1231, 1240, 1312, 1428, 1606, 1820, 2059, 2383, 2749, 2756, 2455, 2150, 1897, 1653, 1425, 1271, 1180, 1129, 1140, 1208, 1322, 1510, 1729, 1984, 2280, 2654, 2686, 2402, 2092, 1831, 1576, 1355, 1198, 1106, 1071, 1071, 1132, 1249, 1433, 1662, 1919, 2224, 2546, 2616, 2347, 2061, 1793, 1537, 1320, 1155, 1069, 1038, 1040, 1101, 1211, 1393, 1626, 1893, 2179, 2525, 2603, 2338, 2045, 1788, 1524, 1305, 1143, 1059, 1024, 1035, 1078, 1203, 1378, 1610, 1887, 2181, 2500, 2631, 2335, 2061, 1807, 1547, 1326, 1157, 1071, 1035, 1045, 1101, 1214, 1397, 1632, 1901, 2199, 2511, 2638, 2402, 2102, 1831, 1586, 1367, 1210, 1111, 1071, 1078, 1143, 1269, 1441, 1674, 1944, 2224, 2575, 2756, 2455, 2141, 1897, 1658, 1488, 1295, 1189, 1143, 1174, 1221, 1345, 1525, 1755, 2010, 2292, 2654, 2898, 2561, 2229, 1990, 1748, 1556, 1402, 1297, 1253, 1280, 1327, 1455, 1616, 1841, 2097, 2422, 2802, 3028, 2724, 2334, 2090, 1882, 1696, 1540, 1432, 1404, 1403, 1464, 1583, 1768, 1966, 2209, 2565, 2964, 3215, 2925, 2514, 2229, 2010, 1841, 1694, 1608, 1562, 1575, 1636, 1758, 1910, 2087, 2367, 2756, 3190, 3392, 3180, 2722, 2385, 2162, 2000, 1879, 1794, 1769, 1773, 1820, 1918, 2075, 2277, 2578, 2998, 3450, 3448, 3237, 2850, 2477, 2192, 2034, 1900, 1857, 1809, 1827, 1877, 1999, 2102, 2371, 2673, 3162, 3388]
                                       }
                                   }, {
                                       "name":    "2112x1568_D65_100",
                                       "resolution":    "2112x1568",
                                       "illumination":    "D65",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [5999, 5063, 4030, 3423, 2917, 2630, 2407, 2298, 2241, 2275, 2345, 2514, 2758, 3206, 3794, 4649, 5426, 5300, 4601, 3732, 3118, 2709, 2433, 2230, 2077, 2031, 2040, 2136, 2333, 2571, 2936, 3449, 4297, 5120, 5063, 4103, 3323, 2827, 2486, 2187, 1961, 1819, 1763, 1770, 1880, 2058, 2321, 2630, 3055, 3794, 4697, 4466, 3732, 3034, 2586, 2252, 1961, 1729, 1590, 1521, 1542, 1642, 1819, 2068, 2407, 2792, 3449, 4217, 4257, 3475, 2827, 2433, 2077, 1763, 1542, 1408, 1334, 1349, 1444, 1630, 1903, 2230, 2630, 3183, 3892, 3995, 3275, 2709, 2286, 1928, 1613, 1386, 1249, 1187, 1206, 1307, 1481, 1743, 2068, 2473, 2975, 3672, 3794, 3118, 2600, 2177, 1819, 1501, 1281, 1145, 1090, 1112, 1197, 1374, 1624, 1969, 2382, 2880, 3502, 3702, 3034, 2514, 2126, 1736, 1439, 1219, 1093, 1040, 1048, 1145, 1303, 1568, 1903, 2321, 2809, 3423, 3672, 3014, 2514, 2077, 1710, 1417, 1193, 1070, 1024, 1038, 1114, 1288, 1542, 1903, 2321, 2809, 3397, 3672, 3034, 2542, 2106, 1729, 1435, 1219, 1093, 1038, 1052, 1140, 1310, 1558, 1911, 2345, 2827, 3449, 3763, 3097, 2586, 2166, 1805, 1506, 1270, 1137, 1088, 1106, 1197, 1374, 1624, 1978, 2407, 2899, 3529, 3926, 3229, 2677, 2286, 1919, 1654, 1391, 1242, 1184, 1222, 1303, 1486, 1743, 2096, 2514, 3034, 3732, 4217, 3423, 2809, 2433, 2058, 1770, 1542, 1395, 1330, 1357, 1453, 1630, 1895, 2241, 2677, 3229, 3960, 4555, 3702, 3034, 2600, 2252, 1978, 1749, 1585, 1536, 1547, 1654, 1842, 2116, 2446, 2880, 3475, 4257, 4952, 4030, 3323, 2809, 2486, 2187, 1978, 1842, 1763, 1784, 1887, 2096, 2357, 2661, 3139, 3826, 4746, 5426, 4555, 3702, 3139, 2741, 2473, 2252, 2096, 2049, 2068, 2177, 2357, 2600, 2975, 3529, 4297, 5238, 5770, 4952, 4066, 3372, 2899, 2586, 2407, 2286, 2241, 2264, 2395, 2571, 2827, 3229, 3859, 4796, 5845]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [5473, 4450, 3733, 3164, 2746, 2485, 2314, 2213, 2166, 2183, 2256, 2418, 2638, 3022, 3584, 4286, 5031, 4821, 4154, 3432, 2893, 2523, 2275, 2098, 1976, 1938, 1952, 2045, 2195, 2411, 2727, 3202, 3932, 4737, 4475, 3699, 3068, 2613, 2314, 2051, 1862, 1742, 1691, 1702, 1796, 1947, 2177, 2462, 2893, 3522, 4355, 4154, 3418, 2812, 2425, 2109, 1862, 1663, 1528, 1470, 1486, 1585, 1742, 1966, 2269, 2630, 3214, 3932, 3785, 3164, 2656, 2288, 1947, 1680, 1475, 1357, 1300, 1315, 1404, 1564, 1796, 2104, 2455, 2956, 3665, 3616, 3011, 2508, 2149, 1828, 1537, 1343, 1218, 1169, 1181, 1270, 1424, 1660, 1976, 2328, 2793, 3476, 3476, 2893, 2425, 2056, 1723, 1449, 1242, 1127, 1081, 1095, 1169, 1330, 1558, 1888, 2250, 2700, 3306, 3375, 2803, 2348, 2000, 1656, 1380, 1184, 1077, 1037, 1051, 1131, 1272, 1506, 1820, 2195, 2630, 3240, 3375, 2803, 2341, 1976, 1640, 1361, 1171, 1062, 1024, 1034, 1101, 1250, 1486, 1804, 2183, 2604, 3189, 3418, 2822, 2362, 2000, 1656, 1387, 1191, 1083, 1037, 1048, 1123, 1276, 1511, 1820, 2219, 2647, 3214, 3476, 2862, 2440, 2066, 1727, 1452, 1250, 1127, 1083, 1092, 1177, 1337, 1573, 1892, 2250, 2727, 3333, 3616, 3011, 2516, 2172, 1824, 1594, 1357, 1224, 1165, 1209, 1274, 1439, 1674, 1995, 2375, 2832, 3491, 3857, 3176, 2673, 2301, 1966, 1691, 1497, 1364, 1309, 1337, 1419, 1576, 1820, 2132, 2500, 3011, 3716, 4154, 3403, 2822, 2462, 2137, 1879, 1670, 1549, 1497, 1514, 1598, 1769, 2020, 2301, 2691, 3240, 4030, 4500, 3768, 3103, 2647, 2341, 2098, 1906, 1780, 1709, 1734, 1824, 2000, 2238, 2523, 2924, 3568, 4450, 4850, 4197, 3447, 2924, 2588, 2355, 2160, 2020, 1990, 2000, 2098, 2256, 2477, 2793, 3253, 3990, 4850, 5473, 4576, 3821, 3202, 2793, 2516, 2362, 2256, 2195, 2238, 2301, 2455, 2682, 3057, 3600, 4402, 5126]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [5616, 4521, 3766, 3139, 2746, 2470, 2289, 2179, 2116, 2150, 2226, 2383, 2631, 3000, 3536, 4305, 5025, 4904, 4151, 3431, 2883, 2524, 2270, 2089, 1977, 1903, 1934, 2011, 2184, 2397, 2719, 3201, 3930, 4816, 4572, 3783, 3080, 2605, 2309, 2052, 1855, 1732, 1668, 1685, 1778, 1944, 2179, 2463, 2893, 3536, 4375, 4216, 3446, 2813, 2419, 2116, 1851, 1658, 1518, 1458, 1480, 1577, 1728, 1967, 2270, 2656, 3214, 4048, 3911, 3201, 2656, 2283, 1953, 1685, 1480, 1342, 1289, 1306, 1393, 1562, 1793, 2100, 2463, 2978, 3647, 3680, 3023, 2516, 2150, 1842, 1544, 1336, 1209, 1159, 1174, 1265, 1427, 1661, 1972, 2356, 2813, 3475, 3551, 2903, 2441, 2057, 1718, 1440, 1242, 1125, 1074, 1086, 1165, 1327, 1565, 1894, 2257, 2719, 3360, 3431, 2823, 2397, 2006, 1665, 1388, 1187, 1078, 1034, 1045, 1128, 1277, 1510, 1834, 2226, 2665, 3292, 3417, 2823, 2376, 1991, 1648, 1370, 1174, 1062, 1024, 1032, 1106, 1259, 1499, 1818, 2208, 2648, 3227, 3461, 2843, 2397, 2016, 1668, 1393, 1194, 1083, 1037, 1044, 1119, 1275, 1515, 1846, 2233, 2665, 3266, 3536, 2903, 2448, 2073, 1736, 1456, 1251, 1129, 1078, 1094, 1175, 1338, 1580, 1898, 2296, 2737, 3374, 3748, 3034, 2532, 2190, 1838, 1593, 1363, 1225, 1167, 1201, 1275, 1445, 1689, 2001, 2383, 2863, 3521, 3930, 3214, 2674, 2315, 1982, 1703, 1490, 1365, 1299, 1338, 1420, 1590, 1822, 2144, 2509, 3034, 3783, 4260, 3446, 2852, 2463, 2155, 1903, 1685, 1541, 1490, 1504, 1602, 1778, 2026, 2329, 2719, 3266, 4068, 4624, 3801, 3103, 2674, 2363, 2100, 1912, 1774, 1721, 1736, 1830, 2006, 2233, 2540, 2956, 3615, 4447, 4994, 4216, 3490, 2946, 2589, 2349, 2173, 2036, 2011, 1991, 2094, 2251, 2486, 2813, 3306, 4068, 4933, 5356, 4651, 3837, 3227, 2794, 2540, 2369, 2245, 2196, 2214, 2309, 2448, 2710, 3115, 3680, 4423, 5356]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [4481, 3947, 3208, 2702, 2397, 2128, 1985, 1893, 1860, 1879, 1927, 2030, 2245, 2609, 3060, 3700, 4230, 4164, 3700, 3078, 2559, 2254, 2030, 1886, 1791, 1749, 1767, 1821, 1956, 2128, 2430, 2817, 3414, 4132, 3861, 3350, 2744, 2344, 2062, 1860, 1694, 1578, 1546, 1555, 1626, 1755, 1941, 2172, 2546, 3132, 3779, 3624, 3043, 2534, 2172, 1906, 1688, 1524, 1418, 1374, 1381, 1457, 1582, 1779, 2015, 2344, 2832, 3481, 3329, 2862, 2365, 2054, 1773, 1541, 1370, 1281, 1230, 1245, 1309, 1437, 1636, 1886, 2189, 2635, 3228, 3189, 2716, 2284, 1963, 1672, 1425, 1272, 1171, 1124, 1138, 1205, 1329, 1515, 1773, 2086, 2498, 3043, 3025, 2609, 2208, 1866, 1587, 1353, 1194, 1098, 1063, 1074, 1126, 1254, 1445, 1699, 2030, 2397, 2925, 2991, 2534, 2154, 1828, 1541, 1309, 1150, 1067, 1032, 1036, 1103, 1205, 1399, 1662, 1977, 2365, 2832, 2925, 2510, 2145, 1815, 1528, 1300, 1133, 1059, 1024, 1030, 1080, 1197, 1388, 1651, 1970, 2344, 2817, 2991, 2546, 2154, 1828, 1541, 1313, 1148, 1067, 1034, 1042, 1096, 1214, 1403, 1662, 2000, 2365, 2847, 3060, 2596, 2189, 1893, 1592, 1367, 1200, 1112, 1069, 1080, 1141, 1260, 1457, 1721, 2030, 2430, 2958, 3151, 2702, 2254, 1948, 1672, 1481, 1287, 1176, 1133, 1166, 1216, 1349, 1532, 1797, 2119, 2522, 3043, 3350, 2847, 2386, 2054, 1797, 1564, 1388, 1284, 1245, 1269, 1329, 1461, 1662, 1927, 2236, 2661, 3228, 3599, 3078, 2534, 2199, 1934, 1710, 1541, 1433, 1399, 1403, 1481, 1611, 1821, 2078, 2397, 2893, 3504, 3918, 3350, 2772, 2376, 2094, 1886, 1716, 1616, 1573, 1582, 1641, 1791, 1992, 2254, 2609, 3170, 3890, 4164, 3700, 3060, 2584, 2303, 2086, 1941, 1834, 1803, 1803, 1879, 2015, 2217, 2475, 2893, 3551, 4265, 4443, 3977, 3247, 2772, 2419, 2163, 2023, 1956, 1906, 1913, 2000, 2111, 2303, 2635, 3132, 3779, 4370]
                                       }
                                   }, {
                                       "name":    "2112x1568_D65_70",
                                       "resolution":    "2112x1568",
                                       "illumination":    "D65",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [4507, 4041, 3381, 2980, 2617, 2408, 2237, 2153, 2106, 2132, 2182, 2308, 2483, 2803, 3196, 3732, 4105, 4134, 3781, 3211, 2782, 2483, 2273, 2112, 1983, 1944, 1950, 2027, 2185, 2363, 2629, 2982, 3546, 4003, 4046, 3459, 2928, 2575, 2321, 2080, 1890, 1766, 1716, 1720, 1815, 1963, 2175, 2406, 2706, 3215, 3772, 3659, 3213, 2724, 2396, 2136, 1893, 1689, 1563, 1499, 1517, 1607, 1761, 1969, 2239, 2519, 2984, 3469, 3545, 3040, 2575, 2283, 1994, 1721, 1520, 1396, 1325, 1339, 1427, 1595, 1833, 2101, 2406, 2800, 3260, 3373, 2901, 2493, 2166, 1867, 1586, 1375, 1245, 1184, 1202, 1299, 1460, 1695, 1969, 2287, 2650, 3118, 3236, 2786, 2411, 2077, 1772, 1484, 1276, 1144, 1090, 1111, 1193, 1361, 1589, 1887, 2219, 2586, 3003, 3175, 2725, 2343, 2036, 1698, 1426, 1216, 1093, 1040, 1048, 1143, 1294, 1539, 1831, 2172, 2535, 2951, 3155, 2712, 2345, 1993, 1675, 1405, 1191, 1070, 1024, 1038, 1113, 1280, 1515, 1833, 2174, 2538, 2934, 3151, 2725, 2367, 2018, 1691, 1422, 1216, 1093, 1038, 1052, 1138, 1301, 1529, 1839, 2193, 2550, 2972, 3211, 2769, 2399, 2067, 1759, 1488, 1265, 1136, 1088, 1105, 1193, 1361, 1589, 1895, 2241, 2602, 3024, 3318, 2862, 2465, 2166, 1859, 1626, 1380, 1238, 1181, 1218, 1295, 1465, 1695, 1994, 2323, 2700, 3165, 3514, 2997, 2560, 2283, 1976, 1727, 1520, 1383, 1321, 1346, 1435, 1595, 1826, 2111, 2446, 2838, 3313, 3727, 3189, 2724, 2408, 2136, 1908, 1707, 1558, 1513, 1522, 1618, 1782, 2013, 2273, 2594, 3005, 3499, 3963, 3402, 2928, 2560, 2321, 2080, 1905, 1787, 1716, 1733, 1821, 1998, 2207, 2432, 2776, 3240, 3809, 4226, 3745, 3187, 2799, 2510, 2309, 2131, 2001, 1961, 1975, 2064, 2206, 2388, 2662, 3047, 3546, 4089, 4346, 3958, 3409, 2939, 2602, 2370, 2237, 2142, 2106, 2122, 2226, 2358, 2541, 2822, 3247, 3842, 4399]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [4138, 3583, 3148, 2769, 2473, 2283, 2155, 2077, 2039, 2051, 2104, 2226, 2382, 2653, 3031, 3461, 3829, 3786, 3436, 2969, 2593, 2322, 2133, 1993, 1891, 1859, 1869, 1945, 2062, 2225, 2453, 2783, 3265, 3725, 3606, 3140, 2717, 2391, 2168, 1957, 1798, 1694, 1648, 1657, 1737, 1862, 2047, 2261, 2572, 3000, 3516, 3420, 2959, 2536, 2255, 2006, 1801, 1626, 1504, 1450, 1464, 1553, 1690, 1877, 2118, 2382, 2794, 3250, 3177, 2784, 2428, 2153, 1874, 1642, 1456, 1346, 1292, 1306, 1388, 1533, 1735, 1989, 2255, 2613, 3083, 3073, 2680, 2318, 2042, 1774, 1514, 1334, 1214, 1167, 1178, 1263, 1406, 1617, 1886, 2161, 2499, 2963, 2982, 2597, 2257, 1967, 1682, 1434, 1238, 1126, 1081, 1094, 1166, 1319, 1527, 1813, 2103, 2435, 2846, 2912, 2530, 2196, 1920, 1622, 1369, 1182, 1077, 1037, 1051, 1129, 1264, 1480, 1755, 2060, 2383, 2804, 2916, 2533, 2192, 1900, 1608, 1351, 1169, 1062, 1024, 1034, 1100, 1243, 1462, 1742, 2052, 2364, 2766, 2947, 2546, 2208, 1920, 1622, 1376, 1189, 1083, 1037, 1048, 1122, 1268, 1485, 1755, 2082, 2398, 2783, 2982, 2571, 2270, 1976, 1686, 1436, 1245, 1126, 1083, 1091, 1174, 1326, 1541, 1817, 2103, 2457, 2868, 3073, 2680, 2325, 2063, 1770, 1568, 1347, 1220, 1163, 1205, 1267, 1420, 1630, 1903, 2202, 2531, 2975, 3233, 2794, 2443, 2165, 1891, 1653, 1477, 1353, 1301, 1327, 1403, 1544, 1757, 2014, 2294, 2658, 3123, 3420, 2947, 2545, 2287, 2032, 1817, 1633, 1524, 1476, 1491, 1565, 1715, 1926, 2146, 2434, 2815, 3325, 3625, 3194, 2746, 2420, 2192, 2000, 1839, 1729, 1665, 1687, 1763, 1911, 2101, 2314, 2598, 3036, 3588, 3807, 3469, 2981, 2619, 2378, 2204, 2048, 1931, 1907, 1913, 1993, 2116, 2282, 2509, 2824, 3310, 3807, 4138, 3677, 3217, 2800, 2513, 2310, 2197, 2115, 2065, 2099, 2144, 2258, 2419, 2682, 3044, 3547, 3895]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [4238, 3636, 3174, 2749, 2473, 2270, 2133, 2047, 1995, 2021, 2078, 2195, 2376, 2635, 2994, 3475, 3825, 3846, 3434, 2968, 2584, 2323, 2129, 1984, 1892, 1827, 1853, 1914, 2053, 2213, 2447, 2782, 3263, 3782, 3679, 3206, 2727, 2384, 2164, 1958, 1792, 1685, 1627, 1641, 1721, 1860, 2049, 2262, 2572, 3011, 3531, 3468, 2982, 2537, 2249, 2013, 1791, 1622, 1494, 1439, 1458, 1545, 1677, 1878, 2118, 2404, 2794, 3339, 3275, 2815, 2428, 2149, 1879, 1647, 1461, 1332, 1281, 1297, 1378, 1531, 1732, 1985, 2262, 2631, 3069, 3124, 2690, 2325, 2043, 1787, 1520, 1327, 1205, 1157, 1171, 1258, 1409, 1618, 1882, 2185, 2515, 2962, 3042, 2605, 2271, 1968, 1677, 1425, 1238, 1124, 1074, 1085, 1162, 1316, 1533, 1819, 2109, 2451, 2889, 2957, 2547, 2239, 1926, 1631, 1377, 1185, 1078, 1034, 1045, 1126, 1269, 1484, 1768, 2088, 2413, 2846, 2950, 2550, 2223, 1914, 1616, 1360, 1172, 1062, 1024, 1032, 1105, 1252, 1474, 1755, 2074, 2401, 2797, 2981, 2564, 2239, 1935, 1634, 1382, 1191, 1083, 1037, 1044, 1118, 1267, 1489, 1779, 2094, 2413, 2825, 3030, 2605, 2277, 1982, 1694, 1440, 1246, 1128, 1078, 1093, 1172, 1327, 1547, 1822, 2143, 2466, 2900, 3178, 2700, 2339, 2079, 1783, 1567, 1353, 1221, 1165, 1198, 1268, 1426, 1644, 1908, 2209, 2557, 2998, 3290, 2825, 2444, 2177, 1906, 1664, 1471, 1354, 1291, 1328, 1404, 1558, 1759, 2024, 2302, 2677, 3175, 3501, 2982, 2570, 2288, 2048, 1839, 1647, 1516, 1469, 1481, 1569, 1723, 1931, 2170, 2458, 2836, 3354, 3718, 3221, 2746, 2444, 2212, 2001, 1844, 1724, 1677, 1688, 1769, 1916, 2097, 2328, 2624, 3073, 3585, 3912, 3484, 3016, 2637, 2379, 2199, 2060, 1946, 1926, 1905, 1989, 2112, 2290, 2526, 2867, 3370, 3867, 4056, 3733, 3230, 2820, 2513, 2331, 2203, 2106, 2066, 2078, 2151, 2251, 2443, 2729, 3106, 3563, 4056]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [3444, 3208, 2736, 2392, 2179, 1976, 1867, 1794, 1767, 1781, 1816, 1891, 2051, 2316, 2620, 3023, 3268, 3308, 3086, 2683, 2312, 2089, 1916, 1801, 1723, 1687, 1701, 1743, 1850, 1980, 2204, 2472, 2866, 3285, 3147, 2864, 2449, 2160, 1945, 1783, 1643, 1541, 1513, 1519, 1580, 1688, 1838, 2012, 2285, 2691, 3085, 3015, 2656, 2301, 2032, 1823, 1640, 1495, 1399, 1358, 1364, 1432, 1541, 1708, 1894, 2140, 2485, 2905, 2821, 2536, 2178, 1944, 1714, 1511, 1356, 1273, 1224, 1238, 1297, 1413, 1588, 1794, 2026, 2349, 2742, 2736, 2435, 2122, 1874, 1628, 1407, 1265, 1168, 1122, 1136, 1200, 1315, 1482, 1702, 1950, 2253, 2620, 2622, 2358, 2066, 1793, 1554, 1341, 1191, 1097, 1063, 1073, 1124, 1246, 1420, 1641, 1909, 2180, 2542, 2604, 2302, 2024, 1762, 1513, 1300, 1148, 1067, 1032, 1036, 1102, 1199, 1379, 1610, 1867, 2159, 2476, 2554, 2284, 2018, 1752, 1502, 1292, 1132, 1059, 1024, 1030, 1079, 1192, 1369, 1601, 1863, 2144, 2467, 2604, 2312, 2024, 1762, 1513, 1304, 1146, 1067, 1034, 1042, 1095, 1208, 1383, 1610, 1888, 2159, 2488, 2650, 2347, 2049, 1818, 1559, 1355, 1196, 1111, 1069, 1079, 1139, 1251, 1432, 1661, 1909, 2207, 2568, 2706, 2423, 2096, 1860, 1628, 1460, 1279, 1173, 1131, 1163, 1210, 1334, 1498, 1724, 1979, 2273, 2620, 2838, 2523, 2196, 1944, 1736, 1533, 1373, 1276, 1239, 1261, 1316, 1436, 1611, 1831, 2067, 2370, 2742, 2995, 2684, 2301, 2056, 1848, 1660, 1511, 1413, 1382, 1385, 1455, 1568, 1746, 1950, 2185, 2535, 2923, 3190, 2864, 2472, 2187, 1973, 1807, 1663, 1576, 1538, 1545, 1594, 1721, 1883, 2082, 2337, 2721, 3169, 3308, 3086, 2668, 2333, 2131, 1966, 1851, 1762, 1736, 1734, 1795, 1903, 2057, 2242, 2533, 2971, 3381, 3417, 3230, 2767, 2449, 2198, 2006, 1900, 1850, 1808, 1812, 1880, 1961, 2100, 2338, 2677, 3082, 3366]
                                       }
                                   }, {
                                       "name":    "2112x1568_D75_100",
                                       "resolution":    "2112x1568",
                                       "illumination":    "D75",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [5858, 4910, 4004, 3380, 2905, 2591, 2388, 2280, 2203, 2224, 2339, 2492, 2748, 3146, 3771, 4566, 5374, 5312, 4566, 3740, 3104, 2683, 2426, 2214, 2072, 2017, 2026, 2131, 2303, 2548, 2887, 3431, 4266, 5190, 4910, 4076, 3330, 2781, 2452, 2182, 1948, 1809, 1747, 1767, 1861, 2045, 2303, 2591, 3062, 3803, 4612, 4520, 3740, 3021, 2562, 2246, 1948, 1727, 1583, 1509, 1530, 1628, 1802, 2063, 2375, 2798, 3431, 4188, 4188, 3405, 2833, 2413, 2054, 1767, 1530, 1398, 1325, 1337, 1438, 1616, 1868, 2192, 2591, 3125, 3901, 3935, 3190, 2667, 2269, 1916, 1611, 1373, 1252, 1187, 1193, 1295, 1466, 1727, 2063, 2452, 2981, 3651, 3710, 3083, 2577, 2141, 1809, 1499, 1277, 1148, 1093, 1101, 1190, 1369, 1611, 1948, 2363, 2851, 3510, 3710, 2981, 2520, 2091, 1733, 1438, 1215, 1090, 1040, 1055, 1139, 1306, 1556, 1892, 2303, 2781, 3405, 3593, 2981, 2506, 2082, 1707, 1411, 1190, 1077, 1024, 1036, 1114, 1280, 1535, 1876, 2291, 2798, 3380, 3593, 3001, 2506, 2101, 1733, 1433, 1219, 1093, 1043, 1055, 1136, 1302, 1556, 1908, 2303, 2798, 3405, 3740, 3083, 2577, 2171, 1802, 1509, 1280, 1145, 1090, 1103, 1199, 1373, 1628, 1957, 2375, 2851, 3537, 3901, 3190, 2667, 2257, 1900, 1658, 1402, 1252, 1193, 1222, 1302, 1485, 1733, 2082, 2506, 3001, 3680, 4150, 3380, 2798, 2400, 2063, 1774, 1545, 1402, 1340, 1373, 1452, 1628, 1900, 2257, 2652, 3213, 3867, 4520, 3651, 3001, 2591, 2235, 1965, 1733, 1588, 1545, 1550, 1646, 1838, 2101, 2413, 2851, 3483, 4266, 4910, 4076, 3282, 2816, 2465, 2192, 1974, 1831, 1760, 1788, 1884, 2063, 2327, 2652, 3125, 3803, 4707, 5312, 4566, 3710, 3083, 2715, 2452, 2246, 2101, 2054, 2072, 2161, 2339, 2606, 2962, 3510, 4348, 5131, 5783, 4858, 4004, 3330, 2869, 2621, 2426, 2280, 2214, 2269, 2339, 2534, 2781, 3190, 3835, 4659, 5783]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [5525, 4541, 3771, 3154, 2736, 2471, 2301, 2196, 2152, 2158, 2259, 2423, 2620, 3022, 3569, 4315, 5042, 4845, 4150, 3401, 2872, 2521, 2288, 2090, 1976, 1919, 1940, 2031, 2190, 2403, 2719, 3224, 3961, 4739, 4471, 3722, 3076, 2612, 2301, 2055, 1853, 1728, 1674, 1691, 1785, 1945, 2174, 2443, 2891, 3540, 4337, 4170, 3415, 2798, 2423, 2100, 1849, 1646, 1524, 1463, 1478, 1563, 1735, 1953, 2265, 2644, 3201, 3961, 3838, 3165, 2652, 2265, 1945, 1684, 1475, 1353, 1293, 1308, 1392, 1552, 1788, 2105, 2443, 2970, 3644, 3629, 3001, 2514, 2152, 1826, 1543, 1341, 1211, 1161, 1174, 1266, 1415, 1652, 1967, 2319, 2816, 3469, 3483, 2881, 2423, 2046, 1714, 1436, 1241, 1125, 1081, 1090, 1167, 1320, 1549, 1881, 2247, 2702, 3336, 3375, 2816, 2370, 1998, 1658, 1388, 1185, 1073, 1035, 1047, 1122, 1264, 1503, 1822, 2190, 2628, 3273, 3388, 2771, 2363, 1985, 1643, 1362, 1167, 1064, 1024, 1034, 1098, 1253, 1480, 1807, 2179, 2620, 3201, 3375, 2825, 2370, 2003, 1658, 1390, 1196, 1083, 1036, 1045, 1118, 1274, 1503, 1822, 2213, 2644, 3261, 3483, 2901, 2423, 2055, 1731, 1455, 1252, 1131, 1084, 1094, 1177, 1332, 1571, 1898, 2259, 2719, 3349, 3644, 3001, 2529, 2163, 1838, 1591, 1362, 1227, 1170, 1208, 1277, 1436, 1678, 1994, 2363, 2834, 3497, 3907, 3165, 2652, 2295, 1967, 1707, 1501, 1370, 1312, 1341, 1417, 1583, 1818, 2131, 2485, 2991, 3722, 4170, 3428, 2825, 2464, 2147, 1894, 1687, 1554, 1501, 1508, 1606, 1774, 2017, 2307, 2694, 3261, 4034, 4517, 3771, 3076, 2652, 2331, 2095, 1894, 1774, 1721, 1742, 1830, 1985, 2224, 2521, 2910, 3569, 4403, 4928, 4210, 3455, 2920, 2581, 2344, 2168, 2031, 1994, 2012, 2090, 2241, 2464, 2771, 3285, 4015, 4845, 5421, 4541, 3755, 3177, 2762, 2514, 2338, 2259, 2190, 2224, 2301, 2457, 2685, 3043, 3599, 4358, 5162]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [5663, 4545, 3747, 3176, 2773, 2475, 2312, 2185, 2116, 2147, 2252, 2394, 2624, 3023, 3564, 4343, 5132, 4902, 4197, 3438, 2893, 2518, 2288, 2106, 1977, 1929, 1929, 2023, 2190, 2401, 2739, 3235, 3950, 4821, 4569, 3780, 3086, 2624, 2312, 2052, 1860, 1731, 1675, 1691, 1780, 1938, 2174, 2482, 2912, 3550, 4364, 4217, 3452, 2836, 2434, 2121, 1860, 1659, 1531, 1467, 1474, 1564, 1734, 1969, 2282, 2648, 3223, 4023, 3933, 3211, 2656, 2300, 1964, 1691, 1479, 1345, 1290, 1305, 1399, 1561, 1795, 2116, 2482, 2991, 3684, 3669, 3033, 2547, 2169, 1840, 1547, 1341, 1216, 1161, 1175, 1267, 1422, 1656, 1982, 2355, 2818, 3507, 3536, 2931, 2454, 2076, 1728, 1447, 1246, 1127, 1080, 1094, 1172, 1325, 1567, 1892, 2270, 2730, 3346, 3452, 2855, 2381, 2014, 1668, 1392, 1190, 1084, 1041, 1051, 1130, 1275, 1513, 1836, 2218, 2680, 3283, 3452, 2818, 2375, 1995, 1662, 1379, 1182, 1070, 1024, 1037, 1108, 1264, 1507, 1825, 2207, 2664, 3247, 3479, 2864, 2407, 2033, 1678, 1406, 1201, 1085, 1044, 1055, 1123, 1278, 1518, 1848, 2235, 2697, 3296, 3579, 2922, 2461, 2091, 1752, 1469, 1264, 1140, 1088, 1096, 1180, 1345, 1581, 1913, 2294, 2747, 3385, 3700, 3054, 2555, 2190, 1856, 1613, 1373, 1240, 1180, 1213, 1282, 1452, 1684, 2019, 2394, 2874, 3550, 3950, 3223, 2688, 2318, 1991, 1724, 1510, 1381, 1321, 1347, 1426, 1592, 1840, 2158, 2525, 3033, 3763, 4217, 3465, 2874, 2489, 2179, 1917, 1707, 1561, 1520, 1520, 1619, 1780, 2042, 2336, 2713, 3259, 4098, 4593, 3796, 3131, 2688, 2368, 2116, 1925, 1791, 1728, 1752, 1840, 2009, 2241, 2533, 2961, 3608, 4499, 5014, 4279, 3493, 2971, 2616, 2375, 2190, 2052, 2014, 2014, 2106, 2282, 2497, 2836, 3321, 4042, 4930, 5521, 4642, 3846, 3235, 2818, 2555, 2407, 2276, 2201, 2207, 2318, 2475, 2722, 3108, 3684, 4499, 5319]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [4485, 3859, 3224, 2695, 2360, 2129, 1964, 1867, 1850, 1867, 1920, 2036, 2238, 2548, 3001, 3650, 4148, 4092, 3672, 3031, 2538, 2222, 2009, 1856, 1769, 1719, 1729, 1801, 1932, 2107, 2388, 2820, 3405, 4065, 3810, 3294, 2707, 2306, 2036, 1822, 1667, 1568, 1525, 1529, 1593, 1734, 1908, 2151, 2506, 3077, 3695, 3585, 3016, 2496, 2144, 1879, 1667, 1506, 1399, 1352, 1370, 1432, 1556, 1749, 1983, 2306, 2794, 3443, 3312, 2820, 2351, 2036, 1749, 1525, 1370, 1265, 1224, 1227, 1300, 1422, 1614, 1861, 2167, 2592, 3174, 3141, 2660, 2247, 1939, 1658, 1422, 1262, 1163, 1124, 1129, 1198, 1314, 1502, 1759, 2064, 2466, 3001, 3016, 2570, 2182, 1850, 1585, 1349, 1190, 1100, 1069, 1065, 1122, 1244, 1422, 1686, 2002, 2388, 2860, 2943, 2517, 2129, 1801, 1525, 1306, 1148, 1065, 1034, 1042, 1098, 1202, 1386, 1649, 1951, 2342, 2794, 2887, 2496, 2129, 1795, 1525, 1297, 1143, 1062, 1024, 1033, 1080, 1193, 1380, 1627, 1939, 2315, 2756, 2901, 2517, 2136, 1822, 1537, 1311, 1152, 1071, 1042, 1045, 1096, 1205, 1389, 1649, 1964, 2342, 2820, 3031, 2581, 2174, 1861, 1581, 1361, 1198, 1106, 1071, 1079, 1137, 1257, 1449, 1710, 2009, 2407, 2873, 3141, 2671, 2255, 1945, 1658, 1481, 1284, 1179, 1135, 1170, 1219, 1337, 1517, 1785, 2099, 2496, 2972, 3276, 2820, 2360, 2043, 1780, 1552, 1392, 1286, 1244, 1273, 1328, 1445, 1640, 1890, 2214, 2637, 3190, 3483, 3016, 2517, 2174, 1920, 1695, 1529, 1435, 1396, 1399, 1470, 1593, 1806, 2036, 2369, 2833, 3443, 3883, 3294, 2731, 2351, 2064, 1867, 1705, 1601, 1564, 1572, 1636, 1774, 1964, 2206, 2581, 3125, 3834, 4206, 3650, 3031, 2581, 2272, 2071, 1908, 1822, 1801, 1790, 1861, 1989, 2174, 2436, 2873, 3483, 4177, 4265, 3859, 3224, 2707, 2397, 2136, 2009, 1951, 1896, 1908, 1970, 2078, 2298, 2614, 3077, 3717, 4452]
                                       }
                                   }, {
                                       "name":    "2112x1568_D75_70",
                                       "resolution":    "2112x1568",
                                       "illumination":    "D75",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [4408, 3927, 3361, 2945, 2607, 2375, 2220, 2137, 2072, 2087, 2177, 2289, 2475, 2754, 3178, 3670, 4069, 4143, 3754, 3217, 2770, 2460, 2267, 2097, 1979, 1932, 1937, 2022, 2158, 2343, 2588, 2968, 3522, 4054, 3932, 3438, 2934, 2536, 2291, 2076, 1878, 1756, 1701, 1717, 1797, 1951, 2159, 2372, 2712, 3222, 3709, 3701, 3219, 2713, 2375, 2131, 1881, 1687, 1556, 1487, 1506, 1593, 1745, 1965, 2211, 2524, 2970, 3446, 3491, 2982, 2580, 2265, 1972, 1724, 1509, 1386, 1316, 1327, 1421, 1582, 1801, 2067, 2372, 2752, 3267, 3326, 2830, 2456, 2151, 1856, 1584, 1363, 1248, 1184, 1190, 1287, 1446, 1680, 1964, 2269, 2655, 3101, 3169, 2757, 2391, 2044, 1763, 1482, 1272, 1147, 1092, 1100, 1187, 1356, 1577, 1868, 2202, 2562, 3009, 3181, 2681, 2348, 2004, 1695, 1425, 1212, 1090, 1040, 1055, 1137, 1297, 1528, 1821, 2156, 2511, 2936, 3091, 2684, 2338, 1998, 1672, 1400, 1188, 1077, 1024, 1036, 1113, 1272, 1509, 1808, 2147, 2529, 2920, 3087, 2698, 2336, 2013, 1695, 1420, 1216, 1093, 1043, 1055, 1134, 1293, 1528, 1836, 2156, 2526, 2936, 3193, 2757, 2391, 2072, 1756, 1491, 1275, 1144, 1090, 1102, 1195, 1360, 1593, 1876, 2213, 2562, 3031, 3299, 2830, 2456, 2140, 1841, 1629, 1391, 1248, 1190, 1218, 1294, 1464, 1685, 1981, 2316, 2672, 3124, 3461, 2962, 2550, 2253, 1981, 1731, 1523, 1390, 1331, 1362, 1434, 1593, 1831, 2125, 2425, 2824, 3241, 3701, 3147, 2696, 2400, 2121, 1896, 1692, 1561, 1522, 1525, 1610, 1779, 1999, 2244, 2569, 3012, 3506, 3932, 3438, 2894, 2566, 2302, 2085, 1902, 1777, 1713, 1737, 1818, 1968, 2180, 2425, 2764, 3222, 3780, 4143, 3754, 3193, 2752, 2488, 2290, 2126, 2005, 1965, 1979, 2049, 2190, 2394, 2651, 3032, 3586, 4011, 4355, 3888, 3361, 2904, 2576, 2401, 2253, 2137, 2082, 2127, 2177, 2326, 2502, 2790, 3228, 3739, 4355]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [4175, 3651, 3178, 2761, 2465, 2271, 2144, 2062, 2027, 2029, 2107, 2230, 2367, 2653, 3019, 3482, 3837, 3803, 3433, 2944, 2575, 2320, 2145, 1985, 1891, 1842, 1858, 1932, 2058, 2218, 2447, 2801, 3287, 3726, 3603, 3158, 2723, 2390, 2157, 1961, 1790, 1681, 1633, 1646, 1727, 1861, 2044, 2245, 2570, 3014, 3503, 3433, 2957, 2524, 2253, 1998, 1789, 1610, 1500, 1443, 1456, 1532, 1683, 1865, 2114, 2394, 2784, 3273, 3218, 2785, 2425, 2133, 1872, 1646, 1456, 1342, 1285, 1299, 1377, 1522, 1727, 1990, 2245, 2625, 3067, 3084, 2672, 2323, 2045, 1772, 1520, 1332, 1207, 1159, 1171, 1259, 1397, 1610, 1877, 2153, 2518, 2957, 2988, 2587, 2255, 1957, 1674, 1421, 1237, 1124, 1081, 1089, 1164, 1309, 1518, 1807, 2100, 2436, 2870, 2912, 2541, 2215, 1919, 1624, 1377, 1183, 1073, 1035, 1047, 1121, 1257, 1477, 1757, 2056, 2382, 2830, 2927, 2506, 2211, 1908, 1611, 1352, 1165, 1064, 1024, 1034, 1097, 1246, 1456, 1745, 2048, 2378, 2776, 2912, 2549, 2215, 1923, 1624, 1379, 1193, 1083, 1036, 1045, 1117, 1266, 1477, 1757, 2076, 2395, 2821, 2988, 2604, 2255, 1966, 1690, 1439, 1247, 1130, 1084, 1093, 1174, 1321, 1539, 1822, 2111, 2451, 2881, 3096, 2672, 2336, 2055, 1783, 1565, 1352, 1223, 1168, 1204, 1270, 1417, 1634, 1902, 2191, 2533, 2979, 3272, 2785, 2425, 2159, 1892, 1668, 1481, 1359, 1304, 1331, 1401, 1551, 1755, 2013, 2281, 2642, 3128, 3433, 2967, 2547, 2289, 2041, 1831, 1649, 1529, 1480, 1485, 1573, 1719, 1923, 2151, 2437, 2832, 3328, 3638, 3197, 2723, 2425, 2183, 1997, 1828, 1724, 1677, 1694, 1769, 1897, 2089, 2312, 2586, 3037, 3552, 3864, 3479, 2987, 2615, 2372, 2194, 2056, 1941, 1911, 1924, 1985, 2103, 2271, 2490, 2850, 3329, 3803, 4102, 3651, 3165, 2780, 2486, 2308, 2176, 2118, 2060, 2087, 2144, 2259, 2422, 2670, 3043, 3515, 3921]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [4271, 3654, 3159, 2779, 2496, 2275, 2153, 2052, 1995, 2019, 2101, 2205, 2370, 2654, 3016, 3503, 3900, 3845, 3469, 2974, 2593, 2317, 2145, 2000, 1892, 1851, 1848, 1925, 2058, 2216, 2463, 2810, 3279, 3786, 3677, 3204, 2732, 2401, 2167, 1958, 1796, 1684, 1633, 1646, 1722, 1854, 2044, 2278, 2588, 3022, 3523, 3469, 2986, 2557, 2262, 2017, 1799, 1623, 1507, 1447, 1452, 1533, 1682, 1880, 2129, 2398, 2801, 3320, 3292, 2823, 2428, 2164, 1890, 1653, 1460, 1335, 1282, 1296, 1383, 1530, 1734, 1999, 2278, 2642, 3098, 3115, 2699, 2352, 2060, 1785, 1523, 1332, 1212, 1159, 1172, 1260, 1404, 1613, 1891, 2184, 2520, 2987, 3030, 2629, 2282, 1985, 1687, 1432, 1241, 1126, 1080, 1093, 1169, 1314, 1535, 1817, 2121, 2460, 2878, 2974, 2574, 2225, 1933, 1634, 1381, 1188, 1084, 1041, 1051, 1128, 1267, 1487, 1770, 2081, 2426, 2838, 2978, 2546, 2222, 1918, 1629, 1369, 1180, 1070, 1024, 1037, 1107, 1257, 1482, 1761, 2073, 2415, 2813, 2996, 2582, 2248, 1951, 1643, 1394, 1198, 1085, 1044, 1055, 1122, 1270, 1492, 1781, 2096, 2440, 2849, 3064, 2621, 2289, 1999, 1709, 1453, 1259, 1139, 1088, 1095, 1177, 1333, 1548, 1836, 2142, 2474, 2909, 3140, 2716, 2359, 2079, 1800, 1586, 1363, 1236, 1177, 1209, 1274, 1433, 1640, 1924, 2218, 2566, 3021, 3305, 2833, 2456, 2180, 1914, 1684, 1490, 1370, 1312, 1337, 1409, 1559, 1775, 2037, 2315, 2676, 3160, 3469, 2997, 2589, 2311, 2070, 1852, 1668, 1535, 1498, 1496, 1585, 1725, 1946, 2176, 2453, 2830, 3377, 3695, 3217, 2769, 2456, 2216, 2016, 1856, 1740, 1683, 1703, 1778, 1919, 2104, 2322, 2628, 3068, 3624, 3926, 3532, 3018, 2658, 2402, 2222, 2075, 1960, 1929, 1926, 2000, 2139, 2299, 2545, 2879, 3350, 3865, 4172, 3727, 3237, 2827, 2534, 2344, 2237, 2133, 2070, 2072, 2159, 2275, 2453, 2723, 3110, 3620, 4031]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [3447, 3142, 2749, 2387, 2148, 1977, 1848, 1771, 1758, 1771, 1810, 1896, 2046, 2267, 2574, 2986, 3211, 3256, 3065, 2645, 2295, 2061, 1897, 1774, 1703, 1659, 1666, 1725, 1829, 1962, 2169, 2474, 2859, 3236, 3109, 2820, 2418, 2127, 1922, 1749, 1618, 1532, 1493, 1495, 1550, 1669, 1808, 1994, 2251, 2648, 3023, 2985, 2634, 2269, 2008, 1798, 1620, 1478, 1381, 1337, 1353, 1409, 1517, 1680, 1866, 2108, 2455, 2876, 2808, 2501, 2166, 1928, 1692, 1496, 1356, 1257, 1218, 1221, 1289, 1399, 1567, 1772, 2007, 2314, 2700, 2698, 2388, 2090, 1852, 1615, 1404, 1255, 1160, 1122, 1127, 1193, 1301, 1470, 1689, 1931, 2226, 2587, 2615, 2325, 2043, 1778, 1552, 1337, 1187, 1099, 1069, 1065, 1120, 1236, 1399, 1629, 1885, 2172, 2490, 2565, 2288, 2002, 1738, 1498, 1297, 1146, 1065, 1034, 1042, 1097, 1196, 1367, 1598, 1844, 2140, 2446, 2523, 2272, 2004, 1733, 1499, 1289, 1141, 1062, 1024, 1033, 1079, 1188, 1362, 1579, 1835, 2119, 2418, 2532, 2288, 2008, 1757, 1510, 1302, 1150, 1071, 1042, 1045, 1095, 1199, 1370, 1598, 1856, 2140, 2467, 2627, 2334, 2036, 1789, 1548, 1349, 1194, 1105, 1071, 1078, 1135, 1249, 1424, 1651, 1891, 2188, 2500, 2698, 2397, 2097, 1857, 1615, 1460, 1276, 1176, 1133, 1167, 1213, 1323, 1484, 1713, 1961, 2251, 2564, 2780, 2501, 2173, 1934, 1720, 1522, 1377, 1278, 1238, 1265, 1315, 1421, 1591, 1798, 2048, 2351, 2713, 2907, 2634, 2287, 2034, 1835, 1646, 1500, 1415, 1379, 1381, 1444, 1552, 1732, 1913, 2162, 2486, 2876, 3163, 2820, 2438, 2166, 1947, 1790, 1653, 1562, 1530, 1535, 1589, 1705, 1858, 2041, 2314, 2686, 3127, 3338, 3048, 2645, 2331, 2104, 1952, 1821, 1751, 1734, 1722, 1779, 1880, 2020, 2209, 2517, 2919, 3317, 3293, 3142, 2749, 2396, 2179, 1983, 1888, 1845, 1799, 1807, 1853, 1933, 2096, 2321, 2634, 3036, 3424]
                                       }
                                   }, {
                                       "name":    "2112x1568_HZ_100",
                                       "resolution":    "2112x1568",
                                       "illumination":    "HZ",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [6751, 5624, 4565, 3817, 3334, 2974, 2757, 2570, 2538, 2549, 2672, 2835, 3160, 3591, 4275, 5281, 6014, 6075, 5146, 4158, 3468, 3034, 2708, 2466, 2315, 2238, 2255, 2369, 2581, 2875, 3227, 3866, 4743, 5785, 5521, 4565, 3700, 3128, 2720, 2397, 2128, 1969, 1901, 1913, 2035, 2255, 2538, 2903, 3428, 4245, 5191, 5102, 4158, 3352, 2875, 2486, 2121, 1860, 1689, 1604, 1634, 1748, 1950, 2263, 2637, 3128, 3793, 4670, 4743, 3817, 3177, 2684, 2246, 1889, 1617, 1458, 1381, 1403, 1516, 1728, 2049, 2426, 2889, 3528, 4367, 4464, 3656, 3004, 2517, 2084, 1703, 1440, 1282, 1215, 1230, 1347, 1551, 1877, 2255, 2757, 3316, 4101, 4275, 3488, 2903, 2388, 1944, 1579, 1309, 1164, 1102, 1119, 1217, 1430, 1738, 2143, 2637, 3210, 3941, 4129, 3371, 2796, 2315, 1855, 1490, 1245, 1100, 1045, 1058, 1164, 1347, 1652, 2070, 2581, 3144, 3890, 4073, 3352, 2783, 2280, 1832, 1472, 1210, 1077, 1024, 1036, 1135, 1327, 1626, 2035, 2560, 3111, 3817, 4101, 3409, 2809, 2306, 1860, 1490, 1235, 1102, 1045, 1056, 1157, 1350, 1657, 2070, 2581, 3160, 3817, 4216, 3448, 2875, 2388, 1937, 1571, 1315, 1159, 1100, 1110, 1225, 1427, 1733, 2151, 2649, 3210, 3993, 4431, 3612, 3004, 2517, 2056, 1742, 1447, 1276, 1208, 1247, 1347, 1563, 1877, 2297, 2796, 3371, 4101, 4706, 3817, 3177, 2661, 2246, 1889, 1613, 1451, 1381, 1420, 1531, 1742, 2056, 2476, 2931, 3570, 4336, 5102, 4129, 3352, 2889, 2456, 2128, 1855, 1675, 1613, 1639, 1748, 1975, 2289, 2696, 3193, 3866, 4781, 5521, 4497, 3700, 3160, 2733, 2407, 2151, 1988, 1901, 1931, 2049, 2289, 2592, 2960, 3488, 4245, 5235, 6075, 5060, 4129, 3488, 3049, 2745, 2466, 2306, 2272, 2280, 2388, 2615, 2903, 3298, 3890, 4819, 5841, 6751, 5521, 4497, 3770, 3280, 2945, 2745, 2592, 2528, 2528, 2684, 2889, 3160, 3634, 4336, 5281, 6328]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [5866, 4818, 3939, 3331, 2933, 2645, 2464, 2356, 2326, 2336, 2420, 2594, 2825, 3137, 3800, 4535, 5239, 5139, 4387, 3598, 3049, 2658, 2420, 2230, 2116, 2060, 2092, 2185, 2336, 2546, 2855, 3373, 4119, 4951, 4692, 3911, 3193, 2725, 2431, 2159, 1991, 1848, 1781, 1805, 1900, 2052, 2287, 2570, 3032, 3696, 4535, 4387, 3550, 2917, 2522, 2194, 1941, 1730, 1606, 1537, 1555, 1666, 1811, 2044, 2356, 2739, 3331, 4119, 3997, 3311, 2753, 2367, 2014, 1741, 1533, 1405, 1346, 1359, 1462, 1630, 1867, 2176, 2546, 3084, 3855, 3774, 3101, 2607, 2230, 1893, 1592, 1384, 1255, 1194, 1215, 1310, 1474, 1713, 2029, 2431, 2917, 3622, 3598, 3032, 2522, 2133, 1775, 1483, 1264, 1148, 1104, 1110, 1197, 1366, 1611, 1927, 2326, 2796, 3415, 3482, 2933, 2431, 2060, 1708, 1413, 1205, 1095, 1048, 1064, 1151, 1300, 1537, 1867, 2267, 2725, 3352, 3437, 2870, 2409, 2029, 1676, 1384, 1186, 1069, 1024, 1042, 1115, 1282, 1520, 1842, 2258, 2685, 3331, 3459, 2917, 2453, 2052, 1697, 1413, 1210, 1092, 1044, 1056, 1138, 1297, 1542, 1874, 2267, 2712, 3373, 3622, 2981, 2510, 2133, 1769, 1487, 1276, 1148, 1097, 1108, 1197, 1363, 1611, 1948, 2346, 2811, 3459, 3774, 3101, 2607, 2239, 1887, 1625, 1387, 1255, 1189, 1232, 1307, 1478, 1724, 2036, 2453, 2933, 3598, 3997, 3290, 2753, 2356, 2036, 1758, 1546, 1398, 1342, 1373, 1462, 1630, 1880, 2194, 2582, 3119, 3855, 4387, 3574, 2949, 2558, 2230, 1955, 1746, 1606, 1555, 1560, 1666, 1823, 2084, 2377, 2782, 3352, 4151, 4652, 3939, 3251, 2767, 2442, 2176, 1984, 1861, 1793, 1817, 1907, 2092, 2336, 2607, 3049, 3722, 4535, 5139, 4352, 3598, 3032, 2725, 2476, 2277, 2150, 2108, 2108, 2221, 2367, 2594, 2901, 3437, 4183, 5091, 5563, 4818, 3968, 3373, 2949, 2685, 2476, 2398, 2346, 2367, 2464, 2632, 2870, 3212, 3774, 4612, 5396]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [5980, 4810, 3965, 3330, 2886, 2583, 2368, 2279, 2204, 2232, 2328, 2477, 2726, 3137, 3745, 4567, 5332, 5229, 4491, 3620, 3015, 2673, 2389, 2187, 2046, 1979, 2001, 2094, 2269, 2523, 2841, 3414, 4211, 5178, 4942, 4024, 3270, 2754, 2411, 2143, 1936, 1795, 1715, 1726, 1844, 2016, 2260, 2596, 3032, 3745, 4686, 4491, 3669, 2965, 2547, 2213, 1929, 1705, 1571, 1497, 1514, 1618, 1795, 2046, 2368, 2811, 3436, 4244, 4147, 3414, 2826, 2389, 2054, 1749, 1518, 1382, 1312, 1331, 1437, 1618, 1869, 2223, 2634, 3156, 3965, 3936, 3212, 2686, 2298, 1936, 1603, 1379, 1231, 1173, 1193, 1296, 1481, 1737, 2085, 2511, 3015, 3745, 3798, 3119, 2634, 2187, 1807, 1514, 1275, 1141, 1088, 1101, 1193, 1375, 1647, 1986, 2411, 2902, 3596, 3669, 3032, 2535, 2126, 1743, 1437, 1212, 1092, 1038, 1050, 1148, 1312, 1576, 1929, 2348, 2841, 3503, 3644, 2998, 2523, 2102, 1721, 1419, 1196, 1079, 1024, 1038, 1117, 1293, 1557, 1916, 2348, 2826, 3458, 3745, 3032, 2559, 2126, 1743, 1445, 1220, 1092, 1040, 1056, 1138, 1315, 1580, 1936, 2368, 2856, 3549, 3771, 3119, 2621, 2187, 1813, 1514, 1287, 1150, 1099, 1106, 1204, 1379, 1652, 2001, 2454, 2933, 3596, 4054, 3212, 2713, 2318, 1943, 1658, 1408, 1251, 1193, 1231, 1309, 1497, 1760, 2110, 2547, 3049, 3798, 4211, 3436, 2856, 2454, 2094, 1783, 1548, 1400, 1335, 1368, 1461, 1638, 1923, 2260, 2673, 3250, 4054, 4529, 3644, 3015, 2608, 2279, 1979, 1743, 1594, 1544, 1553, 1647, 1831, 2102, 2432, 2871, 3480, 4312, 4942, 4084, 3310, 2826, 2477, 2213, 1986, 1838, 1760, 1801, 1882, 2077, 2358, 2673, 3119, 3825, 4727, 5385, 4491, 3694, 3119, 2713, 2477, 2269, 2118, 2070, 2085, 2187, 2368, 2571, 2949, 3503, 4278, 5280, 5980, 4988, 4084, 3414, 2918, 2673, 2454, 2348, 2298, 2328, 2421, 2571, 2856, 3250, 3880, 4727, 5551]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [4974, 4272, 3615, 3042, 2627, 2362, 2261, 2125, 2104, 2104, 2169, 2311, 2502, 2877, 3383, 4106, 4547, 4647, 4187, 3439, 2917, 2595, 2336, 2169, 2043, 1985, 1985, 2063, 2238, 2444, 2729, 3278, 3880, 4647, 4187, 3880, 3132, 2660, 2362, 2125, 1896, 1770, 1712, 1740, 1831, 1985, 2214, 2473, 2917, 3554, 4272, 3952, 3495, 2877, 2473, 2169, 1880, 1685, 1538, 1484, 1494, 1596, 1755, 1985, 2261, 2660, 3228, 3810, 3615, 3228, 2694, 2336, 2004, 1712, 1494, 1360, 1301, 1317, 1424, 1584, 1831, 2125, 2532, 2999, 3554, 3439, 3042, 2595, 2214, 1863, 1572, 1360, 1226, 1171, 1191, 1278, 1443, 1685, 1985, 2416, 2877, 3383, 3278, 2999, 2532, 2104, 1755, 1463, 1262, 1128, 1082, 1093, 1171, 1334, 1584, 1914, 2311, 2764, 3278, 3278, 2877, 2473, 2083, 1685, 1414, 1185, 1071, 1034, 1039, 1128, 1285, 1538, 1831, 2261, 2694, 3179, 3179, 2877, 2444, 2043, 1698, 1378, 1178, 1065, 1024, 1034, 1104, 1262, 1494, 1831, 2261, 2694, 3132, 3330, 2917, 2473, 2063, 1712, 1414, 1205, 1087, 1039, 1060, 1116, 1285, 1516, 1831, 2238, 2729, 3179, 3278, 2999, 2502, 2147, 1770, 1494, 1270, 1140, 1087, 1104, 1191, 1351, 1596, 1896, 2311, 2764, 3278, 3495, 3132, 2595, 2238, 1880, 1620, 1387, 1240, 1191, 1219, 1301, 1463, 1698, 2023, 2416, 2917, 3383, 3678, 3228, 2764, 2362, 2023, 1755, 1527, 1396, 1334, 1360, 1443, 1608, 1831, 2147, 2532, 3042, 3678, 3952, 3554, 2917, 2563, 2214, 1967, 1740, 1572, 1538, 1538, 1633, 1784, 2043, 2311, 2764, 3278, 3880, 4272, 3880, 3179, 2729, 2416, 2169, 1949, 1831, 1755, 1770, 1863, 2023, 2261, 2563, 2999, 3615, 4272, 4751, 4272, 3554, 3042, 2694, 2444, 2214, 2104, 2063, 2063, 2147, 2336, 2532, 2801, 3330, 4028, 4647, 4974, 4360, 3615, 3132, 2729, 2444, 2261, 2238, 2147, 2191, 2214, 2389, 2627, 2917, 3495, 4106, 4860]
                                       }
                                   }, {
                                       "name":    "2112x1568_HZ_70",
                                       "resolution":    "2112x1568",
                                       "illumination":    "HZ",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [5033, 4460, 3800, 3302, 2968, 2705, 2544, 2393, 2370, 2375, 2469, 2585, 2821, 3117, 3573, 4204, 4517, 4698, 4201, 3555, 3075, 2764, 2517, 2324, 2200, 2134, 2145, 2237, 2404, 2626, 2873, 3319, 3890, 4487, 4389, 3825, 3240, 2834, 2529, 2271, 2044, 1906, 1845, 1854, 1958, 2142, 2367, 2641, 3015, 3572, 4142, 4146, 3557, 2993, 2650, 2348, 2041, 1812, 1657, 1578, 1605, 1707, 1882, 2146, 2441, 2804, 3262, 3815, 3924, 3321, 2876, 2507, 2149, 1839, 1592, 1444, 1371, 1391, 1496, 1688, 1968, 2276, 2629, 3084, 3630, 3744, 3218, 2750, 2375, 2013, 1672, 1428, 1277, 1212, 1226, 1338, 1527, 1820, 2138, 2535, 2935, 3457, 3620, 3098, 2678, 2270, 1890, 1559, 1303, 1163, 1101, 1118, 1213, 1415, 1696, 2046, 2444, 2864, 3353, 3518, 3011, 2592, 2210, 1811, 1476, 1242, 1100, 1045, 1058, 1162, 1337, 1618, 1985, 2402, 2819, 3326, 3478, 2998, 2584, 2180, 1790, 1459, 1208, 1077, 1024, 1036, 1134, 1318, 1595, 1954, 2386, 2794, 3272, 3495, 3043, 2604, 2202, 1815, 1476, 1232, 1102, 1045, 1056, 1155, 1340, 1623, 1985, 2402, 2832, 3267, 3573, 3064, 2653, 2270, 1883, 1551, 1309, 1158, 1099, 1109, 1221, 1412, 1691, 2053, 2454, 2864, 3395, 3718, 3182, 2750, 2375, 1987, 1710, 1435, 1271, 1205, 1243, 1338, 1539, 1820, 2176, 2569, 2981, 3457, 3895, 3321, 2876, 2486, 2149, 1839, 1589, 1437, 1371, 1407, 1510, 1701, 1974, 2321, 2665, 3118, 3606, 4146, 3534, 2993, 2662, 2321, 2047, 1807, 1644, 1587, 1610, 1707, 1906, 2169, 2493, 2859, 3321, 3900, 4389, 3771, 3240, 2862, 2540, 2280, 2065, 1924, 1845, 1870, 1971, 2173, 2415, 2690, 3065, 3572, 4175, 4698, 4134, 3532, 3092, 2777, 2550, 2324, 2192, 2165, 2168, 2254, 2435, 2651, 2933, 3339, 3949, 4528, 5033, 4383, 3747, 3263, 2922, 2680, 2533, 2413, 2361, 2356, 2480, 2632, 2821, 3152, 3621, 4204, 4737]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [4413, 3858, 3310, 2905, 2630, 2421, 2287, 2204, 2181, 2186, 2248, 2377, 2539, 2747, 3201, 3647, 3975, 4017, 3616, 3103, 2724, 2439, 2262, 2112, 2019, 1971, 1997, 2071, 2187, 2342, 2561, 2921, 3409, 3880, 3769, 3308, 2820, 2487, 2272, 2055, 1917, 1793, 1733, 1753, 1833, 1958, 2144, 2354, 2687, 3138, 3651, 3599, 3066, 2625, 2340, 2083, 1874, 1690, 1578, 1514, 1530, 1629, 1754, 1948, 2194, 2475, 2889, 3394, 3342, 2905, 2512, 2224, 1936, 1700, 1512, 1393, 1337, 1348, 1444, 1595, 1800, 2053, 2334, 2718, 3231, 3198, 2756, 2404, 2115, 1835, 1566, 1373, 1250, 1191, 1211, 1302, 1454, 1667, 1933, 2251, 2602, 3078, 3079, 2714, 2342, 2037, 1731, 1466, 1259, 1147, 1103, 1109, 1193, 1354, 1577, 1849, 2170, 2515, 2933, 2998, 2640, 2269, 1976, 1671, 1401, 1202, 1095, 1048, 1064, 1149, 1291, 1510, 1798, 2124, 2464, 2894, 2966, 2590, 2252, 1949, 1642, 1373, 1184, 1069, 1024, 1042, 1114, 1274, 1494, 1777, 2118, 2433, 2881, 2980, 2626, 2289, 1968, 1661, 1401, 1207, 1092, 1044, 1056, 1136, 1289, 1514, 1805, 2124, 2453, 2911, 3098, 2671, 2332, 2037, 1725, 1470, 1271, 1147, 1096, 1107, 1193, 1351, 1577, 1868, 2187, 2528, 2968, 3198, 2756, 2404, 2124, 1829, 1598, 1376, 1250, 1186, 1228, 1299, 1457, 1677, 1940, 2270, 2615, 3059, 3342, 2888, 2512, 2214, 1956, 1716, 1524, 1386, 1333, 1362, 1444, 1595, 1812, 2069, 2364, 2747, 3231, 3599, 3085, 2652, 2371, 2116, 1887, 1705, 1578, 1531, 1534, 1629, 1765, 1984, 2212, 2511, 2906, 3418, 3739, 3330, 2868, 2524, 2282, 2070, 1911, 1805, 1744, 1764, 1840, 1994, 2188, 2386, 2701, 3158, 3651, 4017, 3589, 3103, 2709, 2497, 2311, 2154, 2050, 2015, 2011, 2103, 2215, 2383, 2599, 2973, 3458, 3982, 4201, 3858, 3332, 2939, 2644, 2456, 2297, 2241, 2199, 2214, 2287, 2410, 2577, 2808, 3180, 3704, 4084]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [4493, 3852, 3330, 2904, 2591, 2368, 2202, 2136, 2073, 2094, 2167, 2276, 2456, 2747, 3157, 3671, 4040, 4083, 3696, 3121, 2695, 2452, 2234, 2073, 1955, 1897, 1914, 1989, 2128, 2322, 2549, 2954, 3480, 4045, 3956, 3397, 2884, 2512, 2254, 2040, 1866, 1743, 1671, 1679, 1781, 1925, 2121, 2376, 2687, 3176, 3764, 3678, 3162, 2666, 2362, 2101, 1863, 1666, 1545, 1476, 1491, 1584, 1739, 1949, 2204, 2535, 2974, 3489, 3459, 2990, 2574, 2243, 1972, 1707, 1497, 1371, 1304, 1321, 1420, 1584, 1802, 2095, 2409, 2778, 3317, 3326, 2848, 2473, 2177, 1875, 1577, 1369, 1227, 1171, 1190, 1288, 1460, 1689, 1984, 2320, 2684, 3175, 3239, 2787, 2441, 2086, 1761, 1496, 1270, 1140, 1088, 1100, 1190, 1362, 1610, 1903, 2245, 2605, 3078, 3148, 2724, 2361, 2036, 1705, 1424, 1209, 1092, 1038, 1050, 1146, 1303, 1547, 1855, 2196, 2562, 3015, 3133, 2698, 2353, 2016, 1685, 1407, 1194, 1079, 1024, 1038, 1116, 1285, 1529, 1845, 2198, 2552, 2983, 3210, 2724, 2382, 2036, 1705, 1432, 1217, 1092, 1040, 1056, 1136, 1306, 1550, 1862, 2213, 2575, 3052, 3217, 2787, 2429, 2086, 1767, 1496, 1282, 1149, 1098, 1105, 1200, 1366, 1615, 1916, 2282, 2631, 3078, 3420, 2848, 2497, 2195, 1881, 1629, 1397, 1247, 1190, 1227, 1301, 1476, 1710, 2007, 2352, 2712, 3217, 3509, 3008, 2600, 2301, 2009, 1739, 1526, 1388, 1326, 1357, 1443, 1603, 1852, 2128, 2443, 2855, 3386, 3707, 3142, 2708, 2415, 2160, 1909, 1702, 1567, 1521, 1528, 1611, 1772, 2000, 2261, 2586, 3009, 3541, 3956, 3444, 2917, 2574, 2313, 2104, 1913, 1784, 1713, 1749, 1817, 1981, 2207, 2443, 2759, 3240, 3795, 4196, 3696, 3180, 2782, 2486, 2312, 2147, 2021, 1980, 1991, 2073, 2216, 2363, 2640, 3026, 3532, 4120, 4493, 3985, 3423, 2973, 2618, 2445, 2278, 2197, 2156, 2179, 2249, 2358, 2566, 2839, 3263, 3790, 4193]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [3789, 3450, 3056, 2670, 2373, 2177, 2109, 1999, 1984, 1981, 2028, 2133, 2268, 2535, 2874, 3326, 3490, 3659, 3461, 2974, 2613, 2384, 2187, 2057, 1952, 1902, 1899, 1961, 2100, 2253, 2455, 2844, 3225, 3659, 3391, 3283, 2770, 2431, 2211, 2024, 1830, 1720, 1668, 1692, 1769, 1897, 2080, 2271, 2592, 3025, 3454, 3266, 3021, 2591, 2297, 2061, 1818, 1647, 1513, 1463, 1472, 1563, 1702, 1894, 2110, 2408, 2805, 3157, 3044, 2837, 2461, 2196, 1926, 1673, 1474, 1349, 1293, 1308, 1407, 1552, 1767, 2007, 2321, 2648, 2997, 2933, 2706, 2394, 2101, 1807, 1547, 1350, 1222, 1169, 1188, 1271, 1424, 1641, 1894, 2238, 2569, 2889, 2824, 2686, 2351, 2010, 1712, 1447, 1257, 1127, 1082, 1092, 1168, 1323, 1551, 1837, 2157, 2489, 2824, 2834, 2593, 2306, 1997, 1650, 1402, 1183, 1071, 1034, 1039, 1126, 1277, 1511, 1765, 2119, 2438, 2755, 2758, 2596, 2283, 1962, 1663, 1368, 1176, 1065, 1024, 1034, 1103, 1255, 1470, 1767, 2121, 2440, 2720, 2876, 2626, 2306, 1978, 1675, 1402, 1202, 1087, 1039, 1060, 1115, 1277, 1490, 1765, 2098, 2467, 2755, 2824, 2686, 2325, 2050, 1726, 1477, 1265, 1139, 1087, 1103, 1188, 1339, 1562, 1820, 2157, 2489, 2824, 2978, 2781, 2394, 2123, 1822, 1593, 1376, 1236, 1188, 1215, 1293, 1443, 1653, 1928, 2238, 2602, 2889, 3093, 2837, 2521, 2219, 1944, 1713, 1506, 1384, 1325, 1349, 1426, 1574, 1767, 2027, 2321, 2684, 3093, 3266, 3069, 2625, 2376, 2102, 1898, 1699, 1546, 1515, 1513, 1598, 1729, 1947, 2154, 2496, 2846, 3211, 3454, 3283, 2809, 2491, 2259, 2064, 1878, 1777, 1708, 1720, 1799, 1931, 2121, 2348, 2660, 3073, 3454, 3735, 3527, 3067, 2718, 2470, 2283, 2097, 2008, 1974, 1970, 2037, 2187, 2330, 2515, 2886, 3339, 3659, 3789, 3516, 3056, 2743, 2459, 2248, 2109, 2099, 2022, 2058, 2067, 2201, 2373, 2568, 2961, 3326, 3709]
                                       }
                                   }, {
                                       "name":    "2112x1568_TL84_100",
                                       "resolution":    "2112x1568",
                                       "illumination":    "TL84",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [5700, 4656, 3752, 3162, 2718, 2455, 2260, 2169, 2121, 2140, 2198, 2359, 2601, 2987, 3559, 4362, 5153, 5045, 4247, 3482, 2880, 2532, 2271, 2084, 1982, 1904, 1926, 2007, 2178, 2383, 2718, 3226, 3935, 4843, 4612, 3811, 3082, 2615, 2303, 2058, 1860, 1733, 1673, 1691, 1771, 1926, 2169, 2443, 2863, 3507, 4323, 4362, 3457, 2829, 2394, 2112, 1860, 1667, 1530, 1478, 1492, 1580, 1727, 1966, 2239, 2629, 3183, 4000, 3968, 3226, 2658, 2271, 1966, 1702, 1492, 1366, 1303, 1314, 1409, 1570, 1791, 2084, 2431, 2950, 3639, 3752, 3024, 2506, 2140, 1839, 1550, 1358, 1227, 1173, 1191, 1275, 1439, 1650, 1950, 2292, 2764, 3408, 3559, 2897, 2418, 2058, 1733, 1456, 1256, 1135, 1084, 1096, 1188, 1335, 1570, 1867, 2229, 2643, 3247, 3384, 2813, 2348, 1998, 1667, 1397, 1193, 1089, 1042, 1053, 1137, 1275, 1516, 1811, 2159, 2587, 3162, 3384, 2780, 2359, 1966, 1639, 1369, 1182, 1069, 1024, 1035, 1114, 1262, 1492, 1784, 2159, 2587, 3162, 3408, 2813, 2337, 1990, 1656, 1401, 1193, 1089, 1037, 1051, 1129, 1282, 1501, 1818, 2178, 2601, 3204, 3507, 2880, 2394, 2040, 1727, 1461, 1256, 1137, 1091, 1094, 1182, 1347, 1570, 1874, 2239, 2718, 3270, 3695, 3005, 2493, 2149, 1811, 1590, 1354, 1215, 1162, 1208, 1275, 1447, 1673, 1966, 2325, 2796, 3432, 3903, 3162, 2629, 2271, 1942, 1679, 1483, 1354, 1292, 1324, 1409, 1560, 1804, 2103, 2443, 2968, 3695, 4210, 3408, 2780, 2418, 2121, 1853, 1661, 1520, 1474, 1483, 1575, 1739, 1974, 2281, 2643, 3204, 3968, 4568, 3723, 3062, 2615, 2303, 2058, 1853, 1727, 1679, 1696, 1791, 1958, 2198, 2493, 2897, 3559, 4402, 5045, 4247, 3432, 2897, 2519, 2271, 2094, 1974, 1934, 1942, 2032, 2198, 2418, 2780, 3247, 4000, 4892, 5443, 4612, 3723, 3142, 2687, 2443, 2271, 2149, 2103, 2121, 2198, 2383, 2615, 3005, 3585, 4362, 5208]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [5566, 4511, 3751, 3181, 2761, 2501, 2308, 2184, 2157, 2164, 2270, 2422, 2644, 2988, 3576, 4341, 5075, 4827, 4158, 3417, 2852, 2519, 2270, 2098, 1989, 1933, 1961, 2042, 2198, 2413, 2707, 3195, 3899, 4760, 4453, 3711, 3040, 2585, 2293, 2042, 1875, 1752, 1704, 1717, 1797, 1955, 2170, 2448, 2852, 3503, 4341, 4060, 3383, 2783, 2405, 2111, 1860, 1655, 1544, 1484, 1510, 1594, 1747, 1966, 2255, 2595, 3181, 3921, 3856, 3123, 2604, 2263, 1950, 1683, 1481, 1359, 1310, 1322, 1411, 1572, 1797, 2079, 2430, 2937, 3671, 3539, 2962, 2483, 2143, 1826, 1547, 1351, 1217, 1168, 1186, 1273, 1435, 1663, 1955, 2316, 2772, 3417, 3451, 2864, 2388, 2030, 1717, 1447, 1244, 1124, 1083, 1094, 1170, 1327, 1561, 1870, 2219, 2655, 3287, 3383, 2772, 2332, 1983, 1655, 1380, 1184, 1077, 1035, 1044, 1126, 1266, 1510, 1807, 2170, 2585, 3210, 3302, 2728, 2316, 1966, 1632, 1361, 1166, 1062, 1024, 1032, 1099, 1248, 1484, 1788, 2150, 2575, 3123, 3318, 2772, 2340, 1983, 1667, 1380, 1182, 1078, 1039, 1049, 1124, 1273, 1507, 1821, 2177, 2604, 3195, 3417, 2840, 2388, 2048, 1717, 1450, 1248, 1133, 1082, 1092, 1178, 1335, 1561, 1886, 2241, 2655, 3302, 3576, 2937, 2492, 2143, 1821, 1579, 1359, 1224, 1168, 1202, 1273, 1432, 1675, 1961, 2324, 2783, 3486, 3792, 3123, 2614, 2270, 1950, 1692, 1497, 1364, 1310, 1335, 1423, 1576, 1831, 2098, 2456, 2962, 3652, 4133, 3367, 2794, 2405, 2124, 1891, 1679, 1547, 1504, 1514, 1613, 1770, 2006, 2293, 2624, 3195, 3989, 4453, 3731, 3067, 2624, 2324, 2079, 1901, 1774, 1717, 1734, 1831, 1995, 2212, 2483, 2900, 3539, 4341, 4861, 4158, 3417, 2900, 2547, 2332, 2143, 2018, 1995, 1995, 2098, 2248, 2448, 2761, 3225, 3966, 4861, 5350, 4541, 3751, 3152, 2761, 2483, 2332, 2248, 2191, 2219, 2301, 2448, 2686, 3067, 3595, 4424, 5229]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [5519, 4542, 3735, 3142, 2722, 2444, 2275, 2168, 2109, 2135, 2203, 2376, 2609, 2967, 3543, 4316, 5112, 4966, 4186, 3438, 2880, 2514, 2253, 2077, 1965, 1916, 1922, 1999, 2161, 2385, 2701, 3200, 3947, 4861, 4572, 3775, 3059, 2599, 2305, 2046, 1865, 1730, 1663, 1688, 1779, 1938, 2155, 2452, 2868, 3543, 4343, 4211, 3438, 2810, 2426, 2109, 1860, 1651, 1524, 1463, 1485, 1573, 1738, 1965, 2253, 2639, 3215, 4063, 3947, 3185, 2659, 2275, 1971, 1688, 1479, 1346, 1291, 1306, 1404, 1576, 1802, 2109, 2478, 2979, 3675, 3715, 3018, 2533, 2175, 1840, 1548, 1344, 1216, 1157, 1171, 1268, 1439, 1675, 1994, 2368, 2810, 3490, 3525, 2905, 2444, 2071, 1734, 1457, 1243, 1129, 1077, 1088, 1171, 1333, 1587, 1906, 2275, 2711, 3388, 3472, 2822, 2376, 2017, 1675, 1395, 1187, 1078, 1036, 1047, 1127, 1282, 1528, 1850, 2217, 2639, 3322, 3421, 2810, 2360, 1994, 1651, 1379, 1175, 1068, 1024, 1033, 1106, 1263, 1511, 1825, 2217, 2639, 3245, 3472, 2845, 2385, 2023, 1671, 1401, 1197, 1085, 1041, 1052, 1127, 1291, 1531, 1860, 2238, 2669, 3307, 3580, 2892, 2444, 2090, 1756, 1466, 1256, 1137, 1083, 1094, 1179, 1346, 1594, 1922, 2290, 2733, 3388, 3715, 3018, 2542, 2182, 1850, 1602, 1362, 1227, 1165, 1206, 1277, 1451, 1696, 2017, 2376, 2857, 3543, 3925, 3229, 2680, 2305, 1982, 1717, 1504, 1365, 1308, 1328, 1421, 1591, 1840, 2161, 2524, 3005, 3817, 4263, 3455, 2845, 2470, 2148, 1895, 1683, 1548, 1491, 1501, 1605, 1774, 2023, 2313, 2690, 3275, 4087, 4603, 3796, 3128, 2659, 2344, 2102, 1895, 1760, 1704, 1730, 1816, 1999, 2224, 2514, 2929, 3599, 4455, 5038, 4263, 3472, 2917, 2580, 2352, 2155, 2023, 1988, 1988, 2077, 2231, 2470, 2788, 3307, 4039, 4966, 5519, 4603, 3817, 3185, 2776, 2514, 2336, 2231, 2175, 2196, 2298, 2452, 2669, 3072, 3617, 4484, 5308]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [4569, 3920, 3264, 2819, 2409, 2144, 2002, 1909, 1877, 1866, 1932, 2077, 2277, 2598, 3081, 3701, 4275, 4275, 3786, 3140, 2639, 2293, 2077, 1920, 1825, 1786, 1786, 1856, 1989, 2172, 2445, 2893, 3581, 4275, 3920, 3433, 2796, 2375, 2090, 1877, 1721, 1604, 1574, 1589, 1644, 1786, 1966, 2216, 2598, 3170, 3786, 3701, 3140, 2578, 2216, 1932, 1712, 1552, 1431, 1389, 1413, 1469, 1612, 1815, 2051, 2358, 2919, 3581, 3363, 2919, 2409, 2077, 1805, 1566, 1413, 1302, 1243, 1267, 1344, 1463, 1660, 1932, 2246, 2682, 3329, 3232, 2749, 2309, 1989, 1703, 1456, 1291, 1181, 1136, 1148, 1220, 1355, 1552, 1805, 2117, 2578, 3053, 3081, 2682, 2231, 1909, 1612, 1372, 1207, 1110, 1067, 1077, 1136, 1272, 1469, 1730, 2039, 2445, 2971, 2998, 2578, 2201, 1845, 1566, 1333, 1156, 1067, 1027, 1037, 1106, 1225, 1431, 1694, 2014, 2445, 2945, 2998, 2578, 2172, 1845, 1559, 1322, 1148, 1057, 1024, 1030, 1088, 1216, 1419, 1686, 2002, 2375, 2843, 2998, 2598, 2187, 1866, 1574, 1338, 1168, 1077, 1047, 1050, 1102, 1238, 1431, 1703, 2026, 2409, 2919, 3025, 2661, 2231, 1920, 1628, 1395, 1216, 1117, 1074, 1084, 1152, 1277, 1496, 1757, 2090, 2481, 2971, 3201, 2727, 2293, 1989, 1694, 1509, 1302, 1185, 1144, 1177, 1238, 1366, 1581, 1845, 2187, 2578, 3081, 3398, 2919, 2445, 2117, 1815, 1597, 1413, 1307, 1262, 1281, 1344, 1489, 1677, 1966, 2277, 2749, 3329, 3660, 3140, 2598, 2246, 1978, 1748, 1566, 1456, 1419, 1419, 1496, 1652, 1866, 2117, 2463, 2945, 3581, 3967, 3469, 2819, 2427, 2144, 1920, 1757, 1644, 1612, 1620, 1703, 1835, 2051, 2309, 2661, 3264, 3967, 4275, 3829, 3170, 2661, 2341, 2144, 1978, 1877, 1845, 1845, 1909, 2039, 2231, 2578, 2998, 3701, 4330, 4330, 4016, 3329, 2819, 2409, 2187, 2064, 1954, 1920, 1943, 2002, 2144, 2309, 2661, 3140, 3874, 4507]
                                       }
                                   }, {
                                       "name":    "2112x1568_TL84_70",
                                       "resolution":    "2112x1568",
                                       "illumination":    "TL84",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [4297, 3737, 3163, 2767, 2449, 2258, 2108, 2038, 1999, 2013, 2053, 2175, 2351, 2625, 3012, 3518, 3914, 3949, 3508, 3009, 2582, 2330, 2130, 1980, 1897, 1828, 1846, 1910, 2047, 2201, 2446, 2802, 3267, 3802, 3709, 3228, 2728, 2393, 2159, 1963, 1796, 1686, 1632, 1646, 1714, 1843, 2040, 2245, 2547, 2988, 3493, 3580, 2991, 2551, 2227, 2009, 1799, 1630, 1506, 1458, 1470, 1548, 1676, 1877, 2091, 2382, 2769, 3302, 3319, 2835, 2430, 2138, 1891, 1663, 1473, 1355, 1295, 1305, 1393, 1539, 1730, 1971, 2235, 2608, 3063, 3181, 2691, 2316, 2034, 1784, 1526, 1348, 1223, 1171, 1188, 1268, 1420, 1608, 1862, 2129, 2475, 2909, 3048, 2600, 2251, 1968, 1691, 1440, 1251, 1134, 1084, 1095, 1185, 1324, 1538, 1794, 2084, 2387, 2799, 2920, 2538, 2196, 1919, 1633, 1385, 1190, 1089, 1042, 1053, 1135, 1267, 1490, 1747, 2028, 2347, 2741, 2923, 2513, 2208, 1891, 1607, 1359, 1180, 1069, 1024, 1035, 1113, 1255, 1468, 1723, 2030, 2350, 2745, 2939, 2538, 2186, 1911, 1622, 1389, 1190, 1089, 1037, 1051, 1127, 1274, 1476, 1753, 2045, 2359, 2775, 3007, 2586, 2230, 1952, 1686, 1445, 1251, 1136, 1091, 1093, 1179, 1335, 1538, 1800, 2093, 2450, 2817, 3136, 2675, 2305, 2042, 1758, 1564, 1344, 1211, 1160, 1204, 1268, 1428, 1629, 1876, 2158, 2501, 2928, 3269, 2783, 2405, 2138, 1869, 1641, 1464, 1343, 1284, 1314, 1393, 1529, 1742, 1988, 2245, 2623, 3107, 3463, 2951, 2509, 2248, 2017, 1793, 1625, 1496, 1454, 1461, 1543, 1687, 1884, 2128, 2393, 2786, 3278, 3676, 3159, 2712, 2393, 2159, 1963, 1790, 1680, 1637, 1651, 1733, 1872, 2065, 2288, 2575, 3029, 3552, 3949, 3508, 2969, 2596, 2318, 2130, 1989, 1889, 1856, 1860, 1933, 2065, 2231, 2498, 2819, 3317, 3837, 4117, 3704, 3140, 2751, 2423, 2247, 2117, 2021, 1983, 1996, 2053, 2195, 2363, 2639, 3032, 3518, 3953]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [4203, 3629, 3162, 2783, 2486, 2297, 2150, 2052, 2031, 2034, 2117, 2229, 2387, 2626, 3025, 3502, 3860, 3790, 3439, 2957, 2558, 2318, 2129, 1993, 1903, 1855, 1878, 1942, 2065, 2227, 2437, 2777, 3240, 3741, 3590, 3149, 2694, 2367, 2150, 1949, 1810, 1703, 1661, 1671, 1738, 1870, 2041, 2249, 2538, 2985, 3506, 3348, 2931, 2512, 2237, 2008, 1799, 1619, 1519, 1463, 1487, 1561, 1694, 1877, 2105, 2353, 2767, 3242, 3232, 2750, 2383, 2131, 1877, 1645, 1462, 1348, 1302, 1312, 1395, 1541, 1736, 1966, 2234, 2597, 3088, 3012, 2640, 2296, 2037, 1772, 1523, 1341, 1213, 1166, 1183, 1266, 1416, 1620, 1867, 2150, 2481, 2916, 2962, 2573, 2224, 1943, 1676, 1432, 1240, 1123, 1083, 1093, 1167, 1316, 1530, 1797, 2076, 2397, 2831, 2919, 2504, 2182, 1905, 1621, 1369, 1182, 1077, 1035, 1044, 1124, 1258, 1484, 1743, 2038, 2345, 2780, 2857, 2469, 2170, 1891, 1601, 1351, 1164, 1062, 1024, 1032, 1098, 1241, 1460, 1727, 2022, 2339, 2713, 2867, 2504, 2189, 1905, 1633, 1369, 1180, 1078, 1039, 1049, 1123, 1265, 1481, 1756, 2044, 2361, 2768, 2935, 2552, 2224, 1959, 1676, 1434, 1243, 1132, 1082, 1091, 1175, 1324, 1530, 1811, 2095, 2397, 2843, 3042, 2619, 2304, 2037, 1767, 1554, 1349, 1220, 1166, 1199, 1266, 1414, 1631, 1872, 2157, 2490, 2971, 3182, 2750, 2392, 2137, 1877, 1654, 1477, 1353, 1302, 1325, 1406, 1544, 1767, 1983, 2256, 2618, 3073, 3404, 2918, 2521, 2237, 2020, 1828, 1641, 1522, 1483, 1491, 1579, 1716, 1913, 2139, 2377, 2779, 3294, 3590, 3165, 2716, 2401, 2177, 1982, 1834, 1724, 1673, 1687, 1769, 1906, 2078, 2279, 2578, 3013, 3506, 3815, 3439, 2957, 2599, 2343, 2184, 2033, 1929, 1912, 1909, 1993, 2109, 2257, 2482, 2802, 3291, 3815, 4052, 3651, 3162, 2759, 2486, 2282, 2171, 2108, 2061, 2083, 2144, 2251, 2423, 2690, 3040, 3564, 3968]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [4171, 3652, 3150, 2751, 2453, 2248, 2121, 2037, 1988, 2008, 2058, 2189, 2358, 2608, 2999, 3483, 3886, 3891, 3461, 2974, 2582, 2314, 2114, 1974, 1881, 1839, 1842, 1903, 2032, 2202, 2432, 2781, 3277, 3815, 3679, 3200, 2709, 2379, 2160, 1952, 1801, 1683, 1622, 1644, 1721, 1854, 2027, 2253, 2551, 3016, 3508, 3464, 2975, 2535, 2255, 2006, 1799, 1615, 1500, 1443, 1463, 1542, 1686, 1876, 2103, 2390, 2795, 3351, 3303, 2801, 2431, 2141, 1896, 1650, 1460, 1336, 1283, 1297, 1388, 1544, 1740, 1993, 2275, 2632, 3091, 3152, 2686, 2340, 2066, 1785, 1524, 1335, 1212, 1155, 1168, 1261, 1420, 1631, 1902, 2196, 2513, 2974, 3021, 2607, 2274, 1980, 1692, 1441, 1239, 1128, 1077, 1087, 1168, 1322, 1554, 1830, 2125, 2444, 2912, 2990, 2546, 2221, 1936, 1640, 1383, 1185, 1078, 1036, 1047, 1125, 1274, 1501, 1783, 2080, 2391, 2870, 2953, 2539, 2209, 1917, 1619, 1369, 1173, 1068, 1024, 1033, 1105, 1256, 1486, 1761, 2082, 2394, 2811, 2990, 2565, 2228, 1942, 1636, 1389, 1194, 1085, 1041, 1052, 1125, 1283, 1504, 1792, 2098, 2416, 2858, 3065, 2596, 2274, 1998, 1713, 1450, 1251, 1136, 1083, 1093, 1176, 1334, 1561, 1844, 2138, 2462, 2912, 3152, 2686, 2347, 2072, 1794, 1576, 1352, 1223, 1163, 1202, 1270, 1432, 1651, 1923, 2203, 2552, 3016, 3286, 2838, 2449, 2168, 1906, 1677, 1484, 1354, 1300, 1318, 1404, 1558, 1775, 2040, 2315, 2653, 3202, 3504, 2989, 2564, 2294, 2042, 1831, 1645, 1523, 1470, 1478, 1572, 1719, 1929, 2156, 2433, 2843, 3369, 3702, 3217, 2767, 2431, 2195, 2003, 1829, 1711, 1661, 1683, 1756, 1910, 2089, 2306, 2602, 3061, 3591, 3944, 3520, 3001, 2613, 2371, 2201, 2044, 1934, 1905, 1902, 1974, 2094, 2276, 2505, 2868, 3347, 3891, 4171, 3698, 3214, 2786, 2498, 2308, 2174, 2093, 2047, 2062, 2141, 2255, 2408, 2694, 3057, 3609, 4023]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [3506, 3187, 2780, 2488, 2189, 1989, 1882, 1808, 1782, 1770, 1820, 1932, 2078, 2308, 2637, 3024, 3300, 3389, 3152, 2733, 2380, 2123, 1958, 1832, 1754, 1720, 1718, 1774, 1880, 2018, 2217, 2533, 2994, 3389, 3191, 2929, 2492, 2186, 1970, 1799, 1668, 1565, 1539, 1551, 1597, 1716, 1860, 2050, 2328, 2721, 3091, 3073, 2734, 2338, 2071, 1846, 1662, 1522, 1412, 1373, 1394, 1444, 1569, 1740, 1926, 2152, 2556, 2982, 2848, 2583, 2216, 1965, 1743, 1535, 1397, 1293, 1237, 1259, 1331, 1438, 1610, 1835, 2075, 2388, 2821, 2770, 2462, 2144, 1897, 1657, 1436, 1283, 1178, 1134, 1146, 1214, 1340, 1516, 1731, 1977, 2320, 2628, 2667, 2419, 2086, 1832, 1578, 1359, 1203, 1109, 1067, 1076, 1134, 1263, 1443, 1669, 1917, 2220, 2579, 2610, 2339, 2066, 1778, 1537, 1323, 1154, 1067, 1027, 1037, 1105, 1219, 1409, 1639, 1900, 2227, 2567, 2613, 2342, 2042, 1779, 1531, 1313, 1146, 1057, 1024, 1030, 1087, 1210, 1399, 1633, 1891, 2170, 2488, 2610, 2356, 2053, 1797, 1545, 1328, 1166, 1077, 1047, 1050, 1101, 1231, 1409, 1648, 1911, 2196, 2546, 2622, 2402, 2086, 1842, 1593, 1381, 1212, 1116, 1074, 1083, 1149, 1268, 1468, 1694, 1962, 2250, 2579, 2745, 2444, 2130, 1897, 1649, 1487, 1294, 1182, 1142, 1174, 1232, 1351, 1544, 1767, 2038, 2320, 2650, 2875, 2583, 2247, 2000, 1752, 1564, 1397, 1298, 1255, 1273, 1331, 1462, 1625, 1865, 2102, 2443, 2821, 3042, 2734, 2355, 2097, 1888, 1695, 1535, 1435, 1401, 1400, 1469, 1606, 1786, 1984, 2241, 2577, 2982, 3226, 2958, 2511, 2231, 2018, 1838, 1701, 1603, 1575, 1580, 1651, 1761, 1935, 2130, 2380, 2796, 3226, 3389, 3186, 2757, 2398, 2164, 2017, 1884, 1801, 1774, 1772, 1822, 1924, 2069, 2328, 2618, 3087, 3429, 3338, 3259, 2831, 2488, 2189, 2026, 1936, 1848, 1820, 1838, 1882, 1989, 2105, 2359, 2683, 3153, 3462]
                                       }
                                   }, {
                                       "name":    "2112x1568_GRAY_70",
                                       "resolution":    "2112x1568",
                                       "illumination":    "GRAY",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [4033, 2881, 2575, 2302, 2071, 1909, 1807, 1760, 1742, 1784, 1824, 1948, 2107, 2332, 2633, 2932, 4086, 3075, 2713, 2356, 2091, 1890, 1762, 1656, 1600, 1581, 1613, 1656, 1762, 1900, 2114, 2404, 2735, 3134, 2815, 2490, 2149, 1917, 1741, 1603, 1510, 1455, 1440, 1455, 1521, 1622, 1756, 1937, 2187, 2544, 2889, 2656, 2300, 2018, 1796, 1618, 1488, 1392, 1339, 1314, 1339, 1397, 1505, 1638, 1829, 2051, 2361, 2742, 2492, 2187, 1900, 1687, 1500, 1383, 1287, 1233, 1216, 1233, 1295, 1397, 1534, 1716, 1929, 2227, 2624, 2390, 2068, 1809, 1592, 1426, 1298, 1205, 1162, 1136, 1153, 1212, 1323, 1451, 1631, 1852, 2128, 2509, 2304, 2010, 1744, 1534, 1373, 1242, 1146, 1091, 1081, 1099, 1149, 1257, 1391, 1570, 1792, 2054, 2397, 2245, 1948, 1709, 1498, 1328, 1197, 1109, 1055, 1036, 1060, 1117, 1217, 1354, 1537, 1754, 2032, 2364, 2208, 1922, 1675, 1473, 1314, 1183, 1094, 1042, 1024, 1045, 1102, 1199, 1348, 1523, 1750, 2004, 2353, 2217, 1948, 1687, 1476, 1312, 1187, 1092, 1038, 1024, 1045, 1103, 1203, 1341, 1509, 1747, 2021, 2348, 2246, 1968, 1706, 1500, 1342, 1210, 1117, 1065, 1048, 1075, 1131, 1217, 1369, 1552, 1768, 2032, 2365, 2296, 2012, 1759, 1549, 1383, 1252, 1157, 1106, 1093, 1117, 1169, 1279, 1421, 1599, 1817, 2092, 2439, 2356, 2087, 1836, 1616, 1447, 1314, 1228, 1172, 1157, 1182, 1238, 1335, 1484, 1672, 1891, 2148, 2510, 2500, 2201, 1915, 1702, 1537, 1412, 1322, 1259, 1245, 1271, 1326, 1431, 1567, 1747, 1986, 2257, 2656, 2616, 2340, 2041, 1834, 1660, 1518, 1416, 1373, 1364, 1378, 1446, 1542, 1688, 1861, 2088, 2388, 2746, 2783, 2514, 2197, 1959, 1777, 1658, 1566, 1499, 1482, 1505, 1566, 1672, 1810, 1990, 2239, 2533, 2857, 3075, 2650, 2333, 2126, 1932, 1793, 1704, 1649, 1632, 1670, 1704, 1819, 1952, 2164, 2414, 2693, 3106]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [3790, 2765, 2508, 2219, 2041, 1881, 1798, 1753, 1724, 1744, 1803, 1908, 2023, 2219, 2498, 2779, 3898, 2900, 2586, 2262, 2013, 1844, 1725, 1632, 1583, 1564, 1590, 1644, 1725, 1854, 2031, 2262, 2564, 2945, 2685, 2396, 2083, 1869, 1710, 1590, 1503, 1445, 1439, 1451, 1509, 1604, 1718, 1880, 2089, 2406, 2722, 2539, 2211, 1947, 1745, 1589, 1475, 1395, 1338, 1316, 1335, 1387, 1481, 1604, 1758, 1964, 2234, 2561, 2401, 2097, 1840, 1650, 1496, 1379, 1296, 1240, 1225, 1238, 1300, 1379, 1502, 1669, 1861, 2110, 2449, 2317, 2002, 1769, 1575, 1421, 1298, 1213, 1158, 1138, 1160, 1211, 1307, 1426, 1582, 1783, 2033, 2335, 2225, 1939, 1711, 1519, 1360, 1243, 1156, 1107, 1083, 1104, 1154, 1241, 1368, 1532, 1715, 1968, 2257, 2161, 1900, 1675, 1475, 1326, 1203, 1119, 1065, 1046, 1062, 1115, 1207, 1326, 1493, 1687, 1916, 2191, 2144, 1871, 1654, 1460, 1313, 1183, 1095, 1048, 1024, 1044, 1095, 1188, 1310, 1472, 1666, 1887, 2196, 2176, 1889, 1659, 1457, 1310, 1182, 1099, 1046, 1026, 1048, 1096, 1190, 1306, 1469, 1663, 1900, 2184, 2171, 1900, 1673, 1488, 1329, 1208, 1119, 1069, 1047, 1069, 1117, 1208, 1341, 1494, 1686, 1916, 2186, 2218, 1943, 1720, 1515, 1370, 1240, 1156, 1108, 1090, 1107, 1157, 1246, 1376, 1538, 1724, 1966, 2250, 2302, 2006, 1777, 1579, 1427, 1304, 1216, 1163, 1147, 1166, 1220, 1308, 1433, 1586, 1796, 2025, 2328, 2395, 2108, 1859, 1661, 1508, 1385, 1299, 1246, 1226, 1251, 1301, 1390, 1515, 1665, 1865, 2101, 2424, 2534, 2225, 1963, 1762, 1603, 1481, 1400, 1339, 1327, 1352, 1400, 1487, 1611, 1757, 1969, 2225, 2513, 2633, 2370, 2083, 1870, 1714, 1594, 1517, 1463, 1444, 1460, 1514, 1605, 1718, 1875, 2097, 2352, 2645, 2908, 2516, 2260, 2029, 1858, 1741, 1652, 1588, 1565, 1588, 1644, 1732, 1868, 2029, 2243, 2505, 2893]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [3840, 2810, 2519, 2240, 2051, 1888, 1794, 1743, 1727, 1730, 1803, 1872, 2013, 2217, 2489, 2731, 3895, 2952, 2599, 2293, 2028, 1850, 1733, 1642, 1585, 1569, 1585, 1639, 1707, 1845, 2009, 2244, 2544, 2922, 2726, 2405, 2093, 1881, 1709, 1599, 1510, 1457, 1433, 1445, 1500, 1585, 1709, 1860, 2080, 2387, 2726, 2585, 2248, 1960, 1758, 1598, 1488, 1391, 1339, 1322, 1335, 1381, 1470, 1588, 1749, 1949, 2224, 2573, 2430, 2122, 1861, 1672, 1509, 1387, 1295, 1239, 1229, 1239, 1290, 1376, 1500, 1656, 1856, 2101, 2450, 2317, 2024, 1792, 1588, 1435, 1308, 1221, 1163, 1144, 1160, 1205, 1297, 1421, 1580, 1773, 2011, 2343, 2255, 1952, 1723, 1533, 1375, 1248, 1161, 1103, 1085, 1103, 1150, 1238, 1362, 1520, 1710, 1958, 2247, 2197, 1912, 1699, 1497, 1333, 1217, 1120, 1065, 1047, 1061, 1108, 1207, 1318, 1481, 1678, 1912, 2213, 2171, 1889, 1673, 1469, 1314, 1192, 1099, 1044, 1024, 1042, 1091, 1179, 1307, 1466, 1661, 1883, 2164, 2174, 1890, 1658, 1472, 1316, 1188, 1097, 1044, 1026, 1044, 1089, 1180, 1302, 1463, 1654, 1890, 2167, 2176, 1924, 1681, 1498, 1325, 1210, 1115, 1062, 1043, 1061, 1115, 1198, 1323, 1485, 1672, 1907, 2207, 2233, 1945, 1715, 1529, 1367, 1247, 1157, 1101, 1084, 1096, 1147, 1239, 1362, 1513, 1715, 1951, 2249, 2310, 2021, 1782, 1581, 1422, 1305, 1213, 1159, 1140, 1159, 1209, 1298, 1422, 1581, 1768, 2002, 2319, 2415, 2098, 1861, 1656, 1500, 1382, 1296, 1239, 1222, 1235, 1289, 1374, 1493, 1652, 1855, 2091, 2386, 2525, 2215, 1948, 1757, 1591, 1476, 1387, 1334, 1314, 1334, 1382, 1466, 1594, 1748, 1948, 2215, 2515, 2624, 2370, 2067, 1860, 1705, 1589, 1495, 1449, 1427, 1443, 1492, 1582, 1701, 1860, 2074, 2352, 2612, 2901, 2540, 2242, 2013, 1843, 1718, 1631, 1569, 1556, 1576, 1615, 1710, 1833, 1994, 2226, 2475, 2855]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [3617, 2572, 2286, 2061, 1854, 1749, 1658, 1632, 1630, 1649, 1694, 1800, 1912, 2090, 2362, 2648, 3779, 2686, 2343, 2057, 1850, 1701, 1594, 1530, 1483, 1468, 1503, 1544, 1618, 1738, 1920, 2116, 2424, 2830, 2440, 2168, 1908, 1728, 1572, 1459, 1409, 1364, 1358, 1381, 1433, 1506, 1628, 1778, 1984, 2254, 2605, 2254, 1990, 1779, 1597, 1475, 1372, 1310, 1269, 1264, 1288, 1330, 1414, 1530, 1681, 1866, 2120, 2432, 2139, 1885, 1692, 1524, 1394, 1305, 1232, 1194, 1185, 1202, 1255, 1336, 1442, 1592, 1779, 2012, 2353, 2046, 1808, 1627, 1462, 1333, 1232, 1169, 1128, 1121, 1139, 1185, 1269, 1382, 1530, 1706, 1947, 2255, 1981, 1762, 1577, 1413, 1294, 1189, 1124, 1080, 1074, 1090, 1146, 1226, 1340, 1482, 1659, 1881, 2159, 1915, 1713, 1555, 1391, 1258, 1164, 1092, 1048, 1037, 1067, 1113, 1199, 1311, 1452, 1635, 1847, 2109, 1906, 1697, 1521, 1369, 1242, 1147, 1078, 1029, 1024, 1047, 1098, 1185, 1294, 1436, 1613, 1828, 2098, 1902, 1703, 1533, 1367, 1240, 1145, 1076, 1036, 1031, 1052, 1102, 1183, 1301, 1439, 1618, 1825, 2109, 1929, 1722, 1539, 1383, 1260, 1161, 1096, 1055, 1049, 1068, 1114, 1201, 1319, 1456, 1625, 1859, 2127, 1975, 1765, 1570, 1412, 1297, 1198, 1128, 1097, 1081, 1097, 1154, 1232, 1338, 1482, 1652, 1875, 2153, 2046, 1816, 1639, 1469, 1336, 1243, 1182, 1143, 1132, 1158, 1207, 1285, 1405, 1546, 1720, 1934, 2224, 2116, 1900, 1700, 1542, 1418, 1318, 1257, 1220, 1211, 1224, 1275, 1361, 1469, 1621, 1779, 2018, 2291, 2239, 2002, 1794, 1629, 1506, 1409, 1340, 1296, 1295, 1311, 1361, 1447, 1557, 1691, 1884, 2120, 2419, 2329, 2128, 1909, 1734, 1605, 1504, 1442, 1395, 1388, 1413, 1455, 1548, 1656, 1817, 2000, 2266, 2531, 2665, 2309, 2054, 1853, 1718, 1613, 1545, 1509, 1493, 1523, 1568, 1656, 1768, 1913, 2147, 2390, 2783]
                                       }
                                   }, {
                                       "name":    "2112x1568_GRAY_100",
                                       "resolution":    "2112x1568",
                                       "illumination":    "GRAY",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [4095, 3858, 3286, 2826, 2465, 2218, 2063, 1989, 1963, 2017, 2083, 2264, 2506, 2862, 3361, 3926, 4095, 4095, 3521, 2919, 2492, 2185, 1989, 1839, 1759, 1731, 1773, 1839, 1989, 2196, 2521, 2978, 3549, 4095, 3760, 3146, 2594, 2229, 1963, 1766, 1636, 1561, 1539, 1561, 1648, 1787, 1981, 2252, 2641, 3215, 3858, 3466, 2844, 2385, 2044, 1787, 1606, 1478, 1407, 1377, 1407, 1483, 1624, 1809, 2083, 2424, 2919, 3578, 3192, 2657, 2207, 1888, 1630, 1468, 1343, 1274, 1252, 1274, 1352, 1483, 1666, 1921, 2241, 2705, 3361, 3018, 2478, 2073, 1759, 1529, 1360, 1242, 1185, 1155, 1176, 1249, 1385, 1555, 1802, 2123, 2550, 3169, 2881, 2385, 1981, 1679, 1458, 1289, 1170, 1103, 1089, 1111, 1173, 1304, 1478, 1718, 2035, 2438, 2998, 2790, 2299, 1929, 1630, 1403, 1235, 1125, 1061, 1038, 1066, 1134, 1256, 1430, 1673, 1981, 2398, 2938, 2739, 2264, 1888, 1600, 1385, 1218, 1108, 1046, 1024, 1048, 1117, 1235, 1421, 1654, 1972, 2360, 2919, 2756, 2299, 1904, 1606, 1385, 1225, 1108, 1043, 1026, 1051, 1120, 1242, 1416, 1642, 1972, 2385, 2919, 2808, 2335, 1937, 1642, 1425, 1256, 1140, 1076, 1056, 1087, 1155, 1263, 1453, 1698, 2007, 2411, 2958, 2900, 2411, 2017, 1711, 1483, 1312, 1192, 1128, 1111, 1140, 1205, 1339, 1523, 1766, 2083, 2506, 3081, 3018, 2535, 2133, 1809, 1572, 1394, 1281, 1211, 1192, 1221, 1292, 1416, 1612, 1872, 2196, 2610, 3215, 3262, 2722, 2264, 1937, 1698, 1523, 1403, 1323, 1304, 1335, 1407, 1544, 1731, 1989, 2347, 2790, 3466, 3493, 2958, 2465, 2133, 1872, 1673, 1534, 1473, 1458, 1478, 1566, 1698, 1904, 2164, 2521, 3018, 3667, 3825, 3262, 2722, 2335, 2054, 1872, 1738, 1648, 1624, 1654, 1738, 1888, 2093, 2372, 2773, 3286, 3926, 4095, 3549, 2978, 2610, 2299, 2083, 1946, 1864, 1839, 1888, 1946, 2113, 2323, 2657, 3081, 3607, 4095]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [4095, 3704, 3201, 2724, 2429, 2186, 2054, 1981, 1942, 1972, 2059, 2216, 2407, 2724, 3188, 3721, 4095, 3986, 3355, 2802, 2399, 2132, 1947, 1812, 1740, 1713, 1748, 1825, 1947, 2144, 2421, 2802, 3327, 4047, 3585, 3029, 2514, 2173, 1928, 1752, 1628, 1550, 1538, 1556, 1635, 1767, 1937, 2186, 2523, 3040, 3635, 3313, 2733, 2301, 1986, 1756, 1592, 1480, 1406, 1379, 1403, 1472, 1598, 1771, 2002, 2321, 2762, 3341, 3076, 2547, 2138, 1846, 1625, 1463, 1353, 1282, 1261, 1280, 1357, 1463, 1631, 1868, 2161, 2564, 3137, 2927, 2399, 2028, 1740, 1523, 1360, 1249, 1182, 1157, 1183, 1247, 1369, 1529, 1748, 2043, 2436, 2949, 2782, 2301, 1942, 1663, 1445, 1290, 1180, 1119, 1091, 1116, 1178, 1288, 1453, 1677, 1947, 2335, 2822, 2687, 2242, 1891, 1605, 1401, 1241, 1135, 1070, 1048, 1068, 1132, 1245, 1401, 1625, 1905, 2261, 2724, 2659, 2204, 1864, 1585, 1384, 1218, 1110, 1052, 1024, 1048, 1110, 1224, 1381, 1598, 1877, 2223, 2724, 2705, 2229, 1873, 1585, 1384, 1220, 1116, 1052, 1028, 1053, 1113, 1228, 1379, 1598, 1877, 2242, 2714, 2714, 2255, 1900, 1628, 1411, 1253, 1142, 1081, 1055, 1081, 1140, 1253, 1424, 1635, 1914, 2274, 2733, 2802, 2328, 1972, 1673, 1469, 1299, 1191, 1131, 1108, 1129, 1192, 1305, 1474, 1699, 1976, 2356, 2842, 2949, 2436, 2065, 1767, 1550, 1384, 1269, 1201, 1182, 1205, 1274, 1388, 1556, 1775, 2087, 2459, 2983, 3125, 2606, 2198, 1891, 1666, 1494, 1379, 1310, 1284, 1314, 1381, 1500, 1673, 1895, 2204, 2598, 3163, 3384, 2812, 2370, 2049, 1808, 1631, 1517, 1437, 1419, 1450, 1517, 1638, 1816, 2043, 2377, 2812, 3355, 3618, 3076, 2581, 2229, 1981, 1800, 1684, 1608, 1581, 1605, 1680, 1812, 1986, 2235, 2598, 3052, 3635, 4095, 3370, 2884, 2491, 2210, 2022, 1886, 1796, 1763, 1796, 1877, 2012, 2223, 2491, 2863, 3355, 4095]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [4095, 3763, 3216, 2750, 2440, 2193, 2049, 1971, 1946, 1956, 2060, 2174, 2395, 2721, 3176, 3657, 4095, 4057, 3372, 2841, 2417, 2139, 1956, 1823, 1742, 1719, 1742, 1819, 1927, 2133, 2395, 2780, 3301, 4016, 3640, 3040, 2527, 2187, 1927, 1761, 1636, 1563, 1532, 1550, 1625, 1746, 1927, 2162, 2511, 3016, 3640, 3372, 2780, 2317, 2001, 1765, 1605, 1477, 1407, 1385, 1402, 1466, 1586, 1754, 1991, 2303, 2750, 3358, 3113, 2577, 2162, 1871, 1639, 1471, 1351, 1280, 1266, 1280, 1347, 1460, 1629, 1854, 2156, 2552, 3138, 2926, 2425, 2054, 1754, 1538, 1370, 1257, 1187, 1164, 1183, 1241, 1358, 1523, 1746, 2033, 2410, 2959, 2820, 2317, 1956, 1678, 1460, 1295, 1185, 1115, 1093, 1115, 1174, 1284, 1447, 1664, 1941, 2324, 2810, 2731, 2256, 1918, 1629, 1407, 1255, 1136, 1071, 1049, 1066, 1125, 1245, 1392, 1612, 1894, 2256, 2750, 2693, 2224, 1885, 1596, 1385, 1228, 1114, 1048, 1024, 1045, 1106, 1214, 1378, 1592, 1871, 2218, 2684, 2703, 2231, 1871, 1602, 1390, 1226, 1114, 1049, 1028, 1049, 1106, 1218, 1375, 1592, 1867, 2231, 2693, 2721, 2283, 1908, 1639, 1407, 1255, 1138, 1074, 1051, 1072, 1138, 1243, 1405, 1625, 1899, 2263, 2760, 2820, 2331, 1966, 1689, 1466, 1306, 1192, 1123, 1103, 1118, 1181, 1297, 1460, 1671, 1966, 2338, 2841, 2959, 2456, 2070, 1769, 1544, 1385, 1266, 1198, 1174, 1198, 1262, 1378, 1544, 1769, 2054, 2432, 2970, 3151, 2595, 2199, 1885, 1657, 1491, 1375, 1302, 1280, 1297, 1368, 1482, 1650, 1881, 2193, 2586, 3113, 3372, 2800, 2352, 2043, 1794, 1625, 1502, 1431, 1405, 1431, 1497, 1615, 1798, 2033, 2352, 2800, 3358, 3607, 3076, 2560, 2218, 1971, 1794, 1660, 1592, 1563, 1586, 1657, 1786, 1966, 2218, 2569, 3052, 3590, 4095, 3402, 2861, 2471, 2193, 1996, 1863, 1773, 1754, 1782, 1845, 1986, 2181, 2448, 2841, 3315, 4079]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [4095, 3445, 2917, 2530, 2206, 2032, 1894, 1846, 1836, 1865, 1934, 2091, 2275, 2565, 3014, 3546, 4095, 3691, 3040, 2547, 2206, 1966, 1800, 1698, 1629, 1608, 1652, 1714, 1827, 2010, 2289, 2621, 3145, 3890, 3259, 2740, 2304, 2010, 1773, 1608, 1526, 1463, 1451, 1481, 1552, 1659, 1836, 2067, 2396, 2848, 3478, 2941, 2461, 2103, 1818, 1629, 1481, 1390, 1334, 1324, 1354, 1412, 1526, 1690, 1914, 2206, 2621, 3173, 2740, 2289, 1966, 1706, 1514, 1385, 1286, 1234, 1221, 1242, 1309, 1417, 1566, 1782, 2067, 2444, 3014, 2584, 2166, 1865, 1615, 1428, 1291, 1205, 1151, 1140, 1162, 1221, 1329, 1481, 1690, 1955, 2334, 2848, 2478, 2091, 1791, 1546, 1374, 1234, 1147, 1092, 1082, 1102, 1170, 1273, 1423, 1622, 1884, 2233, 2699, 2380, 2021, 1756, 1514, 1329, 1201, 1109, 1054, 1039, 1073, 1130, 1238, 1385, 1580, 1846, 2179, 2621, 2364, 1998, 1714, 1487, 1309, 1181, 1092, 1033, 1024, 1051, 1112, 1221, 1364, 1559, 1818, 2153, 2602, 2364, 2010, 1731, 1487, 1309, 1181, 1092, 1042, 1033, 1057, 1119, 1221, 1374, 1566, 1827, 2153, 2621, 2412, 2044, 1747, 1514, 1338, 1205, 1119, 1066, 1057, 1079, 1137, 1246, 1401, 1594, 1846, 2206, 2660, 2495, 2115, 1800, 1559, 1390, 1255, 1162, 1119, 1099, 1119, 1189, 1291, 1434, 1637, 1894, 2247, 2720, 2621, 2206, 1904, 1644, 1451, 1319, 1234, 1181, 1166, 1197, 1259, 1364, 1526, 1731, 1998, 2349, 2848, 2761, 2349, 2010, 1756, 1566, 1423, 1334, 1282, 1268, 1286, 1354, 1469, 1622, 1846, 2103, 2495, 2989, 2989, 2530, 2166, 1894, 1698, 1552, 1451, 1390, 1385, 1406, 1475, 1594, 1756, 1966, 2275, 2679, 3230, 3201, 2761, 2364, 2067, 1855, 1698, 1601, 1533, 1520, 1552, 1615, 1747, 1914, 2166, 2478, 2941, 3478, 3808, 3092, 2621, 2275, 2044, 1874, 1765, 1706, 1682, 1723, 1791, 1924, 2103, 2349, 2740, 3201, 3975]
                                       }
                                   }],
                               "tableAll_len":    16
                           }
                       },
                       "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, 1, 1, 1, 1, 1, 1, 1, 1]
                               }
                           },
                           "manualPara":    {
                               "ccMatrix":    [1, 0, 0, 0, 1, 0, 0, 0, 1],
                               "ccOffsets":    [0, 0, 0]
                           },
                           "TuningPara":    {
                               "damp_enable":    1,
                               "illu_estim":    {
                                   "interp_enable":    0,
                                   "default_illu":    "A",
                                   "weightRB":    [1, 1],
                                   "prob_limit":    0.2,
                                   "frame_no":    8
                               },
                               "aCcmCof":    [{
                                       "name":    "A",
                                       "awbGain":    [1.1121, 2.2518],
                                       "minDist":    0.05,
                                       "matrixUsed":    ["A_100", "A_74"],
                                       "matrixUsed_len":    2,
                                       "gain_sat_curve":    {
                                           "gains":    [1, 4, 6, 16],
                                           "sat":    [100, 100, 90, 50]
                                       }
                                   }, {
                                       "name":    "CWF",
                                       "awbGain":    [1.5884, 2.0771],
                                       "minDist":    0.05,
                                       "matrixUsed":    ["CWF_100", "CWF_74"],
                                       "matrixUsed_len":    2,
                                       "gain_sat_curve":    {
                                           "gains":    [1, 4, 6, 16],
                                           "sat":    [100, 100, 90, 50]
                                       }
                                   }, {
                                       "name":    "D50",
                                       "awbGain":    [1.6264, 1.639],
                                       "minDist":    0.05,
                                       "matrixUsed":    ["D50_100", "D50_74"],
                                       "matrixUsed_len":    2,
                                       "gain_sat_curve":    {
                                           "gains":    [1, 4, 6, 16],
                                           "sat":    [100, 100, 90, 50]
                                       }
                                   }, {
                                       "name":    "D65",
                                       "awbGain":    [1.8516, 1.4555],
                                       "minDist":    0.05,
                                       "matrixUsed":    ["D65_100", "D65_74"],
                                       "matrixUsed_len":    2,
                                       "gain_sat_curve":    {
                                           "gains":    [1, 4, 6, 16],
                                           "sat":    [100, 100, 90, 50]
                                       }
                                   }, {
                                       "name":    "D75",
                                       "awbGain":    [1.9723, 1.3661],
                                       "minDist":    0.05,
                                       "matrixUsed":    ["D75_100", "D75_74"],
                                       "matrixUsed_len":    2,
                                       "gain_sat_curve":    {
                                           "gains":    [1, 4, 6, 16],
                                           "sat":    [100, 100, 90, 50]
                                       }
                                   }, {
                                       "name":    "HZ",
                                       "awbGain":    [0.9147, 2.482],
                                       "minDist":    0.05,
                                       "matrixUsed":    ["HZ_100", "HZ_74"],
                                       "matrixUsed_len":    2,
                                       "gain_sat_curve":    {
                                           "gains":    [1, 4, 6, 16],
                                           "sat":    [100, 100, 90, 50]
                                       }
                                   }, {
                                       "name":    "TL84",
                                       "awbGain":    [1.4773, 2.0774],
                                       "minDist":    0.05,
                                       "matrixUsed":    ["TL84_100", "TL84_74"],
                                       "matrixUsed_len":    2,
                                       "gain_sat_curve":    {
                                           "gains":    [1, 4, 6, 16],
                                           "sat":    [100, 100, 90, 50]
                                       }
                                   }],
                               "aCcmCof_len":    7,
                               "matrixAll":    [{
                                       "name":    "A_100",
                                       "illumination":    "A",
                                       "saturation":    100,
                                       "ccMatrix":    [1.879, -0.5287, -0.3503, -0.5518, 2.0943, -0.5424, -0.4, -1.3773, 2.7773],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "A_74",
                                       "illumination":    "A",
                                       "saturation":    74,
                                       "ccMatrix":    [1.4405, -0.1547, -0.2858, -0.3581, 1.7876, -0.4295, -0.2469, -0.7806, 2.0274],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "CWF_100",
                                       "illumination":    "CWF",
                                       "saturation":    100,
                                       "ccMatrix":    [2.4615, -1.2957, -0.1658, -0.5211, 1.8329, -0.3118, -0.1745, -0.8882, 2.0628],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "CWF_74",
                                       "illumination":    "CWF",
                                       "saturation":    74,
                                       "ccMatrix":    [1.9283, -0.807, -0.1213, -0.2787, 1.5091, -0.2304, -0.0235, -0.5035, 1.527],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "D50_100",
                                       "illumination":    "D50",
                                       "saturation":    100,
                                       "ccMatrix":    [2.1176, -0.8971, -0.2206, -0.4255, 1.9752, -0.5496, -0.1748, -0.8013, 1.9761],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "D50_74",
                                       "illumination":    "D50",
                                       "saturation":    74,
                                       "ccMatrix":    [1.6616, -0.4568, -0.2049, -0.2202, 1.6696, -0.4495, -0.0357, -0.384, 1.4197],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "D65_100",
                                       "illumination":    "D65",
                                       "saturation":    100,
                                       "ccMatrix":    [2.185, -1.0085, -0.1765, -0.368, 1.9451, -0.5771, -0.1465, -0.6714, 1.8179],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "D65_74",
                                       "illumination":    "D65",
                                       "saturation":    74,
                                       "ccMatrix":    [1.7263, -0.5486, -0.1777, -0.1627, 1.6379, -0.4752, 0.0001, -0.2973, 1.2972],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "D75_100",
                                       "illumination":    "D75",
                                       "saturation":    100,
                                       "ccMatrix":    [2.3077, -1.1502, -0.1575, -0.367, 1.9472, -0.5802, -0.1418, -0.6111, 1.7529],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "D75_74",
                                       "illumination":    "D75",
                                       "saturation":    74,
                                       "ccMatrix":    [1.827, -0.6623, -0.1647, -0.1521, 1.6305, -0.4784, 0.0133, -0.2615, 1.2482],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "HZ_100",
                                       "illumination":    "HZ",
                                       "saturation":    100,
                                       "ccMatrix":    [1.8118, 0.0002, -0.812, -0.7419, 2.0369, -0.295, -0.7962, -1.8455, 3.5626],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "HZ_74",
                                       "illumination":    "HZ",
                                       "saturation":    74,
                                       "ccMatrix":    [1.3448, 0.2551, -0.6022, -0.5447, 1.7638, -0.2214, -0.5861, -1.1088, 2.6339],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "TL84_100",
                                       "illumination":    "TL84",
                                       "saturation":    100,
                                       "ccMatrix":    [2.0579, -0.8584, -0.1995, -0.4281, 1.7659, -0.3378, -0.1765, -0.9237, 2.1002],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "TL84_74",
                                       "illumination":    "TL84",
                                       "saturation":    74,
                                       "ccMatrix":    [1.6123, -0.4607, -0.1517, -0.2272, 1.4823, -0.2551, -0.0421, -0.5072, 1.5493],
                                       "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":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }, {
                                               "iso":    100,
                                               "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":    200,
                                               "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":    400,
                                               "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":    800,
                                               "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":    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":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }, {
                                               "iso":    100,
                                               "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":    200,
                                               "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":    400,
                                               "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":    800,
                                               "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":    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":    0,
                                               "filter_strength":    0.55,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    100,
                                               "gauss_guide":    0,
                                               "filter_strength":    0.55,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    200,
                                               "gauss_guide":    0,
                                               "filter_strength":    0.6,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    400,
                                               "gauss_guide":    0,
                                               "filter_strength":    0.6,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    800,
                                               "gauss_guide":    0,
                                               "filter_strength":    0.65,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    1600,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.65,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    3200,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.65,
                                               "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":    0.55,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    100,
                                               "gauss_guide":    0,
                                               "filter_strength":    0.55,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    200,
                                               "gauss_guide":    0,
                                               "filter_strength":    0.6,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    400,
                                               "gauss_guide":    0,
                                               "filter_strength":    0.6,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    800,
                                               "gauss_guide":    0,
                                               "filter_strength":    0.65,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    1600,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.65,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    3200,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.65,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    6400,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.7,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    12800,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.7,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    25600,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.7,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    51200,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.7,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    102400,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.7,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    204800,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.7,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }],
                                       "Tuning_ISO_len":    13
                                   }],
                               "Setting_len":    2
                           },
                           "Bayernr3D":    {
                               "enable":    1,
                               "Setting":    [{
                                       "SNR_Mode":    "LSNR",
                                       "Sensor_Mode":    "lcg",
                                       "Tuning_ISO":    [{
                                               "iso":    50,
                                               "filter_strength":    0.2,
                                               "sp_filter_strength":    0.55,
                                               "lo_clipwgt":    0.0322,
                                               "hi_clipwgt":    0.0322,
                                               "softwgt":    0
                                           }, {
                                               "iso":    100,
                                               "filter_strength":    0.2,
                                               "sp_filter_strength":    0.55,
                                               "lo_clipwgt":    0.0322,
                                               "hi_clipwgt":    0.0322,
                                               "softwgt":    0
                                           }, {
                                               "iso":    200,
                                               "filter_strength":    0.2,
                                               "sp_filter_strength":    0.6,
                                               "lo_clipwgt":    0.0322,
                                               "hi_clipwgt":    0.0322,
                                               "softwgt":    0
                                           }, {
                                               "iso":    400,
                                               "filter_strength":    0.2,
                                               "sp_filter_strength":    0.6,
                                               "lo_clipwgt":    0.0322,
                                               "hi_clipwgt":    0.0322,
                                               "softwgt":    0
                                           }, {
                                               "iso":    800,
                                               "filter_strength":    0.15,
                                               "sp_filter_strength":    0.65,
                                               "lo_clipwgt":    0.0322,
                                               "hi_clipwgt":    0.0322,
                                               "softwgt":    0
                                           }, {
                                               "iso":    1600,
                                               "filter_strength":    0.1,
                                               "sp_filter_strength":    0.65,
                                               "lo_clipwgt":    0.0322,
                                               "hi_clipwgt":    0.0322,
                                               "softwgt":    0
                                           }, {
                                               "iso":    3200,
                                               "filter_strength":    0.06,
                                               "sp_filter_strength":    0.65,
                                               "lo_clipwgt":    0.0322,
                                               "hi_clipwgt":    0.0322,
                                               "softwgt":    0
                                           }, {
                                               "iso":    6400,
                                               "filter_strength":    0.06,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.0322,
                                               "hi_clipwgt":    0.0322,
                                               "softwgt":    0
                                           }, {
                                               "iso":    12800,
                                               "filter_strength":    0.06,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.0322,
                                               "hi_clipwgt":    0.0322,
                                               "softwgt":    0
                                           }, {
                                               "iso":    25600,
                                               "filter_strength":    0.06,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.0322,
                                               "hi_clipwgt":    0.0322,
                                               "softwgt":    0
                                           }, {
                                               "iso":    51200,
                                               "filter_strength":    0.06,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.0322,
                                               "hi_clipwgt":    0.0322,
                                               "softwgt":    0
                                           }, {
                                               "iso":    102400,
                                               "filter_strength":    0.06,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.0322,
                                               "hi_clipwgt":    0.0322,
                                               "softwgt":    0
                                           }, {
                                               "iso":    204800,
                                               "filter_strength":    0.06,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.0322,
                                               "hi_clipwgt":    0.0322,
                                               "softwgt":    0
                                           }],
                                       "Tuning_ISO_len":    13
                                   }, {
                                       "SNR_Mode":    "HSNR",
                                       "Sensor_Mode":    "hcg",
                                       "Tuning_ISO":    [{
                                               "iso":    50,
                                               "filter_strength":    0.2,
                                               "sp_filter_strength":    0.55,
                                               "lo_clipwgt":    0.0322,
                                               "hi_clipwgt":    0.0322,
                                               "softwgt":    0
                                           }, {
                                               "iso":    100,
                                               "filter_strength":    0.2,
                                               "sp_filter_strength":    0.55,
                                               "lo_clipwgt":    0.0322,
                                               "hi_clipwgt":    0.0322,
                                               "softwgt":    0
                                           }, {
                                               "iso":    200,
                                               "filter_strength":    0.2,
                                               "sp_filter_strength":    0.6,
                                               "lo_clipwgt":    0.0322,
                                               "hi_clipwgt":    0.0322,
                                               "softwgt":    0
                                           }, {
                                               "iso":    400,
                                               "filter_strength":    0.2,
                                               "sp_filter_strength":    0.6,
                                               "lo_clipwgt":    0.0322,
                                               "hi_clipwgt":    0.0322,
                                               "softwgt":    0
                                           }, {
                                               "iso":    800,
                                               "filter_strength":    0.15,
                                               "sp_filter_strength":    0.65,
                                               "lo_clipwgt":    0.0322,
                                               "hi_clipwgt":    0.0322,
                                               "softwgt":    0
                                           }, {
                                               "iso":    1600,
                                               "filter_strength":    0.1,
                                               "sp_filter_strength":    0.65,
                                               "lo_clipwgt":    0.0322,
                                               "hi_clipwgt":    0.0322,
                                               "softwgt":    0
                                           }, {
                                               "iso":    3200,
                                               "filter_strength":    0.06,
                                               "sp_filter_strength":    0.65,
                                               "lo_clipwgt":    0.0322,
                                               "hi_clipwgt":    0.0322,
                                               "softwgt":    0
                                           }, {
                                               "iso":    6400,
                                               "filter_strength":    0.06,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.0322,
                                               "hi_clipwgt":    0.0322,
                                               "softwgt":    0
                                           }, {
                                               "iso":    12800,
                                               "filter_strength":    0.06,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.0322,
                                               "hi_clipwgt":    0.0322,
                                               "softwgt":    0
                                           }, {
                                               "iso":    25600,
                                               "filter_strength":    0.06,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.0322,
                                               "hi_clipwgt":    0.0322,
                                               "softwgt":    0
                                           }, {
                                               "iso":    51200,
                                               "filter_strength":    0.06,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.0322,
                                               "hi_clipwgt":    0.0322,
                                               "softwgt":    0
                                           }, {
                                               "iso":    102400,
                                               "filter_strength":    0.06,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.0322,
                                               "hi_clipwgt":    0.0322,
                                               "softwgt":    0
                                           }, {
                                               "iso":    204800,
                                               "filter_strength":    0.06,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.0322,
                                               "hi_clipwgt":    0.0322,
                                               "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":    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
                                   }, {
                                       "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":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.5,
                                               "ynr_ci_h":    1
                                           }, {
                                               "iso":    100,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.5,
                                               "ynr_ci_h":    1
                                           }, {
                                               "iso":    200,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.5,
                                               "ynr_ci_h":    1
                                           }, {
                                               "iso":    400,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.5,
                                               "ynr_ci_h":    1
                                           }, {
                                               "iso":    800,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.5,
                                               "ynr_ci_h":    1
                                           }, {
                                               "iso":    1600,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.5,
                                               "ynr_ci_h":    1
                                           }, {
                                               "iso":    3200,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.5,
                                               "ynr_ci_h":    1
                                           }, {
                                               "iso":    6400,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.5,
                                               "ynr_ci_h":    1
                                           }, {
                                               "iso":    12800,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.5,
                                               "ynr_ci_h":    1
                                           }, {
                                               "iso":    25600,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.5,
                                               "ynr_ci_h":    1
                                           }, {
                                               "iso":    51200,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.5,
                                               "ynr_ci_h":    1
                                           }, {
                                               "iso":    102400,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.5,
                                               "ynr_ci_h":    1
                                           }, {
                                               "iso":    204800,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.5,
                                               "ynr_ci_h":    1
                                           }],
                                       "Calib_ISO_len":    13
                                   }, {
                                       "SNR_Mode":    "HSNR",
                                       "Sensor_Mode":    "hcg",
                                       "Calib_ISO":    [{
                                               "iso":    50,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.5,
                                               "ynr_ci_h":    1
                                           }, {
                                               "iso":    100,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.5,
                                               "ynr_ci_h":    1
                                           }, {
                                               "iso":    200,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.5,
                                               "ynr_ci_h":    1
                                           }, {
                                               "iso":    400,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.5,
                                               "ynr_ci_h":    1
                                           }, {
                                               "iso":    800,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.5,
                                               "ynr_ci_h":    1
                                           }, {
                                               "iso":    1600,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.5,
                                               "ynr_ci_h":    1
                                           }, {
                                               "iso":    3200,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.5,
                                               "ynr_ci_h":    1
                                           }, {
                                               "iso":    6400,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.5,
                                               "ynr_ci_h":    1
                                           }, {
                                               "iso":    12800,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.5,
                                               "ynr_ci_h":    1
                                           }, {
                                               "iso":    25600,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.5,
                                               "ynr_ci_h":    1
                                           }, {
                                               "iso":    51200,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.5,
                                               "ynr_ci_h":    1
                                           }, {
                                               "iso":    102400,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.5,
                                               "ynr_ci_h":    1
                                           }, {
                                               "iso":    204800,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.5,
                                               "ynr_ci_h":    1
                                           }],
                                       "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":    0.6,
                                               "low_bf_1":    0.5,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.5,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.2,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.78,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    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.65,
                                               "low_bf_1":    0.5,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.5,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.2,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.78,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    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.7,
                                               "low_bf_1":    0.5,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.5,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.2,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.78,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    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.75,
                                               "low_bf_1":    0.5,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.5,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.2,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.78,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    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.8,
                                               "low_bf_1":    0.5,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.5,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.2,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.78,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    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.9,
                                               "low_bf_1":    0.5,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.5,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.2,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.78,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    3200,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    0.95,
                                               "low_bf_1":    0.5,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.5,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.2,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.78,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    6400,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    1,
                                               "low_bf_1":    0.5,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.5,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.2,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.78,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    12800,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    1.1,
                                               "low_bf_1":    0.5,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.5,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.2,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.78,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    25600,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    1.1,
                                               "low_bf_1":    0.5,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.5,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.2,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.78,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    51200,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    1.1,
                                               "low_bf_1":    0.5,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.5,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.2,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.78,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    102400,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    1.1,
                                               "low_bf_1":    0.5,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.5,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.2,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.78,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    204800,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    1.1,
                                               "low_bf_1":    0.5,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.5,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.2,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.78,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }],
                                       "Tuning_ISO_len":    13
                                   }, {
                                       "SNR_Mode":    "HSNR",
                                       "Sensor_Mode":    "hcg",
                                       "Tuning_ISO":    [{
                                               "iso":    50,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    0.5,
                                               "low_bf_1":    0.6,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.5,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.2,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.78,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    100,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    0.5,
                                               "low_bf_1":    0.6,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.5,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.2,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.78,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    200,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    0.5,
                                               "low_bf_1":    0.6,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.5,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.2,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.78,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    400,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    0.5,
                                               "low_bf_1":    0.6,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.5,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.2,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.78,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    800,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    0.5,
                                               "low_bf_1":    0.6,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.5,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.2,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.78,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    1600,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    0.5,
                                               "low_bf_1":    0.6,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.5,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.2,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.78,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    3200,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    0.5,
                                               "low_bf_1":    0.6,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.5,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.2,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.78,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    6400,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    0.5,
                                               "low_bf_1":    0.6,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.5,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.2,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.78,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    12800,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    0.5,
                                               "low_bf_1":    0.6,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.5,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.2,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.78,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    25600,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    0.5,
                                               "low_bf_1":    0.6,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.5,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.2,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.78,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    51200,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    0.5,
                                               "low_bf_1":    0.6,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.5,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.2,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.78,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    102400,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    0.5,
                                               "low_bf_1":    0.6,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.5,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.2,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.78,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    204800,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    0.5,
                                               "low_bf_1":    0.6,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.5,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.2,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.78,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }],
                                       "Tuning_ISO_len":    13
                                   }],
                               "Setting_len":    2
                           }
                       },
                       "sharp_v3":    {
                           "Version":    "",
                           "TuningPara":    {
                               "enable":    1,
                               "Setting":    [{
                                       "SNR_Mode":    "LSNR",
                                       "Sensor_Mode":    "lcg",
                                       "Tuning_ISO":    [{
                                               "iso":    50,
                                               "pbf_gain":    0.8,
                                               "pbf_ratio":    0,
                                               "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, 128, 160, 192, 160, 128, 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, 128, 160, 192, 160, 128, 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, 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,
                                               "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, 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.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, 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
       }
   }
}