hc
2023-08-08 f92d6635abca482ea1018fed138d654cb14b2138
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
{
   "sensor_calib":    {
       "resolution":    {
           "width":    1296,
           "height":    972
       },
       "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, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 2, 2, 3, 3, 3, 3, 3, 3, 3, 2, 2, 1, 1, 1, 1, 2, 2, 3, 4, 4, 4, 4, 4, 4, 2, 2, 1, 1, 1, 1, 2, 2, 3, 4, 4, 4, 4, 4, 4, 2, 2, 1, 1, 1, 1, 2, 2, 3, 4, 4, 4, 4, 4, 4, 2, 2, 1, 1, 1, 1, 2, 2, 3, 3, 3, 3, 3, 3, 3, 2, 2, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 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, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                               "AecManualCtrl":    {
                                   "LinearAE":    {
                                       "ManualTimeEn":    1,
                                       "ManualGainEn":    1,
                                       "ManualIspDgainEn":    1,
                                       "TimeValue":    0.03,
                                       "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":    0,
                                   "FpsValue":    15
                               },
                               "AecAntiFlicker":    {
                                   "enable":    1,
                                   "Frequency":    "AECV2_FLICKER_FREQUENCY_50HZ",
                                   "Mode":    "AECV2_ANTIFLICKER_AUTO_MODE"
                               },
                               "AecEnvLvCalib":    {
                                   "CalibFNumber":    1.6,
                                   "CurveCoeff":    [0.02859, 0.5972]
                               },
                               "AecWinScale":    {
                                   "InRawWinScale":    {
                                       "h_offs":    0,
                                       "v_offs":    0,
                                       "h_size":    1,
                                       "v_size":    1
                                   },
                                   "TmoRawWinScale":    {
                                       "h_offs":    0.1,
                                       "v_offs":    0.1,
                                       "h_size":    0.9,
                                       "v_size":    0.9
                                   },
                                   "YuvWinScale":    {
                                       "h_offs":    0,
                                       "v_offs":    0,
                                       "h_size":    1,
                                       "v_size":    1
                                   }
                               }
                           },
                           "LinearAeCtrl":    {
                               "RawStatsEn":    1,
                               "ToleranceIn":    10,
                               "ToleranceOut":    10,
                               "Evbias":    0,
                               "StrategyMode":    "AECV2_STRATEGY_MODE_LOWLIGHT_PRIOR",
                               "InitExp":    {
                                   "InitTimeValue":    0.03,
                                   "InitGainValue":    1,
                                   "InitIspDGainValue":    1,
                                   "InitPIrisGainValue":    512,
                                   "InitDCIrisDutyValue":    100
                               },
                               "Route":    {
                                   "TimeDot":    [0, 0.03, 0.03, 0.06, 0.06, 0.1],
                                   "TimeDot_len":    6,
                                   "GainDot":    [1, 1, 2, 2, 15.5, 15.5],
                                   "GainDot_len":    6,
                                   "IspDGainDot":    [1, 1, 1, 1, 1, 1],
                                   "IspDGainDot_len":    6,
                                   "PIrisDot":    [512, 512, 512, 512, 512, 512],
                                   "PIrisDot_len":    6
                               },
                               "DySetpoint":    {
                                   "ExpLevel":    [0, 0.0465, 0.1395, 0.31, 0.62, 1.24],
                                   "ExpLevel_len":    6,
                                   "DySetpoint":    [55, 55, 50, 40, 30, 15],
                                   "DySetpoint_len":    6
                               },
                               "BackLightCtrl":    {
                                   "Enable":    1,
                                   "StrBias":    0,
                                   "MeasArea":    "AECV2_MEASURE_AREA_AUTO",
                                   "OEROILowTh":    150,
                                   "LumaDistTh":    10,
                                   "LvLowTh":    0.3125,
                                   "LvHighTh":    7.5,
                                   "BacklitSetPoint":    {
                                       "ExpLevel":    [0.096875, 0.19375, 0.3875, 0.62, 1.085, 1.55],
                                       "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":    [35, 28, 20, 15, 10, 10],
                                       "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":    [0.992317, 1, 1, 2.00985],
                                   "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_AUTO",
                                   "window":    [0, 0, 1, 1]
                               },
                               "limitRange":    {
                                   "lumaValue":    [0],
                                   "lumaValue_len":    1,
                                   "maxR":    [230],
                                   "maxR_len":    1,
                                   "minR":    [3],
                                   "minR_len":    1,
                                   "maxG":    [230],
                                   "maxG_len":    1,
                                   "minG":    [6],
                                   "minG_len":    1,
                                   "maxB":    [230],
                                   "maxB_len":    1,
                                   "minB":    [3],
                                   "minB_len":    1,
                                   "maxY":    [210],
                                   "maxY_len":    1,
                                   "minY":    [6],
                                   "minY_len":    1
                               },
                               "rgb2TcsPara":    {
                                   "pseudoLuminanceWeight":    [0.333331, 0.333339, 0.33333],
                                   "rotationMat":    [-0.620476, 0.784226, -0.33094, 0.784226, 0.620476, 0.237697, 0, 0, 1]
                               },
                               "rgb2RotationYuvMat":    [0.0566406, 0.138672, 0.0117188, 23.125, -0.078125, 0.0078125, 0.0761719, 124.188, 0.0527344, -0.0722656, 0.0449219, 117.938, 0, 0, 0, 1],
                               "extraWpRange":    [{
                                       "domain":    "CALIB_AWB_EXTRA_RANGE_DOMAIN_UV",
                                       "mode":    "CALIB_AWB_EXCLUDE_WP_MODE",
                                       "region":    [241, 251, 257, 240]
                                   }, {
                                       "domain":    "CALIB_AWB_EXTRA_RANGE_DOMAIN_UV",
                                       "mode":    "CALIB_AWB_EXCLUDE_WP_MODE",
                                       "region":    [218, 226, 280, 259]
                                   }, {
                                       "domain":    "CALIB_AWB_EXTRA_RANGE_DOMAIN_XY",
                                       "mode":    "CALIB_AWB_EXCLUDE_WP_MODE",
                                       "region":    [-96, 6, -158, -195]
                                   }, {
                                       "domain":    "CALIB_AWB_EXTRA_RANGE_DOMAIN_XY",
                                       "mode":    "CALIB_AWB_EXCLUDE_WP_MODE",
                                       "region":    [-589, -176, 95, -31]
                                   }, {
                                       "domain":    "CALIB_AWB_EXTRA_RANGE_DOMAIN_XY",
                                       "mode":    "CALIB_AWB_EXCLUDE_WP_MODE",
                                       "region":    [-753, -669, -117, -200]
                                   }, {
                                       "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.7, 1, 1, 1, 0.7, 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":    [0.992317, 1, 1, 2.00985],
                                       "uvRegion":    {
                                           "u":    [124, 63, 61, 124],
                                           "v":    [129, 152, 116, 127]
                                       },
                                       "xyRegion":    {
                                           "normal":    [-1.25204, -0.735, 0.0559036, -0.116305],
                                           "big":    [-1.25204, -0.740926, 0.0918875, -0.145542]
                                       },
                                       "rtYuvRegion":    {
                                           "thcurve_u":    [50, 54, 70, 78, 110, 142],
                                           "thcure_th":    [2, 2.5, 3, 3.5, 4, 4],
                                           "lineVector":    [10, 126.562, 117.812, 188.688, 97.75, 120.688],
                                           "disP1P2":    15
                                       },
                                       "staWeight":    [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 75],
                                       "dayGainLvThSet":    [1024, 8192],
                                       "defaultDayGainLow":    [1.45207, 1, 1, 1.76372],
                                       "defaultDayGainHigh":    [1.67946, 1, 1, 1.36366],
                                       "xyType2Enable":    1
                                   }, {
                                       "name":    "CWF",
                                       "doorType":    "CALIB_AWB_DOOR_TYPE_INDOOR",
                                       "standardGainValue":    [1.45207, 1, 1, 1.76372],
                                       "uvRegion":    {
                                           "u":    [65, 74, 126, 125],
                                           "v":    [97, 71.5, 125, 126]
                                       },
                                       "xyRegion":    {
                                           "normal":    [-0.736481, -0.477222, -0.0674699, -0.14672],
                                           "big":    [-0.735, -0.47821, -0.0661847, -0.180562]
                                       },
                                       "rtYuvRegion":    {
                                           "thcurve_u":    [50, 54, 70, 78, 110, 142],
                                           "thcure_th":    [2, 2.5, 3, 3.5, 4, 4],
                                           "lineVector":    [10, 124.625, 118.688, 190.688, 121.938, 108.25],
                                           "disP1P2":    15
                                       },
                                       "staWeight":    [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 70, 60, 50, 40],
                                       "dayGainLvThSet":    [1024, 8192],
                                       "defaultDayGainLow":    [1.45207, 1, 1, 1.76372],
                                       "defaultDayGainHigh":    [1.67946, 1, 1, 1.36366],
                                       "xyType2Enable":    1
                                   }, {
                                       "name":    "D50",
                                       "doorType":    "CALIB_AWB_DOOR_TYPE_AMBIGUITY",
                                       "standardGainValue":    [1.67946, 1, 1, 1.36366],
                                       "uvRegion":    {
                                           "u":    [72.5, 130, 128.5, 126],
                                           "v":    [73.5, 45, 124.5, 125]
                                       },
                                       "xyRegion":    {
                                           "normal":    [-0.476235, 0.0946296, -0.0593307, -0.216118],
                                           "big":    [-0.476235, 0.0946296, -0.0601874, -0.23668]
                                       },
                                       "rtYuvRegion":    {
                                           "thcurve_u":    [50, 54, 70, 78, 110, 142],
                                           "thcure_th":    [2, 3, 3.5, 4, 4, 4],
                                           "lineVector":    [10, 124.25, 119.312, 190.188, 138.875, 109.938],
                                           "disP1P2":    15
                                       },
                                       "staWeight":    [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100],
                                       "dayGainLvThSet":    [1024, 8192],
                                       "defaultDayGainLow":    [1.45207, 1, 1, 1.76372],
                                       "defaultDayGainHigh":    [1.67946, 1, 1, 1.36366],
                                       "xyType2Enable":    1
                                   }, {
                                       "name":    "D65",
                                       "doorType":    "CALIB_AWB_DOOR_TYPE_OUTDOOR",
                                       "standardGainValue":    [1.5213, 1, 1, 1.07084],
                                       "uvRegion":    {
                                           "u":    [116, 137, 132, 128],
                                           "v":    [46.5, 47, 123, 124.5]
                                       },
                                       "xyRegion":    {
                                           "normal":    [-0.0609259, 0.093642, 0.0481928, -0.0627577],
                                           "big":    [-0.479198, 0.0946296, 0.077751, -0.0601874]
                                       },
                                       "rtYuvRegion":    {
                                           "thcurve_u":    [50, 54, 70, 78, 110, 142],
                                           "thcure_th":    [2, 3, 3.5, 4, 4, 4],
                                           "lineVector":    [10, 122.875, 118.25, 189.188, 148.625, 121],
                                           "disP1P2":    15
                                       },
                                       "staWeight":    [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 80, 70],
                                       "dayGainLvThSet":    [1024, 8192],
                                       "defaultDayGainLow":    [1.45207, 1, 1, 1.76372],
                                       "defaultDayGainHigh":    [1.67946, 1, 1, 1.36366],
                                       "xyType2Enable":    1
                                   }, {
                                       "name":    "D75",
                                       "doorType":    "CALIB_AWB_DOOR_TYPE_OUTDOOR",
                                       "standardGainValue":    [1.64935, 1, 1, 0.988246],
                                       "uvRegion":    {
                                           "u":    [136, 129.5, 137, 151],
                                           "v":    [120, 124, 47, 51]
                                       },
                                       "xyRegion":    {
                                           "normal":    [0.0931481, 0.373148, 0.02249, -0.0995984],
                                           "big":    [0.0916667, 0.37463, 0.095743, -0.137296]
                                       },
                                       "rtYuvRegion":    {
                                           "thcurve_u":    [50, 54, 70, 78, 110, 142],
                                           "thcure_th":    [2, 2.5, 3, 3.5, 4, 4],
                                           "lineVector":    [10, 122.375, 117.688, 187.625, 157.062, 121.938],
                                           "disP1P2":    15
                                       },
                                       "staWeight":    [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 80, 70, 50],
                                       "dayGainLvThSet":    [1024, 8192],
                                       "defaultDayGainLow":    [1.45207, 1, 1, 1.76372],
                                       "defaultDayGainHigh":    [1.67946, 1, 1, 1.36366],
                                       "xyType2Enable":    1
                                   }, {
                                       "name":    "HZ",
                                       "doorType":    "CALIB_AWB_DOOR_TYPE_INDOOR",
                                       "standardGainValue":    [0.846693, 1, 1, 2.41188],
                                       "uvRegion":    {
                                           "u":    [122, 68, 63, 124],
                                           "v":    [133, 171, 150, 129]
                                       },
                                       "xyRegion":    {
                                           "normal":    [-1.66833, -1.24907, 0.0122088, -0.102169],
                                           "big":    [-1.66833, -1.25352, 0.0584739, -0.154859]
                                       },
                                       "rtYuvRegion":    {
                                           "thcurve_u":    [50, 54, 70, 78, 110, 142],
                                           "thcure_th":    [2, 2.5, 3, 3.5, 4, 4],
                                           "lineVector":    [10, 128.188, 117.375, 185.25, 83.4375, 124.625],
                                           "disP1P2":    15
                                       },
                                       "staWeight":    [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 75, 50],
                                       "dayGainLvThSet":    [1024, 8192],
                                       "defaultDayGainLow":    [1.45207, 1, 1, 1.76372],
                                       "defaultDayGainHigh":    [1.67946, 1, 1, 1.36366],
                                       "xyType2Enable":    1
                                   }, {
                                       "name":    "TL84",
                                       "doorType":    "CALIB_AWB_DOOR_TYPE_INDOOR",
                                       "standardGainValue":    [1.27378, 1, 1, 1.68751],
                                       "uvRegion":    {
                                           "u":    [124, 61, 67, 125],
                                           "v":    [127, 116, 90, 126]
                                       },
                                       "xyRegion":    {
                                           "normal":    [-0.736481, -0.47821, 0.00835341, -0.068755],
                                           "big":    [-0.735, -0.47821, 0.0443374, -0.068755]
                                       },
                                       "rtYuvRegion":    {
                                           "thcurve_u":    [50, 54, 70, 78, 110, 142],
                                           "thcure_th":    [2, 2.5, 3, 3.5, 4, 4],
                                           "lineVector":    [10, 125.375, 118.188, 190.75, 116.875, 114.312],
                                           "disP1P2":    15
                                       },
                                       "staWeight":    [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 80, 70, 60, 60],
                                       "dayGainLvThSet":    [1024, 8192],
                                       "defaultDayGainLow":    [1.45207, 1, 1, 1.76372],
                                       "defaultDayGainHigh":    [1.67946, 1, 1, 1.36366],
                                       "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.1,
                                   "dFMin":    0.4,
                                   "dFMax":    0.7,
                                   "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, 5500, 6500, 7500, 2000, 3000, 4000, 5000, 5500, 6500, 7500, 2000, 3000, 4000, 5000, 5500, 6500, 7500, 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, 5500, 6500, 7500, 2000, 3000, 4000, 5000, 5500, 6500, 7500, 2000, 3000, 4000, 5000, 5500, 6500, 7500, 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, 5500, 6500, 7500, 2000, 3000, 4000, 5000, 5500, 6500, 7500, 2000, 3000, 4000, 5000, 5500, 6500, 7500, 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":    [120],
                                       "low_len":    1,
                                       "high":    [240],
                                       "high_len":    1
                                   }
                               },
                               "defaultNightGain":    [1.6777, 1, 1, 1.3732],
                               "lumaValueMatrix":    [0, 4, 16, 32, 64, 128, 256, 512, 1024, 2048, 8192, 32768, 131072, 524288, 2.09715e+06, 8.38861e+06],
                               "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.0025,
                                   "wpNumPercTh2":    0.2
                               },
                               "converged":    {
                                   "varThforUnDamp":    0.005,
                                   "varThforDamp":    0.005
                               },
                               "xyRegionStableSelection":    {
                                   "enable":    1,
                                   "wpNumTh":    {
                                       "lumaValue":    [0],
                                       "lumaValue_len":    1,
                                       "forBigType":    [240],
                                       "forBigType_len":    1,
                                       "forExtraType":    [240],
                                       "forExtraType_len":    1
                                   },
                                   "xyTypeListSize":    50,
                                   "varianceLumaTh":    0.06
                               },
                               "weightForNightGainCalc":    [25, 25, 25, 25],
                               "weightForNightGainCalc_len":    4,
                               "singleColorProces":    {
                                   "enable":    1,
                                   "colorBlock":    [{
                                           "index":    15,
                                           "meanC":    25.5951,
                                           "meanH":    34.3506
                                       }, {
                                           "index":    13,
                                           "meanC":    25.4787,
                                           "meanH":    -69.792
                                       }, {
                                           "index":    5,
                                           "meanC":    12.6017,
                                           "meanH":    -62.1434
                                       }, {
                                           "index":    10,
                                           "meanC":    12.6493,
                                           "meanH":    -42.4184
                                       }, {
                                           "index":    14,
                                           "meanC":    19.0524,
                                           "meanH":    146.955
                                       }, {
                                           "index":    16,
                                           "meanC":    31.7018,
                                           "meanH":    98.6807
                                       }],
                                   "colorBlock_len":    6,
                                   "lsUsedForEstimation":    [{
                                           "name":    "A",
                                           "RGain":    0.992317,
                                           "BGain":    2.00985
                                       }, {
                                           "name":    "TL84",
                                           "RGain":    1.2468,
                                           "BGain":    1.7295
                                       }, {
                                           "name":    "D50",
                                           "RGain":    1.6985,
                                           "BGain":    1.3568
                                       }],
                                   "lsUsedForEstimation_len":    3,
                                   "alpha":    0.9
                               },
                               "lineRgBg":    [-0.8395, -0.5434, -2.741],
                               "lineRgProjCCT":    [1, -0.0003, 0.4559],
                               "chrAdpttAdj":    {
                                   "enable":    0,
                                   "targetGain":    [1.6777, 1, 1, 1.3732],
                                   "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, 4, 8, 12, 16, 20, 24, 28, 32, 40, 48, 56, 64, 80, 96, 112, 128, 159, 191, 223, 254, 317, 379, 440, 500, 617, 731, 841, 947, 1149, 1325, 1467, 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, 67.25, 67.0625, 65.9375, 63.125, 64, 64, 64, 64, 64, 64, 64, 64],
                                   "R_Channel_len":    13,
                                   "Gr_Channel":    [64, 64.75, 62.625, 59.125, 53.6875, 64, 64, 64, 64, 64, 64, 64, 64],
                                   "Gr_Channel_len":    13,
                                   "Gb_Channel":    [65, 67.1875, 67, 69.625, 66.625, 64, 64, 64, 64, 64, 64, 64, 64],
                                   "Gb_Channel_len":    13,
                                   "B_Channel":    [64, 65, 59.125, 60.25, 51.5, 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.2, 1.15, 1.1, 1, 1, 1, 1, 1],
                                       "enhance_value_len":    9,
                                       "enhance_chroma":    [1.3, 1.25, 1.2, 1.15, 1.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":    [0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                       "set1":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                       "set2":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                       "set3":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                   },
                                   "set1":    {
                                       "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":    [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":    [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8],
                                           "g_pg_fac":    [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8]
                                       },
                                       "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":    [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2],
                                           "g_rnd_offs":    [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
                                       },
                                       "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":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "g_ro_lim":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                       }
                                   },
                                   "set2":    {
                                       "RK":    {
                                           "RK_enable":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0],
                                           "rb_sw_mindis":    [20, 20, 12, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0],
                                           "g_sw_mindis":    [20, 20, 12, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0],
                                           "sw_dis_scale_min":    [12, 12, 8, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "sw_dis_scale_max":    [12, 12, 8, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                       },
                                       "LC":    {
                                           "LC_enable":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0],
                                           "rb_line_thr":    [20, 20, 12, 2, 2, 1, 0, 0, 0, 0, 0, 0, 0],
                                           "g_line_thr":    [20, 20, 12, 2, 2, 1, 0, 0, 0, 0, 0, 0, 0],
                                           "rb_line_mad_fac":    [10, 10, 6, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "g_line_mad_fac":    [10, 10, 6, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                       },
                                       "PG":    {
                                           "PG_enable":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0],
                                           "rb_pg_fac":    [5, 5, 5, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "g_pg_fac":    [4, 4, 4, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                       },
                                       "RND":    {
                                           "RND_enable":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "rb_rnd_thr":    [0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8],
                                           "g_rnd_thr":    [0, 0, 0, 0, 0, 0, 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":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "rb_rg_fac":    [0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8],
                                           "g_rg_fac":    [0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8]
                                       },
                                       "RO":    {
                                           "RO_enable":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0],
                                           "rb_ro_lim":    [2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3],
                                           "g_ro_lim":    [2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3]
                                       }
                                   },
                                   "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":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "rb_line_thr":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "g_line_thr":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "rb_line_mad_fac":    [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2],
                                           "g_line_mad_fac":    [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
                                       },
                                       "PG":    {
                                           "PG_enable":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "rb_pg_fac":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "g_pg_fac":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                       },
                                       "RND":    {
                                           "RND_enable":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "rb_rnd_thr":    [4, 4, 4, 3, 2, 2, 2, 2, 2, 2, 2, 2, 2],
                                           "g_rnd_thr":    [4, 4, 4, 3, 2, 2, 2, 2, 2, 2, 2, 2, 2],
                                           "rb_rnd_offs":    [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2],
                                           "g_rnd_offs":    [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
                                       },
                                       "RG":    {
                                           "RG_enable":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "rb_rg_fac":    [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2],
                                           "g_rg_fac":    [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
                                       },
                                       "RO":    {
                                           "RO_enable":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "rb_ro_lim":    [2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 1],
                                           "g_ro_lim":    [2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 1]
                                       }
                                   }
                               },
                               "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":    0,
                               "mode":    "RK_AIQ_OP_MODE_AUTO",
                               "force_gray":    1,
                               "light_src":    "LED",
                               "auto_adjust_sens":    50,
                               "auto_on2off_th":    3000,
                               "auto_off2on_th":    100,
                               "auto_sw_interval":    0,
                               "manual_on":    0,
                               "manual_strength":    100
                           }
                       },
                       "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":    "1296x972",
                                       "lsc_sect_size_x":    [81, 81, 81, 81, 81, 81, 81, 81],
                                       "lsc_sect_size_y":    [60, 61, 61, 61, 60, 61, 61, 61]
                                   }, {
                                       "name":    "2592x1944",
                                       "lsc_sect_size_x":    [162, 162, 162, 162, 162, 162, 162, 162],
                                       "lsc_sect_size_y":    [121, 122, 121, 122, 121, 122, 121, 122]
                                   }],
                               "resolutionAll_len":    2
                           },
                           "alscCoef":    {
                               "damp_enable":    1,
                               "illAll":    [{
                                       "usedForCase":    0,
                                       "name":    "A",
                                       "wbGain":    [0.9625, 2.0381],
                                       "tableUsed":    [{
                                               "name":    "A_100"
                                           }, {
                                               "name":    "A_70"
                                           }],
                                       "tableUsed_len":    2,
                                       "gains":    [1, 2, 4, 8],
                                       "gains_len":    4,
                                       "vig":    [100, 100, 90, 70],
                                       "vig_len":    4
                                   }, {
                                       "usedForCase":    0,
                                       "name":    "CWF",
                                       "wbGain":    [1.4193, 1.7692],
                                       "tableUsed":    [{
                                               "name":    "CWF_100"
                                           }, {
                                               "name":    "CWF_70"
                                           }],
                                       "tableUsed_len":    2,
                                       "gains":    [1, 2, 4, 8],
                                       "gains_len":    4,
                                       "vig":    [100, 100, 90, 70],
                                       "vig_len":    4
                                   }, {
                                       "usedForCase":    0,
                                       "name":    "D50",
                                       "wbGain":    [1.6985, 1.3568],
                                       "tableUsed":    [{
                                               "name":    "D50_100"
                                           }, {
                                               "name":    "D50_70"
                                           }],
                                       "tableUsed_len":    2,
                                       "gains":    [1, 2, 4, 8],
                                       "gains_len":    4,
                                       "vig":    [100, 100, 90, 70],
                                       "vig_len":    4
                                   }, {
                                       "usedForCase":    0,
                                       "name":    "D65",
                                       "wbGain":    [1.4765, 1.0841],
                                       "tableUsed":    [{
                                               "name":    "D65_100"
                                           }, {
                                               "name":    "D65_70"
                                           }],
                                       "tableUsed_len":    2,
                                       "gains":    [1, 2, 4, 8],
                                       "gains_len":    4,
                                       "vig":    [100, 100, 90, 70],
                                       "vig_len":    4
                                   }, {
                                       "usedForCase":    0,
                                       "name":    "D75",
                                       "wbGain":    [1.5907, 0.998],
                                       "tableUsed":    [{
                                               "name":    "D75_100"
                                           }, {
                                               "name":    "D75_70"
                                           }],
                                       "tableUsed_len":    2,
                                       "gains":    [1, 2, 4, 8],
                                       "gains_len":    4,
                                       "vig":    [100, 100, 90, 70],
                                       "vig_len":    4
                                   }, {
                                       "usedForCase":    0,
                                       "name":    "HZ",
                                       "wbGain":    [0.7472, 2.3788],
                                       "tableUsed":    [{
                                               "name":    "HZ_100"
                                           }, {
                                               "name":    "HZ_70"
                                           }],
                                       "tableUsed_len":    2,
                                       "gains":    [1, 2, 4, 8],
                                       "gains_len":    4,
                                       "vig":    [100, 100, 90, 70],
                                       "vig_len":    4
                                   }, {
                                       "usedForCase":    0,
                                       "name":    "TL84",
                                       "wbGain":    [1.2468, 1.7295],
                                       "tableUsed":    [{
                                               "name":    "TL84_100"
                                           }, {
                                               "name":    "TL84_70"
                                           }],
                                       "tableUsed_len":    2,
                                       "gains":    [1, 2, 4, 8],
                                       "gains_len":    4,
                                       "vig":    [100, 100, 90, 70],
                                       "vig_len":    4
                                   }, {
                                       "usedForCase":    2,
                                       "name":    "GRAY",
                                       "wbGain":    [1, 1],
                                       "tableUsed":    [{
                                               "name":    "GRAY_0"
                                           }],
                                       "tableUsed_len":    1,
                                       "gains":    [1, 2, 4, 8],
                                       "gains_len":    4,
                                       "vig":    [0, 0, 0, 0],
                                       "vig_len":    4
                                   }],
                               "illAll_len":    8
                           },
                           "tbl":    {
                               "tableAll":    [{
                                       "name":    "2592x1944_A_100",
                                       "resolution":    "2592x1944",
                                       "illumination":    "A",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [4174, 3708, 3315, 3023, 2757, 2560, 2404, 2318, 2322, 2334, 2446, 2607, 2855, 3074, 3358, 3765, 4278, 3923, 3465, 3047, 2750, 2506, 2285, 2123, 2030, 2005, 2033, 2151, 2319, 2592, 2855, 3164, 3502, 3978, 3651, 3225, 2852, 2556, 2263, 2055, 1851, 1761, 1745, 1774, 1884, 2069, 2350, 2634, 2949, 3291, 3737, 3465, 2998, 2695, 2366, 2046, 1811, 1636, 1556, 1524, 1554, 1681, 1855, 2115, 2399, 2782, 3154, 3597, 3304, 2860, 2542, 2186, 1860, 1637, 1458, 1371, 1339, 1386, 1494, 1665, 1935, 2235, 2630, 3008, 3333, 3104, 2772, 2402, 2027, 1731, 1493, 1332, 1236, 1207, 1235, 1342, 1541, 1768, 2086, 2472, 2874, 3205, 3021, 2661, 2271, 1915, 1622, 1383, 1227, 1132, 1110, 1141, 1253, 1420, 1666, 1983, 2377, 2782, 3147, 2984, 2598, 2242, 1853, 1548, 1328, 1165, 1075, 1045, 1077, 1184, 1364, 1613, 1927, 2318, 2725, 3126, 2994, 2568, 2219, 1828, 1519, 1299, 1140, 1052, 1024, 1060, 1160, 1337, 1570, 1895, 2289, 2698, 3094, 2972, 2589, 2198, 1850, 1547, 1306, 1142, 1059, 1037, 1074, 1177, 1347, 1599, 1916, 2311, 2692, 3098, 2996, 2633, 2250, 1886, 1587, 1375, 1200, 1118, 1078, 1119, 1227, 1414, 1633, 1963, 2376, 2739, 3101, 3074, 2702, 2360, 2001, 1674, 1454, 1298, 1193, 1160, 1205, 1325, 1497, 1734, 2055, 2471, 2802, 3217, 3150, 2833, 2482, 2125, 1814, 1578, 1412, 1331, 1309, 1340, 1447, 1621, 1884, 2218, 2543, 2893, 3333, 3399, 2951, 2625, 2265, 1978, 1758, 1600, 1490, 1460, 1508, 1631, 1800, 2045, 2356, 2725, 3052, 3469, 3636, 3090, 2778, 2456, 2191, 1961, 1815, 1689, 1668, 1695, 1835, 1992, 2251, 2548, 2906, 3208, 3649, 3817, 3351, 2990, 2699, 2405, 2210, 2032, 1933, 1920, 1951, 2036, 2241, 2497, 2783, 3003, 3431, 3958, 4193, 3576, 3208, 2891, 2655, 2470, 2314, 2231, 2211, 2236, 2327, 2504, 2687, 2992, 3304, 3726, 4216]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [3205, 2798, 2471, 2294, 2121, 2017, 1911, 1869, 1859, 1865, 1908, 2042, 2128, 2302, 2509, 2782, 3155, 2902, 2488, 2229, 2069, 1921, 1787, 1701, 1647, 1622, 1630, 1698, 1800, 1926, 2082, 2229, 2536, 2866, 2631, 2330, 2121, 1945, 1794, 1656, 1543, 1481, 1484, 1501, 1555, 1661, 1774, 1961, 2144, 2343, 2660, 2549, 2228, 2013, 1840, 1660, 1532, 1431, 1368, 1365, 1368, 1431, 1537, 1699, 1859, 2029, 2221, 2487, 2388, 2122, 1923, 1775, 1567, 1425, 1319, 1262, 1250, 1270, 1341, 1427, 1575, 1756, 1963, 2163, 2351, 2307, 2063, 1863, 1652, 1481, 1332, 1231, 1183, 1156, 1176, 1239, 1349, 1484, 1664, 1868, 2081, 2271, 2230, 2027, 1799, 1606, 1419, 1277, 1183, 1100, 1084, 1107, 1173, 1276, 1446, 1607, 1817, 2019, 2246, 2192, 1980, 1759, 1556, 1373, 1222, 1121, 1056, 1041, 1066, 1130, 1243, 1388, 1566, 1789, 1966, 2190, 2191, 1957, 1742, 1528, 1358, 1206, 1096, 1039, 1024, 1050, 1111, 1226, 1375, 1557, 1771, 1973, 2160, 2190, 1950, 1738, 1549, 1355, 1206, 1107, 1040, 1029, 1051, 1122, 1220, 1364, 1546, 1746, 1968, 2192, 2234, 1980, 1766, 1558, 1384, 1248, 1140, 1072, 1051, 1079, 1143, 1252, 1407, 1585, 1799, 2005, 2193, 2278, 2010, 1819, 1605, 1446, 1303, 1196, 1130, 1125, 1129, 1204, 1301, 1455, 1627, 1836, 2027, 2237, 2364, 2080, 1875, 1683, 1509, 1378, 1270, 1209, 1191, 1219, 1280, 1375, 1515, 1701, 1914, 2101, 2284, 2429, 2172, 1951, 1781, 1604, 1475, 1366, 1313, 1284, 1310, 1375, 1465, 1612, 1803, 1976, 2137, 2426, 2575, 2251, 2066, 1882, 1724, 1573, 1480, 1413, 1398, 1417, 1479, 1579, 1720, 1886, 2045, 2255, 2580, 2778, 2442, 2157, 1998, 1826, 1693, 1604, 1550, 1536, 1546, 1597, 1698, 1845, 1980, 2165, 2428, 2777, 3031, 2584, 2276, 2090, 1950, 1840, 1733, 1699, 1644, 1684, 1725, 1827, 1955, 2078, 2286, 2609, 3050]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [3176, 2794, 2442, 2263, 2096, 1965, 1882, 1815, 1760, 1814, 1874, 1956, 2078, 2259, 2498, 2738, 3164, 2799, 2458, 2218, 2039, 1874, 1748, 1654, 1578, 1584, 1586, 1670, 1752, 1894, 2055, 2256, 2481, 2829, 2655, 2296, 2105, 1925, 1772, 1621, 1514, 1453, 1438, 1467, 1527, 1625, 1771, 1923, 2117, 2349, 2626, 2507, 2201, 1992, 1822, 1658, 1510, 1396, 1338, 1325, 1336, 1409, 1521, 1636, 1828, 2028, 2214, 2492, 2370, 2137, 1931, 1742, 1537, 1407, 1303, 1238, 1215, 1246, 1310, 1402, 1563, 1750, 1944, 2164, 2373, 2319, 2061, 1838, 1661, 1466, 1331, 1213, 1165, 1137, 1154, 1228, 1343, 1479, 1664, 1870, 2093, 2310, 2244, 2008, 1803, 1606, 1404, 1277, 1160, 1101, 1080, 1096, 1168, 1276, 1435, 1598, 1807, 2031, 2242, 2213, 1991, 1757, 1540, 1377, 1224, 1117, 1058, 1042, 1056, 1123, 1233, 1383, 1568, 1781, 1987, 2217, 2208, 1950, 1752, 1537, 1358, 1203, 1091, 1038, 1027, 1038, 1104, 1218, 1367, 1551, 1751, 2004, 2194, 2214, 1958, 1744, 1538, 1378, 1213, 1113, 1042, 1024, 1044, 1118, 1231, 1370, 1557, 1771, 1956, 2175, 2225, 1984, 1776, 1572, 1393, 1235, 1131, 1066, 1046, 1078, 1148, 1258, 1393, 1585, 1780, 1971, 2211, 2284, 2010, 1812, 1625, 1453, 1300, 1191, 1129, 1107, 1131, 1185, 1303, 1455, 1633, 1818, 2011, 2272, 2341, 2078, 1869, 1676, 1517, 1361, 1259, 1195, 1173, 1207, 1263, 1366, 1517, 1693, 1898, 2099, 2325, 2449, 2172, 1957, 1755, 1603, 1466, 1352, 1278, 1269, 1290, 1354, 1450, 1602, 1775, 1962, 2184, 2434, 2583, 2259, 2055, 1885, 1703, 1559, 1444, 1391, 1386, 1387, 1464, 1560, 1692, 1860, 2042, 2268, 2577, 2735, 2402, 2125, 1954, 1819, 1678, 1577, 1526, 1507, 1522, 1571, 1702, 1821, 1983, 2137, 2418, 2756, 3039, 2560, 2254, 2076, 1946, 1813, 1717, 1654, 1631, 1634, 1711, 1806, 1905, 2067, 2290, 2562, 2956]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2897, 2505, 2228, 1952, 1854, 1792, 1696, 1633, 1638, 1709, 1730, 1826, 1968, 2073, 2250, 2589, 3153, 2618, 2207, 1964, 1818, 1711, 1594, 1550, 1497, 1500, 1535, 1575, 1662, 1800, 1914, 2110, 2374, 2701, 2441, 2072, 1866, 1690, 1588, 1482, 1414, 1367, 1371, 1412, 1473, 1550, 1670, 1802, 1980, 2213, 2472, 2278, 1967, 1784, 1626, 1470, 1390, 1315, 1270, 1278, 1300, 1362, 1434, 1563, 1724, 1873, 2114, 2327, 2152, 1896, 1713, 1542, 1420, 1310, 1220, 1188, 1195, 1217, 1273, 1364, 1508, 1661, 1802, 2039, 2219, 2078, 1842, 1654, 1474, 1339, 1238, 1166, 1130, 1113, 1153, 1212, 1298, 1411, 1580, 1774, 1985, 2183, 2041, 1803, 1598, 1446, 1301, 1198, 1133, 1074, 1062, 1095, 1146, 1246, 1366, 1553, 1713, 1911, 2076, 1996, 1782, 1588, 1412, 1268, 1164, 1080, 1043, 1034, 1060, 1118, 1215, 1341, 1497, 1709, 1904, 2111, 1993, 1786, 1597, 1398, 1262, 1144, 1071, 1024, 1025, 1040, 1109, 1214, 1335, 1478, 1667, 1865, 2035, 1968, 1773, 1607, 1408, 1261, 1171, 1073, 1034, 1035, 1051, 1126, 1200, 1337, 1487, 1685, 1892, 2075, 1986, 1822, 1629, 1438, 1290, 1201, 1106, 1066, 1060, 1089, 1145, 1235, 1352, 1527, 1728, 1920, 2066, 2080, 1845, 1664, 1495, 1342, 1236, 1147, 1113, 1101, 1127, 1199, 1283, 1380, 1550, 1733, 1936, 2120, 2139, 1932, 1715, 1531, 1402, 1300, 1229, 1183, 1169, 1209, 1258, 1347, 1454, 1608, 1810, 1980, 2250, 2284, 1980, 1798, 1600, 1487, 1386, 1296, 1254, 1232, 1282, 1343, 1420, 1540, 1676, 1839, 2026, 2284, 2397, 2081, 1892, 1710, 1567, 1491, 1389, 1347, 1343, 1367, 1434, 1510, 1639, 1751, 1970, 2154, 2409, 2599, 2231, 2000, 1857, 1683, 1601, 1492, 1461, 1464, 1473, 1542, 1618, 1740, 1863, 2034, 2326, 2649, 2825, 2385, 2092, 1894, 1784, 1643, 1588, 1537, 1510, 1553, 1622, 1699, 1792, 1931, 2162, 2460, 2774]
                                       }
                                   }, {
                                       "name":    "2592x1944_A_70",
                                       "resolution":    "2592x1944",
                                       "illumination":    "A",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [3229, 3028, 2819, 2652, 2480, 2346, 2232, 2168, 2176, 2183, 2269, 2387, 2563, 2694, 2853, 3071, 3302, 3134, 2905, 2657, 2472, 2306, 2141, 2014, 1939, 1920, 1942, 2039, 2171, 2380, 2560, 2752, 2934, 3174, 2991, 2766, 2538, 2342, 2123, 1960, 1787, 1711, 1698, 1723, 1818, 1973, 2200, 2409, 2618, 2818, 3056, 2895, 2621, 2438, 2203, 1949, 1753, 1601, 1530, 1501, 1528, 1643, 1794, 2012, 2232, 2511, 2747, 2996, 2804, 2535, 2331, 2062, 1794, 1602, 1440, 1360, 1330, 1374, 1474, 1628, 1863, 2106, 2406, 2657, 2827, 2671, 2483, 2226, 1932, 1684, 1472, 1323, 1232, 1204, 1231, 1333, 1518, 1718, 1985, 2287, 2568, 2751, 2621, 2403, 2122, 1838, 1587, 1370, 1223, 1131, 1109, 1140, 1248, 1406, 1629, 1900, 2216, 2505, 2722, 2601, 2358, 2103, 1786, 1520, 1319, 1163, 1075, 1045, 1077, 1182, 1353, 1582, 1854, 2170, 2466, 2715, 2612, 2335, 2084, 1764, 1494, 1291, 1138, 1052, 1024, 1060, 1158, 1328, 1542, 1826, 2147, 2445, 2693, 2591, 2350, 2064, 1783, 1519, 1297, 1140, 1059, 1037, 1074, 1175, 1337, 1568, 1844, 2164, 2438, 2693, 2601, 2380, 2104, 1812, 1554, 1362, 1196, 1117, 1078, 1118, 1223, 1400, 1597, 1882, 2215, 2469, 2685, 2647, 2424, 2190, 1908, 1630, 1435, 1290, 1190, 1158, 1201, 1316, 1476, 1686, 1957, 2286, 2508, 2760, 2684, 2513, 2279, 2008, 1751, 1546, 1396, 1321, 1301, 1330, 1429, 1587, 1816, 2091, 2332, 2563, 2827, 2844, 2583, 2379, 2114, 1888, 1704, 1567, 1467, 1440, 1485, 1596, 1743, 1948, 2194, 2463, 2664, 2898, 2980, 2659, 2477, 2256, 2059, 1875, 1754, 1644, 1626, 1650, 1773, 1903, 2112, 2335, 2583, 2752, 2990, 3056, 2817, 2611, 2429, 2219, 2075, 1932, 1851, 1842, 1867, 1936, 2102, 2298, 2499, 2622, 2879, 3159, 3242, 2930, 2735, 2545, 2395, 2269, 2153, 2092, 2077, 2096, 2165, 2298, 2422, 2627, 2810, 3042, 3258]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2551, 2349, 2158, 2059, 1946, 1879, 1801, 1771, 1765, 1768, 1798, 1900, 1952, 2065, 2187, 2337, 2516, 2391, 2152, 1997, 1901, 1800, 1700, 1634, 1591, 1570, 1575, 1631, 1711, 1804, 1911, 1997, 2189, 2364, 2227, 2057, 1933, 1816, 1707, 1598, 1503, 1450, 1454, 1469, 1514, 1602, 1689, 1830, 1952, 2068, 2249, 2193, 1998, 1861, 1741, 1600, 1495, 1407, 1351, 1350, 1351, 1407, 1499, 1635, 1757, 1874, 1992, 2145, 2089, 1928, 1798, 1695, 1524, 1402, 1307, 1254, 1243, 1262, 1328, 1404, 1531, 1678, 1832, 1962, 2060, 2040, 1891, 1756, 1593, 1450, 1318, 1225, 1180, 1154, 1173, 1233, 1334, 1453, 1603, 1760, 1906, 2011, 1988, 1869, 1707, 1556, 1396, 1268, 1180, 1099, 1084, 1106, 1170, 1267, 1421, 1557, 1722, 1862, 2001, 1964, 1834, 1675, 1513, 1354, 1216, 1120, 1056, 1041, 1066, 1128, 1236, 1369, 1522, 1702, 1822, 1962, 1965, 1816, 1661, 1488, 1341, 1201, 1095, 1039, 1024, 1050, 1110, 1220, 1357, 1515, 1687, 1830, 1940, 1962, 1809, 1656, 1506, 1337, 1200, 1106, 1040, 1029, 1051, 1121, 1214, 1346, 1504, 1664, 1824, 1964, 1992, 1830, 1678, 1512, 1363, 1240, 1138, 1071, 1051, 1078, 1141, 1244, 1385, 1537, 1707, 1851, 1959, 2017, 1847, 1718, 1550, 1418, 1290, 1191, 1128, 1123, 1127, 1199, 1288, 1426, 1570, 1732, 1861, 1984, 2070, 1893, 1757, 1613, 1471, 1358, 1260, 1203, 1186, 1213, 1269, 1355, 1476, 1629, 1790, 1911, 2008, 2101, 1952, 1808, 1689, 1549, 1442, 1346, 1299, 1272, 1296, 1355, 1433, 1556, 1708, 1829, 1924, 2098, 2185, 1995, 1887, 1762, 1645, 1522, 1445, 1387, 1374, 1390, 1444, 1528, 1641, 1765, 1870, 1998, 2189, 2300, 2117, 1939, 1841, 1718, 1617, 1546, 1503, 1491, 1499, 1540, 1621, 1734, 1826, 1945, 2106, 2300, 2429, 2189, 2005, 1892, 1802, 1726, 1645, 1621, 1574, 1608, 1638, 1715, 1806, 1883, 2013, 2208, 2442]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2530, 2346, 2135, 2033, 1925, 1834, 1775, 1724, 1677, 1723, 1768, 1826, 1910, 2030, 2179, 2304, 2522, 2316, 2129, 1988, 1875, 1759, 1665, 1591, 1528, 1535, 1535, 1606, 1669, 1777, 1889, 2019, 2147, 2337, 2245, 2030, 1919, 1799, 1687, 1566, 1476, 1424, 1411, 1437, 1488, 1570, 1686, 1797, 1929, 2072, 2224, 2161, 1976, 1843, 1725, 1598, 1474, 1375, 1323, 1311, 1321, 1387, 1485, 1578, 1730, 1873, 1986, 2149, 2075, 1940, 1805, 1665, 1496, 1385, 1291, 1231, 1209, 1239, 1298, 1380, 1520, 1673, 1816, 1962, 2077, 2049, 1889, 1734, 1601, 1436, 1317, 1207, 1162, 1135, 1151, 1222, 1329, 1448, 1603, 1762, 1916, 2042, 2000, 1853, 1710, 1556, 1382, 1268, 1157, 1100, 1080, 1095, 1165, 1267, 1411, 1549, 1714, 1873, 1998, 1981, 1844, 1673, 1498, 1358, 1218, 1116, 1058, 1042, 1056, 1122, 1227, 1364, 1524, 1695, 1840, 1984, 1978, 1810, 1670, 1496, 1341, 1198, 1090, 1038, 1027, 1038, 1103, 1212, 1349, 1509, 1669, 1856, 1967, 1981, 1816, 1662, 1496, 1359, 1207, 1112, 1042, 1024, 1044, 1117, 1225, 1352, 1514, 1686, 1814, 1950, 1984, 1833, 1686, 1525, 1371, 1227, 1129, 1066, 1046, 1077, 1145, 1250, 1371, 1537, 1690, 1822, 1973, 2022, 1847, 1711, 1568, 1424, 1288, 1186, 1127, 1106, 1129, 1180, 1290, 1426, 1575, 1717, 1848, 2012, 2052, 1892, 1751, 1607, 1478, 1342, 1249, 1189, 1169, 1201, 1253, 1346, 1478, 1622, 1776, 1909, 2040, 2116, 1952, 1813, 1666, 1548, 1434, 1333, 1266, 1258, 1277, 1335, 1419, 1547, 1684, 1818, 1962, 2105, 2191, 2001, 1878, 1765, 1626, 1510, 1412, 1366, 1363, 1362, 1430, 1511, 1616, 1743, 1867, 2008, 2187, 2269, 2086, 1913, 1804, 1712, 1603, 1522, 1481, 1465, 1477, 1517, 1625, 1713, 1828, 1923, 2098, 2284, 2435, 2171, 1988, 1881, 1799, 1703, 1631, 1581, 1563, 1564, 1626, 1697, 1764, 1874, 2016, 2172, 2376]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2335, 2130, 1967, 1780, 1722, 1685, 1612, 1563, 1569, 1630, 1642, 1714, 1817, 1879, 1985, 2193, 2514, 2184, 1936, 1783, 1690, 1618, 1529, 1498, 1454, 1459, 1489, 1520, 1589, 1695, 1771, 1901, 2064, 2244, 2085, 1853, 1721, 1597, 1524, 1440, 1384, 1344, 1349, 1386, 1438, 1501, 1597, 1693, 1816, 1965, 2108, 1985, 1787, 1667, 1553, 1428, 1363, 1298, 1258, 1267, 1287, 1342, 1404, 1512, 1639, 1742, 1906, 2023, 1905, 1742, 1617, 1487, 1389, 1294, 1212, 1183, 1190, 1211, 1263, 1344, 1470, 1593, 1694, 1860, 1957, 1859, 1707, 1574, 1431, 1318, 1228, 1162, 1128, 1112, 1150, 1206, 1286, 1385, 1527, 1678, 1826, 1942, 1837, 1680, 1530, 1410, 1285, 1192, 1131, 1073, 1062, 1094, 1144, 1238, 1346, 1507, 1631, 1771, 1865, 1806, 1666, 1524, 1381, 1255, 1160, 1079, 1043, 1034, 1060, 1117, 1209, 1324, 1459, 1631, 1770, 1899, 1805, 1671, 1533, 1368, 1250, 1141, 1070, 1024, 1025, 1040, 1108, 1208, 1319, 1442, 1595, 1738, 1839, 1783, 1659, 1540, 1377, 1248, 1166, 1072, 1034, 1035, 1051, 1124, 1195, 1320, 1450, 1609, 1760, 1870, 1793, 1696, 1557, 1402, 1274, 1195, 1104, 1066, 1060, 1088, 1143, 1227, 1333, 1484, 1644, 1779, 1857, 1860, 1709, 1582, 1450, 1321, 1226, 1143, 1111, 1100, 1125, 1194, 1271, 1356, 1500, 1643, 1785, 1892, 1894, 1771, 1619, 1477, 1372, 1284, 1220, 1178, 1165, 1203, 1248, 1328, 1420, 1546, 1701, 1811, 1981, 1990, 1797, 1679, 1530, 1443, 1359, 1280, 1243, 1223, 1270, 1325, 1391, 1491, 1597, 1714, 1834, 1990, 2052, 1860, 1743, 1614, 1505, 1448, 1361, 1325, 1322, 1344, 1402, 1465, 1569, 1649, 1807, 1918, 2061, 2170, 1954, 1812, 1723, 1594, 1535, 1446, 1422, 1426, 1433, 1491, 1550, 1643, 1728, 1839, 2027, 2206, 2285, 2040, 1861, 1733, 1663, 1557, 1518, 1478, 1455, 1492, 1548, 1605, 1669, 1763, 1916, 2096, 2249]
                                       }
                                   }, {
                                       "name":    "2592x1944_CWF_100",
                                       "resolution":    "2592x1944",
                                       "illumination":    "CWF",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [3345, 2906, 2563, 2297, 2130, 2022, 1914, 1825, 1850, 1849, 1936, 2017, 2228, 2374, 2639, 2947, 3311, 3047, 2627, 2352, 2104, 1968, 1822, 1701, 1639, 1643, 1667, 1759, 1858, 2025, 2196, 2421, 2717, 3196, 2850, 2472, 2214, 1984, 1799, 1674, 1543, 1495, 1468, 1501, 1569, 1702, 1865, 2083, 2282, 2548, 2879, 2690, 2345, 2081, 1852, 1686, 1519, 1411, 1352, 1329, 1350, 1444, 1539, 1706, 1922, 2149, 2424, 2744, 2524, 2263, 2003, 1740, 1551, 1401, 1277, 1233, 1226, 1237, 1316, 1426, 1587, 1806, 2089, 2286, 2587, 2454, 2170, 1925, 1670, 1470, 1307, 1200, 1151, 1138, 1153, 1224, 1336, 1478, 1713, 1987, 2248, 2533, 2397, 2078, 1838, 1596, 1375, 1240, 1155, 1082, 1061, 1089, 1154, 1282, 1431, 1675, 1893, 2188, 2436, 2340, 2064, 1791, 1550, 1358, 1206, 1105, 1063, 1034, 1052, 1121, 1238, 1399, 1604, 1876, 2143, 2445, 2342, 2046, 1779, 1535, 1337, 1183, 1086, 1034, 1024, 1033, 1096, 1224, 1378, 1581, 1831, 2101, 2375, 2312, 2035, 1781, 1549, 1342, 1195, 1088, 1032, 1033, 1038, 1120, 1226, 1376, 1614, 1858, 2135, 2398, 2324, 2075, 1816, 1569, 1372, 1232, 1132, 1068, 1052, 1085, 1157, 1271, 1425, 1632, 1876, 2141, 2426, 2407, 2117, 1858, 1635, 1446, 1298, 1192, 1131, 1099, 1134, 1210, 1332, 1488, 1697, 1927, 2209, 2485, 2513, 2203, 1927, 1721, 1522, 1357, 1265, 1198, 1199, 1222, 1291, 1405, 1544, 1794, 2011, 2285, 2567, 2672, 2311, 2067, 1826, 1637, 1477, 1379, 1309, 1290, 1318, 1405, 1499, 1667, 1899, 2143, 2404, 2711, 2797, 2469, 2188, 1963, 1785, 1639, 1505, 1433, 1429, 1452, 1534, 1655, 1802, 2026, 2230, 2508, 2884, 3031, 2617, 2292, 2095, 1930, 1771, 1672, 1593, 1588, 1609, 1693, 1821, 1975, 2141, 2375, 2686, 3058, 3374, 2817, 2521, 2293, 2111, 1943, 1850, 1804, 1745, 1812, 1847, 1976, 2143, 2339, 2591, 2871, 3337]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [3049, 2666, 2381, 2183, 2028, 1904, 1812, 1771, 1755, 1797, 1810, 1913, 2037, 2188, 2388, 2677, 3106, 2772, 2381, 2150, 1986, 1838, 1707, 1619, 1557, 1558, 1566, 1616, 1726, 1838, 1958, 2159, 2356, 2701, 2541, 2232, 2042, 1863, 1726, 1594, 1487, 1431, 1433, 1441, 1493, 1602, 1718, 1873, 2041, 2247, 2506, 2418, 2139, 1941, 1778, 1611, 1485, 1391, 1328, 1316, 1333, 1395, 1492, 1616, 1773, 1949, 2125, 2368, 2294, 2054, 1862, 1690, 1526, 1392, 1293, 1245, 1220, 1238, 1297, 1380, 1513, 1684, 1843, 2028, 2259, 2231, 2012, 1780, 1594, 1455, 1311, 1221, 1164, 1147, 1152, 1223, 1320, 1448, 1611, 1812, 1987, 2154, 2177, 1951, 1746, 1549, 1377, 1263, 1168, 1093, 1078, 1094, 1149, 1250, 1391, 1550, 1738, 1926, 2123, 2154, 1913, 1701, 1516, 1356, 1209, 1119, 1052, 1046, 1068, 1118, 1213, 1352, 1516, 1700, 1878, 2091, 2125, 1881, 1701, 1496, 1339, 1200, 1099, 1051, 1029, 1043, 1104, 1189, 1330, 1501, 1691, 1877, 2083, 2126, 1876, 1684, 1502, 1340, 1201, 1101, 1041, 1024, 1051, 1116, 1207, 1319, 1489, 1682, 1875, 2051, 2136, 1915, 1709, 1516, 1366, 1230, 1134, 1068, 1051, 1073, 1131, 1235, 1348, 1536, 1708, 1895, 2084, 2192, 1966, 1761, 1566, 1406, 1271, 1179, 1121, 1105, 1123, 1177, 1285, 1398, 1560, 1758, 1929, 2138, 2227, 2015, 1825, 1628, 1479, 1346, 1257, 1192, 1176, 1195, 1248, 1341, 1473, 1631, 1811, 1979, 2218, 2378, 2094, 1901, 1729, 1560, 1409, 1350, 1285, 1263, 1287, 1333, 1411, 1544, 1727, 1880, 2050, 2316, 2472, 2178, 1987, 1827, 1649, 1528, 1436, 1372, 1365, 1376, 1429, 1524, 1658, 1782, 1972, 2133, 2457, 2693, 2322, 2076, 1926, 1771, 1623, 1549, 1487, 1478, 1487, 1553, 1637, 1754, 1912, 2050, 2320, 2618, 2944, 2500, 2203, 2035, 1871, 1787, 1682, 1600, 1604, 1618, 1648, 1745, 1864, 1999, 2182, 2495, 2820]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [3060, 2647, 2363, 2151, 1980, 1878, 1781, 1741, 1702, 1712, 1790, 1876, 2004, 2169, 2344, 2574, 2978, 2738, 2369, 2132, 1946, 1808, 1692, 1588, 1521, 1527, 1530, 1607, 1696, 1822, 1959, 2145, 2394, 2701, 2564, 2222, 2012, 1851, 1701, 1585, 1454, 1399, 1400, 1415, 1462, 1566, 1722, 1845, 2024, 2191, 2541, 2420, 2126, 1937, 1742, 1607, 1465, 1355, 1322, 1293, 1312, 1374, 1464, 1573, 1777, 1934, 2116, 2377, 2307, 2032, 1838, 1678, 1488, 1376, 1289, 1222, 1201, 1223, 1288, 1375, 1506, 1668, 1869, 2056, 2226, 2209, 1973, 1776, 1592, 1437, 1299, 1202, 1143, 1125, 1137, 1213, 1308, 1432, 1614, 1809, 1979, 2189, 2178, 1932, 1732, 1546, 1375, 1254, 1150, 1091, 1074, 1088, 1140, 1250, 1389, 1560, 1745, 1938, 2158, 2117, 1904, 1707, 1502, 1338, 1212, 1114, 1051, 1039, 1048, 1117, 1206, 1347, 1512, 1721, 1917, 2073, 2121, 1887, 1682, 1499, 1331, 1199, 1098, 1041, 1027, 1039, 1088, 1203, 1334, 1509, 1684, 1881, 2083, 2107, 1886, 1685, 1498, 1342, 1207, 1103, 1046, 1024, 1043, 1114, 1206, 1324, 1496, 1696, 1877, 2086, 2155, 1918, 1724, 1519, 1358, 1220, 1124, 1067, 1052, 1071, 1127, 1240, 1359, 1522, 1698, 1889, 2108, 2201, 1964, 1765, 1569, 1419, 1287, 1175, 1124, 1086, 1114, 1173, 1274, 1414, 1577, 1751, 1930, 2166, 2281, 1999, 1827, 1626, 1475, 1333, 1240, 1185, 1170, 1200, 1236, 1341, 1474, 1635, 1823, 2022, 2202, 2380, 2089, 1883, 1725, 1547, 1413, 1327, 1267, 1250, 1280, 1330, 1412, 1540, 1708, 1892, 2089, 2331, 2500, 2189, 1970, 1804, 1663, 1516, 1412, 1370, 1355, 1363, 1425, 1515, 1645, 1795, 1983, 2177, 2475, 2672, 2301, 2076, 1902, 1760, 1619, 1520, 1488, 1463, 1484, 1537, 1622, 1748, 1905, 2061, 2320, 2673, 2922, 2463, 2224, 2007, 1884, 1754, 1656, 1598, 1572, 1591, 1652, 1736, 1844, 1991, 2181, 2466, 2819]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2774, 2350, 2139, 1925, 1787, 1725, 1628, 1607, 1592, 1649, 1702, 1759, 1865, 2002, 2171, 2474, 2877, 2532, 2153, 1932, 1748, 1665, 1549, 1474, 1460, 1436, 1468, 1507, 1595, 1704, 1844, 2014, 2265, 2581, 2335, 2005, 1836, 1667, 1538, 1445, 1377, 1351, 1346, 1362, 1421, 1492, 1601, 1714, 1906, 2122, 2345, 2186, 1917, 1740, 1575, 1456, 1343, 1293, 1251, 1256, 1286, 1331, 1381, 1508, 1651, 1819, 2032, 2283, 2091, 1849, 1672, 1510, 1374, 1295, 1212, 1168, 1175, 1200, 1256, 1322, 1423, 1591, 1746, 1920, 2126, 2019, 1814, 1603, 1444, 1318, 1227, 1167, 1114, 1117, 1134, 1194, 1276, 1380, 1531, 1704, 1886, 2080, 1964, 1765, 1581, 1417, 1272, 1186, 1125, 1082, 1068, 1088, 1153, 1227, 1339, 1474, 1651, 1843, 2048, 1951, 1746, 1562, 1376, 1246, 1167, 1081, 1057, 1057, 1065, 1115, 1187, 1325, 1459, 1643, 1809, 1992, 1951, 1734, 1544, 1379, 1253, 1146, 1083, 1045, 1024, 1042, 1106, 1188, 1295, 1429, 1603, 1809, 1989, 1949, 1744, 1555, 1396, 1236, 1155, 1086, 1050, 1039, 1060, 1112, 1200, 1285, 1433, 1598, 1819, 1984, 1927, 1774, 1588, 1408, 1268, 1196, 1101, 1067, 1065, 1075, 1137, 1217, 1327, 1463, 1651, 1841, 1961, 2020, 1808, 1629, 1451, 1324, 1225, 1140, 1116, 1104, 1135, 1176, 1255, 1354, 1487, 1673, 1858, 2042, 2103, 1870, 1681, 1500, 1393, 1275, 1209, 1172, 1158, 1182, 1242, 1285, 1414, 1556, 1708, 1895, 2153, 2195, 1931, 1743, 1590, 1457, 1345, 1276, 1239, 1221, 1249, 1300, 1377, 1501, 1621, 1790, 1965, 2223, 2365, 2033, 1813, 1692, 1551, 1431, 1344, 1326, 1309, 1354, 1388, 1476, 1574, 1700, 1843, 2055, 2327, 2554, 2196, 1928, 1760, 1635, 1537, 1466, 1422, 1409, 1412, 1486, 1566, 1655, 1820, 1961, 2238, 2554, 2814, 2304, 2019, 1877, 1717, 1635, 1537, 1487, 1494, 1497, 1565, 1613, 1733, 1890, 2081, 2302, 2691]
                                       }
                                   }, {
                                       "name":    "2592x1944_CWF_70",
                                       "resolution":    "2592x1944",
                                       "illumination":    "CWF",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [2649, 2429, 2230, 2061, 1954, 1883, 1803, 1732, 1757, 1754, 1822, 1879, 2036, 2124, 2289, 2460, 2625, 2496, 2259, 2096, 1930, 1841, 1731, 1634, 1584, 1589, 1609, 1686, 1763, 1890, 2007, 2152, 2329, 2605, 2391, 2170, 2010, 1850, 1711, 1614, 1503, 1463, 1439, 1469, 1527, 1639, 1770, 1935, 2066, 2230, 2413, 2301, 2092, 1918, 1751, 1623, 1483, 1389, 1336, 1315, 1334, 1420, 1501, 1641, 1813, 1976, 2156, 2342, 2195, 2044, 1867, 1664, 1509, 1379, 1266, 1226, 1220, 1230, 1304, 1403, 1542, 1723, 1941, 2063, 2244, 2156, 1980, 1810, 1609, 1440, 1294, 1195, 1148, 1136, 1150, 1218, 1322, 1448, 1648, 1864, 2045, 2219, 2122, 1912, 1741, 1547, 1355, 1232, 1152, 1081, 1061, 1088, 1151, 1273, 1407, 1619, 1789, 2005, 2153, 2083, 1905, 1703, 1507, 1340, 1200, 1104, 1063, 1034, 1052, 1120, 1231, 1379, 1557, 1779, 1972, 2167, 2086, 1892, 1694, 1495, 1321, 1178, 1085, 1034, 1024, 1033, 1095, 1218, 1360, 1537, 1740, 1939, 2113, 2060, 1881, 1695, 1506, 1325, 1190, 1087, 1032, 1033, 1038, 1119, 1220, 1357, 1566, 1763, 1966, 2129, 2064, 1910, 1722, 1522, 1352, 1224, 1130, 1068, 1052, 1084, 1154, 1262, 1402, 1580, 1774, 1965, 2145, 2119, 1936, 1752, 1577, 1418, 1286, 1187, 1129, 1098, 1132, 1205, 1318, 1457, 1633, 1812, 2013, 2181, 2186, 1995, 1801, 1647, 1483, 1338, 1255, 1192, 1194, 1216, 1280, 1383, 1503, 1712, 1874, 2062, 2229, 2287, 2065, 1906, 1728, 1579, 1444, 1358, 1295, 1278, 1304, 1383, 1464, 1606, 1793, 1971, 2140, 2317, 2352, 2167, 1988, 1832, 1699, 1582, 1468, 1405, 1403, 1423, 1495, 1597, 1714, 1886, 2023, 2198, 2417, 2484, 2252, 2048, 1922, 1808, 1686, 1608, 1542, 1539, 1556, 1627, 1730, 1847, 1961, 2115, 2305, 2504, 2669, 2363, 2197, 2058, 1938, 1815, 1747, 1714, 1664, 1721, 1745, 1843, 1964, 2095, 2252, 2403, 2643]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2442, 2250, 2087, 1968, 1868, 1782, 1714, 1685, 1673, 1708, 1712, 1789, 1875, 1972, 2093, 2258, 2481, 2296, 2070, 1933, 1831, 1728, 1629, 1560, 1509, 1511, 1517, 1557, 1646, 1728, 1807, 1940, 2050, 2244, 2160, 1980, 1867, 1746, 1646, 1541, 1451, 1403, 1407, 1413, 1457, 1549, 1639, 1754, 1866, 1992, 2134, 2092, 1926, 1800, 1686, 1555, 1451, 1370, 1313, 1303, 1318, 1374, 1458, 1560, 1682, 1807, 1914, 2054, 2015, 1872, 1745, 1619, 1486, 1371, 1282, 1238, 1214, 1231, 1286, 1360, 1474, 1614, 1729, 1850, 1988, 1980, 1848, 1684, 1540, 1426, 1298, 1215, 1161, 1145, 1149, 1217, 1307, 1420, 1555, 1711, 1828, 1919, 1946, 1805, 1660, 1504, 1356, 1254, 1165, 1092, 1078, 1093, 1146, 1242, 1370, 1505, 1653, 1784, 1903, 1933, 1777, 1624, 1476, 1338, 1203, 1118, 1052, 1046, 1068, 1117, 1207, 1335, 1476, 1623, 1748, 1882, 1912, 1752, 1625, 1459, 1323, 1195, 1098, 1051, 1029, 1043, 1103, 1184, 1314, 1463, 1616, 1748, 1878, 1911, 1746, 1609, 1463, 1323, 1196, 1100, 1041, 1024, 1051, 1115, 1201, 1303, 1451, 1607, 1745, 1850, 1913, 1775, 1627, 1474, 1346, 1223, 1132, 1068, 1051, 1072, 1129, 1227, 1329, 1492, 1626, 1758, 1872, 1949, 1810, 1667, 1515, 1380, 1260, 1174, 1119, 1104, 1121, 1173, 1273, 1373, 1509, 1664, 1779, 1906, 1963, 1840, 1714, 1564, 1443, 1327, 1247, 1187, 1172, 1189, 1239, 1323, 1437, 1566, 1701, 1810, 1956, 2062, 1889, 1766, 1643, 1509, 1381, 1331, 1272, 1252, 1274, 1315, 1383, 1495, 1641, 1748, 1854, 2014, 2108, 1937, 1822, 1715, 1578, 1482, 1404, 1348, 1343, 1352, 1398, 1478, 1586, 1676, 1809, 1901, 2097, 2238, 2024, 1873, 1781, 1670, 1555, 1497, 1445, 1438, 1445, 1501, 1567, 1655, 1769, 1852, 2023, 2184, 2368, 2126, 1948, 1848, 1736, 1681, 1600, 1533, 1539, 1549, 1570, 1645, 1730, 1818, 1931, 2122, 2281]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2449, 2236, 2073, 1942, 1827, 1759, 1687, 1658, 1626, 1633, 1695, 1757, 1848, 1957, 2058, 2181, 2392, 2271, 2060, 1919, 1797, 1702, 1616, 1532, 1476, 1483, 1484, 1549, 1619, 1714, 1808, 1929, 2080, 2244, 2177, 1972, 1842, 1735, 1624, 1533, 1421, 1374, 1376, 1389, 1428, 1516, 1643, 1730, 1852, 1947, 2160, 2094, 1915, 1796, 1655, 1552, 1433, 1336, 1308, 1281, 1298, 1354, 1432, 1521, 1685, 1794, 1907, 2061, 2026, 1854, 1725, 1608, 1451, 1356, 1278, 1216, 1196, 1217, 1277, 1355, 1468, 1599, 1751, 1874, 1962, 1962, 1816, 1680, 1538, 1409, 1287, 1197, 1141, 1123, 1135, 1207, 1295, 1405, 1558, 1709, 1821, 1946, 1947, 1789, 1648, 1501, 1355, 1246, 1147, 1090, 1074, 1087, 1138, 1242, 1368, 1514, 1659, 1794, 1931, 1903, 1770, 1629, 1463, 1321, 1206, 1113, 1051, 1039, 1048, 1116, 1200, 1330, 1472, 1641, 1781, 1868, 1908, 1757, 1608, 1461, 1315, 1194, 1097, 1041, 1027, 1039, 1087, 1198, 1318, 1471, 1610, 1752, 1878, 1895, 1755, 1609, 1460, 1325, 1201, 1102, 1046, 1024, 1043, 1113, 1200, 1308, 1458, 1619, 1747, 1878, 1928, 1777, 1641, 1476, 1339, 1213, 1122, 1067, 1052, 1071, 1125, 1232, 1339, 1479, 1618, 1753, 1891, 1956, 1808, 1670, 1517, 1392, 1275, 1171, 1122, 1085, 1112, 1169, 1263, 1388, 1525, 1658, 1780, 1928, 2005, 1827, 1715, 1562, 1439, 1315, 1231, 1180, 1166, 1194, 1227, 1323, 1438, 1570, 1712, 1846, 1944, 2063, 1885, 1751, 1640, 1497, 1384, 1309, 1255, 1240, 1268, 1312, 1384, 1491, 1625, 1758, 1885, 2026, 2129, 1946, 1807, 1695, 1591, 1471, 1382, 1347, 1334, 1340, 1394, 1470, 1575, 1687, 1818, 1936, 2111, 2223, 2008, 1873, 1760, 1661, 1551, 1471, 1446, 1425, 1443, 1486, 1554, 1650, 1763, 1861, 2023, 2224, 2353, 2099, 1964, 1825, 1747, 1652, 1577, 1532, 1510, 1525, 1574, 1637, 1713, 1812, 1931, 2101, 2281]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2249, 2014, 1898, 1758, 1665, 1627, 1553, 1540, 1528, 1577, 1618, 1657, 1731, 1821, 1923, 2107, 2321, 2121, 1894, 1757, 1631, 1578, 1489, 1429, 1421, 1400, 1428, 1459, 1530, 1612, 1712, 1823, 1980, 2157, 2006, 1800, 1697, 1577, 1480, 1406, 1350, 1329, 1325, 1339, 1390, 1449, 1536, 1617, 1754, 1893, 2013, 1915, 1746, 1630, 1508, 1415, 1320, 1277, 1240, 1246, 1273, 1313, 1355, 1462, 1575, 1697, 1839, 1989, 1857, 1703, 1582, 1458, 1346, 1279, 1204, 1163, 1171, 1194, 1246, 1305, 1391, 1531, 1646, 1762, 1884, 1812, 1683, 1529, 1404, 1298, 1218, 1163, 1112, 1115, 1132, 1189, 1265, 1356, 1483, 1617, 1743, 1860, 1776, 1648, 1515, 1383, 1258, 1180, 1123, 1081, 1068, 1087, 1150, 1220, 1321, 1435, 1576, 1714, 1843, 1770, 1636, 1501, 1347, 1234, 1163, 1080, 1057, 1057, 1065, 1114, 1182, 1309, 1424, 1572, 1689, 1803, 1771, 1627, 1485, 1351, 1241, 1142, 1082, 1045, 1024, 1042, 1105, 1183, 1281, 1397, 1538, 1691, 1802, 1768, 1634, 1494, 1366, 1225, 1151, 1085, 1050, 1039, 1060, 1111, 1195, 1271, 1400, 1532, 1698, 1796, 1746, 1656, 1521, 1375, 1254, 1190, 1099, 1067, 1065, 1074, 1135, 1210, 1309, 1425, 1576, 1712, 1773, 1813, 1678, 1552, 1411, 1304, 1216, 1137, 1114, 1103, 1133, 1172, 1245, 1332, 1443, 1590, 1720, 1830, 1866, 1720, 1590, 1449, 1364, 1261, 1201, 1167, 1154, 1177, 1233, 1270, 1383, 1499, 1613, 1741, 1905, 1921, 1758, 1632, 1521, 1416, 1321, 1261, 1229, 1212, 1238, 1284, 1351, 1456, 1548, 1672, 1785, 1943, 2028, 1822, 1677, 1599, 1491, 1393, 1319, 1306, 1291, 1332, 1360, 1434, 1512, 1605, 1702, 1840, 2000, 2137, 1927, 1754, 1641, 1553, 1478, 1422, 1386, 1375, 1377, 1440, 1504, 1570, 1692, 1780, 1960, 2137, 2277, 1980, 1804, 1719, 1606, 1550, 1473, 1434, 1441, 1442, 1498, 1531, 1620, 1729, 1852, 1978, 2191]
                                       }
                                   }, {
                                       "name":    "2592x1944_D50_100",
                                       "resolution":    "2592x1944",
                                       "illumination":    "D50",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [3330, 2863, 2524, 2265, 2135, 2022, 1895, 1810, 1814, 1852, 1914, 2001, 2162, 2372, 2662, 2930, 3452, 3036, 2712, 2346, 2135, 1925, 1796, 1682, 1638, 1631, 1664, 1713, 1869, 2013, 2187, 2416, 2741, 3134, 2891, 2518, 2220, 1982, 1788, 1646, 1540, 1468, 1446, 1488, 1587, 1686, 1847, 2049, 2301, 2546, 2923, 2724, 2326, 2101, 1844, 1671, 1503, 1398, 1337, 1317, 1354, 1416, 1540, 1711, 1941, 2121, 2443, 2762, 2524, 2237, 2021, 1761, 1543, 1427, 1302, 1244, 1212, 1265, 1341, 1441, 1608, 1820, 2079, 2330, 2615, 2456, 2177, 1926, 1641, 1479, 1332, 1228, 1157, 1134, 1161, 1227, 1350, 1506, 1722, 1991, 2254, 2578, 2390, 2104, 1875, 1601, 1395, 1249, 1153, 1089, 1073, 1099, 1172, 1287, 1450, 1683, 1963, 2188, 2436, 2353, 2083, 1807, 1565, 1369, 1225, 1107, 1058, 1047, 1059, 1142, 1254, 1416, 1616, 1877, 2157, 2411, 2330, 2084, 1831, 1552, 1356, 1197, 1091, 1047, 1041, 1048, 1130, 1232, 1431, 1642, 1869, 2160, 2456, 2316, 2090, 1798, 1575, 1359, 1204, 1115, 1041, 1024, 1050, 1150, 1242, 1410, 1644, 1889, 2184, 2431, 2406, 2115, 1825, 1595, 1414, 1251, 1143, 1087, 1068, 1094, 1178, 1280, 1472, 1661, 1920, 2208, 2445, 2479, 2177, 1914, 1698, 1468, 1326, 1208, 1146, 1118, 1143, 1230, 1352, 1499, 1738, 2003, 2229, 2573, 2565, 2257, 1992, 1751, 1551, 1406, 1286, 1229, 1213, 1243, 1309, 1425, 1611, 1802, 2075, 2318, 2625, 2725, 2380, 2108, 1869, 1664, 1509, 1392, 1352, 1329, 1345, 1409, 1561, 1704, 1937, 2191, 2439, 2816, 2873, 2476, 2217, 2006, 1783, 1640, 1521, 1453, 1443, 1470, 1552, 1692, 1824, 2061, 2282, 2583, 2968, 3068, 2729, 2336, 2136, 1931, 1779, 1709, 1614, 1611, 1627, 1709, 1860, 2006, 2200, 2432, 2746, 3192, 3424, 2909, 2601, 2292, 2085, 1986, 1884, 1806, 1810, 1844, 1883, 1995, 2150, 2371, 2622, 2993, 3550]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [3043, 2647, 2327, 2141, 1960, 1893, 1798, 1708, 1696, 1721, 1783, 1856, 1955, 2124, 2292, 2580, 3018, 2734, 2368, 2137, 1961, 1826, 1676, 1593, 1543, 1506, 1522, 1576, 1676, 1789, 1909, 2116, 2312, 2666, 2522, 2217, 2026, 1853, 1714, 1585, 1468, 1421, 1391, 1413, 1472, 1543, 1693, 1852, 1987, 2199, 2497, 2399, 2131, 1934, 1776, 1604, 1472, 1370, 1318, 1301, 1311, 1369, 1450, 1580, 1725, 1913, 2069, 2341, 2280, 2052, 1849, 1680, 1512, 1386, 1268, 1229, 1210, 1212, 1280, 1362, 1495, 1672, 1831, 2016, 2248, 2249, 2002, 1805, 1603, 1463, 1314, 1209, 1162, 1138, 1145, 1206, 1300, 1428, 1592, 1791, 1948, 2164, 2181, 1929, 1743, 1574, 1389, 1258, 1154, 1103, 1066, 1094, 1155, 1239, 1383, 1535, 1729, 1911, 2079, 2134, 1926, 1723, 1529, 1355, 1222, 1126, 1058, 1045, 1067, 1106, 1216, 1351, 1509, 1704, 1871, 2074, 2089, 1908, 1711, 1498, 1337, 1200, 1115, 1045, 1027, 1052, 1103, 1211, 1336, 1491, 1698, 1879, 2057, 2115, 1884, 1703, 1517, 1357, 1223, 1106, 1050, 1024, 1047, 1115, 1202, 1321, 1498, 1666, 1893, 2049, 2179, 1930, 1705, 1534, 1367, 1239, 1151, 1074, 1053, 1095, 1132, 1234, 1362, 1529, 1696, 1895, 2073, 2176, 1962, 1792, 1574, 1411, 1272, 1175, 1136, 1113, 1128, 1184, 1278, 1415, 1569, 1748, 1955, 2124, 2273, 2001, 1828, 1647, 1483, 1354, 1259, 1195, 1175, 1203, 1252, 1345, 1457, 1623, 1818, 1982, 2200, 2395, 2092, 1908, 1722, 1564, 1439, 1334, 1293, 1246, 1276, 1325, 1406, 1551, 1712, 1865, 2040, 2332, 2515, 2208, 1978, 1801, 1670, 1551, 1448, 1370, 1350, 1373, 1447, 1514, 1635, 1796, 1934, 2137, 2455, 2717, 2318, 2081, 1913, 1798, 1651, 1547, 1484, 1464, 1470, 1542, 1633, 1765, 1868, 2049, 2248, 2650, 2915, 2525, 2219, 2040, 1851, 1777, 1652, 1598, 1581, 1619, 1666, 1718, 1849, 1976, 2190, 2463, 2878]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [3035, 2714, 2290, 2135, 1957, 1870, 1766, 1695, 1687, 1700, 1749, 1840, 1942, 2104, 2344, 2602, 3008, 2685, 2354, 2082, 1946, 1793, 1664, 1579, 1519, 1501, 1526, 1579, 1667, 1785, 1916, 2141, 2332, 2702, 2558, 2197, 2005, 1833, 1694, 1564, 1452, 1401, 1389, 1405, 1460, 1546, 1665, 1839, 1980, 2194, 2466, 2398, 2104, 1929, 1731, 1590, 1457, 1354, 1305, 1276, 1300, 1377, 1432, 1584, 1731, 1914, 2100, 2361, 2305, 2029, 1834, 1662, 1508, 1367, 1273, 1225, 1203, 1218, 1280, 1360, 1504, 1669, 1862, 2031, 2244, 2243, 1953, 1785, 1598, 1432, 1316, 1202, 1149, 1125, 1139, 1207, 1304, 1441, 1590, 1775, 1971, 2202, 2151, 1931, 1726, 1561, 1381, 1258, 1156, 1105, 1072, 1091, 1137, 1253, 1384, 1550, 1747, 1904, 2159, 2111, 1928, 1709, 1496, 1348, 1219, 1117, 1064, 1033, 1055, 1118, 1206, 1355, 1513, 1710, 1883, 2097, 2121, 1865, 1680, 1502, 1336, 1201, 1099, 1043, 1024, 1046, 1099, 1202, 1343, 1509, 1687, 1888, 2087, 2135, 1896, 1694, 1502, 1349, 1216, 1104, 1049, 1034, 1057, 1117, 1217, 1331, 1516, 1703, 1874, 2094, 2108, 1908, 1728, 1523, 1364, 1235, 1137, 1078, 1057, 1087, 1138, 1240, 1361, 1513, 1709, 1915, 2099, 2210, 1953, 1767, 1573, 1421, 1294, 1178, 1127, 1101, 1122, 1195, 1285, 1419, 1569, 1775, 1953, 2159, 2293, 2019, 1829, 1644, 1491, 1354, 1251, 1202, 1183, 1206, 1253, 1343, 1481, 1635, 1805, 2027, 2244, 2334, 2103, 1902, 1719, 1580, 1426, 1343, 1288, 1267, 1281, 1344, 1416, 1549, 1713, 1897, 2077, 2347, 2520, 2187, 1985, 1804, 1666, 1527, 1435, 1373, 1363, 1368, 1436, 1531, 1632, 1815, 1993, 2165, 2486, 2682, 2311, 2058, 1892, 1765, 1635, 1514, 1480, 1483, 1472, 1549, 1626, 1742, 1911, 2080, 2304, 2680, 3025, 2535, 2194, 1989, 1896, 1754, 1671, 1589, 1583, 1591, 1654, 1737, 1871, 1984, 2226, 2489, 2931]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2762, 2386, 2096, 1909, 1838, 1711, 1616, 1566, 1579, 1618, 1656, 1711, 1854, 1960, 2149, 2443, 2894, 2543, 2169, 1927, 1771, 1653, 1562, 1493, 1451, 1423, 1455, 1511, 1572, 1687, 1831, 1960, 2232, 2516, 2324, 2036, 1837, 1674, 1567, 1449, 1375, 1331, 1328, 1343, 1401, 1476, 1580, 1718, 1883, 2057, 2336, 2197, 1940, 1734, 1590, 1464, 1374, 1271, 1233, 1237, 1254, 1318, 1391, 1505, 1637, 1777, 1960, 2194, 2138, 1859, 1685, 1507, 1400, 1284, 1202, 1177, 1157, 1176, 1236, 1312, 1424, 1566, 1732, 1918, 2093, 2040, 1815, 1607, 1458, 1328, 1225, 1159, 1120, 1106, 1119, 1172, 1253, 1363, 1497, 1678, 1860, 2025, 2020, 1795, 1594, 1423, 1284, 1185, 1119, 1077, 1054, 1085, 1121, 1202, 1314, 1459, 1621, 1810, 2006, 1996, 1751, 1581, 1388, 1262, 1155, 1096, 1039, 1024, 1051, 1106, 1192, 1292, 1447, 1610, 1784, 1966, 1982, 1757, 1564, 1380, 1252, 1152, 1075, 1042, 1024, 1038, 1088, 1167, 1286, 1421, 1603, 1774, 1947, 1978, 1755, 1568, 1415, 1256, 1158, 1080, 1044, 1025, 1038, 1105, 1178, 1271, 1434, 1599, 1792, 1983, 2028, 1786, 1598, 1422, 1290, 1181, 1103, 1065, 1052, 1078, 1122, 1212, 1306, 1455, 1609, 1816, 1992, 2045, 1814, 1641, 1455, 1335, 1228, 1146, 1103, 1085, 1107, 1149, 1252, 1357, 1485, 1648, 1824, 2010, 2126, 1876, 1712, 1518, 1377, 1281, 1205, 1166, 1156, 1169, 1235, 1297, 1387, 1544, 1706, 1882, 2108, 2257, 1917, 1743, 1608, 1476, 1348, 1262, 1220, 1232, 1251, 1274, 1355, 1465, 1621, 1781, 1957, 2196, 2388, 2042, 1852, 1676, 1554, 1446, 1372, 1331, 1318, 1335, 1369, 1428, 1564, 1705, 1853, 2074, 2406, 2551, 2189, 1952, 1785, 1653, 1541, 1470, 1419, 1420, 1427, 1472, 1557, 1670, 1788, 1939, 2194, 2502, 2811, 2350, 2039, 1890, 1710, 1625, 1539, 1519, 1488, 1506, 1568, 1635, 1704, 1849, 2048, 2357, 2736]
                                       }
                                   }, {
                                       "name":    "2592x1944_D50_70",
                                       "resolution":    "2592x1944",
                                       "illumination":    "D50",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [2638, 2397, 2199, 2035, 1958, 1883, 1787, 1719, 1725, 1756, 1803, 1865, 1980, 2122, 2307, 2447, 2724, 2488, 2325, 2091, 1956, 1803, 1708, 1617, 1583, 1578, 1606, 1645, 1772, 1880, 2000, 2148, 2347, 2559, 2422, 2206, 2015, 1848, 1701, 1589, 1500, 1438, 1419, 1457, 1544, 1625, 1754, 1906, 2082, 2228, 2446, 2327, 2077, 1935, 1744, 1610, 1468, 1376, 1322, 1304, 1338, 1393, 1502, 1646, 1829, 1952, 2172, 2356, 2195, 2023, 1882, 1682, 1502, 1404, 1290, 1237, 1207, 1257, 1328, 1417, 1562, 1735, 1932, 2099, 2266, 2158, 1986, 1811, 1583, 1448, 1318, 1222, 1154, 1132, 1158, 1221, 1335, 1474, 1656, 1868, 2050, 2254, 2116, 1934, 1774, 1551, 1373, 1241, 1150, 1088, 1073, 1098, 1169, 1277, 1425, 1626, 1851, 2005, 2153, 2093, 1922, 1718, 1521, 1351, 1219, 1106, 1058, 1047, 1059, 1140, 1247, 1395, 1568, 1780, 1984, 2140, 2077, 1924, 1740, 1510, 1339, 1192, 1090, 1047, 1041, 1048, 1129, 1226, 1410, 1593, 1774, 1989, 2178, 2063, 1927, 1710, 1530, 1341, 1198, 1114, 1041, 1024, 1050, 1148, 1235, 1390, 1594, 1790, 2007, 2156, 2129, 1943, 1729, 1546, 1391, 1243, 1141, 1086, 1068, 1093, 1175, 1271, 1446, 1606, 1813, 2022, 2160, 2176, 1986, 1800, 1634, 1438, 1312, 1203, 1144, 1116, 1141, 1224, 1337, 1467, 1670, 1878, 2030, 2250, 2227, 2039, 1857, 1674, 1509, 1384, 1275, 1222, 1207, 1236, 1297, 1402, 1564, 1719, 1929, 2089, 2274, 2328, 2121, 1941, 1766, 1603, 1473, 1371, 1336, 1315, 1329, 1387, 1522, 1640, 1826, 2011, 2168, 2397, 2409, 2173, 2012, 1869, 1697, 1583, 1483, 1424, 1416, 1440, 1511, 1630, 1733, 1916, 2066, 2258, 2480, 2511, 2338, 2083, 1957, 1809, 1693, 1641, 1561, 1560, 1573, 1641, 1765, 1873, 2010, 2161, 2351, 2602, 2704, 2432, 2260, 2057, 1916, 1852, 1777, 1716, 1722, 1749, 1776, 1860, 1970, 2121, 2276, 2494, 2792]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2437, 2236, 2045, 1934, 1811, 1772, 1702, 1629, 1620, 1640, 1689, 1740, 1806, 1920, 2017, 2186, 2420, 2268, 2060, 1923, 1810, 1718, 1602, 1537, 1496, 1464, 1477, 1521, 1602, 1686, 1766, 1906, 2017, 2219, 2146, 1968, 1854, 1737, 1636, 1533, 1434, 1394, 1367, 1387, 1438, 1495, 1617, 1736, 1822, 1954, 2127, 2078, 1919, 1794, 1685, 1549, 1439, 1350, 1304, 1288, 1297, 1349, 1419, 1527, 1640, 1776, 1869, 2033, 2005, 1870, 1734, 1610, 1473, 1365, 1258, 1222, 1205, 1206, 1269, 1343, 1458, 1603, 1719, 1841, 1980, 1994, 1840, 1705, 1548, 1434, 1301, 1204, 1159, 1136, 1143, 1201, 1288, 1401, 1538, 1693, 1795, 1927, 1949, 1787, 1657, 1527, 1368, 1250, 1151, 1102, 1066, 1093, 1152, 1231, 1362, 1491, 1645, 1771, 1868, 1917, 1788, 1643, 1488, 1337, 1216, 1124, 1058, 1045, 1067, 1105, 1210, 1334, 1470, 1626, 1742, 1869, 1883, 1775, 1634, 1460, 1321, 1195, 1114, 1045, 1027, 1052, 1102, 1206, 1320, 1454, 1622, 1750, 1857, 1902, 1753, 1625, 1477, 1339, 1217, 1105, 1050, 1024, 1047, 1114, 1196, 1305, 1460, 1593, 1760, 1849, 1948, 1787, 1624, 1490, 1347, 1231, 1148, 1073, 1053, 1094, 1130, 1226, 1342, 1486, 1616, 1758, 1863, 1936, 1807, 1694, 1522, 1385, 1261, 1171, 1134, 1112, 1126, 1179, 1267, 1389, 1517, 1656, 1801, 1895, 1999, 1828, 1716, 1581, 1447, 1335, 1249, 1189, 1171, 1197, 1242, 1327, 1423, 1559, 1707, 1813, 1942, 2075, 1888, 1772, 1637, 1513, 1409, 1316, 1280, 1236, 1264, 1308, 1378, 1501, 1628, 1736, 1846, 2026, 2141, 1961, 1814, 1692, 1597, 1502, 1415, 1347, 1329, 1349, 1414, 1469, 1566, 1688, 1778, 1905, 2096, 2256, 2021, 1877, 1770, 1694, 1579, 1495, 1443, 1426, 1430, 1491, 1563, 1665, 1732, 1852, 1967, 2207, 2348, 2145, 1960, 1852, 1719, 1672, 1574, 1532, 1518, 1550, 1586, 1621, 1717, 1800, 1938, 2099, 2322]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2432, 2286, 2016, 1929, 1808, 1752, 1674, 1617, 1612, 1622, 1659, 1726, 1796, 1904, 2058, 2202, 2413, 2233, 2049, 1878, 1797, 1689, 1591, 1524, 1474, 1459, 1481, 1524, 1594, 1682, 1772, 1926, 2032, 2245, 2173, 1952, 1836, 1720, 1618, 1514, 1419, 1375, 1365, 1379, 1426, 1498, 1592, 1725, 1816, 1950, 2104, 2077, 1897, 1790, 1645, 1536, 1425, 1335, 1291, 1265, 1287, 1357, 1402, 1531, 1645, 1777, 1894, 2049, 2024, 1851, 1721, 1594, 1470, 1347, 1263, 1219, 1198, 1212, 1269, 1341, 1466, 1600, 1745, 1853, 1976, 1989, 1799, 1688, 1544, 1405, 1303, 1197, 1147, 1123, 1137, 1202, 1291, 1413, 1536, 1679, 1814, 1957, 1925, 1788, 1642, 1515, 1360, 1250, 1153, 1104, 1072, 1090, 1135, 1245, 1363, 1505, 1661, 1766, 1932, 1899, 1790, 1631, 1458, 1331, 1213, 1116, 1064, 1033, 1055, 1117, 1200, 1337, 1473, 1632, 1752, 1887, 1908, 1738, 1606, 1464, 1320, 1196, 1098, 1043, 1024, 1046, 1098, 1197, 1327, 1471, 1612, 1758, 1881, 1918, 1763, 1617, 1463, 1332, 1210, 1103, 1049, 1034, 1057, 1116, 1211, 1315, 1476, 1625, 1744, 1885, 1891, 1769, 1644, 1480, 1344, 1227, 1135, 1077, 1057, 1086, 1136, 1232, 1341, 1471, 1627, 1775, 1884, 1963, 1799, 1672, 1521, 1394, 1282, 1173, 1125, 1100, 1120, 1190, 1273, 1392, 1517, 1679, 1799, 1923, 2015, 1843, 1717, 1578, 1454, 1335, 1241, 1196, 1178, 1200, 1243, 1325, 1445, 1570, 1696, 1850, 1976, 2028, 1897, 1767, 1634, 1527, 1397, 1325, 1275, 1256, 1269, 1326, 1387, 1499, 1629, 1763, 1876, 2038, 2144, 1944, 1820, 1695, 1593, 1481, 1403, 1349, 1341, 1345, 1404, 1484, 1563, 1704, 1827, 1927, 2119, 2230, 2016, 1859, 1752, 1665, 1565, 1465, 1439, 1443, 1432, 1497, 1557, 1645, 1768, 1877, 2010, 2229, 2425, 2152, 1941, 1810, 1757, 1652, 1590, 1524, 1520, 1525, 1576, 1638, 1736, 1806, 1966, 2118, 2359]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2241, 2041, 1864, 1745, 1708, 1615, 1542, 1503, 1517, 1549, 1577, 1615, 1722, 1787, 1905, 2084, 2333, 2129, 1906, 1753, 1651, 1568, 1501, 1446, 1413, 1388, 1416, 1463, 1509, 1598, 1701, 1780, 1955, 2110, 1998, 1825, 1697, 1583, 1505, 1410, 1348, 1310, 1308, 1321, 1372, 1434, 1517, 1621, 1735, 1841, 2006, 1923, 1765, 1625, 1521, 1422, 1348, 1257, 1223, 1227, 1243, 1301, 1364, 1459, 1562, 1661, 1781, 1921, 1894, 1711, 1593, 1456, 1370, 1269, 1195, 1172, 1153, 1171, 1227, 1295, 1392, 1508, 1633, 1760, 1859, 1828, 1684, 1533, 1417, 1308, 1216, 1155, 1118, 1105, 1117, 1168, 1243, 1340, 1452, 1595, 1722, 1817, 1821, 1674, 1526, 1389, 1269, 1179, 1117, 1076, 1054, 1084, 1119, 1196, 1297, 1422, 1550, 1686, 1809, 1806, 1640, 1517, 1359, 1249, 1151, 1095, 1039, 1024, 1051, 1105, 1187, 1278, 1413, 1543, 1668, 1782, 1796, 1646, 1503, 1352, 1240, 1148, 1074, 1042, 1024, 1038, 1087, 1163, 1273, 1390, 1538, 1661, 1768, 1792, 1644, 1506, 1383, 1244, 1154, 1079, 1044, 1025, 1038, 1104, 1173, 1258, 1401, 1533, 1675, 1796, 1827, 1666, 1530, 1388, 1274, 1175, 1101, 1065, 1052, 1077, 1120, 1205, 1290, 1418, 1539, 1691, 1798, 1832, 1683, 1562, 1414, 1314, 1219, 1142, 1101, 1084, 1105, 1145, 1242, 1335, 1441, 1568, 1692, 1805, 1884, 1725, 1616, 1465, 1349, 1266, 1197, 1161, 1152, 1164, 1226, 1281, 1358, 1489, 1611, 1730, 1870, 1969, 1746, 1632, 1537, 1433, 1324, 1248, 1211, 1223, 1240, 1260, 1331, 1423, 1548, 1664, 1779, 1922, 2045, 1829, 1710, 1585, 1494, 1407, 1345, 1310, 1299, 1314, 1342, 1391, 1503, 1610, 1711, 1855, 2059, 2135, 1922, 1773, 1662, 1568, 1482, 1426, 1383, 1386, 1391, 1428, 1496, 1583, 1665, 1763, 1926, 2100, 2275, 2014, 1819, 1729, 1601, 1541, 1475, 1462, 1436, 1450, 1500, 1550, 1596, 1696, 1826, 2019, 2222]
                                       }
                                   }, {
                                       "name":    "2592x1944_D65_100",
                                       "resolution":    "2592x1944",
                                       "illumination":    "D65",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [3623, 3193, 2892, 2532, 2369, 2212, 2093, 2044, 1972, 2049, 2116, 2236, 2400, 2617, 2899, 3282, 3719, 3337, 2931, 2577, 2328, 2152, 1996, 1849, 1763, 1749, 1788, 1903, 2061, 2219, 2392, 2697, 2959, 3466, 3163, 2733, 2451, 2179, 1972, 1807, 1666, 1593, 1578, 1621, 1714, 1820, 2050, 2273, 2523, 2780, 3209, 2940, 2590, 2272, 2040, 1818, 1646, 1502, 1434, 1400, 1457, 1523, 1651, 1885, 2081, 2396, 2713, 3059, 2797, 2501, 2201, 1903, 1694, 1506, 1366, 1297, 1266, 1318, 1406, 1531, 1739, 1970, 2287, 2548, 2928, 2673, 2386, 2095, 1800, 1594, 1397, 1270, 1194, 1167, 1194, 1288, 1432, 1621, 1858, 2164, 2471, 2792, 2612, 2324, 2019, 1733, 1489, 1315, 1193, 1114, 1088, 1127, 1216, 1346, 1531, 1797, 2090, 2406, 2718, 2574, 2268, 1975, 1681, 1451, 1272, 1147, 1072, 1042, 1073, 1154, 1305, 1514, 1743, 2037, 2393, 2705, 2544, 2223, 1977, 1665, 1427, 1243, 1119, 1054, 1024, 1051, 1135, 1275, 1478, 1712, 2042, 2369, 2627, 2576, 2267, 1972, 1678, 1431, 1268, 1128, 1060, 1041, 1073, 1168, 1293, 1489, 1763, 2026, 2394, 2622, 2612, 2315, 2002, 1710, 1480, 1289, 1175, 1102, 1079, 1118, 1203, 1340, 1526, 1785, 2102, 2397, 2709, 2608, 2338, 2079, 1786, 1563, 1364, 1254, 1177, 1138, 1179, 1280, 1440, 1603, 1882, 2147, 2419, 2774, 2858, 2441, 2165, 1909, 1660, 1483, 1349, 1292, 1266, 1312, 1384, 1519, 1706, 1965, 2234, 2525, 2891, 2936, 2576, 2281, 2005, 1788, 1604, 1474, 1393, 1387, 1418, 1501, 1658, 1865, 2115, 2381, 2654, 3053, 3086, 2698, 2410, 2183, 1963, 1766, 1638, 1562, 1538, 1575, 1657, 1795, 2000, 2252, 2483, 2812, 3202, 3413, 2877, 2546, 2330, 2103, 1954, 1831, 1744, 1742, 1738, 1869, 2011, 2188, 2400, 2677, 2959, 3458, 3784, 3238, 2771, 2526, 2349, 2190, 2053, 1987, 1987, 1962, 2065, 2213, 2357, 2613, 2874, 3264, 3688]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [3183, 2721, 2351, 2179, 1993, 1894, 1793, 1736, 1736, 1743, 1796, 1881, 1980, 2147, 2378, 2654, 3054, 2730, 2360, 2139, 1943, 1833, 1706, 1592, 1560, 1544, 1549, 1593, 1684, 1795, 1935, 2146, 2327, 2668, 2536, 2215, 2034, 1869, 1724, 1591, 1473, 1428, 1403, 1423, 1484, 1559, 1685, 1839, 2010, 2205, 2456, 2416, 2112, 1942, 1754, 1627, 1475, 1392, 1323, 1301, 1323, 1377, 1465, 1602, 1745, 1918, 2085, 2330, 2329, 2053, 1865, 1686, 1535, 1384, 1297, 1220, 1215, 1230, 1296, 1378, 1502, 1685, 1838, 2032, 2226, 2266, 2010, 1784, 1620, 1456, 1313, 1222, 1163, 1145, 1149, 1212, 1303, 1449, 1600, 1795, 1966, 2121, 2146, 1946, 1740, 1546, 1386, 1252, 1172, 1102, 1076, 1093, 1154, 1255, 1365, 1542, 1749, 1940, 2092, 2117, 1931, 1729, 1502, 1345, 1219, 1119, 1056, 1034, 1055, 1116, 1212, 1343, 1533, 1718, 1906, 2071, 2083, 1896, 1690, 1493, 1356, 1202, 1102, 1039, 1024, 1053, 1098, 1195, 1332, 1500, 1700, 1891, 2102, 2117, 1901, 1707, 1506, 1342, 1216, 1104, 1039, 1027, 1048, 1109, 1197, 1322, 1510, 1686, 1880, 2093, 2158, 1915, 1725, 1554, 1369, 1244, 1137, 1072, 1052, 1084, 1131, 1234, 1351, 1524, 1699, 1912, 2083, 2229, 1970, 1772, 1592, 1427, 1284, 1182, 1119, 1115, 1124, 1176, 1287, 1406, 1590, 1753, 1939, 2160, 2267, 2028, 1832, 1625, 1491, 1353, 1257, 1190, 1177, 1197, 1255, 1350, 1484, 1630, 1790, 2017, 2226, 2373, 2095, 1887, 1733, 1572, 1451, 1345, 1281, 1259, 1292, 1324, 1425, 1564, 1707, 1876, 2029, 2268, 2519, 2187, 1992, 1806, 1665, 1548, 1429, 1381, 1358, 1377, 1428, 1517, 1648, 1792, 1958, 2145, 2462, 2659, 2316, 2080, 1920, 1761, 1636, 1550, 1485, 1457, 1469, 1545, 1619, 1743, 1891, 2047, 2301, 2670, 2979, 2500, 2225, 2032, 1882, 1771, 1659, 1607, 1584, 1618, 1641, 1757, 1852, 1984, 2168, 2452, 2854]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [3062, 2646, 2324, 2158, 2009, 1883, 1788, 1738, 1709, 1743, 1787, 1891, 1995, 2160, 2347, 2628, 3029, 2702, 2353, 2092, 1942, 1803, 1661, 1576, 1524, 1518, 1528, 1591, 1674, 1816, 1958, 2123, 2323, 2669, 2511, 2228, 1990, 1828, 1691, 1564, 1465, 1407, 1402, 1415, 1465, 1571, 1711, 1851, 2013, 2229, 2457, 2379, 2106, 1909, 1727, 1595, 1470, 1354, 1309, 1288, 1316, 1376, 1451, 1599, 1751, 1920, 2099, 2347, 2244, 2021, 1839, 1656, 1504, 1363, 1280, 1216, 1208, 1228, 1279, 1373, 1512, 1681, 1830, 2021, 2245, 2221, 1964, 1768, 1602, 1445, 1306, 1211, 1142, 1126, 1147, 1210, 1305, 1440, 1597, 1798, 1980, 2199, 2176, 1926, 1726, 1551, 1381, 1250, 1149, 1108, 1073, 1084, 1156, 1257, 1387, 1548, 1728, 1931, 2168, 2107, 1862, 1687, 1499, 1341, 1215, 1116, 1058, 1034, 1056, 1117, 1211, 1357, 1518, 1695, 1903, 2082, 2092, 1879, 1677, 1478, 1324, 1189, 1092, 1039, 1024, 1037, 1089, 1190, 1331, 1501, 1685, 1895, 2074, 2090, 1867, 1673, 1499, 1324, 1205, 1106, 1045, 1030, 1046, 1108, 1201, 1324, 1489, 1689, 1886, 2064, 2134, 1879, 1709, 1510, 1358, 1222, 1127, 1064, 1064, 1081, 1126, 1228, 1361, 1526, 1713, 1911, 2103, 2174, 1914, 1733, 1570, 1414, 1287, 1186, 1121, 1103, 1121, 1177, 1291, 1403, 1579, 1755, 1945, 2152, 2276, 2001, 1798, 1623, 1469, 1344, 1242, 1189, 1181, 1198, 1245, 1349, 1482, 1625, 1825, 1996, 2219, 2365, 2070, 1882, 1724, 1576, 1436, 1328, 1271, 1261, 1276, 1341, 1419, 1548, 1716, 1902, 2056, 2342, 2526, 2167, 1959, 1808, 1670, 1531, 1435, 1372, 1365, 1362, 1438, 1521, 1654, 1811, 1952, 2170, 2456, 2711, 2292, 2055, 1870, 1783, 1627, 1543, 1489, 1452, 1483, 1536, 1631, 1754, 1906, 2067, 2309, 2693, 2983, 2477, 2167, 1976, 1877, 1755, 1673, 1609, 1582, 1587, 1647, 1748, 1874, 1989, 2165, 2468, 2829]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2879, 2457, 2200, 2007, 1903, 1775, 1703, 1666, 1653, 1669, 1728, 1790, 1921, 2030, 2235, 2520, 2906, 2605, 2206, 1985, 1845, 1726, 1606, 1541, 1487, 1469, 1514, 1548, 1649, 1764, 1870, 2039, 2280, 2648, 2420, 2102, 1899, 1732, 1599, 1496, 1408, 1372, 1365, 1374, 1426, 1507, 1633, 1769, 1936, 2159, 2390, 2276, 1986, 1792, 1652, 1522, 1404, 1316, 1275, 1265, 1295, 1343, 1431, 1538, 1659, 1834, 2049, 2267, 2165, 1899, 1732, 1558, 1438, 1319, 1233, 1198, 1188, 1194, 1258, 1342, 1461, 1610, 1784, 1959, 2147, 2091, 1872, 1674, 1512, 1363, 1256, 1180, 1130, 1123, 1131, 1188, 1275, 1394, 1522, 1714, 1898, 2100, 2065, 1853, 1641, 1460, 1312, 1209, 1140, 1073, 1064, 1086, 1141, 1228, 1338, 1501, 1664, 1859, 2078, 2047, 1819, 1595, 1433, 1282, 1172, 1095, 1058, 1036, 1059, 1106, 1185, 1318, 1481, 1641, 1841, 2024, 2016, 1791, 1604, 1425, 1285, 1168, 1092, 1033, 1024, 1044, 1098, 1173, 1317, 1433, 1627, 1832, 2012, 1999, 1824, 1611, 1456, 1279, 1171, 1092, 1050, 1026, 1055, 1114, 1184, 1320, 1448, 1646, 1839, 2008, 2027, 1838, 1651, 1473, 1322, 1193, 1114, 1078, 1058, 1077, 1139, 1217, 1333, 1470, 1655, 1843, 2020, 2094, 1876, 1678, 1520, 1346, 1255, 1160, 1117, 1101, 1121, 1179, 1252, 1372, 1522, 1696, 1862, 2071, 2192, 1950, 1734, 1558, 1416, 1304, 1217, 1182, 1162, 1190, 1242, 1312, 1425, 1570, 1757, 1945, 2158, 2291, 1992, 1817, 1645, 1511, 1384, 1303, 1240, 1232, 1249, 1324, 1370, 1507, 1661, 1813, 2001, 2247, 2412, 2107, 1912, 1755, 1581, 1486, 1385, 1344, 1340, 1371, 1401, 1491, 1592, 1756, 1903, 2086, 2368, 2624, 2279, 2023, 1840, 1716, 1603, 1513, 1445, 1450, 1455, 1497, 1582, 1699, 1831, 1984, 2248, 2530, 2838, 2359, 2077, 1912, 1769, 1670, 1617, 1557, 1522, 1519, 1614, 1680, 1749, 1926, 2091, 2388, 2720]
                                       }
                                   }, {
                                       "name":    "2592x1944_D65_70",
                                       "resolution":    "2592x1944",
                                       "illumination":    "D65",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [2843, 2644, 2488, 2252, 2154, 2047, 1960, 1926, 1865, 1931, 1980, 2067, 2180, 2322, 2493, 2710, 2911, 2707, 2494, 2278, 2118, 2000, 1885, 1767, 1696, 1686, 1719, 1816, 1943, 2058, 2172, 2375, 2515, 2801, 2626, 2376, 2206, 2017, 1865, 1735, 1617, 1554, 1542, 1581, 1661, 1747, 1934, 2098, 2265, 2413, 2660, 2492, 2291, 2080, 1916, 1743, 1600, 1474, 1414, 1383, 1436, 1494, 1605, 1803, 1952, 2185, 2390, 2584, 2408, 2240, 2037, 1809, 1641, 1478, 1352, 1288, 1259, 1308, 1390, 1502, 1682, 1869, 2111, 2279, 2510, 2330, 2161, 1958, 1727, 1556, 1380, 1263, 1191, 1165, 1191, 1280, 1414, 1581, 1779, 2019, 2232, 2424, 2294, 2119, 1900, 1672, 1462, 1304, 1190, 1113, 1088, 1126, 1212, 1334, 1501, 1730, 1963, 2188, 2379, 2271, 2078, 1866, 1628, 1428, 1264, 1145, 1072, 1042, 1073, 1152, 1296, 1488, 1685, 1921, 2184, 2376, 2249, 2042, 1870, 1614, 1406, 1237, 1118, 1054, 1024, 1051, 1134, 1268, 1455, 1657, 1927, 2166, 2316, 2273, 2077, 1864, 1625, 1409, 1260, 1126, 1060, 1041, 1073, 1166, 1285, 1464, 1703, 1912, 2185, 2310, 2294, 2112, 1885, 1651, 1453, 1279, 1172, 1101, 1079, 1117, 1199, 1329, 1497, 1719, 1973, 2181, 2372, 2278, 2121, 1944, 1714, 1527, 1349, 1247, 1174, 1136, 1176, 1272, 1421, 1564, 1801, 2004, 2188, 2410, 2456, 2190, 2006, 1815, 1610, 1457, 1335, 1283, 1259, 1303, 1369, 1491, 1652, 1865, 2066, 2260, 2482, 2489, 2279, 2087, 1886, 1716, 1561, 1448, 1375, 1371, 1399, 1473, 1612, 1785, 1982, 2172, 2342, 2579, 2568, 2349, 2172, 2021, 1857, 1698, 1591, 1526, 1505, 1538, 1608, 1724, 1889, 2080, 2232, 2439, 2655, 2762, 2452, 2253, 2120, 1957, 1848, 1751, 1679, 1679, 1674, 1785, 1898, 2031, 2178, 2359, 2515, 2795, 2956, 2677, 2393, 2248, 2138, 2028, 1925, 1876, 1879, 1854, 1935, 2048, 2144, 2318, 2473, 2697, 2889]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2535, 2291, 2064, 1965, 1838, 1773, 1697, 1654, 1656, 1660, 1700, 1762, 1827, 1939, 2085, 2241, 2445, 2265, 2054, 1924, 1795, 1724, 1628, 1536, 1512, 1499, 1502, 1537, 1609, 1691, 1788, 1930, 2028, 2220, 2156, 1966, 1860, 1751, 1645, 1539, 1438, 1401, 1379, 1396, 1449, 1510, 1610, 1725, 1841, 1958, 2096, 2091, 1904, 1801, 1665, 1570, 1442, 1371, 1309, 1288, 1309, 1357, 1433, 1547, 1657, 1780, 1882, 2025, 2043, 1871, 1748, 1615, 1495, 1363, 1286, 1214, 1209, 1223, 1285, 1358, 1464, 1615, 1725, 1854, 1962, 2007, 1847, 1687, 1564, 1427, 1300, 1216, 1160, 1143, 1147, 1206, 1290, 1420, 1545, 1697, 1810, 1893, 1921, 1801, 1655, 1501, 1365, 1244, 1169, 1101, 1076, 1092, 1151, 1247, 1345, 1497, 1663, 1796, 1878, 1903, 1793, 1648, 1463, 1328, 1213, 1118, 1056, 1034, 1055, 1115, 1206, 1326, 1492, 1639, 1772, 1866, 1878, 1764, 1615, 1456, 1339, 1197, 1101, 1039, 1024, 1053, 1097, 1190, 1316, 1462, 1624, 1760, 1893, 1903, 1767, 1629, 1467, 1325, 1210, 1103, 1039, 1027, 1048, 1108, 1192, 1306, 1471, 1610, 1749, 1884, 1931, 1775, 1641, 1508, 1349, 1236, 1135, 1071, 1052, 1083, 1129, 1226, 1332, 1481, 1618, 1772, 1871, 1978, 1813, 1677, 1538, 1400, 1272, 1177, 1117, 1114, 1122, 1172, 1275, 1380, 1536, 1660, 1788, 1923, 1994, 1850, 1720, 1561, 1454, 1334, 1247, 1185, 1173, 1191, 1245, 1331, 1448, 1565, 1683, 1841, 1962, 2058, 1890, 1754, 1647, 1520, 1420, 1326, 1269, 1248, 1279, 1307, 1396, 1513, 1624, 1745, 1837, 1977, 2144, 1944, 1826, 1697, 1592, 1500, 1398, 1357, 1336, 1353, 1397, 1472, 1577, 1685, 1798, 1911, 2101, 2214, 2020, 1877, 1776, 1662, 1566, 1498, 1443, 1419, 1429, 1493, 1551, 1646, 1751, 1850, 2008, 2222, 2393, 2126, 1965, 1845, 1745, 1667, 1580, 1540, 1521, 1549, 1564, 1655, 1720, 1806, 1920, 2090, 2305]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2451, 2235, 2043, 1948, 1852, 1763, 1693, 1656, 1632, 1660, 1692, 1770, 1840, 1949, 2061, 2222, 2428, 2245, 2048, 1886, 1794, 1698, 1588, 1521, 1479, 1475, 1483, 1535, 1600, 1709, 1807, 1911, 2025, 2221, 2138, 1977, 1824, 1716, 1615, 1514, 1431, 1381, 1378, 1389, 1431, 1521, 1633, 1735, 1843, 1977, 2097, 2062, 1899, 1773, 1641, 1541, 1437, 1335, 1295, 1276, 1302, 1356, 1420, 1545, 1663, 1782, 1893, 2038, 1976, 1845, 1726, 1589, 1466, 1343, 1269, 1210, 1203, 1221, 1268, 1353, 1473, 1611, 1718, 1845, 1977, 1972, 1808, 1673, 1547, 1417, 1293, 1206, 1140, 1124, 1145, 1205, 1292, 1412, 1543, 1699, 1822, 1954, 1945, 1784, 1642, 1506, 1360, 1242, 1146, 1107, 1073, 1083, 1153, 1249, 1366, 1503, 1644, 1788, 1939, 1895, 1734, 1611, 1461, 1324, 1209, 1115, 1058, 1034, 1056, 1116, 1205, 1339, 1478, 1618, 1769, 1875, 1885, 1750, 1604, 1442, 1309, 1184, 1091, 1039, 1024, 1037, 1088, 1185, 1315, 1463, 1611, 1764, 1870, 1882, 1738, 1599, 1461, 1308, 1199, 1105, 1045, 1030, 1046, 1107, 1196, 1308, 1451, 1613, 1755, 1861, 1912, 1744, 1627, 1468, 1339, 1215, 1125, 1064, 1064, 1080, 1124, 1221, 1341, 1483, 1631, 1771, 1887, 1935, 1767, 1643, 1518, 1388, 1275, 1181, 1119, 1102, 1119, 1173, 1279, 1378, 1526, 1662, 1793, 1917, 2001, 1828, 1690, 1559, 1434, 1326, 1233, 1184, 1176, 1192, 1236, 1330, 1446, 1561, 1714, 1824, 1957, 2052, 1870, 1750, 1639, 1524, 1406, 1310, 1259, 1250, 1264, 1323, 1390, 1498, 1632, 1767, 1859, 2034, 2149, 1928, 1798, 1698, 1597, 1484, 1403, 1348, 1343, 1339, 1406, 1475, 1583, 1701, 1793, 1931, 2096, 2252, 2001, 1856, 1734, 1681, 1558, 1492, 1447, 1415, 1442, 1485, 1562, 1655, 1764, 1866, 2014, 2238, 2395, 2109, 1920, 1800, 1741, 1653, 1592, 1541, 1519, 1522, 1569, 1647, 1738, 1810, 1918, 2102, 2288]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2323, 2094, 1945, 1825, 1763, 1670, 1618, 1592, 1582, 1594, 1640, 1683, 1778, 1844, 1973, 2141, 2341, 2174, 1935, 1800, 1713, 1631, 1540, 1490, 1445, 1430, 1470, 1496, 1578, 1664, 1734, 1843, 1992, 2206, 2069, 1877, 1749, 1633, 1534, 1452, 1378, 1348, 1343, 1350, 1395, 1462, 1564, 1665, 1779, 1922, 2047, 1984, 1802, 1674, 1576, 1475, 1376, 1299, 1263, 1254, 1282, 1325, 1401, 1489, 1582, 1709, 1853, 1977, 1915, 1744, 1633, 1501, 1405, 1302, 1224, 1192, 1183, 1189, 1248, 1324, 1426, 1548, 1678, 1794, 1901, 1869, 1732, 1591, 1466, 1340, 1246, 1175, 1128, 1121, 1129, 1183, 1264, 1369, 1475, 1626, 1753, 1876, 1857, 1723, 1567, 1422, 1295, 1202, 1138, 1072, 1064, 1085, 1139, 1221, 1320, 1460, 1588, 1728, 1867, 1847, 1698, 1530, 1400, 1268, 1167, 1094, 1058, 1036, 1059, 1105, 1180, 1302, 1444, 1571, 1716, 1829, 1824, 1675, 1539, 1393, 1272, 1164, 1091, 1033, 1024, 1044, 1097, 1169, 1302, 1401, 1559, 1710, 1820, 1808, 1702, 1544, 1421, 1265, 1166, 1091, 1050, 1026, 1055, 1113, 1179, 1304, 1414, 1575, 1715, 1816, 1826, 1710, 1576, 1434, 1305, 1187, 1112, 1077, 1058, 1076, 1137, 1210, 1315, 1432, 1580, 1714, 1821, 1871, 1735, 1595, 1473, 1324, 1245, 1156, 1115, 1100, 1119, 1174, 1242, 1349, 1475, 1610, 1723, 1853, 1936, 1786, 1635, 1501, 1385, 1288, 1209, 1177, 1158, 1185, 1233, 1295, 1393, 1512, 1655, 1782, 1909, 1995, 1807, 1695, 1569, 1465, 1358, 1287, 1230, 1223, 1238, 1307, 1345, 1461, 1583, 1692, 1814, 1961, 2063, 1881, 1759, 1653, 1518, 1443, 1357, 1322, 1320, 1348, 1372, 1448, 1528, 1654, 1752, 1864, 2030, 2188, 1991, 1831, 1708, 1623, 1537, 1464, 1407, 1413, 1416, 1450, 1518, 1608, 1701, 1799, 1967, 2120, 2811, 2350, 2039, 1890, 1710, 1625, 1539, 1519, 1488, 1506, 1568, 1635, 1704, 1849, 2048, 2357, 2736]
                                       }
                                   }, {
                                       "name":    "2592x1944_D75_100",
                                       "resolution":    "2592x1944",
                                       "illumination":    "D75",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [3532, 3025, 2648, 2463, 2255, 2167, 2007, 1928, 1947, 1954, 2057, 2120, 2272, 2530, 2796, 3125, 3632, 3190, 2754, 2439, 2226, 2041, 1901, 1779, 1720, 1712, 1728, 1843, 1965, 2124, 2321, 2530, 2893, 3282, 2891, 2605, 2314, 2047, 1891, 1733, 1611, 1557, 1518, 1546, 1657, 1760, 1970, 2165, 2389, 2661, 3027, 2813, 2443, 2164, 1945, 1734, 1592, 1465, 1393, 1378, 1429, 1498, 1606, 1822, 2042, 2281, 2508, 2826, 2609, 2329, 2065, 1814, 1610, 1438, 1327, 1262, 1237, 1293, 1373, 1500, 1691, 1919, 2182, 2410, 2709, 2548, 2222, 1970, 1722, 1530, 1366, 1244, 1183, 1157, 1180, 1270, 1394, 1540, 1804, 2086, 2336, 2649, 2475, 2166, 1910, 1625, 1453, 1275, 1181, 1106, 1086, 1116, 1196, 1336, 1489, 1723, 2019, 2291, 2602, 2406, 2135, 1871, 1599, 1409, 1246, 1130, 1061, 1038, 1051, 1139, 1289, 1448, 1700, 1952, 2238, 2550, 2440, 2139, 1866, 1586, 1388, 1230, 1111, 1039, 1024, 1042, 1129, 1255, 1444, 1683, 1969, 2257, 2546, 2448, 2142, 1869, 1612, 1405, 1229, 1109, 1058, 1031, 1054, 1146, 1269, 1451, 1688, 1985, 2264, 2522, 2455, 2165, 1909, 1637, 1439, 1285, 1158, 1086, 1067, 1104, 1196, 1309, 1487, 1728, 2023, 2308, 2505, 2528, 2222, 1987, 1725, 1493, 1341, 1233, 1158, 1126, 1154, 1256, 1403, 1563, 1819, 2064, 2355, 2633, 2622, 2301, 2035, 1824, 1583, 1432, 1306, 1267, 1227, 1283, 1353, 1490, 1657, 1912, 2150, 2434, 2750, 2777, 2457, 2203, 1913, 1713, 1553, 1441, 1382, 1369, 1401, 1485, 1584, 1763, 1990, 2270, 2492, 2878, 2989, 2562, 2311, 2093, 1900, 1716, 1583, 1519, 1512, 1536, 1611, 1752, 1938, 2159, 2390, 2692, 3063, 3259, 2756, 2462, 2248, 2020, 1902, 1772, 1696, 1673, 1716, 1807, 1933, 2124, 2322, 2548, 2840, 3281, 3456, 2987, 2632, 2438, 2231, 2066, 1973, 1928, 1874, 1941, 2013, 2122, 2305, 2488, 2762, 3057, 3665]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [3033, 2654, 2336, 2156, 2005, 1881, 1781, 1719, 1716, 1727, 1799, 1885, 1988, 2126, 2348, 2611, 3011, 2718, 2345, 2109, 1934, 1793, 1690, 1578, 1534, 1524, 1526, 1580, 1694, 1787, 1957, 2110, 2340, 2636, 2526, 2215, 2002, 1854, 1720, 1571, 1471, 1427, 1397, 1424, 1468, 1564, 1690, 1829, 1976, 2180, 2442, 2378, 2097, 1908, 1748, 1594, 1469, 1379, 1321, 1312, 1325, 1380, 1452, 1586, 1735, 1919, 2084, 2310, 2236, 2013, 1836, 1667, 1511, 1378, 1283, 1223, 1204, 1217, 1295, 1374, 1504, 1656, 1847, 2000, 2227, 2223, 1974, 1764, 1595, 1432, 1307, 1213, 1168, 1139, 1158, 1214, 1292, 1430, 1587, 1775, 1951, 2144, 2120, 1920, 1730, 1539, 1376, 1251, 1164, 1093, 1075, 1090, 1147, 1241, 1381, 1539, 1713, 1901, 2092, 2112, 1885, 1688, 1491, 1356, 1219, 1105, 1050, 1037, 1057, 1116, 1206, 1349, 1519, 1716, 1889, 2083, 2085, 1887, 1684, 1499, 1337, 1196, 1099, 1040, 1027, 1043, 1093, 1196, 1330, 1495, 1681, 1843, 2039, 2115, 1875, 1684, 1503, 1347, 1199, 1101, 1043, 1024, 1041, 1108, 1193, 1331, 1484, 1671, 1879, 2050, 2125, 1893, 1691, 1523, 1362, 1232, 1130, 1073, 1051, 1071, 1127, 1236, 1362, 1526, 1699, 1894, 2073, 2160, 1945, 1763, 1570, 1425, 1273, 1179, 1125, 1111, 1130, 1187, 1288, 1404, 1578, 1748, 1925, 2128, 2220, 2003, 1825, 1614, 1462, 1350, 1257, 1193, 1182, 1189, 1256, 1337, 1476, 1632, 1802, 2002, 2188, 2364, 2067, 1883, 1717, 1569, 1442, 1343, 1294, 1258, 1271, 1339, 1428, 1546, 1695, 1905, 2044, 2277, 2497, 2149, 1966, 1823, 1665, 1538, 1426, 1375, 1360, 1369, 1435, 1513, 1631, 1794, 1943, 2139, 2429, 2658, 2301, 2075, 1897, 1765, 1629, 1543, 1480, 1467, 1469, 1537, 1643, 1757, 1872, 2040, 2266, 2655, 2879, 2503, 2202, 2018, 1845, 1746, 1655, 1598, 1598, 1613, 1669, 1736, 1854, 1963, 2145, 2427, 2885]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [3104, 2663, 2297, 2136, 1960, 1885, 1816, 1741, 1726, 1758, 1779, 1896, 1999, 2169, 2365, 2647, 3034, 2688, 2312, 2094, 1947, 1788, 1680, 1614, 1526, 1530, 1528, 1604, 1691, 1816, 1955, 2122, 2357, 2670, 2529, 2178, 1996, 1824, 1699, 1572, 1465, 1407, 1396, 1423, 1478, 1570, 1704, 1859, 1999, 2202, 2540, 2353, 2077, 1877, 1722, 1584, 1462, 1377, 1324, 1299, 1330, 1382, 1474, 1601, 1751, 1939, 2105, 2376, 2239, 1999, 1825, 1654, 1499, 1387, 1292, 1222, 1206, 1237, 1292, 1382, 1520, 1685, 1863, 2045, 2242, 2201, 1948, 1764, 1574, 1443, 1307, 1211, 1156, 1140, 1151, 1217, 1308, 1446, 1603, 1789, 1979, 2170, 2119, 1896, 1698, 1529, 1372, 1243, 1164, 1107, 1079, 1087, 1164, 1264, 1401, 1571, 1738, 1941, 2135, 2086, 1880, 1672, 1491, 1340, 1206, 1117, 1062, 1044, 1066, 1106, 1207, 1372, 1524, 1700, 1907, 2105, 2082, 1861, 1662, 1485, 1331, 1195, 1092, 1047, 1024, 1046, 1103, 1202, 1335, 1496, 1688, 1882, 2078, 2072, 1848, 1662, 1475, 1330, 1208, 1102, 1051, 1040, 1070, 1116, 1215, 1347, 1510, 1678, 1872, 2078, 2107, 1891, 1708, 1506, 1360, 1233, 1133, 1078, 1059, 1085, 1146, 1239, 1363, 1518, 1721, 1905, 2115, 2133, 1927, 1756, 1561, 1420, 1288, 1190, 1136, 1109, 1134, 1190, 1283, 1431, 1583, 1746, 1932, 2171, 2241, 1978, 1806, 1612, 1480, 1346, 1242, 1197, 1186, 1215, 1266, 1354, 1495, 1664, 1814, 2014, 2221, 2357, 2057, 1882, 1703, 1573, 1434, 1340, 1276, 1272, 1278, 1350, 1432, 1572, 1714, 1902, 2073, 2329, 2517, 2158, 1962, 1802, 1654, 1534, 1440, 1375, 1367, 1395, 1442, 1538, 1650, 1822, 1973, 2183, 2490, 2652, 2296, 2032, 1886, 1761, 1643, 1554, 1483, 1476, 1502, 1540, 1640, 1775, 1915, 2072, 2293, 2648, 2994, 2455, 2184, 2001, 1845, 1767, 1658, 1632, 1595, 1610, 1684, 1771, 1868, 2013, 2202, 2496, 2860]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2846, 2488, 2190, 2022, 1900, 1787, 1717, 1667, 1682, 1681, 1742, 1807, 1916, 2072, 2231, 2546, 2916, 2585, 2218, 1983, 1831, 1724, 1615, 1541, 1512, 1482, 1516, 1551, 1639, 1745, 1875, 2030, 2317, 2648, 2417, 2082, 1899, 1716, 1601, 1500, 1416, 1361, 1365, 1403, 1448, 1513, 1629, 1773, 1922, 2164, 2369, 2258, 1987, 1795, 1638, 1500, 1400, 1318, 1276, 1264, 1300, 1348, 1421, 1548, 1688, 1845, 2039, 2249, 2176, 1926, 1725, 1552, 1427, 1314, 1239, 1194, 1174, 1217, 1263, 1342, 1457, 1611, 1783, 1968, 2127, 2094, 1862, 1677, 1500, 1359, 1253, 1173, 1133, 1115, 1142, 1201, 1267, 1395, 1537, 1715, 1919, 2105, 2086, 1830, 1639, 1457, 1302, 1199, 1130, 1081, 1071, 1087, 1134, 1230, 1343, 1501, 1652, 1853, 2027, 2002, 1817, 1604, 1411, 1292, 1170, 1096, 1045, 1029, 1059, 1107, 1199, 1317, 1471, 1654, 1816, 2006, 2005, 1793, 1592, 1410, 1284, 1164, 1088, 1038, 1024, 1042, 1102, 1175, 1304, 1444, 1634, 1828, 2012, 2019, 1788, 1618, 1432, 1285, 1174, 1083, 1047, 1026, 1052, 1104, 1184, 1308, 1454, 1627, 1814, 2006, 2067, 1823, 1628, 1464, 1316, 1201, 1125, 1067, 1058, 1076, 1132, 1215, 1321, 1487, 1655, 1849, 2009, 2104, 1864, 1680, 1514, 1346, 1245, 1159, 1109, 1094, 1127, 1170, 1252, 1372, 1507, 1693, 1887, 2076, 2184, 1938, 1722, 1568, 1415, 1301, 1221, 1182, 1172, 1176, 1256, 1310, 1418, 1574, 1743, 1946, 2113, 2283, 2021, 1809, 1643, 1507, 1380, 1296, 1252, 1242, 1270, 1312, 1384, 1502, 1654, 1818, 2011, 2244, 2429, 2119, 1917, 1743, 1593, 1493, 1392, 1357, 1351, 1371, 1407, 1483, 1595, 1742, 1885, 2096, 2403, 2583, 2248, 1999, 1841, 1709, 1606, 1510, 1463, 1446, 1468, 1521, 1595, 1692, 1841, 1986, 2242, 2571, 2828, 2366, 2076, 1926, 1781, 1696, 1590, 1551, 1535, 1551, 1616, 1700, 1789, 1912, 2071, 2376, 2753]
                                       }
                                   }, {
                                       "name":    "2592x1944_D75_70",
                                       "resolution":    "2592x1944",
                                       "illumination":    "D75",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [2780, 2518, 2296, 2196, 2059, 2008, 1885, 1824, 1843, 1847, 1928, 1967, 2073, 2251, 2412, 2593, 2850, 2600, 2357, 2166, 2032, 1904, 1801, 1704, 1657, 1652, 1665, 1762, 1858, 1976, 2112, 2240, 2464, 2667, 2422, 2275, 2092, 1904, 1793, 1668, 1566, 1521, 1486, 1511, 1608, 1692, 1863, 2005, 2155, 2319, 2524, 2395, 2172, 1989, 1833, 1667, 1550, 1440, 1375, 1362, 1409, 1471, 1563, 1746, 1918, 2087, 2224, 2405, 2261, 2098, 1920, 1730, 1564, 1414, 1314, 1254, 1231, 1284, 1358, 1473, 1638, 1824, 2021, 2165, 2339, 2231, 2024, 1849, 1656, 1496, 1351, 1238, 1180, 1155, 1177, 1263, 1377, 1505, 1730, 1950, 2119, 2311, 2184, 1986, 1804, 1573, 1428, 1266, 1178, 1105, 1086, 1115, 1193, 1325, 1462, 1663, 1900, 2092, 2286, 2136, 1966, 1774, 1552, 1389, 1239, 1128, 1061, 1038, 1051, 1137, 1281, 1425, 1645, 1846, 2053, 2252, 2165, 1971, 1771, 1541, 1369, 1224, 1110, 1039, 1024, 1042, 1128, 1248, 1422, 1631, 1863, 2071, 2251, 2170, 1972, 1772, 1564, 1385, 1223, 1108, 1058, 1031, 1054, 1144, 1261, 1428, 1634, 1875, 2075, 2229, 2168, 1985, 1803, 1584, 1415, 1276, 1155, 1085, 1067, 1103, 1193, 1299, 1460, 1667, 1904, 2106, 2208, 2215, 2024, 1864, 1659, 1462, 1327, 1227, 1155, 1124, 1151, 1249, 1386, 1527, 1744, 1931, 2135, 2298, 2272, 2075, 1894, 1739, 1539, 1409, 1294, 1259, 1221, 1275, 1339, 1463, 1607, 1817, 1993, 2185, 2371, 2367, 2183, 2022, 1805, 1648, 1514, 1417, 1365, 1353, 1383, 1458, 1543, 1693, 1872, 2078, 2211, 2445, 2496, 2241, 2090, 1943, 1801, 1652, 1540, 1485, 1480, 1501, 1566, 1685, 1834, 2000, 2155, 2344, 2551, 2650, 2359, 2185, 2051, 1886, 1802, 1698, 1635, 1616, 1654, 1729, 1829, 1976, 2113, 2254, 2423, 2666, 2726, 2490, 2284, 2176, 2038, 1921, 1855, 1824, 1778, 1835, 1890, 1969, 2101, 2217, 2386, 2542, 2873]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2430, 2241, 2052, 1946, 1848, 1762, 1687, 1639, 1638, 1646, 1703, 1765, 1834, 1922, 2061, 2209, 2415, 2257, 2042, 1900, 1787, 1689, 1614, 1523, 1488, 1480, 1481, 1525, 1617, 1684, 1807, 1901, 2038, 2197, 2149, 1966, 1834, 1738, 1641, 1521, 1437, 1400, 1373, 1397, 1434, 1514, 1615, 1716, 1812, 1939, 2086, 2062, 1892, 1772, 1660, 1540, 1436, 1358, 1307, 1299, 1310, 1359, 1421, 1533, 1648, 1781, 1881, 2010, 1970, 1838, 1723, 1598, 1472, 1358, 1272, 1217, 1199, 1211, 1284, 1354, 1466, 1589, 1732, 1827, 1963, 1973, 1817, 1670, 1541, 1405, 1294, 1207, 1165, 1137, 1155, 1208, 1280, 1403, 1534, 1679, 1798, 1911, 1901, 1779, 1646, 1495, 1355, 1243, 1161, 1092, 1075, 1089, 1145, 1233, 1360, 1495, 1631, 1763, 1878, 1899, 1754, 1612, 1453, 1338, 1213, 1104, 1050, 1037, 1057, 1115, 1200, 1332, 1479, 1637, 1757, 1876, 1879, 1757, 1610, 1461, 1321, 1191, 1098, 1040, 1027, 1043, 1092, 1191, 1314, 1458, 1607, 1719, 1842, 1902, 1745, 1609, 1464, 1330, 1194, 1100, 1043, 1024, 1041, 1107, 1188, 1315, 1447, 1597, 1749, 1849, 1905, 1756, 1611, 1480, 1342, 1224, 1128, 1072, 1051, 1071, 1125, 1228, 1342, 1483, 1618, 1757, 1863, 1923, 1793, 1669, 1518, 1398, 1262, 1174, 1123, 1110, 1128, 1182, 1276, 1379, 1526, 1656, 1776, 1898, 1958, 1830, 1714, 1551, 1427, 1331, 1247, 1188, 1177, 1184, 1246, 1319, 1440, 1567, 1694, 1829, 1933, 2051, 1868, 1751, 1633, 1517, 1411, 1325, 1281, 1247, 1259, 1321, 1398, 1497, 1613, 1769, 1849, 1984, 2127, 1914, 1804, 1711, 1592, 1491, 1395, 1351, 1338, 1346, 1403, 1468, 1562, 1686, 1785, 1906, 2076, 2213, 2008, 1873, 1756, 1665, 1560, 1492, 1439, 1428, 1429, 1486, 1572, 1658, 1735, 1844, 1981, 2211, 2323, 2128, 1947, 1834, 1714, 1646, 1576, 1532, 1533, 1545, 1589, 1637, 1722, 1789, 1902, 2072, 2327]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2480, 2248, 2021, 1930, 1811, 1765, 1717, 1658, 1647, 1673, 1685, 1775, 1843, 1957, 2075, 2236, 2431, 2235, 2017, 1888, 1798, 1685, 1605, 1555, 1481, 1486, 1483, 1546, 1615, 1709, 1805, 1910, 2051, 2222, 2151, 1937, 1829, 1712, 1623, 1521, 1431, 1381, 1372, 1396, 1443, 1520, 1627, 1742, 1832, 1956, 2159, 2043, 1876, 1746, 1637, 1531, 1430, 1357, 1309, 1287, 1315, 1361, 1441, 1546, 1663, 1798, 1898, 2060, 1973, 1827, 1714, 1587, 1461, 1366, 1281, 1216, 1201, 1230, 1281, 1361, 1481, 1615, 1746, 1864, 1975, 1956, 1795, 1670, 1522, 1415, 1294, 1206, 1153, 1138, 1148, 1211, 1295, 1418, 1548, 1691, 1821, 1931, 1900, 1759, 1618, 1486, 1352, 1235, 1161, 1106, 1079, 1086, 1161, 1255, 1379, 1524, 1653, 1797, 1913, 1878, 1749, 1598, 1453, 1323, 1200, 1116, 1062, 1044, 1066, 1105, 1201, 1354, 1484, 1623, 1772, 1894, 1877, 1735, 1590, 1448, 1315, 1190, 1091, 1047, 1024, 1046, 1102, 1197, 1319, 1459, 1613, 1753, 1874, 1867, 1722, 1589, 1438, 1314, 1202, 1101, 1051, 1040, 1070, 1115, 1209, 1330, 1471, 1603, 1743, 1872, 1890, 1755, 1626, 1464, 1340, 1225, 1131, 1077, 1059, 1084, 1144, 1231, 1343, 1475, 1638, 1766, 1897, 1902, 1778, 1663, 1510, 1393, 1276, 1185, 1134, 1108, 1132, 1185, 1271, 1404, 1530, 1654, 1782, 1932, 1974, 1809, 1697, 1549, 1444, 1327, 1233, 1191, 1181, 1209, 1256, 1335, 1458, 1596, 1704, 1839, 1958, 2046, 1859, 1750, 1620, 1521, 1404, 1322, 1264, 1261, 1266, 1331, 1402, 1520, 1630, 1767, 1872, 2024, 2142, 1921, 1801, 1693, 1583, 1487, 1408, 1351, 1345, 1370, 1410, 1491, 1579, 1710, 1810, 1941, 2122, 2209, 2004, 1838, 1747, 1662, 1572, 1501, 1442, 1437, 1459, 1489, 1570, 1674, 1771, 1870, 2002, 2206, 2403, 2093, 1933, 1820, 1714, 1664, 1579, 1562, 1531, 1542, 1602, 1667, 1733, 1830, 1947, 2123, 2309]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2299, 2117, 1938, 1837, 1760, 1681, 1631, 1593, 1608, 1605, 1653, 1698, 1774, 1878, 1970, 2160, 2348, 2160, 1944, 1798, 1701, 1630, 1547, 1490, 1468, 1442, 1472, 1499, 1569, 1648, 1738, 1836, 2020, 2206, 2067, 1861, 1749, 1619, 1536, 1456, 1386, 1338, 1343, 1377, 1415, 1468, 1560, 1668, 1768, 1926, 2031, 1970, 1803, 1676, 1563, 1455, 1372, 1301, 1264, 1253, 1287, 1329, 1392, 1498, 1607, 1719, 1845, 1963, 1923, 1767, 1627, 1496, 1395, 1297, 1230, 1189, 1170, 1211, 1253, 1324, 1423, 1548, 1677, 1801, 1885, 1871, 1723, 1594, 1455, 1337, 1243, 1169, 1131, 1114, 1140, 1196, 1256, 1370, 1488, 1627, 1771, 1880, 1873, 1703, 1566, 1420, 1286, 1193, 1128, 1080, 1071, 1086, 1132, 1223, 1324, 1460, 1577, 1723, 1826, 1811, 1696, 1538, 1380, 1278, 1165, 1095, 1045, 1029, 1059, 1106, 1194, 1301, 1435, 1582, 1695, 1814, 1815, 1677, 1528, 1379, 1271, 1160, 1087, 1038, 1024, 1042, 1101, 1171, 1290, 1411, 1565, 1707, 1820, 1824, 1671, 1550, 1399, 1271, 1169, 1082, 1047, 1026, 1052, 1103, 1179, 1293, 1419, 1558, 1694, 1814, 1858, 1697, 1556, 1426, 1299, 1195, 1123, 1067, 1058, 1075, 1130, 1208, 1304, 1447, 1580, 1719, 1812, 1879, 1725, 1596, 1468, 1324, 1235, 1155, 1107, 1093, 1125, 1166, 1242, 1349, 1461, 1608, 1744, 1857, 1930, 1776, 1625, 1510, 1384, 1285, 1213, 1177, 1168, 1171, 1246, 1294, 1387, 1515, 1643, 1783, 1874, 1989, 1830, 1688, 1568, 1461, 1354, 1280, 1241, 1232, 1258, 1295, 1358, 1457, 1577, 1696, 1822, 1959, 2076, 1890, 1764, 1642, 1529, 1450, 1364, 1334, 1330, 1348, 1378, 1441, 1530, 1642, 1737, 1872, 2057, 2158, 1967, 1811, 1709, 1617, 1540, 1462, 1423, 1409, 1428, 1472, 1530, 1602, 1709, 1801, 1963, 2150, 2287, 2026, 1848, 1759, 1660, 1602, 1520, 1490, 1477, 1490, 1542, 1606, 1667, 1747, 1844, 2034, 2234]
                                       }
                                   }, {
                                       "name":    "2592x1944_HZ_100",
                                       "resolution":    "2592x1944",
                                       "illumination":    "HZ",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [4433, 3943, 3498, 3154, 2927, 2689, 2529, 2435, 2381, 2420, 2548, 2724, 2927, 3209, 3469, 4039, 4542, 4029, 3612, 3219, 2902, 2644, 2396, 2212, 2100, 2089, 2142, 2247, 2484, 2674, 3009, 3293, 3687, 4260, 3764, 3370, 3013, 2676, 2355, 2107, 1927, 1821, 1801, 1851, 1956, 2174, 2434, 2731, 3100, 3479, 3957, 3625, 3140, 2821, 2462, 2183, 1873, 1681, 1587, 1552, 1588, 1708, 1912, 2211, 2516, 2859, 3242, 3744, 3424, 3002, 2643, 2306, 1932, 1683, 1494, 1399, 1373, 1396, 1541, 1716, 1991, 2354, 2796, 3088, 3482, 3352, 2901, 2510, 2103, 1803, 1526, 1347, 1255, 1223, 1243, 1382, 1573, 1836, 2202, 2602, 3005, 3425, 3209, 2795, 2378, 1996, 1652, 1408, 1248, 1144, 1106, 1149, 1270, 1461, 1717, 2077, 2491, 2885, 3326, 3187, 2735, 2308, 1947, 1585, 1361, 1199, 1069, 1046, 1078, 1191, 1381, 1639, 2014, 2432, 2815, 3242, 3176, 2733, 2303, 1907, 1566, 1330, 1161, 1054, 1024, 1064, 1167, 1357, 1643, 1967, 2390, 2814, 3193, 3120, 2760, 2277, 1925, 1595, 1335, 1167, 1064, 1040, 1074, 1199, 1372, 1641, 1986, 2410, 2874, 3223, 3238, 2796, 2384, 1975, 1639, 1403, 1234, 1113, 1085, 1120, 1243, 1446, 1690, 2054, 2437, 2871, 3245, 3255, 2838, 2430, 2040, 1751, 1496, 1305, 1203, 1181, 1206, 1343, 1534, 1792, 2132, 2560, 2926, 3334, 3380, 2981, 2593, 2229, 1875, 1659, 1452, 1361, 1328, 1372, 1472, 1677, 1948, 2268, 2737, 3088, 3443, 3582, 3111, 2746, 2377, 2048, 1811, 1637, 1532, 1498, 1548, 1666, 1847, 2106, 2456, 2838, 3210, 3621, 3724, 3262, 2924, 2589, 2309, 2069, 1865, 1768, 1727, 1758, 1891, 2093, 2331, 2710, 3026, 3382, 3802, 3999, 3516, 3106, 2791, 2576, 2312, 2128, 2014, 1980, 2035, 2173, 2377, 2609, 2846, 3228, 3557, 4136, 4394, 3789, 3330, 3060, 2792, 2647, 2476, 2344, 2260, 2318, 2475, 2647, 2893, 3189, 3517, 3821, 4326]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [3295, 2882, 2520, 2356, 2168, 2081, 1960, 1911, 1883, 1923, 1961, 2066, 2181, 2348, 2568, 2837, 3273, 2906, 2541, 2290, 2102, 1954, 1821, 1752, 1673, 1657, 1662, 1723, 1856, 1980, 2138, 2298, 2577, 2898, 2691, 2389, 2198, 1993, 1851, 1685, 1594, 1519, 1502, 1538, 1600, 1703, 1868, 2005, 2199, 2379, 2734, 2564, 2292, 2054, 1862, 1703, 1556, 1463, 1382, 1370, 1411, 1464, 1563, 1727, 1922, 2102, 2300, 2535, 2433, 2182, 1966, 1802, 1610, 1437, 1340, 1287, 1258, 1296, 1368, 1468, 1609, 1804, 2018, 2204, 2445, 2399, 2109, 1867, 1684, 1511, 1352, 1247, 1185, 1191, 1190, 1253, 1375, 1531, 1704, 1921, 2128, 2317, 2318, 2085, 1815, 1611, 1446, 1297, 1181, 1112, 1103, 1122, 1191, 1308, 1472, 1652, 1869, 2096, 2299, 2242, 1996, 1795, 1588, 1402, 1227, 1137, 1071, 1045, 1088, 1142, 1257, 1409, 1618, 1830, 2061, 2209, 2238, 1999, 1796, 1556, 1373, 1228, 1109, 1048, 1027, 1065, 1121, 1238, 1397, 1597, 1815, 1987, 2250, 2230, 2004, 1765, 1562, 1390, 1225, 1116, 1047, 1024, 1057, 1149, 1261, 1386, 1581, 1787, 2015, 2263, 2269, 2007, 1812, 1600, 1419, 1268, 1147, 1074, 1062, 1087, 1163, 1279, 1410, 1620, 1847, 2020, 2250, 2300, 2039, 1859, 1639, 1454, 1328, 1209, 1150, 1138, 1147, 1215, 1337, 1488, 1668, 1877, 2077, 2321, 2397, 2118, 1943, 1712, 1522, 1399, 1297, 1237, 1213, 1248, 1308, 1424, 1582, 1745, 1954, 2132, 2374, 2507, 2232, 2008, 1808, 1638, 1492, 1388, 1321, 1309, 1340, 1392, 1492, 1644, 1825, 2005, 2234, 2534, 2682, 2302, 2112, 1919, 1756, 1621, 1519, 1437, 1450, 1433, 1533, 1619, 1756, 1924, 2128, 2361, 2664, 2812, 2469, 2184, 2030, 1899, 1760, 1646, 1579, 1558, 1545, 1648, 1746, 1895, 2042, 2206, 2482, 2792, 3032, 2630, 2402, 2172, 2012, 1862, 1771, 1702, 1718, 1754, 1777, 1926, 2029, 2143, 2337, 2660, 3072]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [3263, 2843, 2509, 2288, 2142, 2028, 1936, 1882, 1818, 1863, 1938, 2053, 2160, 2326, 2604, 2809, 3324, 2840, 2544, 2291, 2108, 1921, 1808, 1728, 1630, 1630, 1639, 1714, 1819, 1948, 2123, 2310, 2576, 2955, 2727, 2426, 2177, 1973, 1843, 1669, 1555, 1487, 1488, 1496, 1545, 1671, 1822, 2007, 2176, 2400, 2658, 2573, 2290, 2051, 1879, 1717, 1545, 1427, 1389, 1347, 1372, 1445, 1542, 1714, 1904, 2090, 2305, 2609, 2482, 2192, 1999, 1779, 1611, 1455, 1345, 1258, 1244, 1267, 1333, 1442, 1602, 1793, 2011, 2230, 2460, 2394, 2146, 1909, 1699, 1524, 1360, 1252, 1185, 1146, 1179, 1257, 1375, 1518, 1732, 1934, 2131, 2421, 2311, 2089, 1892, 1656, 1447, 1299, 1186, 1128, 1094, 1111, 1205, 1320, 1484, 1677, 1877, 2078, 2367, 2283, 2058, 1811, 1595, 1415, 1258, 1154, 1062, 1043, 1066, 1148, 1256, 1433, 1615, 1839, 2072, 2295, 2297, 2006, 1829, 1565, 1398, 1237, 1129, 1051, 1033, 1040, 1122, 1250, 1393, 1621, 1836, 2074, 2277, 2306, 2028, 1809, 1605, 1401, 1252, 1134, 1067, 1024, 1064, 1136, 1255, 1421, 1580, 1811, 2074, 2242, 2267, 2042, 1819, 1616, 1437, 1276, 1152, 1088, 1071, 1093, 1169, 1280, 1437, 1642, 1853, 2026, 2281, 2330, 2103, 1888, 1704, 1483, 1343, 1222, 1150, 1110, 1156, 1223, 1326, 1496, 1683, 1889, 2104, 2339, 2419, 2190, 1961, 1751, 1557, 1403, 1298, 1220, 1218, 1230, 1291, 1411, 1555, 1760, 1963, 2184, 2423, 2552, 2229, 2029, 1836, 1676, 1501, 1394, 1325, 1297, 1324, 1389, 1495, 1658, 1847, 2069, 2274, 2496, 2671, 2304, 2124, 1909, 1767, 1602, 1505, 1437, 1428, 1439, 1513, 1611, 1797, 1935, 2117, 2339, 2638, 2881, 2474, 2217, 2031, 1878, 1719, 1616, 1578, 1553, 1559, 1634, 1720, 1857, 2037, 2211, 2482, 2824, 3185, 2681, 2348, 2142, 1995, 1878, 1766, 1700, 1688, 1721, 1769, 1864, 1985, 2120, 2357, 2659, 2997]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2907, 2475, 2173, 1956, 1816, 1822, 1701, 1708, 1683, 1661, 1775, 1876, 1936, 2064, 2273, 2660, 2982, 2567, 2217, 1998, 1799, 1718, 1621, 1556, 1528, 1491, 1551, 1594, 1683, 1786, 1926, 2100, 2385, 2694, 2338, 2018, 1882, 1643, 1593, 1479, 1439, 1391, 1377, 1437, 1489, 1577, 1688, 1821, 2000, 2252, 2481, 2266, 1971, 1738, 1605, 1507, 1365, 1313, 1289, 1288, 1317, 1373, 1450, 1578, 1765, 1914, 2093, 2381, 2108, 1901, 1710, 1531, 1410, 1302, 1252, 1210, 1192, 1214, 1312, 1396, 1535, 1686, 1849, 2035, 2295, 2112, 1834, 1619, 1485, 1339, 1238, 1186, 1124, 1140, 1157, 1219, 1327, 1463, 1606, 1806, 2021, 2205, 2019, 1840, 1597, 1455, 1318, 1197, 1132, 1081, 1069, 1087, 1154, 1271, 1395, 1588, 1745, 1914, 2107, 1982, 1779, 1586, 1412, 1292, 1185, 1103, 1033, 1035, 1066, 1132, 1225, 1385, 1526, 1715, 1891, 2092, 1924, 1746, 1565, 1403, 1274, 1143, 1070, 1035, 1026, 1040, 1138, 1237, 1357, 1518, 1679, 1889, 2090, 2010, 1782, 1573, 1412, 1277, 1160, 1092, 1048, 1024, 1062, 1138, 1236, 1357, 1520, 1703, 1930, 2034, 1969, 1806, 1650, 1450, 1304, 1199, 1124, 1077, 1073, 1091, 1166, 1254, 1392, 1526, 1723, 1933, 2108, 2056, 1833, 1681, 1507, 1340, 1254, 1171, 1134, 1132, 1154, 1226, 1314, 1429, 1569, 1722, 1973, 2143, 2185, 1891, 1704, 1550, 1408, 1314, 1227, 1185, 1211, 1215, 1280, 1377, 1483, 1638, 1814, 2033, 2146, 2184, 1992, 1758, 1627, 1495, 1387, 1300, 1278, 1277, 1290, 1362, 1438, 1534, 1721, 1885, 2082, 2347, 2407, 2064, 1852, 1718, 1573, 1502, 1408, 1372, 1383, 1392, 1435, 1521, 1650, 1800, 1947, 2155, 2419, 2598, 2212, 2015, 1787, 1691, 1591, 1518, 1478, 1507, 1492, 1566, 1644, 1769, 1888, 2056, 2323, 2567, 2894, 2372, 2065, 1887, 1770, 1689, 1603, 1562, 1570, 1611, 1648, 1731, 1789, 1919, 2148, 2428, 2810]
                                       }
                                   }, {
                                       "name":    "2592x1944_HZ_70",
                                       "resolution":    "2592x1944",
                                       "illumination":    "HZ",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [3410, 3204, 2962, 2759, 2623, 2457, 2342, 2272, 2228, 2259, 2358, 2487, 2623, 2804, 2940, 3275, 3487, 3211, 3018, 2796, 2599, 2425, 2239, 2094, 2003, 1996, 2041, 2126, 2317, 2451, 2689, 2856, 3076, 3379, 3076, 2880, 2671, 2445, 2204, 2007, 1858, 1767, 1751, 1795, 1884, 2068, 2274, 2492, 2743, 2967, 3220, 3017, 2735, 2544, 2287, 2073, 1811, 1643, 1560, 1528, 1561, 1668, 1847, 2099, 2334, 2577, 2818, 3109, 2898, 2652, 2418, 2169, 1860, 1645, 1474, 1387, 1363, 1384, 1519, 1676, 1914, 2212, 2549, 2723, 2943, 2867, 2590, 2320, 2001, 1751, 1503, 1338, 1250, 1220, 1239, 1372, 1548, 1782, 2090, 2401, 2677, 2925, 2771, 2516, 2217, 1912, 1615, 1394, 1243, 1143, 1105, 1148, 1265, 1445, 1677, 1986, 2316, 2592, 2865, 2764, 2474, 2161, 1872, 1555, 1351, 1196, 1069, 1046, 1078, 1189, 1370, 1606, 1934, 2271, 2542, 2808, 2759, 2475, 2159, 1837, 1538, 1321, 1159, 1054, 1024, 1064, 1165, 1347, 1611, 1892, 2236, 2544, 2772, 2710, 2495, 2134, 1852, 1565, 1325, 1165, 1064, 1040, 1074, 1196, 1361, 1608, 1908, 2252, 2592, 2793, 2795, 2517, 2222, 1893, 1603, 1389, 1230, 1112, 1085, 1119, 1239, 1431, 1651, 1965, 2268, 2580, 2800, 2790, 2538, 2251, 1944, 1702, 1475, 1297, 1199, 1178, 1202, 1334, 1511, 1740, 2027, 2364, 2611, 2853, 2863, 2635, 2375, 2101, 1808, 1622, 1434, 1350, 1319, 1361, 1453, 1639, 1875, 2135, 2499, 2723, 2912, 2984, 2712, 2481, 2212, 1951, 1753, 1602, 1507, 1477, 1523, 1629, 1787, 2004, 2282, 2559, 2792, 3014, 3046, 2795, 2598, 2370, 2163, 1973, 1800, 1718, 1682, 1708, 1824, 1994, 2183, 2474, 2682, 2890, 3104, 3189, 2944, 2705, 2506, 2367, 2165, 2018, 1925, 1897, 1944, 2059, 2222, 2395, 2552, 2803, 2976, 3289, 3383, 3089, 2831, 2683, 2510, 2421, 2295, 2191, 2121, 2168, 2294, 2421, 2595, 2788, 2977, 3113, 3335]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2614, 2411, 2196, 2109, 1985, 1934, 1844, 1809, 1786, 1819, 1844, 1921, 1996, 2103, 2234, 2378, 2598, 2393, 2193, 2046, 1928, 1828, 1730, 1680, 1615, 1602, 1604, 1654, 1761, 1851, 1958, 2053, 2221, 2388, 2272, 2104, 1996, 1857, 1757, 1624, 1550, 1485, 1471, 1503, 1556, 1640, 1772, 1868, 1997, 2096, 2305, 2204, 2050, 1895, 1760, 1639, 1517, 1438, 1365, 1354, 1392, 1439, 1524, 1660, 1813, 1936, 2056, 2182, 2124, 1977, 1835, 1719, 1564, 1413, 1327, 1278, 1251, 1287, 1354, 1442, 1563, 1721, 1880, 1995, 2133, 2113, 1929, 1759, 1622, 1478, 1337, 1240, 1182, 1188, 1187, 1246, 1359, 1497, 1640, 1807, 1945, 2048, 2059, 1918, 1721, 1560, 1421, 1287, 1178, 1111, 1102, 1121, 1188, 1298, 1446, 1598, 1768, 1927, 2044, 2004, 1848, 1707, 1542, 1382, 1221, 1135, 1071, 1045, 1088, 1140, 1250, 1389, 1570, 1738, 1903, 1977, 2003, 1852, 1709, 1514, 1355, 1222, 1108, 1048, 1027, 1065, 1120, 1232, 1378, 1552, 1726, 1842, 2012, 1994, 1855, 1680, 1518, 1371, 1219, 1115, 1047, 1024, 1057, 1147, 1254, 1367, 1536, 1700, 1864, 2021, 2020, 1852, 1718, 1550, 1396, 1259, 1145, 1073, 1062, 1086, 1160, 1270, 1387, 1569, 1749, 1863, 2004, 2034, 1871, 1752, 1581, 1425, 1314, 1204, 1148, 1136, 1145, 1209, 1323, 1457, 1607, 1768, 1903, 2051, 2096, 1925, 1815, 1639, 1483, 1377, 1286, 1230, 1207, 1241, 1296, 1401, 1538, 1668, 1825, 1936, 2078, 2161, 2001, 1857, 1713, 1580, 1458, 1367, 1307, 1296, 1325, 1371, 1458, 1585, 1728, 1854, 2003, 2181, 2266, 2035, 1925, 1794, 1673, 1566, 1481, 1409, 1422, 1405, 1494, 1564, 1673, 1798, 1938, 2082, 2252, 2325, 2138, 1961, 1868, 1781, 1676, 1584, 1529, 1511, 1498, 1586, 1664, 1777, 1878, 1978, 2148, 2311, 2430, 2223, 2104, 1959, 1854, 1745, 1678, 1624, 1640, 1670, 1683, 1800, 1869, 1936, 2053, 2246, 2458]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2591, 2382, 2187, 2054, 1964, 1888, 1822, 1783, 1729, 1766, 1824, 1910, 1979, 2085, 2262, 2357, 2634, 2345, 2195, 2047, 1933, 1800, 1718, 1658, 1575, 1577, 1584, 1646, 1728, 1823, 1946, 2062, 2220, 2429, 2299, 2133, 1979, 1840, 1750, 1610, 1514, 1456, 1458, 1464, 1505, 1611, 1732, 1869, 1978, 2113, 2248, 2211, 2048, 1893, 1775, 1651, 1507, 1404, 1371, 1332, 1355, 1421, 1504, 1649, 1797, 1926, 2060, 2239, 2162, 1985, 1863, 1699, 1564, 1430, 1332, 1250, 1238, 1259, 1320, 1418, 1556, 1711, 1874, 2017, 2145, 2109, 1960, 1796, 1635, 1490, 1345, 1245, 1182, 1144, 1176, 1250, 1359, 1485, 1665, 1818, 1948, 2130, 2053, 1921, 1788, 1602, 1422, 1289, 1183, 1127, 1093, 1110, 1201, 1309, 1457, 1621, 1775, 1912, 2098, 2037, 1900, 1721, 1549, 1394, 1251, 1152, 1062, 1043, 1066, 1146, 1249, 1411, 1567, 1746, 1912, 2047, 2050, 1858, 1738, 1522, 1379, 1231, 1128, 1051, 1033, 1040, 1121, 1243, 1374, 1574, 1745, 1916, 2034, 2055, 1875, 1719, 1558, 1381, 1245, 1132, 1067, 1024, 1064, 1134, 1248, 1400, 1535, 1721, 1914, 2004, 2018, 1882, 1724, 1565, 1413, 1267, 1149, 1087, 1071, 1092, 1166, 1271, 1413, 1589, 1754, 1868, 2029, 2058, 1924, 1778, 1640, 1452, 1329, 1216, 1148, 1109, 1153, 1217, 1312, 1464, 1621, 1779, 1925, 2065, 2113, 1984, 1831, 1674, 1515, 1381, 1287, 1214, 1212, 1223, 1280, 1389, 1513, 1682, 1832, 1979, 2116, 2195, 1999, 1874, 1737, 1614, 1466, 1373, 1310, 1285, 1309, 1368, 1460, 1598, 1747, 1908, 2035, 2152, 2257, 2037, 1935, 1785, 1683, 1549, 1468, 1409, 1402, 1411, 1475, 1557, 1709, 1808, 1929, 2064, 2233, 2375, 2141, 1987, 1869, 1763, 1640, 1557, 1528, 1507, 1511, 1573, 1640, 1745, 1874, 1982, 2148, 2334, 2537, 2261, 2061, 1935, 1840, 1759, 1674, 1622, 1613, 1640, 1676, 1747, 1832, 1917, 2068, 2245, 2405]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2342, 2107, 1924, 1783, 1690, 1711, 1617, 1629, 1609, 1587, 1682, 1757, 1790, 1871, 2003, 2246, 2395, 2147, 1943, 1810, 1674, 1624, 1553, 1503, 1483, 1450, 1504, 1537, 1608, 1683, 1781, 1893, 2073, 2239, 2008, 1811, 1735, 1556, 1529, 1437, 1407, 1366, 1354, 1409, 1453, 1526, 1613, 1709, 1832, 1996, 2115, 1976, 1790, 1628, 1534, 1461, 1340, 1296, 1276, 1276, 1303, 1353, 1419, 1526, 1675, 1777, 1889, 2064, 1870, 1746, 1615, 1477, 1379, 1286, 1242, 1204, 1187, 1208, 1300, 1375, 1495, 1615, 1734, 1856, 2016, 1885, 1700, 1543, 1441, 1318, 1228, 1181, 1122, 1138, 1154, 1213, 1313, 1434, 1551, 1706, 1856, 1959, 1820, 1712, 1529, 1418, 1301, 1191, 1130, 1080, 1069, 1086, 1151, 1262, 1373, 1539, 1659, 1774, 1890, 1795, 1664, 1522, 1381, 1278, 1180, 1102, 1033, 1035, 1066, 1130, 1219, 1366, 1485, 1636, 1759, 1883, 1749, 1637, 1504, 1373, 1261, 1140, 1069, 1035, 1026, 1040, 1137, 1231, 1340, 1479, 1605, 1759, 1883, 1817, 1666, 1510, 1381, 1264, 1156, 1091, 1048, 1024, 1062, 1136, 1229, 1339, 1480, 1625, 1792, 1837, 1780, 1683, 1575, 1413, 1288, 1193, 1122, 1076, 1073, 1090, 1163, 1246, 1371, 1483, 1640, 1790, 1891, 1841, 1699, 1597, 1461, 1319, 1244, 1167, 1132, 1130, 1151, 1220, 1301, 1402, 1517, 1633, 1816, 1910, 1930, 1738, 1609, 1494, 1378, 1297, 1219, 1180, 1206, 1209, 1269, 1357, 1447, 1573, 1704, 1855, 1900, 1913, 1807, 1645, 1554, 1450, 1360, 1284, 1266, 1266, 1277, 1342, 1408, 1486, 1636, 1752, 1880, 2038, 2060, 1847, 1710, 1621, 1511, 1458, 1378, 1348, 1360, 1367, 1403, 1475, 1579, 1691, 1788, 1919, 2069, 2169, 1940, 1824, 1664, 1601, 1526, 1469, 1437, 1465, 1450, 1512, 1573, 1668, 1749, 1857, 2025, 2147, 2333, 2031, 1840, 1727, 1651, 1596, 1531, 1500, 1509, 1543, 1570, 1633, 1667, 1753, 1905, 2072, 2274]
                                       }
                                   }, {
                                       "name":    "2592x1944_TL84_100",
                                       "resolution":    "2592x1944",
                                       "illumination":    "TL84",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [3393, 2938, 2568, 2383, 2206, 2061, 1916, 1870, 1840, 1867, 1912, 2053, 2232, 2414, 2637, 2956, 3383, 3109, 2696, 2410, 2185, 1996, 1824, 1693, 1644, 1619, 1660, 1727, 1855, 2018, 2206, 2498, 2762, 3057, 2857, 2555, 2269, 2024, 1800, 1660, 1550, 1482, 1452, 1471, 1551, 1658, 1858, 2072, 2297, 2608, 2980, 2738, 2404, 2131, 1888, 1675, 1504, 1409, 1333, 1319, 1338, 1414, 1538, 1748, 1925, 2178, 2489, 2760, 2573, 2278, 2015, 1761, 1527, 1398, 1290, 1231, 1198, 1234, 1295, 1411, 1594, 1825, 2094, 2324, 2643, 2515, 2267, 1893, 1657, 1462, 1312, 1214, 1155, 1138, 1142, 1232, 1337, 1477, 1717, 1985, 2279, 2559, 2401, 2105, 1844, 1598, 1394, 1252, 1152, 1089, 1067, 1090, 1168, 1280, 1403, 1625, 1921, 2228, 2534, 2389, 2087, 1804, 1523, 1337, 1212, 1101, 1051, 1050, 1051, 1120, 1222, 1398, 1608, 1888, 2183, 2501, 2367, 2077, 1800, 1537, 1326, 1186, 1098, 1051, 1024, 1044, 1111, 1206, 1366, 1570, 1859, 2163, 2475, 2356, 2090, 1791, 1536, 1337, 1197, 1089, 1039, 1033, 1061, 1121, 1217, 1355, 1581, 1868, 2176, 2439, 2397, 2124, 1856, 1575, 1359, 1231, 1123, 1076, 1060, 1085, 1154, 1244, 1403, 1623, 1910, 2220, 2489, 2464, 2190, 1915, 1641, 1421, 1289, 1187, 1135, 1112, 1119, 1185, 1318, 1468, 1687, 1966, 2266, 2539, 2623, 2268, 2013, 1729, 1517, 1365, 1256, 1207, 1196, 1215, 1279, 1378, 1551, 1796, 2069, 2305, 2620, 2787, 2380, 2091, 1836, 1637, 1472, 1368, 1297, 1280, 1326, 1379, 1484, 1711, 1925, 2199, 2455, 2767, 2861, 2476, 2228, 2014, 1816, 1619, 1503, 1441, 1417, 1450, 1525, 1639, 1805, 2056, 2286, 2568, 2967, 3046, 2670, 2393, 2172, 1936, 1823, 1659, 1616, 1581, 1603, 1715, 1799, 1977, 2208, 2474, 2725, 3104, 3303, 2907, 2545, 2328, 2119, 1964, 1904, 1798, 1776, 1806, 1887, 1993, 2191, 2398, 2637, 2943, 3318]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [3038, 2630, 2392, 2130, 2048, 1904, 1806, 1756, 1734, 1793, 1844, 1901, 2034, 2143, 2397, 2611, 3031, 2738, 2374, 2149, 1965, 1821, 1705, 1613, 1553, 1542, 1558, 1595, 1706, 1829, 1947, 2106, 2327, 2674, 2515, 2212, 2023, 1854, 1703, 1583, 1469, 1421, 1406, 1431, 1492, 1548, 1704, 1881, 2016, 2222, 2511, 2434, 2133, 1943, 1750, 1592, 1456, 1369, 1306, 1321, 1318, 1386, 1469, 1596, 1764, 1917, 2133, 2352, 2323, 2044, 1867, 1674, 1508, 1372, 1282, 1233, 1217, 1226, 1295, 1381, 1500, 1663, 1849, 2030, 2218, 2229, 1979, 1788, 1608, 1434, 1293, 1208, 1155, 1143, 1149, 1206, 1297, 1413, 1595, 1801, 1973, 2181, 2141, 1933, 1729, 1549, 1370, 1243, 1157, 1079, 1074, 1093, 1155, 1237, 1385, 1542, 1718, 1901, 2125, 2104, 1898, 1697, 1477, 1334, 1201, 1108, 1062, 1036, 1057, 1121, 1217, 1337, 1506, 1690, 1880, 2072, 2094, 1871, 1679, 1485, 1329, 1180, 1095, 1047, 1024, 1034, 1090, 1195, 1323, 1470, 1700, 1867, 2011, 2096, 1869, 1682, 1471, 1338, 1193, 1090, 1028, 1028, 1047, 1102, 1198, 1314, 1484, 1659, 1867, 2049, 2157, 1919, 1704, 1515, 1359, 1218, 1118, 1071, 1043, 1070, 1118, 1230, 1340, 1526, 1695, 1876, 2083, 2194, 1941, 1772, 1553, 1400, 1265, 1166, 1116, 1094, 1116, 1182, 1274, 1392, 1555, 1741, 1918, 2143, 2223, 2016, 1804, 1621, 1457, 1330, 1246, 1174, 1167, 1189, 1253, 1333, 1464, 1619, 1813, 1968, 2193, 2363, 2090, 1896, 1723, 1553, 1419, 1325, 1282, 1254, 1282, 1339, 1422, 1537, 1695, 1889, 2076, 2322, 2494, 2180, 1991, 1801, 1658, 1540, 1438, 1368, 1360, 1375, 1417, 1524, 1634, 1795, 1958, 2171, 2452, 2689, 2337, 2072, 1921, 1762, 1654, 1551, 1480, 1481, 1497, 1561, 1648, 1746, 1904, 2020, 2299, 2614, 2978, 2508, 2216, 2052, 1888, 1753, 1669, 1635, 1598, 1623, 1660, 1766, 1846, 1995, 2186, 2516, 2898]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [3052, 2652, 2355, 2137, 1981, 1863, 1790, 1730, 1711, 1728, 1784, 1884, 2010, 2146, 2345, 2630, 3101, 2676, 2372, 2106, 1963, 1792, 1679, 1585, 1508, 1508, 1518, 1594, 1680, 1837, 1963, 2163, 2369, 2710, 2579, 2225, 1999, 1868, 1717, 1560, 1440, 1409, 1398, 1412, 1458, 1554, 1695, 1842, 2021, 2210, 2534, 2427, 2139, 1907, 1752, 1579, 1463, 1344, 1307, 1287, 1292, 1374, 1461, 1596, 1752, 1934, 2101, 2371, 2322, 2035, 1865, 1665, 1490, 1374, 1274, 1209, 1194, 1211, 1270, 1364, 1493, 1677, 1875, 2070, 2281, 2285, 2000, 1781, 1607, 1433, 1316, 1199, 1146, 1133, 1140, 1209, 1295, 1460, 1610, 1803, 2011, 2245, 2164, 1973, 1757, 1556, 1382, 1252, 1158, 1095, 1070, 1088, 1151, 1257, 1388, 1583, 1747, 1936, 2165, 2141, 1918, 1716, 1493, 1348, 1214, 1110, 1062, 1036, 1057, 1116, 1222, 1359, 1518, 1716, 1916, 2104, 2125, 1878, 1701, 1499, 1333, 1203, 1093, 1043, 1028, 1035, 1096, 1202, 1344, 1504, 1703, 1917, 2125, 2090, 1899, 1712, 1491, 1353, 1209, 1104, 1045, 1024, 1047, 1116, 1201, 1338, 1520, 1701, 1878, 2101, 2123, 1933, 1729, 1539, 1375, 1230, 1124, 1071, 1058, 1078, 1149, 1225, 1349, 1538, 1734, 1919, 2129, 2224, 1977, 1767, 1561, 1427, 1275, 1176, 1122, 1098, 1125, 1180, 1287, 1411, 1572, 1776, 1967, 2203, 2316, 2028, 1834, 1653, 1478, 1353, 1234, 1190, 1171, 1192, 1249, 1342, 1483, 1638, 1835, 2025, 2266, 2446, 2121, 1914, 1733, 1553, 1436, 1331, 1272, 1256, 1276, 1330, 1416, 1565, 1723, 1926, 2103, 2350, 2532, 2228, 1993, 1821, 1684, 1513, 1418, 1363, 1358, 1367, 1428, 1531, 1667, 1820, 1996, 2186, 2500, 2708, 2384, 2081, 1903, 1787, 1649, 1535, 1477, 1451, 1479, 1530, 1635, 1766, 1917, 2070, 2330, 2641, 2994, 2519, 2225, 2031, 1888, 1760, 1670, 1586, 1586, 1593, 1636, 1761, 1852, 2002, 2209, 2485, 2887]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2772, 2376, 2045, 1884, 1785, 1690, 1639, 1587, 1583, 1620, 1677, 1720, 1862, 1987, 2161, 2436, 2901, 2523, 2131, 1924, 1752, 1644, 1563, 1475, 1458, 1430, 1472, 1512, 1616, 1724, 1847, 2041, 2277, 2569, 2345, 2032, 1815, 1660, 1548, 1438, 1380, 1337, 1323, 1366, 1417, 1491, 1589, 1727, 1867, 2113, 2359, 2170, 1895, 1752, 1594, 1435, 1362, 1271, 1236, 1252, 1265, 1319, 1394, 1497, 1668, 1809, 2014, 2249, 2088, 1879, 1653, 1516, 1386, 1270, 1217, 1187, 1182, 1180, 1255, 1342, 1425, 1596, 1780, 1934, 2149, 2040, 1815, 1630, 1447, 1305, 1233, 1171, 1116, 1120, 1140, 1194, 1261, 1382, 1529, 1700, 1868, 2065, 1999, 1745, 1598, 1409, 1287, 1190, 1120, 1071, 1071, 1105, 1142, 1232, 1352, 1476, 1642, 1838, 2016, 1966, 1759, 1561, 1370, 1244, 1167, 1098, 1058, 1045, 1063, 1115, 1191, 1312, 1469, 1640, 1828, 2002, 1970, 1746, 1536, 1372, 1247, 1148, 1091, 1050, 1024, 1050, 1093, 1190, 1293, 1461, 1601, 1820, 2007, 1949, 1751, 1564, 1391, 1249, 1154, 1088, 1058, 1048, 1062, 1109, 1214, 1291, 1455, 1592, 1830, 1983, 1953, 1774, 1600, 1422, 1289, 1194, 1108, 1071, 1069, 1092, 1155, 1214, 1328, 1474, 1624, 1838, 2002, 2016, 1816, 1631, 1466, 1330, 1208, 1156, 1105, 1116, 1128, 1200, 1262, 1344, 1498, 1677, 1853, 2052, 2090, 1865, 1689, 1520, 1396, 1291, 1221, 1168, 1155, 1198, 1237, 1324, 1398, 1571, 1727, 1918, 2126, 2266, 1965, 1748, 1602, 1468, 1321, 1278, 1221, 1226, 1263, 1294, 1383, 1500, 1630, 1789, 1992, 2228, 2379, 2061, 1845, 1681, 1572, 1449, 1371, 1333, 1318, 1358, 1388, 1488, 1594, 1744, 1859, 2086, 2347, 2564, 2186, 1946, 1770, 1666, 1562, 1465, 1428, 1421, 1464, 1488, 1590, 1662, 1809, 1935, 2250, 2594, 2785, 2292, 2013, 1872, 1692, 1620, 1574, 1515, 1477, 1522, 1587, 1660, 1739, 1907, 2058, 2366, 2690]
                                       }
                                   }, {
                                       "name":    "2592x1944_TL84_70",
                                       "resolution":    "2592x1944",
                                       "illumination":    "TL84",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [2682, 2453, 2234, 2131, 2017, 1917, 1805, 1772, 1748, 1770, 1801, 1910, 2039, 2156, 2288, 2467, 2675, 2541, 2312, 2143, 1998, 1865, 1733, 1627, 1588, 1567, 1603, 1657, 1760, 1884, 2015, 2214, 2363, 2503, 2397, 2235, 2055, 1884, 1712, 1601, 1510, 1451, 1424, 1441, 1510, 1600, 1764, 1925, 2078, 2277, 2489, 2338, 2140, 1961, 1783, 1613, 1469, 1387, 1318, 1306, 1323, 1391, 1500, 1679, 1815, 2000, 2209, 2354, 2233, 2056, 1877, 1682, 1487, 1376, 1279, 1224, 1193, 1227, 1284, 1389, 1549, 1740, 1945, 2094, 2288, 2205, 2061, 1782, 1597, 1433, 1299, 1208, 1152, 1136, 1140, 1226, 1323, 1447, 1651, 1862, 2071, 2239, 2125, 1935, 1746, 1549, 1372, 1244, 1149, 1088, 1067, 1089, 1165, 1271, 1381, 1573, 1814, 2039, 2232, 2122, 1925, 1715, 1483, 1320, 1206, 1100, 1051, 1050, 1051, 1119, 1216, 1378, 1561, 1789, 2006, 2212, 2107, 1918, 1713, 1496, 1311, 1181, 1097, 1051, 1024, 1044, 1110, 1201, 1348, 1527, 1765, 1991, 2194, 2096, 1927, 1703, 1495, 1320, 1192, 1088, 1039, 1033, 1061, 1120, 1211, 1337, 1536, 1772, 2000, 2162, 2122, 1951, 1757, 1528, 1339, 1223, 1121, 1075, 1060, 1084, 1151, 1236, 1381, 1571, 1804, 2032, 2196, 2164, 1997, 1801, 1583, 1394, 1277, 1182, 1133, 1111, 1117, 1180, 1305, 1438, 1624, 1846, 2060, 2224, 2272, 2048, 1875, 1654, 1478, 1345, 1246, 1201, 1191, 1209, 1268, 1358, 1509, 1714, 1924, 2079, 2270, 2375, 2121, 1927, 1737, 1579, 1439, 1348, 1284, 1268, 1311, 1358, 1450, 1646, 1815, 2018, 2181, 2360, 2400, 2173, 2021, 1875, 1726, 1564, 1466, 1413, 1392, 1421, 1486, 1582, 1717, 1912, 2069, 2246, 2479, 2495, 2292, 2129, 1987, 1813, 1732, 1596, 1563, 1532, 1551, 1646, 1710, 1848, 2017, 2195, 2335, 2538, 2619, 2430, 2216, 2086, 1944, 1833, 1794, 1709, 1691, 1716, 1780, 1858, 2005, 2143, 2288, 2457, 2630]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2434, 2223, 2096, 1925, 1885, 1782, 1709, 1671, 1654, 1704, 1742, 1779, 1873, 1936, 2100, 2209, 2429, 2271, 2064, 1932, 1813, 1713, 1627, 1555, 1505, 1497, 1510, 1538, 1628, 1720, 1798, 1898, 2028, 2225, 2141, 1964, 1851, 1738, 1626, 1531, 1435, 1394, 1381, 1403, 1456, 1500, 1627, 1761, 1846, 1972, 2138, 2105, 1921, 1802, 1662, 1538, 1424, 1349, 1292, 1308, 1304, 1365, 1436, 1542, 1674, 1780, 1921, 2042, 2038, 1864, 1750, 1605, 1470, 1352, 1271, 1226, 1211, 1219, 1284, 1360, 1462, 1595, 1734, 1852, 1956, 1978, 1821, 1691, 1553, 1406, 1281, 1203, 1152, 1141, 1147, 1201, 1285, 1387, 1541, 1702, 1816, 1940, 1917, 1790, 1645, 1504, 1350, 1235, 1154, 1078, 1074, 1092, 1152, 1229, 1364, 1497, 1635, 1763, 1905, 1893, 1765, 1620, 1440, 1318, 1196, 1107, 1062, 1036, 1057, 1120, 1211, 1320, 1467, 1614, 1749, 1867, 1887, 1743, 1605, 1448, 1313, 1175, 1094, 1047, 1024, 1034, 1089, 1190, 1308, 1435, 1624, 1740, 1820, 1886, 1740, 1607, 1435, 1321, 1188, 1089, 1028, 1028, 1047, 1101, 1193, 1299, 1447, 1586, 1738, 1849, 1930, 1778, 1623, 1473, 1339, 1211, 1116, 1071, 1043, 1070, 1116, 1223, 1322, 1483, 1615, 1742, 1871, 1950, 1789, 1677, 1503, 1375, 1254, 1162, 1114, 1093, 1114, 1177, 1263, 1367, 1505, 1650, 1770, 1910, 1960, 1841, 1695, 1557, 1423, 1312, 1237, 1169, 1163, 1184, 1243, 1315, 1429, 1556, 1703, 1801, 1937, 2050, 1886, 1762, 1638, 1503, 1390, 1308, 1270, 1244, 1270, 1321, 1393, 1488, 1613, 1756, 1875, 2019, 2125, 1939, 1825, 1692, 1586, 1492, 1406, 1345, 1338, 1351, 1387, 1478, 1565, 1687, 1798, 1932, 2093, 2236, 2036, 1870, 1776, 1662, 1582, 1499, 1439, 1441, 1454, 1508, 1577, 1649, 1762, 1828, 2007, 2181, 2392, 2132, 1958, 1861, 1750, 1652, 1589, 1564, 1533, 1554, 1581, 1663, 1715, 1815, 1934, 2138, 2336]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2444, 2240, 2067, 1931, 1828, 1746, 1695, 1648, 1634, 1647, 1689, 1764, 1853, 1938, 2059, 2223, 2478, 2226, 2063, 1898, 1812, 1688, 1604, 1529, 1464, 1466, 1473, 1537, 1605, 1727, 1812, 1944, 2060, 2251, 2188, 1974, 1832, 1750, 1638, 1511, 1408, 1383, 1374, 1386, 1425, 1505, 1619, 1728, 1850, 1962, 2155, 2099, 1926, 1771, 1663, 1526, 1431, 1326, 1293, 1275, 1279, 1354, 1429, 1542, 1663, 1794, 1895, 2056, 2037, 1856, 1748, 1597, 1453, 1354, 1264, 1203, 1189, 1205, 1260, 1344, 1456, 1607, 1757, 1885, 2005, 2022, 1838, 1684, 1552, 1406, 1303, 1194, 1144, 1131, 1138, 1204, 1283, 1431, 1555, 1704, 1848, 1991, 1936, 1824, 1670, 1510, 1361, 1244, 1155, 1094, 1070, 1087, 1148, 1249, 1367, 1535, 1661, 1792, 1936, 1923, 1782, 1637, 1455, 1331, 1208, 1109, 1062, 1036, 1057, 1115, 1216, 1341, 1478, 1637, 1780, 1893, 1912, 1749, 1625, 1461, 1317, 1198, 1092, 1043, 1028, 1035, 1095, 1197, 1328, 1466, 1627, 1782, 1912, 1882, 1766, 1633, 1453, 1336, 1203, 1103, 1045, 1024, 1047, 1115, 1196, 1321, 1480, 1624, 1748, 1890, 1903, 1790, 1645, 1495, 1355, 1223, 1122, 1071, 1058, 1077, 1146, 1218, 1330, 1494, 1649, 1778, 1908, 1974, 1819, 1672, 1510, 1400, 1264, 1172, 1120, 1097, 1123, 1175, 1275, 1385, 1520, 1680, 1811, 1958, 2033, 1850, 1721, 1586, 1442, 1334, 1225, 1185, 1167, 1187, 1240, 1324, 1447, 1573, 1722, 1848, 1994, 2114, 1911, 1777, 1647, 1503, 1406, 1313, 1260, 1246, 1264, 1312, 1387, 1514, 1638, 1787, 1897, 2040, 2153, 1977, 1827, 1709, 1609, 1468, 1388, 1340, 1336, 1344, 1397, 1484, 1594, 1709, 1829, 1943, 2129, 2249, 2072, 1877, 1761, 1684, 1578, 1484, 1436, 1414, 1438, 1480, 1565, 1666, 1773, 1868, 2030, 2201, 2403, 2140, 1965, 1844, 1750, 1658, 1590, 1521, 1523, 1527, 1560, 1658, 1720, 1821, 1952, 2115, 2328]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2248, 2034, 1824, 1725, 1664, 1597, 1562, 1522, 1520, 1551, 1596, 1623, 1728, 1808, 1915, 2078, 2338, 2115, 1877, 1751, 1635, 1560, 1501, 1430, 1419, 1395, 1432, 1464, 1548, 1630, 1714, 1845, 1990, 2148, 2013, 1822, 1679, 1571, 1489, 1400, 1353, 1316, 1304, 1343, 1387, 1448, 1525, 1629, 1722, 1886, 2024, 1902, 1728, 1640, 1525, 1396, 1337, 1257, 1226, 1242, 1253, 1302, 1367, 1452, 1590, 1688, 1825, 1963, 1855, 1728, 1565, 1464, 1357, 1256, 1209, 1182, 1177, 1175, 1245, 1324, 1393, 1535, 1675, 1773, 1902, 1828, 1684, 1553, 1407, 1286, 1224, 1167, 1114, 1118, 1138, 1189, 1250, 1358, 1481, 1614, 1728, 1848, 1804, 1632, 1530, 1376, 1272, 1184, 1118, 1071, 1071, 1104, 1140, 1224, 1333, 1437, 1568, 1710, 1817, 1782, 1647, 1500, 1342, 1232, 1163, 1097, 1058, 1045, 1063, 1114, 1186, 1297, 1433, 1570, 1705, 1811, 1787, 1637, 1478, 1344, 1236, 1144, 1090, 1050, 1024, 1050, 1092, 1185, 1279, 1426, 1536, 1700, 1816, 1768, 1640, 1502, 1361, 1237, 1150, 1087, 1058, 1048, 1062, 1108, 1208, 1277, 1420, 1527, 1707, 1796, 1767, 1656, 1531, 1388, 1274, 1188, 1106, 1071, 1069, 1091, 1152, 1207, 1310, 1435, 1552, 1710, 1806, 1809, 1685, 1554, 1424, 1309, 1200, 1152, 1103, 1114, 1126, 1195, 1251, 1323, 1453, 1594, 1716, 1838, 1856, 1716, 1596, 1467, 1367, 1276, 1213, 1163, 1151, 1192, 1228, 1307, 1368, 1513, 1629, 1760, 1884, 1976, 1785, 1637, 1532, 1426, 1299, 1263, 1211, 1217, 1251, 1278, 1357, 1455, 1556, 1671, 1807, 1947, 2039, 1845, 1704, 1589, 1510, 1410, 1344, 1312, 1299, 1335, 1360, 1445, 1529, 1643, 1716, 1864, 2015, 2145, 1919, 1768, 1650, 1579, 1501, 1421, 1392, 1386, 1424, 1442, 1525, 1576, 1682, 1759, 1969, 2166, 2257, 1971, 1799, 1715, 1585, 1537, 1506, 1458, 1426, 1464, 1517, 1571, 1625, 1743, 1834, 2026, 2190]
                                       }
                                   }, {
                                       "name":    "2592x1944_GRAY_0",
                                       "resolution":    "2592x1944",
                                       "illumination":    "GRAY",
                                       "vignetting":    0,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024]
                                       }
                                   }, {
                                       "name":    "1296x972_A_100",
                                       "resolution":    "1296x972",
                                       "illumination":    "A",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [4298, 3746, 3334, 3041, 2778, 2586, 2427, 2321, 2294, 2353, 2454, 2613, 2848, 3094, 3415, 3826, 4302, 3949, 3480, 3095, 2786, 2547, 2315, 2138, 2027, 2009, 2059, 2164, 2349, 2602, 2866, 3171, 3545, 4050, 3672, 3245, 2908, 2578, 2302, 2067, 1879, 1780, 1752, 1790, 1906, 2098, 2360, 2661, 2981, 3344, 3750, 3474, 3052, 2703, 2388, 2074, 1827, 1652, 1556, 1523, 1573, 1680, 1868, 2123, 2440, 2812, 3164, 3558, 3288, 2902, 2565, 2209, 1895, 1648, 1476, 1375, 1346, 1386, 1496, 1681, 1929, 2267, 2639, 2998, 3378, 3175, 2808, 2417, 2057, 1747, 1504, 1343, 1240, 1209, 1248, 1354, 1534, 1792, 2119, 2517, 2861, 3301, 3062, 2719, 2322, 1939, 1639, 1401, 1242, 1143, 1107, 1141, 1253, 1430, 1682, 1998, 2403, 2791, 3167, 3012, 2642, 2249, 1880, 1573, 1339, 1173, 1083, 1048, 1086, 1184, 1368, 1607, 1939, 2339, 2730, 3128, 3021, 2621, 2218, 1854, 1550, 1315, 1150, 1058, 1024, 1056, 1167, 1340, 1595, 1912, 2306, 2725, 3110, 3003, 2633, 2232, 1867, 1555, 1321, 1163, 1068, 1038, 1074, 1180, 1352, 1602, 1934, 2312, 2716, 3114, 3060, 2678, 2295, 1905, 1609, 1379, 1216, 1117, 1089, 1131, 1238, 1411, 1657, 1985, 2375, 2759, 3138, 3126, 2759, 2387, 2009, 1702, 1476, 1308, 1213, 1179, 1214, 1325, 1507, 1754, 2072, 2463, 2869, 3238, 3256, 2846, 2488, 2155, 1834, 1600, 1436, 1338, 1312, 1348, 1451, 1629, 1888, 2208, 2566, 2943, 3325, 3405, 3010, 2645, 2313, 2006, 1771, 1604, 1503, 1477, 1495, 1624, 1806, 2067, 2391, 2732, 3070, 3512, 3657, 3187, 2821, 2508, 2236, 1981, 1822, 1714, 1685, 1718, 1841, 2020, 2282, 2586, 2933, 3270, 3721, 3913, 3417, 2995, 2722, 2453, 2241, 2060, 1958, 1929, 1971, 2091, 2278, 2514, 2783, 3094, 3469, 3948, 4098, 3605, 3214, 2878, 2667, 2456, 2302, 2222, 2200, 2224, 2324, 2490, 2705, 2947, 3267, 3693, 4126]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [3144, 2737, 2443, 2255, 2094, 1969, 1889, 1828, 1803, 1819, 1873, 1971, 2095, 2244, 2435, 2729, 3134, 2835, 2474, 2247, 2075, 1916, 1785, 1685, 1630, 1613, 1624, 1677, 1797, 1919, 2060, 2227, 2457, 2812, 2653, 2328, 2120, 1943, 1796, 1649, 1540, 1492, 1470, 1493, 1546, 1649, 1793, 1951, 2125, 2317, 2609, 2470, 2210, 2019, 1831, 1660, 1527, 1414, 1363, 1351, 1371, 1427, 1521, 1676, 1840, 2029, 2221, 2453, 2371, 2122, 1925, 1746, 1567, 1425, 1318, 1261, 1243, 1266, 1325, 1425, 1564, 1744, 1944, 2120, 2364, 2292, 2061, 1850, 1653, 1477, 1344, 1232, 1177, 1154, 1173, 1238, 1343, 1487, 1661, 1870, 2056, 2262, 2226, 2003, 1794, 1587, 1409, 1269, 1165, 1105, 1089, 1106, 1165, 1283, 1427, 1607, 1823, 1998, 2217, 2187, 1960, 1758, 1546, 1376, 1221, 1121, 1063, 1043, 1064, 1121, 1229, 1381, 1563, 1760, 1963, 2169, 2173, 1952, 1733, 1528, 1348, 1209, 1105, 1039, 1024, 1042, 1108, 1212, 1360, 1542, 1756, 1954, 2139, 2161, 1948, 1742, 1533, 1361, 1210, 1105, 1048, 1026, 1050, 1114, 1220, 1359, 1539, 1744, 1957, 2150, 2196, 1964, 1763, 1563, 1377, 1243, 1137, 1070, 1051, 1077, 1139, 1247, 1387, 1567, 1774, 1978, 2173, 2263, 2017, 1815, 1616, 1433, 1295, 1191, 1131, 1118, 1140, 1197, 1301, 1445, 1616, 1813, 2012, 2207, 2326, 2084, 1872, 1679, 1512, 1373, 1265, 1208, 1188, 1211, 1274, 1372, 1513, 1685, 1883, 2067, 2296, 2435, 2159, 1950, 1772, 1598, 1459, 1356, 1302, 1276, 1299, 1359, 1459, 1601, 1771, 1954, 2161, 2390, 2573, 2258, 2043, 1869, 1715, 1575, 1473, 1414, 1393, 1414, 1473, 1564, 1710, 1873, 2033, 2255, 2533, 2752, 2409, 2148, 1978, 1831, 1704, 1592, 1538, 1515, 1533, 1595, 1692, 1827, 1954, 2128, 2396, 2720, 2966, 2571, 2265, 2088, 1927, 1805, 1711, 1656, 1634, 1655, 1712, 1807, 1913, 2058, 2241, 2531, 2924]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [3140, 2751, 2446, 2237, 2089, 1958, 1865, 1796, 1784, 1804, 1862, 1960, 2085, 2247, 2458, 2751, 3181, 2830, 2489, 2231, 2065, 1895, 1767, 1664, 1599, 1586, 1600, 1672, 1774, 1907, 2057, 2240, 2493, 2854, 2648, 2331, 2121, 1947, 1776, 1646, 1529, 1468, 1447, 1471, 1525, 1647, 1785, 1947, 2124, 2352, 2651, 2516, 2218, 2028, 1836, 1670, 1528, 1409, 1347, 1333, 1353, 1421, 1525, 1676, 1846, 2039, 2225, 2499, 2399, 2140, 1953, 1755, 1561, 1426, 1315, 1249, 1229, 1251, 1322, 1423, 1570, 1747, 1952, 2170, 2393, 2313, 2090, 1869, 1665, 1488, 1349, 1234, 1172, 1144, 1167, 1240, 1348, 1498, 1678, 1883, 2090, 2314, 2257, 2028, 1808, 1610, 1434, 1288, 1171, 1108, 1086, 1109, 1177, 1291, 1440, 1616, 1837, 2037, 2249, 2215, 1995, 1779, 1565, 1388, 1239, 1133, 1066, 1045, 1065, 1132, 1238, 1394, 1578, 1795, 2004, 2221, 2209, 1978, 1756, 1559, 1376, 1226, 1111, 1050, 1024, 1045, 1111, 1225, 1377, 1560, 1775, 1976, 2187, 2216, 1984, 1765, 1557, 1383, 1234, 1122, 1054, 1030, 1054, 1124, 1234, 1382, 1565, 1781, 1987, 2188, 2237, 1995, 1791, 1587, 1400, 1255, 1144, 1080, 1057, 1086, 1151, 1259, 1407, 1598, 1795, 2001, 2214, 2271, 2047, 1839, 1639, 1452, 1311, 1201, 1138, 1114, 1134, 1205, 1315, 1465, 1640, 1840, 2037, 2267, 2358, 2097, 1900, 1704, 1524, 1385, 1273, 1216, 1188, 1212, 1273, 1378, 1529, 1710, 1907, 2090, 2330, 2455, 2177, 1978, 1793, 1621, 1468, 1365, 1302, 1281, 1296, 1361, 1467, 1609, 1785, 1972, 2172, 2434, 2614, 2281, 2066, 1893, 1730, 1584, 1473, 1407, 1395, 1400, 1477, 1571, 1722, 1883, 2073, 2279, 2572, 2780, 2414, 2153, 1988, 1832, 1705, 1592, 1536, 1502, 1532, 1589, 1701, 1835, 1986, 2141, 2405, 2779, 3021, 2618, 2289, 2118, 1957, 1824, 1728, 1657, 1648, 1657, 1723, 1816, 1944, 2086, 2298, 2578, 2980]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2879, 2497, 2160, 1996, 1845, 1759, 1683, 1665, 1658, 1668, 1729, 1823, 1924, 2084, 2296, 2608, 3027, 2622, 2231, 1990, 1840, 1697, 1610, 1532, 1510, 1488, 1520, 1574, 1667, 1780, 1910, 2117, 2351, 2740, 2409, 2086, 1883, 1721, 1596, 1497, 1415, 1386, 1375, 1403, 1461, 1541, 1673, 1804, 1983, 2220, 2516, 2269, 1997, 1783, 1632, 1489, 1382, 1314, 1277, 1278, 1295, 1358, 1446, 1571, 1722, 1901, 2110, 2333, 2172, 1915, 1726, 1555, 1407, 1305, 1230, 1196, 1189, 1212, 1276, 1357, 1481, 1640, 1824, 2018, 2220, 2091, 1867, 1663, 1488, 1346, 1248, 1164, 1125, 1121, 1145, 1198, 1298, 1413, 1570, 1761, 1957, 2130, 2045, 1821, 1619, 1434, 1294, 1194, 1123, 1075, 1064, 1094, 1149, 1243, 1366, 1530, 1738, 1910, 2101, 2031, 1796, 1592, 1414, 1267, 1164, 1084, 1051, 1032, 1060, 1121, 1208, 1338, 1498, 1696, 1875, 2066, 1998, 1783, 1585, 1397, 1260, 1155, 1075, 1031, 1024, 1043, 1110, 1199, 1334, 1482, 1672, 1876, 2055, 1981, 1811, 1591, 1420, 1268, 1161, 1082, 1046, 1027, 1050, 1114, 1201, 1330, 1476, 1681, 1870, 2066, 2020, 1812, 1614, 1436, 1297, 1191, 1108, 1070, 1053, 1089, 1143, 1237, 1349, 1514, 1698, 1901, 2088, 2081, 1853, 1657, 1499, 1346, 1237, 1158, 1113, 1104, 1134, 1193, 1281, 1393, 1552, 1746, 1928, 2127, 2150, 1919, 1722, 1545, 1399, 1297, 1214, 1172, 1168, 1198, 1259, 1338, 1448, 1604, 1783, 1971, 2198, 2250, 1986, 1787, 1633, 1482, 1376, 1291, 1257, 1246, 1272, 1327, 1406, 1524, 1679, 1854, 2050, 2303, 2394, 2097, 1862, 1737, 1587, 1476, 1398, 1351, 1352, 1366, 1425, 1513, 1633, 1768, 1938, 2172, 2456, 2638, 2253, 2009, 1830, 1703, 1580, 1519, 1480, 1455, 1479, 1536, 1636, 1734, 1887, 2046, 2313, 2640, 2839, 2390, 2089, 1898, 1765, 1679, 1599, 1546, 1541, 1556, 1604, 1681, 1796, 1935, 2137, 2425, 2794]
                                       }
                                   }, {
                                       "name":    "1296x972_A_70",
                                       "resolution":    "1296x972",
                                       "illumination":    "A",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [3316, 3057, 2834, 2667, 2498, 2369, 2252, 2171, 2151, 2199, 2276, 2392, 2557, 2710, 2897, 3116, 3319, 3152, 2917, 2696, 2502, 2341, 2168, 2027, 1937, 1923, 1966, 2051, 2198, 2389, 2569, 2757, 2967, 3226, 3007, 2781, 2584, 2361, 2157, 1971, 1813, 1729, 1705, 1738, 1838, 1999, 2209, 2432, 2645, 2860, 3065, 2902, 2664, 2445, 2222, 1975, 1768, 1616, 1530, 1500, 1546, 1642, 1806, 2019, 2268, 2537, 2755, 2966, 2791, 2570, 2351, 2083, 1826, 1612, 1457, 1364, 1337, 1374, 1476, 1643, 1857, 2135, 2414, 2649, 2862, 2727, 2513, 2239, 1959, 1698, 1482, 1334, 1236, 1206, 1244, 1344, 1511, 1740, 2015, 2326, 2557, 2827, 2654, 2452, 2167, 1860, 1603, 1387, 1238, 1142, 1106, 1140, 1248, 1415, 1644, 1914, 2239, 2513, 2738, 2623, 2395, 2109, 1811, 1544, 1329, 1171, 1083, 1048, 1086, 1182, 1357, 1576, 1865, 2189, 2470, 2717, 2634, 2380, 2084, 1788, 1523, 1307, 1148, 1058, 1024, 1056, 1165, 1331, 1566, 1842, 2162, 2468, 2706, 2616, 2388, 2094, 1799, 1527, 1312, 1161, 1068, 1038, 1074, 1178, 1342, 1571, 1860, 2165, 2458, 2705, 2652, 2418, 2143, 1829, 1575, 1366, 1212, 1116, 1089, 1130, 1234, 1397, 1620, 1902, 2214, 2486, 2715, 2688, 2472, 2213, 1916, 1657, 1456, 1300, 1209, 1176, 1210, 1316, 1485, 1705, 1973, 2279, 2564, 2777, 2766, 2524, 2284, 2034, 1770, 1567, 1419, 1328, 1304, 1338, 1433, 1594, 1820, 2082, 2351, 2604, 2820, 2849, 2630, 2395, 2156, 1913, 1716, 1570, 1480, 1457, 1472, 1589, 1749, 1968, 2225, 2469, 2679, 2931, 2996, 2735, 2512, 2300, 2099, 1893, 1761, 1667, 1642, 1671, 1778, 1928, 2139, 2367, 2605, 2801, 3044, 3126, 2868, 2615, 2448, 2260, 2102, 1957, 1874, 1850, 1886, 1985, 2135, 2313, 2499, 2695, 2908, 3152, 3176, 2951, 2740, 2534, 2405, 2257, 2143, 2084, 2068, 2085, 2162, 2286, 2437, 2591, 2781, 3017, 3195]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2508, 2303, 2136, 2027, 1923, 1837, 1781, 1735, 1715, 1727, 1767, 1839, 1924, 2018, 2130, 2297, 2501, 2342, 2141, 2011, 1906, 1796, 1698, 1619, 1575, 1562, 1570, 1612, 1709, 1798, 1893, 1995, 2128, 2325, 2244, 2056, 1932, 1814, 1709, 1591, 1500, 1460, 1441, 1461, 1506, 1591, 1706, 1821, 1936, 2047, 2211, 2132, 1983, 1866, 1733, 1600, 1490, 1391, 1347, 1336, 1354, 1404, 1485, 1614, 1741, 1874, 1992, 2119, 2076, 1928, 1800, 1669, 1524, 1402, 1306, 1253, 1237, 1258, 1312, 1402, 1521, 1667, 1816, 1926, 2070, 2028, 1889, 1745, 1593, 1447, 1330, 1226, 1174, 1152, 1170, 1232, 1329, 1456, 1601, 1762, 1885, 2004, 1985, 1849, 1702, 1539, 1387, 1260, 1162, 1104, 1089, 1105, 1162, 1274, 1403, 1557, 1728, 1845, 1978, 1960, 1817, 1674, 1504, 1357, 1215, 1120, 1063, 1043, 1064, 1120, 1223, 1362, 1519, 1676, 1820, 1945, 1950, 1812, 1653, 1488, 1331, 1204, 1104, 1039, 1024, 1042, 1107, 1207, 1343, 1501, 1674, 1814, 1923, 1939, 1807, 1660, 1492, 1343, 1204, 1104, 1048, 1026, 1050, 1113, 1214, 1341, 1497, 1662, 1815, 1930, 1961, 1816, 1675, 1517, 1356, 1235, 1135, 1070, 1051, 1076, 1137, 1239, 1366, 1520, 1685, 1828, 1943, 2005, 1853, 1714, 1560, 1406, 1283, 1186, 1129, 1116, 1138, 1192, 1288, 1417, 1560, 1712, 1848, 1961, 2040, 1897, 1754, 1609, 1473, 1353, 1255, 1202, 1183, 1205, 1264, 1352, 1474, 1615, 1763, 1883, 2017, 2105, 1942, 1807, 1681, 1544, 1427, 1337, 1289, 1265, 1286, 1340, 1427, 1546, 1680, 1811, 1944, 2071, 2184, 2000, 1868, 1751, 1637, 1524, 1438, 1388, 1369, 1388, 1438, 1514, 1632, 1754, 1860, 1998, 2154, 2281, 2091, 1931, 1824, 1722, 1626, 1536, 1492, 1472, 1487, 1538, 1616, 1719, 1804, 1915, 2081, 2258, 2383, 2179, 1996, 1891, 1783, 1696, 1626, 1583, 1565, 1582, 1626, 1698, 1771, 1866, 1978, 2149, 2354]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2505, 2314, 2138, 2012, 1919, 1828, 1760, 1707, 1698, 1714, 1758, 1830, 1916, 2020, 2148, 2314, 2534, 2338, 2153, 1998, 1897, 1777, 1682, 1600, 1547, 1537, 1548, 1608, 1688, 1788, 1891, 2006, 2156, 2356, 2240, 2058, 1933, 1818, 1691, 1589, 1490, 1438, 1420, 1441, 1486, 1590, 1699, 1818, 1935, 2075, 2242, 2167, 1990, 1873, 1737, 1609, 1491, 1387, 1331, 1319, 1337, 1398, 1488, 1614, 1746, 1883, 1995, 2154, 2097, 1943, 1824, 1677, 1518, 1403, 1303, 1242, 1223, 1244, 1310, 1400, 1527, 1670, 1823, 1967, 2093, 2045, 1914, 1761, 1604, 1457, 1334, 1228, 1169, 1142, 1164, 1234, 1333, 1466, 1616, 1773, 1914, 2045, 2010, 1870, 1715, 1560, 1410, 1278, 1168, 1107, 1086, 1108, 1174, 1281, 1416, 1565, 1740, 1878, 2004, 1982, 1847, 1693, 1521, 1369, 1232, 1131, 1066, 1045, 1065, 1130, 1231, 1374, 1533, 1707, 1855, 1987, 1979, 1834, 1674, 1517, 1358, 1220, 1110, 1050, 1024, 1045, 1110, 1219, 1359, 1518, 1690, 1832, 1962, 1983, 1838, 1680, 1514, 1364, 1228, 1121, 1054, 1030, 1054, 1123, 1228, 1363, 1521, 1695, 1840, 1960, 1994, 1842, 1700, 1539, 1378, 1247, 1142, 1079, 1057, 1085, 1148, 1250, 1385, 1549, 1703, 1847, 1976, 2011, 1878, 1735, 1581, 1423, 1298, 1196, 1136, 1113, 1132, 1200, 1302, 1435, 1582, 1736, 1869, 2008, 2065, 1907, 1778, 1632, 1484, 1364, 1263, 1210, 1183, 1206, 1263, 1358, 1489, 1637, 1784, 1902, 2044, 2121, 1957, 1831, 1699, 1564, 1435, 1345, 1289, 1269, 1283, 1342, 1435, 1554, 1692, 1826, 1952, 2105, 2215, 2019, 1887, 1771, 1650, 1532, 1438, 1381, 1371, 1375, 1442, 1521, 1643, 1763, 1893, 2017, 2183, 2302, 2095, 1935, 1833, 1723, 1627, 1536, 1490, 1460, 1486, 1533, 1624, 1726, 1831, 1926, 2088, 2301, 2422, 2214, 2015, 1915, 1808, 1713, 1640, 1584, 1578, 1584, 1636, 1706, 1797, 1889, 2022, 2184, 2393]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2323, 2124, 1914, 1816, 1714, 1657, 1601, 1591, 1587, 1594, 1641, 1712, 1780, 1888, 2021, 2207, 2426, 2187, 1954, 1804, 1708, 1606, 1543, 1482, 1466, 1448, 1475, 1519, 1594, 1678, 1767, 1906, 2047, 2273, 2061, 1864, 1735, 1623, 1531, 1453, 1385, 1361, 1352, 1377, 1427, 1493, 1599, 1695, 1818, 1970, 2141, 1978, 1811, 1666, 1558, 1445, 1356, 1297, 1265, 1267, 1282, 1339, 1415, 1519, 1637, 1766, 1902, 2027, 1920, 1757, 1628, 1498, 1377, 1289, 1221, 1190, 1184, 1206, 1265, 1338, 1445, 1574, 1713, 1842, 1958, 1869, 1727, 1581, 1444, 1324, 1238, 1160, 1123, 1119, 1143, 1193, 1286, 1387, 1518, 1667, 1803, 1900, 1841, 1696, 1548, 1399, 1278, 1188, 1121, 1074, 1064, 1093, 1146, 1235, 1346, 1486, 1653, 1771, 1885, 1834, 1678, 1527, 1382, 1254, 1160, 1083, 1051, 1032, 1060, 1120, 1202, 1321, 1460, 1619, 1745, 1862, 1809, 1669, 1522, 1367, 1248, 1151, 1074, 1031, 1024, 1043, 1109, 1194, 1318, 1446, 1599, 1747, 1855, 1794, 1691, 1526, 1388, 1255, 1157, 1081, 1046, 1027, 1050, 1113, 1196, 1314, 1439, 1606, 1741, 1862, 1821, 1688, 1544, 1401, 1281, 1185, 1106, 1070, 1053, 1088, 1141, 1229, 1330, 1472, 1618, 1763, 1875, 1861, 1716, 1576, 1454, 1324, 1227, 1154, 1111, 1103, 1132, 1188, 1269, 1368, 1502, 1654, 1778, 1897, 1903, 1761, 1625, 1489, 1369, 1281, 1206, 1167, 1164, 1192, 1249, 1320, 1414, 1542, 1677, 1804, 1941, 1964, 1802, 1670, 1559, 1439, 1350, 1276, 1246, 1236, 1260, 1309, 1378, 1477, 1599, 1726, 1854, 2004, 2050, 1873, 1718, 1637, 1523, 1434, 1369, 1329, 1331, 1343, 1394, 1468, 1564, 1664, 1781, 1932, 2096, 2198, 1971, 1819, 1700, 1611, 1516, 1470, 1439, 1417, 1438, 1485, 1566, 1638, 1748, 1849, 2017, 2200, 2295, 2044, 1858, 1736, 1647, 1588, 1527, 1486, 1483, 1495, 1532, 1590, 1673, 1766, 1896, 2070, 2263]
                                       }
                                   }, {
                                       "name":    "1296x972_CWF_100",
                                       "resolution":    "1296x972",
                                       "illumination":    "CWF",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [3366, 2936, 2570, 2347, 2163, 2027, 1926, 1867, 1839, 1869, 1949, 2045, 2217, 2388, 2638, 2976, 3383, 3108, 2704, 2401, 2171, 2001, 1838, 1732, 1659, 1644, 1675, 1753, 1874, 2044, 2229, 2466, 2751, 3180, 2886, 2539, 2257, 2034, 1830, 1682, 1557, 1505, 1480, 1515, 1603, 1701, 1888, 2102, 2310, 2577, 2951, 2707, 2395, 2130, 1898, 1694, 1528, 1429, 1355, 1346, 1372, 1444, 1567, 1729, 1945, 2179, 2436, 2774, 2565, 2264, 2025, 1775, 1582, 1428, 1313, 1249, 1232, 1260, 1330, 1448, 1608, 1831, 2086, 2347, 2629, 2450, 2214, 1941, 1690, 1491, 1339, 1224, 1168, 1140, 1168, 1241, 1359, 1524, 1722, 1995, 2270, 2541, 2419, 2129, 1855, 1623, 1418, 1267, 1161, 1103, 1080, 1102, 1178, 1282, 1447, 1663, 1920, 2221, 2468, 2361, 2091, 1826, 1570, 1370, 1224, 1122, 1062, 1042, 1065, 1130, 1246, 1411, 1618, 1881, 2157, 2438, 2343, 2073, 1799, 1562, 1361, 1210, 1102, 1043, 1024, 1050, 1126, 1235, 1401, 1598, 1872, 2146, 2425, 2361, 2100, 1818, 1571, 1360, 1219, 1109, 1053, 1033, 1057, 1128, 1249, 1407, 1613, 1876, 2156, 2434, 2389, 2113, 1839, 1596, 1406, 1251, 1142, 1081, 1063, 1092, 1165, 1284, 1437, 1659, 1910, 2196, 2481, 2448, 2181, 1909, 1676, 1461, 1316, 1206, 1147, 1122, 1149, 1228, 1344, 1501, 1725, 1977, 2253, 2555, 2536, 2262, 1984, 1753, 1544, 1399, 1290, 1225, 1208, 1234, 1306, 1424, 1582, 1797, 2039, 2305, 2619, 2691, 2365, 2096, 1864, 1660, 1508, 1395, 1333, 1314, 1338, 1410, 1536, 1700, 1919, 2155, 2399, 2769, 2853, 2482, 2222, 2000, 1804, 1642, 1528, 1466, 1447, 1473, 1561, 1671, 1844, 2063, 2287, 2543, 2925, 3079, 2693, 2361, 2130, 1962, 1805, 1688, 1624, 1596, 1632, 1717, 1835, 2020, 2199, 2431, 2726, 3148, 3293, 2841, 2489, 2262, 2086, 1945, 1846, 1795, 1751, 1785, 1869, 1962, 2114, 2301, 2539, 2881, 3303]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [3030, 2617, 2333, 2145, 1989, 1884, 1801, 1725, 1710, 1737, 1781, 1862, 1973, 2137, 2320, 2603, 2970, 2739, 2382, 2140, 1983, 1834, 1714, 1623, 1561, 1545, 1562, 1602, 1703, 1814, 1965, 2123, 2347, 2667, 2530, 2223, 2034, 1868, 1718, 1585, 1486, 1438, 1420, 1438, 1490, 1583, 1704, 1848, 2020, 2205, 2477, 2398, 2116, 1941, 1770, 1599, 1486, 1379, 1327, 1313, 1324, 1378, 1458, 1601, 1753, 1919, 2106, 2335, 2297, 2038, 1866, 1677, 1516, 1391, 1290, 1242, 1217, 1238, 1295, 1380, 1508, 1670, 1853, 2023, 2234, 2213, 1983, 1790, 1604, 1441, 1311, 1215, 1158, 1136, 1156, 1210, 1305, 1434, 1590, 1785, 1954, 2157, 2154, 1935, 1728, 1537, 1384, 1257, 1155, 1100, 1077, 1092, 1149, 1242, 1378, 1537, 1726, 1908, 2101, 2104, 1897, 1699, 1507, 1342, 1212, 1111, 1061, 1041, 1056, 1107, 1206, 1341, 1502, 1695, 1882, 2058, 2097, 1886, 1689, 1489, 1330, 1192, 1091, 1043, 1024, 1042, 1097, 1193, 1320, 1478, 1676, 1854, 2046, 2093, 1884, 1689, 1496, 1329, 1196, 1101, 1047, 1029, 1045, 1101, 1199, 1326, 1488, 1664, 1868, 2055, 2116, 1898, 1707, 1513, 1357, 1229, 1125, 1067, 1045, 1069, 1127, 1228, 1345, 1517, 1696, 1874, 2061, 2168, 1946, 1763, 1573, 1404, 1274, 1175, 1121, 1103, 1122, 1179, 1274, 1398, 1553, 1743, 1924, 2116, 2240, 2004, 1812, 1633, 1471, 1342, 1245, 1192, 1172, 1189, 1242, 1335, 1462, 1622, 1796, 1968, 2179, 2330, 2082, 1885, 1719, 1553, 1427, 1327, 1276, 1253, 1273, 1323, 1414, 1540, 1697, 1873, 2046, 2290, 2485, 2187, 1969, 1813, 1667, 1524, 1426, 1372, 1358, 1371, 1422, 1520, 1637, 1786, 1949, 2153, 2425, 2683, 2315, 2059, 1900, 1762, 1638, 1546, 1481, 1467, 1476, 1533, 1622, 1744, 1876, 2037, 2262, 2593, 2892, 2456, 2162, 2006, 1850, 1739, 1653, 1595, 1568, 1585, 1635, 1725, 1827, 1966, 2158, 2426, 2799]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [3001, 2620, 2317, 2117, 1966, 1849, 1768, 1713, 1688, 1710, 1769, 1849, 1964, 2101, 2313, 2576, 2998, 2719, 2353, 2113, 1958, 1816, 1676, 1587, 1527, 1521, 1528, 1589, 1679, 1810, 1947, 2117, 2352, 2696, 2531, 2223, 2011, 1851, 1703, 1568, 1468, 1425, 1396, 1413, 1465, 1567, 1698, 1853, 2015, 2227, 2506, 2392, 2109, 1924, 1751, 1594, 1467, 1362, 1305, 1290, 1307, 1364, 1453, 1593, 1757, 1932, 2102, 2361, 2284, 2046, 1868, 1668, 1511, 1381, 1281, 1222, 1198, 1219, 1280, 1373, 1503, 1666, 1860, 2041, 2257, 2209, 1987, 1795, 1604, 1443, 1310, 1203, 1150, 1127, 1140, 1202, 1301, 1432, 1605, 1790, 1965, 2187, 2158, 1942, 1724, 1548, 1381, 1257, 1148, 1096, 1073, 1087, 1147, 1243, 1382, 1550, 1739, 1928, 2138, 2107, 1899, 1698, 1510, 1345, 1212, 1116, 1060, 1040, 1052, 1109, 1207, 1351, 1513, 1704, 1894, 2102, 2105, 1879, 1686, 1497, 1335, 1203, 1095, 1040, 1024, 1036, 1096, 1195, 1331, 1489, 1687, 1876, 2063, 2121, 1893, 1697, 1503, 1343, 1203, 1104, 1045, 1025, 1043, 1106, 1204, 1336, 1498, 1687, 1881, 2081, 2115, 1917, 1713, 1527, 1363, 1229, 1125, 1069, 1050, 1069, 1123, 1226, 1363, 1517, 1704, 1896, 2075, 2190, 1951, 1757, 1572, 1415, 1275, 1178, 1124, 1100, 1117, 1180, 1272, 1409, 1566, 1753, 1943, 2144, 2257, 2005, 1813, 1631, 1477, 1342, 1241, 1188, 1164, 1189, 1240, 1337, 1467, 1630, 1814, 1991, 2206, 2351, 2091, 1886, 1723, 1557, 1426, 1320, 1266, 1248, 1266, 1323, 1407, 1544, 1704, 1872, 2064, 2314, 2490, 2186, 1990, 1816, 1660, 1522, 1419, 1363, 1350, 1362, 1420, 1506, 1651, 1796, 1959, 2161, 2447, 2658, 2303, 2060, 1919, 1756, 1636, 1534, 1480, 1458, 1475, 1530, 1621, 1745, 1888, 2039, 2297, 2623, 2929, 2491, 2188, 2011, 1870, 1748, 1663, 1593, 1575, 1588, 1649, 1735, 1835, 1985, 2179, 2447, 2862]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2749, 2338, 2091, 1904, 1778, 1694, 1623, 1586, 1573, 1592, 1651, 1726, 1820, 1940, 2159, 2452, 2857, 2483, 2138, 1915, 1761, 1652, 1546, 1485, 1443, 1432, 1458, 1491, 1582, 1697, 1809, 1975, 2239, 2568, 2316, 2019, 1814, 1641, 1532, 1432, 1372, 1337, 1328, 1352, 1403, 1477, 1589, 1722, 1881, 2099, 2374, 2181, 1917, 1714, 1570, 1441, 1347, 1269, 1245, 1236, 1262, 1316, 1386, 1509, 1636, 1804, 1997, 2221, 2066, 1848, 1670, 1507, 1372, 1281, 1209, 1176, 1159, 1191, 1243, 1316, 1426, 1571, 1733, 1905, 2111, 2025, 1796, 1601, 1436, 1309, 1226, 1149, 1113, 1107, 1126, 1179, 1258, 1362, 1509, 1686, 1858, 2035, 1966, 1754, 1564, 1399, 1265, 1177, 1108, 1063, 1065, 1083, 1131, 1220, 1325, 1462, 1632, 1813, 1981, 1932, 1735, 1550, 1370, 1243, 1149, 1084, 1045, 1036, 1052, 1101, 1180, 1290, 1433, 1624, 1784, 1985, 1907, 1722, 1536, 1368, 1237, 1137, 1077, 1030, 1024, 1045, 1102, 1179, 1290, 1419, 1594, 1780, 1951, 1938, 1733, 1547, 1380, 1240, 1150, 1086, 1051, 1031, 1050, 1100, 1175, 1285, 1428, 1600, 1778, 1957, 1962, 1751, 1568, 1405, 1266, 1176, 1099, 1062, 1054, 1076, 1126, 1208, 1306, 1446, 1616, 1808, 1989, 1999, 1795, 1607, 1445, 1313, 1217, 1139, 1104, 1098, 1111, 1169, 1242, 1354, 1490, 1657, 1837, 2021, 2089, 1856, 1669, 1506, 1363, 1269, 1193, 1156, 1153, 1169, 1226, 1292, 1397, 1543, 1685, 1879, 2087, 2192, 1924, 1740, 1580, 1442, 1337, 1260, 1224, 1214, 1238, 1284, 1353, 1464, 1610, 1769, 1944, 2189, 2334, 2018, 1831, 1673, 1534, 1434, 1348, 1311, 1299, 1323, 1375, 1452, 1559, 1704, 1854, 2067, 2330, 2499, 2161, 1927, 1766, 1654, 1530, 1462, 1412, 1399, 1421, 1467, 1545, 1655, 1782, 1938, 2202, 2510, 2752, 2307, 2010, 1835, 1701, 1618, 1531, 1488, 1480, 1505, 1544, 1618, 1721, 1845, 2041, 2324, 2665]
                                       }
                                   }, {
                                       "name":    "1296x972_CWF_70",
                                       "resolution":    "1296x972",
                                       "illumination":    "CWF",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [2663, 2452, 2235, 2102, 1981, 1887, 1814, 1770, 1747, 1771, 1834, 1903, 2027, 2135, 2289, 2482, 2675, 2540, 2319, 2136, 1986, 1869, 1745, 1662, 1602, 1590, 1616, 1681, 1777, 1906, 2035, 2188, 2355, 2593, 2418, 2223, 2045, 1893, 1739, 1621, 1516, 1472, 1451, 1482, 1558, 1639, 1790, 1951, 2089, 2253, 2467, 2314, 2133, 1960, 1792, 1631, 1491, 1406, 1339, 1331, 1355, 1420, 1527, 1662, 1833, 2001, 2166, 2365, 2227, 2045, 1886, 1695, 1538, 1405, 1301, 1242, 1226, 1252, 1317, 1424, 1562, 1745, 1938, 2113, 2277, 2153, 2017, 1824, 1627, 1460, 1325, 1218, 1165, 1138, 1165, 1235, 1344, 1490, 1656, 1871, 2064, 2225, 2140, 1955, 1756, 1571, 1395, 1258, 1158, 1102, 1080, 1101, 1175, 1273, 1422, 1608, 1813, 2033, 2179, 2100, 1928, 1734, 1526, 1352, 1218, 1121, 1062, 1042, 1065, 1128, 1239, 1390, 1570, 1783, 1984, 2162, 2087, 1915, 1712, 1519, 1344, 1205, 1101, 1043, 1024, 1050, 1125, 1229, 1382, 1553, 1777, 1977, 2153, 2100, 1936, 1727, 1527, 1342, 1213, 1108, 1053, 1033, 1057, 1126, 1242, 1387, 1565, 1779, 1983, 2158, 2116, 1942, 1742, 1547, 1384, 1243, 1140, 1080, 1063, 1091, 1162, 1275, 1413, 1604, 1804, 2012, 2189, 2151, 1990, 1796, 1614, 1432, 1303, 1201, 1145, 1120, 1147, 1222, 1330, 1469, 1659, 1855, 2050, 2236, 2204, 2043, 1850, 1675, 1503, 1377, 1279, 1219, 1203, 1227, 1294, 1401, 1538, 1715, 1898, 2079, 2269, 2302, 2109, 1931, 1762, 1600, 1473, 1374, 1318, 1301, 1323, 1388, 1498, 1636, 1810, 1981, 2136, 2361, 2394, 2178, 2016, 1863, 1716, 1585, 1489, 1436, 1420, 1443, 1520, 1611, 1751, 1918, 2070, 2226, 2448, 2519, 2310, 2103, 1952, 1835, 1716, 1622, 1570, 1546, 1577, 1648, 1742, 1886, 2010, 2160, 2336, 2570, 2612, 2381, 2172, 2033, 1917, 1817, 1744, 1706, 1669, 1697, 1764, 1831, 1940, 2064, 2211, 2411, 2619]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2428, 2214, 2050, 1937, 1835, 1764, 1704, 1644, 1633, 1655, 1687, 1745, 1822, 1931, 2039, 2203, 2386, 2272, 2071, 1925, 1828, 1725, 1635, 1564, 1513, 1500, 1514, 1545, 1625, 1707, 1813, 1911, 2044, 2220, 2152, 1973, 1860, 1750, 1639, 1533, 1450, 1410, 1394, 1410, 1454, 1531, 1627, 1733, 1849, 1958, 2112, 2077, 1907, 1800, 1679, 1545, 1452, 1358, 1312, 1300, 1309, 1358, 1426, 1546, 1664, 1781, 1899, 2029, 2018, 1859, 1749, 1607, 1477, 1370, 1279, 1235, 1211, 1231, 1284, 1360, 1470, 1601, 1738, 1846, 1969, 1965, 1824, 1692, 1549, 1413, 1298, 1209, 1155, 1134, 1153, 1205, 1292, 1406, 1536, 1688, 1800, 1921, 1928, 1792, 1644, 1493, 1363, 1249, 1152, 1099, 1077, 1091, 1146, 1234, 1357, 1493, 1642, 1769, 1885, 1893, 1764, 1622, 1468, 1325, 1206, 1110, 1061, 1041, 1056, 1106, 1200, 1324, 1463, 1618, 1751, 1856, 1889, 1756, 1614, 1452, 1314, 1187, 1090, 1043, 1024, 1042, 1096, 1188, 1305, 1442, 1603, 1729, 1848, 1884, 1753, 1613, 1458, 1313, 1191, 1100, 1047, 1029, 1045, 1100, 1194, 1310, 1450, 1591, 1739, 1853, 1897, 1760, 1626, 1471, 1338, 1222, 1123, 1067, 1045, 1069, 1125, 1221, 1326, 1475, 1616, 1740, 1853, 1930, 1793, 1669, 1521, 1379, 1263, 1171, 1119, 1102, 1120, 1174, 1263, 1373, 1503, 1651, 1775, 1889, 1973, 1831, 1702, 1568, 1436, 1324, 1236, 1187, 1168, 1184, 1233, 1317, 1427, 1558, 1689, 1801, 1926, 2025, 1880, 1752, 1634, 1503, 1397, 1309, 1264, 1243, 1261, 1306, 1385, 1491, 1615, 1742, 1851, 1994, 2118, 1944, 1807, 1703, 1594, 1478, 1395, 1348, 1336, 1348, 1391, 1474, 1568, 1679, 1790, 1917, 2073, 2231, 2019, 1860, 1759, 1662, 1568, 1494, 1440, 1428, 1435, 1482, 1554, 1647, 1739, 1842, 1978, 2166, 2332, 2093, 1916, 1824, 1718, 1639, 1575, 1529, 1507, 1520, 1559, 1627, 1699, 1791, 1912, 2071, 2267]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2408, 2216, 2037, 1914, 1816, 1734, 1675, 1633, 1613, 1631, 1676, 1734, 1814, 1901, 2034, 2183, 2406, 2257, 2048, 1903, 1807, 1709, 1602, 1531, 1482, 1478, 1483, 1533, 1604, 1704, 1798, 1906, 2047, 2241, 2153, 1973, 1841, 1735, 1626, 1518, 1434, 1398, 1372, 1387, 1431, 1517, 1622, 1737, 1845, 1976, 2134, 2072, 1902, 1785, 1663, 1540, 1435, 1342, 1291, 1278, 1293, 1344, 1422, 1539, 1668, 1792, 1896, 2049, 2008, 1865, 1751, 1599, 1472, 1360, 1270, 1216, 1193, 1213, 1269, 1353, 1465, 1598, 1744, 1861, 1987, 1962, 1828, 1697, 1549, 1415, 1297, 1198, 1148, 1125, 1138, 1197, 1288, 1405, 1550, 1692, 1809, 1945, 1931, 1798, 1641, 1503, 1360, 1249, 1145, 1095, 1073, 1086, 1145, 1235, 1361, 1505, 1654, 1786, 1915, 1895, 1766, 1621, 1471, 1328, 1206, 1115, 1060, 1040, 1052, 1108, 1201, 1334, 1473, 1626, 1761, 1891, 1895, 1750, 1611, 1460, 1319, 1198, 1094, 1040, 1024, 1036, 1095, 1190, 1315, 1452, 1612, 1747, 1862, 1907, 1760, 1620, 1464, 1326, 1197, 1103, 1045, 1025, 1043, 1105, 1198, 1319, 1460, 1611, 1750, 1874, 1897, 1776, 1631, 1484, 1343, 1222, 1123, 1069, 1050, 1069, 1121, 1219, 1343, 1475, 1623, 1759, 1865, 1947, 1798, 1663, 1520, 1389, 1264, 1173, 1122, 1099, 1115, 1175, 1261, 1383, 1515, 1660, 1791, 1911, 1987, 1832, 1703, 1566, 1441, 1324, 1232, 1183, 1160, 1184, 1231, 1319, 1432, 1565, 1704, 1820, 1947, 2041, 1887, 1753, 1638, 1507, 1397, 1303, 1254, 1238, 1254, 1306, 1379, 1495, 1621, 1741, 1865, 2013, 2122, 1943, 1824, 1705, 1588, 1476, 1389, 1340, 1329, 1339, 1390, 1462, 1580, 1688, 1798, 1924, 2090, 2213, 2010, 1860, 1775, 1657, 1566, 1483, 1439, 1420, 1434, 1480, 1553, 1648, 1749, 1843, 2005, 2188, 2358, 2119, 1936, 1828, 1735, 1647, 1583, 1527, 1513, 1523, 1571, 1636, 1706, 1807, 1929, 2087, 2311]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2232, 2005, 1860, 1741, 1658, 1601, 1548, 1521, 1511, 1526, 1573, 1628, 1693, 1770, 1913, 2090, 2307, 2086, 1882, 1743, 1642, 1567, 1486, 1439, 1405, 1396, 1419, 1445, 1518, 1606, 1682, 1792, 1960, 2148, 1992, 1811, 1678, 1555, 1474, 1394, 1345, 1316, 1308, 1330, 1374, 1435, 1525, 1624, 1734, 1875, 2035, 1911, 1746, 1608, 1504, 1402, 1323, 1255, 1234, 1226, 1250, 1299, 1359, 1463, 1562, 1684, 1811, 1941, 1837, 1702, 1580, 1456, 1344, 1266, 1201, 1171, 1155, 1186, 1234, 1299, 1394, 1513, 1634, 1749, 1873, 1817, 1668, 1527, 1397, 1290, 1217, 1145, 1111, 1106, 1124, 1174, 1247, 1339, 1463, 1602, 1720, 1824, 1777, 1639, 1500, 1367, 1251, 1171, 1106, 1063, 1065, 1082, 1129, 1213, 1307, 1424, 1559, 1689, 1789, 1754, 1627, 1490, 1342, 1231, 1145, 1083, 1045, 1036, 1052, 1100, 1175, 1276, 1400, 1555, 1668, 1797, 1736, 1617, 1478, 1341, 1226, 1134, 1076, 1030, 1024, 1045, 1101, 1174, 1276, 1388, 1530, 1666, 1771, 1759, 1625, 1487, 1351, 1229, 1146, 1085, 1051, 1031, 1050, 1099, 1170, 1271, 1395, 1534, 1663, 1775, 1774, 1637, 1503, 1372, 1252, 1170, 1097, 1062, 1054, 1075, 1124, 1201, 1290, 1410, 1545, 1685, 1796, 1796, 1667, 1533, 1405, 1294, 1208, 1136, 1102, 1097, 1109, 1165, 1232, 1332, 1446, 1576, 1702, 1813, 1855, 1709, 1579, 1455, 1336, 1255, 1186, 1152, 1149, 1164, 1218, 1277, 1367, 1488, 1593, 1728, 1854, 1919, 1752, 1630, 1512, 1402, 1314, 1246, 1214, 1205, 1228, 1269, 1329, 1422, 1539, 1654, 1768, 1917, 2005, 1811, 1692, 1582, 1476, 1396, 1323, 1292, 1281, 1303, 1348, 1413, 1498, 1609, 1711, 1849, 2002, 2097, 1900, 1753, 1646, 1569, 1472, 1419, 1377, 1366, 1385, 1423, 1485, 1570, 1660, 1762, 1932, 2105, 2234, 1982, 1797, 1685, 1593, 1535, 1468, 1434, 1429, 1449, 1479, 1535, 1610, 1693, 1821, 1995, 2173]
                                       }
                                   }, {
                                       "name":    "1296x972_D50_100",
                                       "resolution":    "1296x972",
                                       "illumination":    "D50",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [3361, 2910, 2522, 2303, 2108, 1977, 1883, 1809, 1782, 1806, 1903, 2008, 2158, 2319, 2587, 2922, 3398, 3062, 2681, 2363, 2129, 1961, 1799, 1694, 1643, 1613, 1635, 1707, 1855, 1995, 2176, 2425, 2715, 3135, 2856, 2487, 2222, 2009, 1803, 1656, 1524, 1474, 1465, 1492, 1550, 1682, 1846, 2067, 2266, 2568, 2935, 2668, 2340, 2105, 1865, 1669, 1513, 1407, 1334, 1322, 1354, 1425, 1547, 1710, 1924, 2164, 2445, 2750, 2544, 2265, 2001, 1764, 1564, 1410, 1301, 1240, 1220, 1252, 1321, 1441, 1589, 1801, 2081, 2324, 2598, 2461, 2175, 1926, 1674, 1473, 1319, 1212, 1155, 1133, 1156, 1235, 1354, 1509, 1726, 1985, 2239, 2553, 2359, 2119, 1854, 1588, 1411, 1260, 1159, 1086, 1075, 1088, 1166, 1281, 1457, 1663, 1924, 2184, 2476, 2341, 2077, 1828, 1570, 1369, 1222, 1115, 1054, 1036, 1051, 1128, 1246, 1408, 1617, 1883, 2154, 2461, 2339, 2078, 1794, 1555, 1355, 1211, 1101, 1044, 1024, 1034, 1118, 1236, 1399, 1605, 1879, 2155, 2445, 2346, 2080, 1808, 1571, 1368, 1208, 1112, 1050, 1030, 1057, 1127, 1249, 1420, 1629, 1898, 2158, 2445, 2367, 2103, 1848, 1601, 1406, 1248, 1143, 1082, 1063, 1095, 1169, 1293, 1449, 1664, 1921, 2191, 2483, 2456, 2188, 1910, 1665, 1475, 1315, 1210, 1143, 1122, 1148, 1234, 1352, 1514, 1731, 1969, 2257, 2550, 2571, 2249, 1985, 1754, 1550, 1401, 1294, 1231, 1223, 1235, 1313, 1425, 1602, 1821, 2061, 2323, 2668, 2719, 2365, 2109, 1871, 1657, 1500, 1395, 1331, 1315, 1340, 1420, 1542, 1716, 1932, 2170, 2426, 2766, 2881, 2501, 2203, 2005, 1806, 1638, 1538, 1478, 1451, 1492, 1564, 1674, 1857, 2052, 2290, 2569, 2975, 3119, 2685, 2370, 2120, 1950, 1810, 1693, 1619, 1610, 1646, 1724, 1844, 2020, 2189, 2430, 2759, 3200, 3309, 2817, 2449, 2238, 2065, 1922, 1811, 1765, 1743, 1779, 1831, 1956, 2087, 2322, 2514, 2893, 3307]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [3007, 2583, 2294, 2110, 1954, 1839, 1751, 1690, 1669, 1679, 1724, 1815, 1926, 2068, 2264, 2529, 2906, 2704, 2344, 2110, 1948, 1803, 1681, 1576, 1526, 1501, 1523, 1568, 1658, 1775, 1898, 2075, 2294, 2603, 2510, 2219, 2013, 1852, 1703, 1561, 1464, 1411, 1394, 1406, 1455, 1548, 1666, 1810, 1967, 2158, 2434, 2408, 2101, 1918, 1750, 1592, 1467, 1356, 1309, 1297, 1300, 1356, 1437, 1570, 1721, 1892, 2057, 2301, 2284, 2045, 1843, 1676, 1508, 1381, 1281, 1228, 1198, 1219, 1279, 1359, 1488, 1639, 1821, 1985, 2239, 2197, 1977, 1783, 1596, 1444, 1307, 1212, 1149, 1129, 1143, 1200, 1293, 1416, 1576, 1755, 1938, 2118, 2147, 1938, 1731, 1547, 1380, 1254, 1151, 1094, 1072, 1085, 1146, 1232, 1369, 1527, 1709, 1884, 2088, 2115, 1916, 1703, 1512, 1348, 1215, 1115, 1058, 1043, 1056, 1101, 1198, 1338, 1491, 1672, 1859, 2043, 2113, 1894, 1693, 1497, 1328, 1196, 1099, 1045, 1024, 1041, 1098, 1191, 1318, 1479, 1662, 1853, 2019, 2111, 1889, 1702, 1503, 1343, 1204, 1107, 1047, 1035, 1045, 1105, 1193, 1325, 1491, 1666, 1861, 2037, 2129, 1913, 1721, 1529, 1361, 1234, 1134, 1071, 1048, 1072, 1131, 1224, 1352, 1507, 1696, 1884, 2052, 2176, 1951, 1764, 1580, 1408, 1280, 1180, 1128, 1105, 1121, 1176, 1270, 1399, 1558, 1733, 1920, 2112, 2253, 2018, 1820, 1638, 1474, 1350, 1252, 1198, 1172, 1194, 1246, 1332, 1453, 1619, 1796, 1971, 2183, 2360, 2087, 1892, 1711, 1560, 1427, 1333, 1276, 1254, 1269, 1321, 1407, 1547, 1690, 1858, 2035, 2292, 2499, 2178, 1979, 1811, 1659, 1525, 1426, 1372, 1353, 1370, 1417, 1505, 1634, 1783, 1948, 2144, 2430, 2671, 2306, 2062, 1912, 1762, 1632, 1537, 1489, 1452, 1473, 1529, 1614, 1733, 1859, 2039, 2252, 2598, 2889, 2476, 2170, 1988, 1836, 1731, 1630, 1579, 1552, 1572, 1628, 1702, 1814, 1940, 2136, 2407, 2802]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2995, 2576, 2279, 2085, 1935, 1815, 1728, 1676, 1657, 1674, 1717, 1816, 1929, 2066, 2256, 2526, 2942, 2661, 2326, 2072, 1922, 1769, 1646, 1561, 1508, 1488, 1499, 1556, 1641, 1775, 1900, 2076, 2304, 2634, 2519, 2191, 1970, 1811, 1675, 1546, 1444, 1390, 1375, 1389, 1440, 1536, 1675, 1819, 1974, 2171, 2488, 2362, 2096, 1894, 1733, 1572, 1451, 1344, 1292, 1275, 1300, 1346, 1429, 1570, 1727, 1896, 2081, 2320, 2268, 2005, 1834, 1651, 1488, 1369, 1271, 1203, 1189, 1208, 1266, 1347, 1487, 1649, 1837, 1994, 2206, 2199, 1958, 1763, 1585, 1431, 1304, 1200, 1142, 1115, 1131, 1192, 1284, 1414, 1571, 1765, 1951, 2156, 2128, 1918, 1717, 1534, 1374, 1250, 1145, 1088, 1064, 1082, 1137, 1234, 1366, 1526, 1713, 1890, 2110, 2085, 1880, 1686, 1497, 1337, 1206, 1112, 1052, 1034, 1047, 1103, 1202, 1336, 1488, 1687, 1878, 2074, 2093, 1869, 1674, 1483, 1326, 1192, 1088, 1040, 1024, 1031, 1090, 1186, 1323, 1479, 1673, 1856, 2045, 2104, 1878, 1681, 1499, 1340, 1203, 1102, 1044, 1025, 1046, 1098, 1197, 1325, 1490, 1674, 1863, 2057, 2123, 1893, 1699, 1518, 1359, 1224, 1132, 1069, 1047, 1070, 1130, 1225, 1351, 1511, 1699, 1879, 2086, 2149, 1940, 1743, 1569, 1410, 1275, 1179, 1119, 1103, 1120, 1180, 1274, 1395, 1557, 1735, 1913, 2126, 2239, 1999, 1801, 1631, 1469, 1340, 1241, 1193, 1170, 1191, 1239, 1338, 1471, 1620, 1800, 1974, 2200, 2356, 2072, 1885, 1714, 1544, 1420, 1323, 1266, 1249, 1260, 1321, 1403, 1538, 1691, 1875, 2050, 2310, 2496, 2174, 1966, 1804, 1650, 1513, 1418, 1366, 1352, 1363, 1419, 1506, 1644, 1788, 1951, 2154, 2462, 2690, 2311, 2042, 1896, 1752, 1618, 1534, 1470, 1452, 1470, 1523, 1610, 1734, 1866, 2039, 2273, 2642, 2950, 2487, 2190, 1995, 1857, 1732, 1641, 1591, 1575, 1588, 1632, 1727, 1831, 1975, 2160, 2467, 2823]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2822, 2401, 2115, 1931, 1788, 1703, 1629, 1592, 1579, 1601, 1640, 1712, 1809, 1946, 2152, 2418, 2838, 2520, 2172, 1937, 1789, 1651, 1562, 1485, 1439, 1425, 1450, 1499, 1582, 1694, 1811, 1968, 2225, 2568, 2335, 2043, 1838, 1679, 1555, 1458, 1372, 1347, 1327, 1347, 1396, 1483, 1585, 1713, 1874, 2080, 2324, 2220, 1927, 1747, 1598, 1468, 1361, 1292, 1251, 1236, 1263, 1309, 1383, 1491, 1633, 1796, 1987, 2216, 2138, 1881, 1698, 1524, 1389, 1292, 1213, 1172, 1168, 1186, 1239, 1306, 1415, 1556, 1733, 1913, 2102, 2057, 1819, 1634, 1472, 1332, 1234, 1164, 1117, 1105, 1120, 1176, 1253, 1364, 1502, 1680, 1848, 2036, 2023, 1786, 1600, 1432, 1279, 1192, 1119, 1067, 1059, 1072, 1126, 1213, 1319, 1448, 1626, 1813, 1985, 1989, 1766, 1578, 1400, 1263, 1164, 1084, 1046, 1030, 1045, 1100, 1184, 1294, 1430, 1610, 1773, 1958, 1977, 1750, 1576, 1400, 1257, 1152, 1080, 1035, 1024, 1040, 1094, 1172, 1285, 1424, 1587, 1775, 1956, 1970, 1771, 1572, 1407, 1270, 1162, 1089, 1047, 1025, 1044, 1100, 1177, 1287, 1426, 1597, 1791, 1975, 1999, 1790, 1609, 1427, 1287, 1181, 1107, 1066, 1057, 1067, 1125, 1203, 1302, 1445, 1627, 1802, 1986, 2051, 1824, 1650, 1479, 1342, 1233, 1154, 1106, 1095, 1113, 1162, 1243, 1347, 1488, 1655, 1824, 2015, 2142, 1884, 1680, 1527, 1398, 1283, 1207, 1165, 1152, 1181, 1225, 1290, 1404, 1537, 1695, 1880, 2102, 2234, 1953, 1771, 1599, 1466, 1362, 1276, 1234, 1226, 1243, 1286, 1359, 1461, 1610, 1781, 1954, 2194, 2372, 2072, 1843, 1693, 1564, 1454, 1366, 1325, 1309, 1330, 1377, 1459, 1565, 1708, 1856, 2064, 2348, 2562, 2219, 1951, 1784, 1658, 1557, 1473, 1424, 1411, 1424, 1474, 1549, 1668, 1784, 1950, 2212, 2533, 2825, 2355, 2040, 1853, 1723, 1640, 1561, 1511, 1498, 1502, 1569, 1627, 1731, 1862, 2030, 2344, 2710]
                                       }
                                   }, {
                                       "name":    "1296x972_D50_70",
                                       "resolution":    "1296x972",
                                       "illumination":    "D50",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [2660, 2432, 2198, 2066, 1935, 1844, 1776, 1718, 1697, 1716, 1794, 1871, 1977, 2079, 2249, 2441, 2686, 2507, 2301, 2105, 1951, 1835, 1710, 1628, 1587, 1562, 1580, 1639, 1760, 1864, 1990, 2155, 2327, 2560, 2396, 2182, 2016, 1871, 1715, 1598, 1486, 1444, 1437, 1460, 1510, 1621, 1753, 1921, 2053, 2246, 2455, 2284, 2088, 1939, 1763, 1608, 1477, 1385, 1319, 1309, 1338, 1402, 1509, 1645, 1814, 1989, 2173, 2347, 2211, 2046, 1865, 1685, 1521, 1388, 1289, 1233, 1214, 1245, 1309, 1417, 1544, 1718, 1934, 2094, 2253, 2162, 1985, 1811, 1612, 1443, 1306, 1206, 1152, 1131, 1153, 1229, 1339, 1476, 1660, 1862, 2038, 2235, 2092, 1947, 1755, 1539, 1388, 1251, 1156, 1085, 1075, 1087, 1163, 1272, 1432, 1608, 1817, 2001, 2185, 2084, 1916, 1736, 1526, 1351, 1216, 1114, 1054, 1036, 1051, 1126, 1239, 1388, 1569, 1785, 1982, 2180, 2084, 1919, 1707, 1513, 1338, 1206, 1100, 1044, 1024, 1034, 1117, 1230, 1380, 1559, 1783, 1984, 2169, 2088, 1919, 1718, 1527, 1350, 1202, 1111, 1050, 1030, 1057, 1125, 1242, 1399, 1580, 1798, 1985, 2167, 2098, 1933, 1750, 1551, 1384, 1240, 1141, 1081, 1063, 1094, 1166, 1283, 1424, 1609, 1814, 2007, 2191, 2158, 1995, 1797, 1604, 1445, 1302, 1205, 1141, 1120, 1146, 1228, 1337, 1481, 1664, 1848, 2053, 2232, 2232, 2032, 1851, 1676, 1508, 1379, 1283, 1224, 1217, 1228, 1301, 1402, 1556, 1736, 1917, 2093, 2307, 2323, 2109, 1942, 1768, 1597, 1465, 1374, 1316, 1302, 1325, 1397, 1504, 1650, 1822, 1994, 2158, 2359, 2415, 2193, 2000, 1868, 1717, 1581, 1498, 1447, 1423, 1460, 1522, 1614, 1763, 1908, 2073, 2246, 2485, 2548, 2304, 2111, 1943, 1825, 1720, 1627, 1565, 1559, 1590, 1655, 1750, 1886, 2001, 2159, 2361, 2607, 2624, 2363, 2140, 2013, 1899, 1797, 1713, 1679, 1662, 1692, 1731, 1826, 1917, 2081, 2191, 2420, 2622]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2412, 2188, 2019, 1909, 1806, 1726, 1661, 1613, 1596, 1603, 1637, 1705, 1782, 1874, 1996, 2148, 2341, 2246, 2041, 1901, 1799, 1698, 1606, 1521, 1481, 1459, 1478, 1514, 1586, 1674, 1757, 1873, 2003, 2173, 2137, 1970, 1843, 1736, 1626, 1511, 1430, 1385, 1370, 1380, 1422, 1500, 1593, 1700, 1805, 1921, 2080, 2085, 1895, 1780, 1662, 1538, 1435, 1337, 1295, 1285, 1287, 1337, 1407, 1518, 1636, 1758, 1859, 2003, 2008, 1864, 1729, 1607, 1470, 1360, 1270, 1221, 1193, 1213, 1268, 1340, 1451, 1573, 1710, 1815, 1973, 1953, 1819, 1686, 1542, 1416, 1294, 1206, 1147, 1127, 1141, 1195, 1281, 1390, 1524, 1662, 1787, 1890, 1922, 1794, 1647, 1502, 1359, 1246, 1148, 1093, 1072, 1084, 1144, 1224, 1349, 1484, 1627, 1749, 1875, 1902, 1780, 1625, 1472, 1331, 1209, 1114, 1058, 1043, 1056, 1100, 1193, 1321, 1453, 1598, 1732, 1844, 1902, 1763, 1618, 1460, 1312, 1191, 1098, 1045, 1024, 1041, 1097, 1186, 1303, 1443, 1590, 1728, 1826, 1899, 1757, 1625, 1464, 1326, 1198, 1106, 1047, 1035, 1045, 1104, 1188, 1309, 1453, 1593, 1733, 1839, 1908, 1773, 1638, 1486, 1341, 1226, 1132, 1071, 1048, 1071, 1129, 1217, 1333, 1465, 1616, 1749, 1846, 1936, 1798, 1670, 1527, 1382, 1268, 1175, 1126, 1104, 1119, 1172, 1259, 1374, 1507, 1643, 1772, 1885, 1983, 1842, 1709, 1573, 1438, 1331, 1242, 1192, 1168, 1189, 1237, 1314, 1419, 1556, 1689, 1804, 1929, 2048, 1884, 1758, 1627, 1509, 1397, 1315, 1264, 1244, 1257, 1304, 1379, 1497, 1609, 1730, 1842, 1996, 2129, 1937, 1815, 1701, 1587, 1479, 1395, 1348, 1332, 1347, 1387, 1461, 1565, 1677, 1789, 1910, 2077, 2222, 2012, 1862, 1769, 1662, 1563, 1486, 1447, 1415, 1433, 1479, 1547, 1637, 1724, 1843, 1970, 2169, 2330, 2108, 1922, 1809, 1706, 1633, 1555, 1515, 1493, 1509, 1553, 1608, 1688, 1770, 1895, 2057, 2269]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2404, 2183, 2007, 1888, 1790, 1705, 1640, 1601, 1586, 1599, 1631, 1706, 1785, 1873, 1989, 2146, 2367, 2215, 2027, 1870, 1777, 1668, 1575, 1508, 1464, 1448, 1456, 1503, 1571, 1674, 1759, 1873, 2010, 2196, 2144, 1947, 1807, 1701, 1601, 1498, 1412, 1365, 1352, 1364, 1408, 1489, 1601, 1708, 1811, 1932, 2120, 2049, 1891, 1760, 1647, 1520, 1420, 1326, 1279, 1264, 1287, 1327, 1399, 1518, 1641, 1762, 1879, 2017, 1995, 1832, 1721, 1584, 1451, 1349, 1261, 1197, 1184, 1202, 1256, 1328, 1450, 1582, 1724, 1823, 1947, 1954, 1803, 1669, 1532, 1404, 1291, 1195, 1140, 1114, 1129, 1187, 1272, 1388, 1519, 1670, 1798, 1920, 1907, 1777, 1634, 1490, 1354, 1242, 1143, 1087, 1064, 1081, 1135, 1226, 1346, 1483, 1631, 1754, 1893, 1878, 1749, 1610, 1459, 1320, 1200, 1111, 1052, 1034, 1047, 1102, 1196, 1319, 1450, 1611, 1748, 1869, 1886, 1742, 1601, 1447, 1311, 1187, 1087, 1040, 1024, 1031, 1089, 1181, 1308, 1443, 1600, 1730, 1847, 1893, 1748, 1606, 1461, 1323, 1197, 1101, 1044, 1025, 1046, 1097, 1192, 1309, 1452, 1600, 1735, 1855, 1903, 1756, 1618, 1475, 1339, 1217, 1130, 1069, 1047, 1070, 1128, 1218, 1332, 1469, 1618, 1744, 1873, 1915, 1788, 1651, 1517, 1384, 1264, 1174, 1117, 1102, 1118, 1175, 1263, 1370, 1507, 1644, 1766, 1897, 1973, 1827, 1693, 1566, 1434, 1322, 1232, 1188, 1166, 1186, 1230, 1320, 1436, 1556, 1692, 1806, 1942, 2045, 1872, 1752, 1630, 1495, 1391, 1306, 1254, 1239, 1249, 1304, 1375, 1489, 1610, 1744, 1854, 2010, 2126, 1934, 1804, 1695, 1579, 1468, 1388, 1343, 1331, 1340, 1389, 1462, 1574, 1681, 1792, 1918, 2101, 2236, 2016, 1846, 1755, 1654, 1550, 1483, 1430, 1415, 1430, 1473, 1543, 1638, 1730, 1843, 1987, 2201, 2372, 2116, 1938, 1815, 1724, 1633, 1564, 1525, 1513, 1523, 1556, 1629, 1702, 1799, 1914, 2102, 2283]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2283, 2052, 1879, 1763, 1666, 1608, 1554, 1526, 1517, 1534, 1563, 1616, 1684, 1775, 1908, 2065, 2294, 2113, 1909, 1761, 1666, 1566, 1501, 1439, 1402, 1390, 1412, 1452, 1518, 1604, 1684, 1786, 1950, 2148, 2006, 1830, 1698, 1587, 1495, 1418, 1345, 1325, 1307, 1325, 1367, 1441, 1521, 1617, 1728, 1860, 1998, 1941, 1754, 1636, 1528, 1426, 1336, 1277, 1240, 1226, 1251, 1293, 1357, 1447, 1559, 1677, 1803, 1938, 1894, 1729, 1604, 1471, 1360, 1277, 1205, 1167, 1164, 1181, 1230, 1290, 1384, 1499, 1634, 1756, 1866, 1842, 1687, 1556, 1430, 1311, 1225, 1160, 1115, 1104, 1118, 1172, 1243, 1341, 1457, 1596, 1712, 1825, 1823, 1666, 1531, 1397, 1264, 1186, 1117, 1067, 1059, 1071, 1124, 1206, 1302, 1411, 1554, 1689, 1793, 1800, 1653, 1515, 1370, 1250, 1160, 1083, 1046, 1030, 1045, 1099, 1179, 1280, 1397, 1543, 1659, 1775, 1792, 1640, 1514, 1370, 1245, 1148, 1079, 1035, 1024, 1040, 1093, 1168, 1272, 1392, 1524, 1662, 1775, 1785, 1657, 1509, 1376, 1257, 1158, 1088, 1047, 1025, 1044, 1099, 1172, 1273, 1393, 1532, 1674, 1789, 1804, 1669, 1539, 1392, 1272, 1175, 1105, 1066, 1057, 1067, 1123, 1197, 1286, 1409, 1555, 1680, 1793, 1837, 1692, 1570, 1436, 1321, 1224, 1150, 1104, 1094, 1111, 1158, 1233, 1325, 1444, 1574, 1692, 1809, 1897, 1732, 1589, 1473, 1368, 1268, 1199, 1160, 1148, 1176, 1217, 1275, 1374, 1482, 1602, 1729, 1866, 1951, 1775, 1656, 1529, 1424, 1337, 1261, 1224, 1217, 1232, 1271, 1334, 1420, 1539, 1664, 1776, 1921, 2033, 1853, 1702, 1599, 1503, 1414, 1340, 1305, 1291, 1309, 1350, 1419, 1504, 1612, 1713, 1847, 2015, 2143, 1945, 1772, 1662, 1572, 1496, 1428, 1388, 1377, 1388, 1429, 1489, 1581, 1662, 1772, 1940, 2122, 2285, 2018, 1820, 1699, 1611, 1554, 1494, 1455, 1445, 1447, 1501, 1543, 1618, 1707, 1812, 2010, 2204]
                                       }
                                   }, {
                                       "name":    "1296x972_D65_100",
                                       "resolution":    "1296x972",
                                       "illumination":    "D65",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [3652, 3169, 2773, 2530, 2337, 2178, 2069, 2005, 1997, 2029, 2093, 2224, 2393, 2596, 2877, 3256, 3727, 3368, 2931, 2573, 2334, 2137, 1973, 1854, 1778, 1758, 1795, 1885, 2033, 2213, 2409, 2664, 2993, 3434, 3105, 2721, 2425, 2176, 1962, 1785, 1656, 1591, 1578, 1593, 1699, 1835, 2029, 2261, 2533, 2808, 3190, 2913, 2580, 2272, 2022, 1794, 1624, 1498, 1426, 1398, 1435, 1526, 1654, 1859, 2108, 2362, 2649, 3019, 2741, 2440, 2180, 1909, 1678, 1492, 1362, 1290, 1278, 1307, 1388, 1533, 1713, 1973, 2268, 2534, 2855, 2644, 2354, 2074, 1789, 1563, 1389, 1263, 1189, 1160, 1198, 1288, 1424, 1614, 1865, 2155, 2444, 2754, 2596, 2289, 1994, 1709, 1490, 1306, 1185, 1111, 1087, 1109, 1194, 1341, 1538, 1771, 2076, 2390, 2686, 2531, 2248, 1947, 1670, 1441, 1263, 1139, 1062, 1043, 1068, 1155, 1294, 1480, 1737, 2038, 2335, 2651, 2549, 2242, 1931, 1640, 1416, 1241, 1117, 1045, 1024, 1051, 1137, 1281, 1465, 1704, 2027, 2318, 2638, 2530, 2241, 1939, 1664, 1428, 1251, 1135, 1063, 1037, 1067, 1155, 1282, 1477, 1726, 2030, 2336, 2643, 2574, 2280, 1985, 1694, 1470, 1290, 1169, 1100, 1073, 1105, 1194, 1335, 1523, 1762, 2078, 2378, 2693, 2649, 2350, 2049, 1783, 1545, 1373, 1241, 1171, 1143, 1174, 1271, 1413, 1599, 1850, 2128, 2438, 2779, 2755, 2428, 2142, 1883, 1648, 1465, 1347, 1265, 1251, 1282, 1374, 1508, 1690, 1945, 2225, 2519, 2836, 2886, 2538, 2256, 2002, 1771, 1596, 1478, 1403, 1371, 1408, 1502, 1630, 1830, 2073, 2355, 2608, 3028, 3109, 2693, 2417, 2154, 1961, 1770, 1633, 1566, 1549, 1578, 1665, 1806, 1998, 2239, 2482, 2782, 3209, 3355, 2908, 2560, 2309, 2110, 1959, 1820, 1756, 1723, 1752, 1842, 2000, 2170, 2398, 2651, 2982, 3424, 3542, 3086, 2692, 2444, 2241, 2098, 1974, 1926, 1908, 1928, 2009, 2121, 2294, 2502, 2769, 3125, 3540]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [3025, 2608, 2317, 2117, 1969, 1857, 1781, 1713, 1701, 1718, 1773, 1858, 1958, 2106, 2293, 2588, 2951, 2698, 2353, 2120, 1960, 1815, 1697, 1603, 1551, 1527, 1540, 1592, 1688, 1806, 1946, 2107, 2331, 2641, 2506, 2200, 2027, 1852, 1713, 1577, 1483, 1426, 1413, 1423, 1487, 1570, 1693, 1855, 2000, 2186, 2455, 2380, 2111, 1927, 1760, 1592, 1478, 1373, 1314, 1302, 1316, 1377, 1458, 1590, 1747, 1920, 2088, 2341, 2266, 2034, 1846, 1680, 1518, 1388, 1291, 1236, 1213, 1230, 1292, 1372, 1511, 1669, 1840, 2013, 2224, 2206, 1977, 1786, 1601, 1441, 1317, 1213, 1161, 1134, 1156, 1208, 1301, 1433, 1590, 1773, 1958, 2150, 2139, 1923, 1737, 1543, 1379, 1257, 1159, 1094, 1074, 1090, 1147, 1246, 1381, 1537, 1719, 1908, 2100, 2099, 1905, 1689, 1506, 1339, 1210, 1119, 1054, 1042, 1053, 1112, 1202, 1347, 1508, 1690, 1871, 2054, 2100, 1885, 1688, 1493, 1329, 1196, 1099, 1037, 1024, 1040, 1096, 1193, 1330, 1479, 1678, 1858, 2030, 2090, 1890, 1686, 1500, 1338, 1204, 1103, 1043, 1030, 1045, 1104, 1198, 1335, 1488, 1671, 1863, 2056, 2113, 1901, 1724, 1526, 1357, 1227, 1127, 1072, 1043, 1069, 1128, 1228, 1356, 1512, 1696, 1881, 2065, 2165, 1940, 1766, 1574, 1410, 1283, 1176, 1120, 1103, 1121, 1184, 1280, 1411, 1557, 1742, 1919, 2108, 2228, 2004, 1817, 1634, 1472, 1346, 1248, 1194, 1171, 1194, 1249, 1340, 1466, 1628, 1798, 1975, 2185, 2331, 2074, 1894, 1723, 1561, 1430, 1327, 1281, 1255, 1270, 1325, 1413, 1540, 1703, 1861, 2044, 2274, 2479, 2170, 1972, 1815, 1663, 1525, 1436, 1374, 1356, 1373, 1428, 1517, 1648, 1790, 1950, 2144, 2431, 2657, 2309, 2069, 1909, 1781, 1647, 1549, 1488, 1467, 1480, 1536, 1617, 1746, 1876, 2048, 2272, 2572, 2848, 2453, 2159, 1990, 1836, 1723, 1640, 1574, 1557, 1578, 1629, 1710, 1814, 1951, 2123, 2393, 2770]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [3013, 2590, 2316, 2117, 1987, 1874, 1790, 1718, 1710, 1720, 1790, 1862, 1987, 2109, 2334, 2599, 3028, 2699, 2339, 2095, 1941, 1803, 1675, 1592, 1539, 1526, 1533, 1599, 1692, 1821, 1953, 2110, 2343, 2689, 2513, 2209, 1996, 1834, 1700, 1567, 1468, 1425, 1402, 1417, 1469, 1568, 1709, 1844, 2004, 2220, 2498, 2354, 2099, 1908, 1750, 1587, 1467, 1368, 1312, 1291, 1322, 1370, 1467, 1591, 1754, 1931, 2103, 2361, 2287, 2013, 1841, 1660, 1499, 1380, 1279, 1219, 1205, 1225, 1289, 1382, 1512, 1673, 1856, 2035, 2251, 2195, 1966, 1771, 1591, 1434, 1307, 1206, 1150, 1128, 1147, 1208, 1301, 1433, 1601, 1788, 1974, 2191, 2114, 1918, 1713, 1543, 1380, 1250, 1155, 1094, 1070, 1090, 1149, 1249, 1393, 1552, 1730, 1909, 2128, 2075, 1873, 1684, 1500, 1338, 1205, 1110, 1058, 1037, 1046, 1109, 1208, 1348, 1509, 1701, 1891, 2076, 2071, 1862, 1666, 1480, 1329, 1194, 1090, 1041, 1024, 1035, 1092, 1189, 1331, 1494, 1687, 1884, 2060, 2091, 1866, 1673, 1493, 1336, 1197, 1102, 1040, 1027, 1047, 1101, 1203, 1334, 1501, 1682, 1867, 2076, 2094, 1896, 1706, 1508, 1361, 1222, 1130, 1071, 1049, 1074, 1128, 1228, 1362, 1519, 1709, 1890, 2081, 2143, 1918, 1737, 1568, 1408, 1274, 1178, 1122, 1103, 1123, 1182, 1282, 1418, 1564, 1740, 1938, 2129, 2216, 1988, 1810, 1632, 1475, 1349, 1246, 1190, 1175, 1192, 1243, 1341, 1477, 1638, 1805, 1993, 2200, 2343, 2067, 1877, 1719, 1554, 1426, 1331, 1271, 1254, 1277, 1326, 1425, 1551, 1713, 1895, 2066, 2300, 2511, 2170, 1973, 1812, 1656, 1526, 1430, 1374, 1360, 1371, 1431, 1524, 1655, 1810, 1960, 2170, 2455, 2635, 2300, 2048, 1899, 1760, 1636, 1533, 1479, 1468, 1480, 1540, 1636, 1755, 1896, 2048, 2288, 2643, 2940, 2463, 2186, 2011, 1874, 1756, 1662, 1604, 1577, 1597, 1653, 1743, 1863, 1994, 2186, 2455, 2838]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2871, 2455, 2184, 2003, 1878, 1780, 1707, 1653, 1650, 1672, 1720, 1804, 1907, 2051, 2252, 2528, 2923, 2604, 2233, 2000, 1840, 1717, 1624, 1545, 1502, 1490, 1515, 1562, 1644, 1754, 1885, 2053, 2297, 2620, 2421, 2101, 1893, 1726, 1609, 1497, 1425, 1382, 1373, 1392, 1439, 1530, 1645, 1780, 1946, 2148, 2415, 2293, 2001, 1799, 1638, 1506, 1396, 1322, 1282, 1266, 1290, 1341, 1417, 1540, 1683, 1851, 2045, 2290, 2180, 1932, 1743, 1564, 1427, 1315, 1241, 1197, 1188, 1209, 1263, 1343, 1464, 1614, 1776, 1967, 2148, 2112, 1870, 1671, 1506, 1358, 1254, 1181, 1134, 1118, 1140, 1193, 1268, 1390, 1546, 1721, 1897, 2089, 2085, 1841, 1641, 1455, 1305, 1202, 1129, 1080, 1068, 1083, 1139, 1229, 1338, 1493, 1676, 1848, 2034, 2028, 1817, 1607, 1435, 1278, 1175, 1095, 1055, 1038, 1053, 1105, 1196, 1312, 1461, 1645, 1825, 2000, 2013, 1800, 1599, 1422, 1272, 1164, 1084, 1036, 1024, 1045, 1095, 1179, 1298, 1439, 1624, 1816, 2002, 2018, 1814, 1620, 1435, 1284, 1172, 1092, 1050, 1025, 1045, 1102, 1186, 1310, 1453, 1641, 1825, 2007, 2034, 1823, 1648, 1467, 1317, 1194, 1114, 1067, 1054, 1074, 1125, 1212, 1322, 1471, 1646, 1835, 2013, 2096, 1884, 1680, 1504, 1354, 1240, 1158, 1117, 1098, 1118, 1174, 1251, 1364, 1519, 1687, 1882, 2059, 2174, 1927, 1735, 1557, 1419, 1301, 1213, 1176, 1161, 1179, 1236, 1307, 1420, 1556, 1741, 1929, 2143, 2269, 2002, 1806, 1643, 1491, 1374, 1293, 1251, 1239, 1254, 1308, 1379, 1507, 1642, 1810, 1987, 2232, 2432, 2116, 1903, 1745, 1594, 1480, 1394, 1348, 1335, 1358, 1402, 1485, 1600, 1729, 1896, 2096, 2376, 2608, 2257, 2006, 1838, 1710, 1598, 1508, 1453, 1439, 1459, 1516, 1591, 1701, 1834, 1985, 2243, 2544, 2824, 2396, 2094, 1920, 1777, 1683, 1593, 1540, 1536, 1550, 1593, 1676, 1773, 1911, 2093, 2342, 2715]
                                       }
                                   }, {
                                       "name":    "1296x972_D65_70",
                                       "resolution":    "1296x972",
                                       "illumination":    "D65",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [2864, 2626, 2394, 2251, 2128, 2017, 1939, 1892, 1887, 1913, 1960, 2057, 2175, 2305, 2476, 2691, 2916, 2730, 2494, 2275, 2123, 1987, 1865, 1772, 1710, 1694, 1726, 1800, 1918, 2053, 2186, 2348, 2541, 2778, 2582, 2367, 2184, 2015, 1856, 1715, 1607, 1553, 1542, 1554, 1647, 1760, 1915, 2088, 2274, 2436, 2646, 2472, 2282, 2080, 1901, 1721, 1580, 1471, 1407, 1381, 1415, 1497, 1608, 1780, 1976, 2156, 2338, 2553, 2364, 2190, 2019, 1815, 1626, 1465, 1348, 1281, 1271, 1298, 1373, 1504, 1658, 1872, 2095, 2267, 2453, 2307, 2134, 1940, 1717, 1527, 1372, 1256, 1186, 1158, 1195, 1280, 1406, 1574, 1785, 2011, 2209, 2394, 2281, 2090, 1878, 1650, 1463, 1296, 1182, 1110, 1087, 1108, 1191, 1329, 1508, 1707, 1951, 2175, 2353, 2236, 2061, 1842, 1618, 1419, 1256, 1137, 1062, 1043, 1068, 1153, 1286, 1456, 1679, 1922, 2135, 2333, 2253, 2058, 1829, 1591, 1396, 1235, 1116, 1045, 1024, 1051, 1136, 1274, 1442, 1650, 1914, 2123, 2325, 2236, 2055, 1834, 1612, 1407, 1244, 1133, 1063, 1037, 1067, 1153, 1274, 1453, 1669, 1915, 2136, 2327, 2264, 2082, 1870, 1636, 1444, 1280, 1166, 1099, 1073, 1104, 1191, 1324, 1494, 1698, 1952, 2165, 2359, 2311, 2131, 1918, 1711, 1510, 1357, 1235, 1168, 1141, 1171, 1264, 1395, 1560, 1772, 1987, 2204, 2414, 2375, 2180, 1986, 1791, 1599, 1440, 1333, 1257, 1244, 1274, 1359, 1480, 1637, 1847, 2058, 2255, 2439, 2451, 2248, 2066, 1883, 1700, 1554, 1452, 1385, 1355, 1389, 1474, 1586, 1754, 1945, 2150, 2305, 2560, 2585, 2345, 2178, 1996, 1855, 1701, 1586, 1529, 1515, 1541, 1616, 1734, 1888, 2069, 2232, 2415, 2660, 2720, 2476, 2264, 2102, 1963, 1852, 1741, 1690, 1662, 1686, 1761, 1889, 2015, 2177, 2338, 2533, 2770, 2787, 2564, 2331, 2181, 2047, 1949, 1856, 1822, 1809, 1824, 1886, 1968, 2091, 2228, 2391, 2593, 2785]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2425, 2207, 2037, 1914, 1818, 1741, 1687, 1633, 1625, 1638, 1680, 1742, 1809, 1905, 2018, 2192, 2373, 2242, 2048, 1909, 1809, 1708, 1620, 1546, 1504, 1483, 1493, 1536, 1612, 1700, 1797, 1898, 2031, 2201, 2134, 1955, 1855, 1736, 1635, 1526, 1448, 1399, 1388, 1396, 1451, 1520, 1617, 1739, 1832, 1943, 2096, 2063, 1903, 1788, 1670, 1538, 1445, 1353, 1300, 1289, 1302, 1357, 1426, 1536, 1659, 1782, 1885, 2033, 1994, 1855, 1732, 1610, 1479, 1367, 1280, 1229, 1207, 1223, 1281, 1352, 1472, 1600, 1726, 1838, 1961, 1960, 1819, 1689, 1546, 1413, 1304, 1207, 1158, 1132, 1153, 1203, 1288, 1406, 1536, 1677, 1803, 1916, 1916, 1782, 1652, 1498, 1358, 1249, 1156, 1093, 1074, 1089, 1145, 1238, 1360, 1493, 1636, 1769, 1885, 1889, 1771, 1613, 1467, 1322, 1204, 1118, 1054, 1042, 1053, 1111, 1196, 1330, 1469, 1614, 1742, 1853, 1891, 1755, 1613, 1456, 1313, 1191, 1098, 1037, 1024, 1040, 1095, 1188, 1314, 1443, 1604, 1732, 1835, 1882, 1758, 1610, 1461, 1321, 1198, 1102, 1043, 1030, 1045, 1103, 1193, 1318, 1450, 1597, 1735, 1854, 1895, 1763, 1641, 1483, 1338, 1220, 1125, 1071, 1043, 1069, 1126, 1221, 1337, 1470, 1616, 1746, 1857, 1927, 1788, 1671, 1522, 1384, 1271, 1172, 1118, 1102, 1119, 1179, 1268, 1385, 1507, 1650, 1771, 1882, 1964, 1831, 1707, 1569, 1436, 1327, 1239, 1189, 1167, 1189, 1240, 1322, 1431, 1564, 1690, 1807, 1930, 2026, 1873, 1760, 1638, 1510, 1400, 1309, 1269, 1245, 1258, 1308, 1384, 1491, 1620, 1732, 1849, 1982, 2114, 1931, 1809, 1704, 1591, 1479, 1404, 1350, 1335, 1349, 1397, 1472, 1577, 1683, 1791, 1910, 2078, 2212, 2014, 1868, 1766, 1679, 1576, 1497, 1446, 1428, 1439, 1485, 1549, 1649, 1739, 1851, 1986, 2150, 2301, 2091, 1913, 1811, 1706, 1626, 1563, 1510, 1497, 1514, 1554, 1615, 1688, 1779, 1885, 2046, 2246]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2416, 2193, 2036, 1914, 1833, 1756, 1695, 1638, 1633, 1640, 1695, 1745, 1833, 1908, 2050, 2200, 2427, 2243, 2037, 1889, 1793, 1698, 1601, 1536, 1493, 1482, 1487, 1542, 1616, 1713, 1803, 1901, 2040, 2236, 2139, 1962, 1829, 1721, 1623, 1517, 1434, 1398, 1378, 1390, 1435, 1518, 1631, 1729, 1836, 1970, 2128, 2043, 1893, 1772, 1662, 1534, 1435, 1348, 1298, 1279, 1308, 1350, 1435, 1537, 1665, 1791, 1897, 2049, 2010, 1838, 1727, 1592, 1461, 1360, 1268, 1213, 1200, 1219, 1278, 1361, 1473, 1604, 1740, 1856, 1982, 1951, 1810, 1676, 1537, 1406, 1294, 1201, 1148, 1126, 1145, 1203, 1288, 1406, 1546, 1691, 1817, 1948, 1896, 1777, 1631, 1498, 1359, 1242, 1152, 1093, 1070, 1089, 1146, 1241, 1371, 1507, 1646, 1770, 1907, 1870, 1744, 1609, 1461, 1321, 1199, 1109, 1058, 1037, 1046, 1108, 1202, 1331, 1470, 1624, 1759, 1870, 1868, 1736, 1594, 1444, 1313, 1189, 1089, 1041, 1024, 1035, 1091, 1184, 1315, 1457, 1612, 1754, 1859, 1882, 1738, 1599, 1455, 1319, 1192, 1101, 1040, 1027, 1047, 1100, 1197, 1318, 1462, 1607, 1738, 1870, 1880, 1759, 1625, 1466, 1341, 1215, 1128, 1071, 1049, 1073, 1126, 1221, 1342, 1476, 1627, 1754, 1869, 1910, 1770, 1646, 1516, 1382, 1263, 1173, 1120, 1102, 1121, 1177, 1270, 1392, 1513, 1649, 1787, 1899, 1955, 1818, 1701, 1567, 1439, 1330, 1237, 1185, 1171, 1187, 1234, 1323, 1441, 1573, 1696, 1822, 1942, 2035, 1868, 1746, 1634, 1504, 1397, 1313, 1259, 1244, 1265, 1309, 1396, 1501, 1629, 1761, 1867, 2002, 2138, 1931, 1810, 1702, 1584, 1480, 1399, 1350, 1338, 1348, 1400, 1478, 1584, 1700, 1799, 1931, 2096, 2196, 2007, 1851, 1758, 1661, 1566, 1482, 1438, 1429, 1439, 1489, 1566, 1656, 1755, 1851, 1998, 2202, 2365, 2099, 1934, 1828, 1738, 1654, 1583, 1537, 1515, 1531, 1575, 1643, 1729, 1814, 1934, 2093, 2294]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2317, 2093, 1933, 1822, 1742, 1675, 1622, 1580, 1580, 1597, 1633, 1695, 1766, 1861, 1986, 2147, 2353, 2174, 1956, 1812, 1708, 1623, 1555, 1493, 1459, 1449, 1471, 1509, 1573, 1655, 1746, 1855, 2005, 2185, 2070, 1876, 1744, 1628, 1543, 1453, 1394, 1358, 1350, 1367, 1407, 1483, 1575, 1674, 1788, 1913, 2066, 1997, 1814, 1680, 1563, 1460, 1369, 1305, 1270, 1255, 1277, 1323, 1388, 1491, 1603, 1724, 1850, 1994, 1926, 1771, 1643, 1506, 1395, 1298, 1232, 1191, 1183, 1203, 1253, 1325, 1429, 1551, 1671, 1800, 1901, 1885, 1730, 1588, 1460, 1336, 1244, 1176, 1132, 1116, 1138, 1188, 1257, 1365, 1497, 1632, 1753, 1867, 1873, 1712, 1567, 1418, 1289, 1196, 1127, 1079, 1068, 1082, 1137, 1222, 1320, 1453, 1598, 1718, 1832, 1832, 1696, 1540, 1402, 1265, 1170, 1094, 1055, 1038, 1053, 1104, 1191, 1297, 1426, 1574, 1703, 1809, 1821, 1683, 1534, 1390, 1259, 1160, 1083, 1036, 1024, 1045, 1094, 1174, 1284, 1406, 1556, 1697, 1812, 1824, 1694, 1552, 1402, 1270, 1167, 1091, 1050, 1025, 1045, 1101, 1181, 1295, 1418, 1571, 1703, 1815, 1832, 1697, 1574, 1429, 1300, 1188, 1112, 1067, 1054, 1073, 1123, 1205, 1305, 1433, 1572, 1707, 1815, 1873, 1742, 1596, 1459, 1332, 1230, 1154, 1115, 1097, 1116, 1170, 1241, 1341, 1472, 1602, 1740, 1843, 1922, 1767, 1636, 1500, 1388, 1285, 1205, 1171, 1157, 1174, 1227, 1291, 1389, 1499, 1641, 1769, 1898, 1978, 1815, 1686, 1568, 1447, 1348, 1277, 1240, 1229, 1243, 1292, 1353, 1461, 1567, 1689, 1803, 1950, 2078, 1888, 1752, 1644, 1529, 1438, 1366, 1326, 1315, 1335, 1373, 1442, 1535, 1630, 1746, 1872, 2036, 2177, 1974, 1817, 1707, 1617, 1532, 1460, 1414, 1403, 1420, 1467, 1526, 1610, 1703, 1800, 1963, 2130, 2284, 2048, 1862, 1754, 1657, 1591, 1522, 1480, 1478, 1489, 1522, 1585, 1653, 1747, 1862, 2008, 2208]
                                       }
                                   }, {
                                       "name":    "1296x972_D75_100",
                                       "resolution":    "1296x972",
                                       "illumination":    "D75",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [3524, 3074, 2700, 2448, 2256, 2103, 2007, 1950, 1939, 1953, 2038, 2159, 2325, 2500, 2780, 3157, 3610, 3226, 2800, 2479, 2241, 2075, 1909, 1794, 1733, 1716, 1740, 1829, 1961, 2122, 2331, 2561, 2887, 3355, 3061, 2612, 2321, 2094, 1897, 1743, 1624, 1561, 1536, 1557, 1650, 1776, 1968, 2186, 2427, 2702, 3094, 2795, 2446, 2200, 1959, 1758, 1584, 1473, 1399, 1383, 1415, 1488, 1617, 1801, 2034, 2283, 2573, 2878, 2643, 2339, 2083, 1834, 1619, 1468, 1341, 1278, 1253, 1284, 1374, 1505, 1686, 1898, 2189, 2451, 2764, 2568, 2261, 1998, 1733, 1523, 1370, 1244, 1182, 1153, 1186, 1273, 1399, 1579, 1806, 2089, 2364, 2675, 2471, 2194, 1922, 1678, 1451, 1289, 1178, 1111, 1086, 1107, 1187, 1317, 1504, 1736, 2015, 2300, 2569, 2451, 2155, 1883, 1630, 1406, 1247, 1127, 1062, 1042, 1065, 1138, 1282, 1459, 1679, 1972, 2267, 2543, 2421, 2147, 1874, 1604, 1386, 1227, 1110, 1043, 1024, 1049, 1131, 1262, 1443, 1676, 1959, 2265, 2533, 2434, 2160, 1882, 1631, 1404, 1236, 1119, 1052, 1033, 1065, 1144, 1284, 1456, 1697, 1966, 2267, 2562, 2449, 2176, 1921, 1662, 1446, 1279, 1158, 1089, 1069, 1104, 1189, 1324, 1493, 1737, 2010, 2299, 2581, 2571, 2246, 1970, 1731, 1511, 1344, 1227, 1162, 1142, 1175, 1266, 1397, 1567, 1816, 2071, 2359, 2645, 2653, 2335, 2077, 1823, 1621, 1435, 1325, 1255, 1243, 1272, 1351, 1477, 1666, 1903, 2146, 2436, 2738, 2810, 2458, 2198, 1947, 1726, 1555, 1449, 1382, 1360, 1395, 1473, 1609, 1787, 2010, 2288, 2522, 2880, 2975, 2627, 2299, 2086, 1890, 1720, 1605, 1538, 1523, 1543, 1625, 1757, 1949, 2168, 2404, 2682, 3100, 3225, 2792, 2465, 2239, 2062, 1894, 1775, 1710, 1686, 1725, 1802, 1938, 2117, 2314, 2557, 2874, 3329, 3401, 2956, 2577, 2347, 2168, 2027, 1931, 1866, 1852, 1874, 1956, 2056, 2224, 2419, 2676, 3001, 3428]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2991, 2605, 2293, 2124, 1971, 1855, 1779, 1717, 1693, 1711, 1756, 1845, 1953, 2091, 2280, 2548, 2941, 2698, 2335, 2097, 1959, 1803, 1689, 1591, 1535, 1521, 1531, 1585, 1684, 1798, 1927, 2085, 2305, 2645, 2499, 2214, 1999, 1846, 1702, 1573, 1472, 1423, 1405, 1418, 1473, 1556, 1686, 1839, 1981, 2174, 2440, 2367, 2085, 1907, 1751, 1595, 1471, 1368, 1322, 1305, 1319, 1372, 1459, 1586, 1743, 1909, 2074, 2318, 2250, 2028, 1840, 1673, 1513, 1383, 1287, 1231, 1216, 1229, 1287, 1376, 1500, 1665, 1829, 2001, 2223, 2184, 1973, 1783, 1591, 1440, 1314, 1218, 1161, 1135, 1152, 1213, 1307, 1436, 1587, 1776, 1943, 2144, 2124, 1925, 1726, 1545, 1376, 1253, 1159, 1098, 1078, 1092, 1155, 1253, 1379, 1539, 1730, 1902, 2072, 2097, 1892, 1699, 1506, 1345, 1211, 1118, 1062, 1042, 1059, 1106, 1208, 1346, 1502, 1685, 1859, 2043, 2083, 1880, 1681, 1491, 1339, 1197, 1098, 1046, 1024, 1043, 1098, 1192, 1322, 1488, 1665, 1846, 2028, 2072, 1875, 1683, 1500, 1340, 1203, 1107, 1049, 1029, 1051, 1104, 1202, 1327, 1491, 1666, 1851, 2027, 2101, 1888, 1711, 1521, 1356, 1229, 1134, 1076, 1053, 1073, 1134, 1225, 1352, 1519, 1697, 1868, 2043, 2161, 1936, 1757, 1580, 1412, 1287, 1185, 1126, 1107, 1131, 1187, 1283, 1410, 1560, 1737, 1912, 2103, 2226, 1996, 1826, 1634, 1477, 1351, 1252, 1201, 1182, 1199, 1252, 1342, 1463, 1621, 1790, 1949, 2171, 2328, 2069, 1886, 1714, 1561, 1433, 1329, 1282, 1257, 1272, 1327, 1414, 1543, 1701, 1866, 2039, 2250, 2462, 2169, 1972, 1822, 1658, 1529, 1432, 1385, 1361, 1373, 1429, 1517, 1633, 1788, 1936, 2141, 2404, 2657, 2293, 2068, 1914, 1763, 1638, 1541, 1489, 1461, 1474, 1532, 1623, 1742, 1871, 2026, 2254, 2596, 2843, 2460, 2156, 1990, 1833, 1721, 1638, 1577, 1563, 1578, 1630, 1700, 1819, 1939, 2137, 2387, 2744]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2984, 2609, 2295, 2106, 1963, 1858, 1774, 1711, 1700, 1729, 1780, 1859, 1979, 2125, 2296, 2597, 3011, 2647, 2310, 2086, 1933, 1794, 1677, 1589, 1533, 1524, 1534, 1601, 1686, 1808, 1931, 2106, 2344, 2675, 2492, 2190, 1973, 1830, 1682, 1563, 1459, 1422, 1404, 1423, 1464, 1568, 1702, 1848, 1999, 2200, 2477, 2345, 2078, 1893, 1738, 1580, 1462, 1369, 1310, 1295, 1316, 1375, 1463, 1595, 1755, 1919, 2095, 2341, 2239, 2007, 1829, 1646, 1496, 1378, 1280, 1225, 1210, 1225, 1287, 1376, 1514, 1673, 1855, 2027, 2233, 2180, 1954, 1766, 1583, 1433, 1312, 1209, 1156, 1126, 1151, 1208, 1305, 1444, 1597, 1782, 1971, 2176, 2091, 1909, 1704, 1538, 1375, 1252, 1151, 1100, 1077, 1087, 1150, 1254, 1392, 1554, 1732, 1912, 2126, 2061, 1874, 1668, 1494, 1337, 1207, 1113, 1062, 1038, 1055, 1112, 1215, 1355, 1507, 1699, 1880, 2091, 2057, 1842, 1664, 1483, 1333, 1195, 1097, 1045, 1024, 1040, 1102, 1196, 1332, 1497, 1684, 1865, 2048, 2062, 1860, 1682, 1489, 1333, 1202, 1104, 1045, 1030, 1047, 1109, 1211, 1342, 1499, 1688, 1865, 2043, 2083, 1875, 1701, 1518, 1359, 1229, 1128, 1070, 1054, 1074, 1136, 1235, 1357, 1530, 1710, 1877, 2069, 2121, 1923, 1726, 1562, 1411, 1280, 1178, 1129, 1102, 1125, 1184, 1288, 1409, 1567, 1751, 1936, 2148, 2219, 1973, 1791, 1621, 1476, 1347, 1250, 1197, 1179, 1203, 1250, 1344, 1484, 1641, 1807, 1986, 2191, 2326, 2061, 1878, 1707, 1551, 1427, 1332, 1272, 1255, 1276, 1341, 1423, 1551, 1707, 1884, 2057, 2301, 2481, 2158, 1956, 1800, 1660, 1530, 1432, 1372, 1363, 1381, 1438, 1519, 1654, 1804, 1969, 2155, 2448, 2631, 2286, 2037, 1888, 1754, 1635, 1536, 1484, 1460, 1479, 1540, 1628, 1765, 1896, 2054, 2286, 2630, 2927, 2494, 2176, 2006, 1855, 1749, 1654, 1614, 1578, 1607, 1653, 1740, 1861, 1983, 2178, 2461, 2815]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2848, 2453, 2183, 2016, 1861, 1782, 1707, 1658, 1654, 1666, 1725, 1800, 1908, 2018, 2228, 2502, 2916, 2585, 2221, 1989, 1843, 1718, 1610, 1539, 1500, 1486, 1510, 1551, 1651, 1742, 1872, 2044, 2282, 2611, 2418, 2083, 1880, 1724, 1614, 1497, 1428, 1380, 1366, 1392, 1451, 1525, 1632, 1776, 1932, 2147, 2410, 2269, 1991, 1793, 1631, 1505, 1399, 1318, 1277, 1259, 1296, 1342, 1414, 1532, 1679, 1848, 2031, 2276, 2170, 1922, 1734, 1558, 1422, 1321, 1237, 1194, 1188, 1200, 1258, 1341, 1456, 1604, 1781, 1950, 2154, 2091, 1864, 1670, 1503, 1362, 1256, 1173, 1131, 1116, 1137, 1192, 1270, 1387, 1544, 1713, 1895, 2097, 2056, 1823, 1637, 1453, 1301, 1203, 1131, 1079, 1069, 1080, 1142, 1226, 1337, 1481, 1673, 1859, 2036, 2024, 1811, 1612, 1424, 1285, 1179, 1095, 1051, 1036, 1053, 1105, 1194, 1311, 1460, 1643, 1813, 1998, 2019, 1804, 1596, 1422, 1275, 1162, 1085, 1040, 1024, 1042, 1097, 1177, 1300, 1447, 1623, 1807, 1993, 2025, 1818, 1608, 1440, 1281, 1170, 1090, 1050, 1033, 1047, 1103, 1182, 1300, 1449, 1629, 1826, 1997, 2049, 1821, 1636, 1460, 1311, 1198, 1114, 1076, 1055, 1079, 1133, 1213, 1318, 1473, 1644, 1848, 2009, 2093, 1867, 1670, 1502, 1354, 1242, 1159, 1116, 1100, 1117, 1173, 1253, 1368, 1514, 1682, 1864, 2055, 2160, 1923, 1733, 1563, 1419, 1307, 1214, 1176, 1163, 1181, 1236, 1314, 1424, 1565, 1742, 1919, 2132, 2276, 1999, 1796, 1639, 1496, 1385, 1294, 1251, 1241, 1256, 1305, 1380, 1491, 1639, 1809, 1986, 2235, 2416, 2101, 1897, 1740, 1596, 1483, 1392, 1352, 1335, 1351, 1396, 1485, 1593, 1729, 1887, 2099, 2382, 2609, 2244, 2002, 1839, 1705, 1589, 1502, 1463, 1441, 1464, 1512, 1592, 1697, 1831, 1990, 2218, 2529, 2815, 2399, 2088, 1923, 1771, 1692, 1606, 1536, 1535, 1544, 1592, 1669, 1780, 1913, 2088, 2374, 2705]
                                       }
                                   }, {
                                       "name":    "1296x972_D75_70",
                                       "resolution":    "1296x972",
                                       "illumination":    "D75",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [2774, 2555, 2337, 2184, 2059, 1953, 1885, 1843, 1836, 1846, 1912, 2001, 2117, 2226, 2400, 2617, 2834, 2626, 2393, 2199, 2045, 1933, 1808, 1718, 1669, 1656, 1675, 1749, 1854, 1974, 2120, 2265, 2460, 2720, 2549, 2281, 2098, 1944, 1798, 1677, 1578, 1525, 1503, 1521, 1602, 1707, 1861, 2023, 2186, 2352, 2574, 2381, 2174, 2019, 1845, 1689, 1543, 1447, 1381, 1367, 1396, 1461, 1574, 1727, 1911, 2089, 2277, 2445, 2288, 2107, 1936, 1748, 1572, 1442, 1328, 1270, 1246, 1276, 1359, 1477, 1634, 1805, 2027, 2199, 2382, 2247, 2056, 1874, 1666, 1490, 1354, 1238, 1179, 1151, 1183, 1266, 1382, 1542, 1732, 1953, 2142, 2331, 2181, 2010, 1815, 1622, 1426, 1279, 1175, 1110, 1086, 1106, 1184, 1306, 1476, 1675, 1897, 2099, 2260, 2172, 1983, 1785, 1581, 1386, 1240, 1125, 1062, 1042, 1065, 1136, 1274, 1436, 1626, 1864, 2077, 2246, 2150, 1978, 1778, 1558, 1367, 1221, 1109, 1043, 1024, 1049, 1130, 1255, 1422, 1624, 1854, 2078, 2240, 2158, 1987, 1784, 1582, 1384, 1229, 1118, 1052, 1033, 1065, 1142, 1276, 1433, 1643, 1858, 2077, 2261, 2164, 1995, 1814, 1607, 1421, 1270, 1155, 1088, 1069, 1103, 1186, 1313, 1466, 1676, 1892, 2098, 2269, 2249, 2044, 1849, 1664, 1478, 1330, 1221, 1159, 1140, 1172, 1259, 1380, 1531, 1741, 1937, 2138, 2307, 2296, 2103, 1930, 1738, 1574, 1411, 1312, 1248, 1237, 1264, 1337, 1451, 1615, 1809, 1990, 2186, 2362, 2393, 2184, 2017, 1835, 1660, 1516, 1424, 1365, 1345, 1377, 1447, 1566, 1715, 1890, 2093, 2236, 2446, 2485, 2292, 2080, 1937, 1792, 1656, 1560, 1503, 1491, 1508, 1579, 1689, 1844, 2008, 2167, 2336, 2579, 2626, 2386, 2187, 2043, 1922, 1795, 1700, 1648, 1628, 1662, 1725, 1834, 1969, 2106, 2262, 2450, 2701, 2688, 2467, 2241, 2102, 1985, 1887, 1818, 1769, 1759, 1776, 1840, 1912, 2033, 2160, 2318, 2500, 2707]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2401, 2205, 2018, 1920, 1820, 1739, 1685, 1637, 1618, 1632, 1665, 1731, 1805, 1893, 2008, 2162, 2366, 2242, 2034, 1890, 1808, 1698, 1613, 1535, 1489, 1478, 1485, 1529, 1609, 1694, 1781, 1881, 2011, 2204, 2129, 1966, 1832, 1731, 1625, 1522, 1438, 1396, 1380, 1391, 1438, 1507, 1611, 1725, 1817, 1934, 2084, 2053, 1882, 1771, 1663, 1541, 1438, 1348, 1308, 1292, 1305, 1352, 1427, 1533, 1656, 1773, 1873, 2016, 1981, 1850, 1726, 1604, 1474, 1362, 1276, 1224, 1210, 1222, 1276, 1356, 1462, 1597, 1717, 1828, 1960, 1942, 1816, 1686, 1537, 1412, 1301, 1212, 1158, 1133, 1149, 1207, 1294, 1408, 1534, 1680, 1791, 1911, 1904, 1783, 1642, 1500, 1355, 1245, 1156, 1097, 1078, 1091, 1152, 1245, 1358, 1495, 1646, 1764, 1862, 1887, 1760, 1622, 1467, 1328, 1205, 1117, 1062, 1042, 1059, 1105, 1202, 1329, 1463, 1609, 1732, 1844, 1878, 1751, 1607, 1454, 1323, 1192, 1097, 1046, 1024, 1043, 1097, 1187, 1307, 1451, 1593, 1722, 1833, 1867, 1745, 1608, 1461, 1323, 1197, 1106, 1049, 1029, 1051, 1103, 1196, 1311, 1453, 1593, 1725, 1831, 1885, 1752, 1629, 1478, 1337, 1222, 1132, 1075, 1053, 1072, 1132, 1218, 1333, 1476, 1617, 1735, 1839, 1924, 1785, 1663, 1527, 1386, 1275, 1180, 1124, 1106, 1129, 1182, 1271, 1384, 1509, 1646, 1765, 1878, 1962, 1824, 1714, 1569, 1441, 1332, 1242, 1195, 1177, 1193, 1242, 1324, 1428, 1557, 1683, 1785, 1919, 2023, 1869, 1753, 1630, 1510, 1403, 1311, 1270, 1246, 1260, 1309, 1385, 1494, 1619, 1736, 1845, 1964, 2101, 1930, 1809, 1710, 1586, 1482, 1401, 1361, 1339, 1349, 1398, 1472, 1564, 1681, 1779, 1908, 2057, 2212, 2002, 1867, 1771, 1663, 1568, 1490, 1447, 1423, 1433, 1482, 1555, 1645, 1734, 1833, 1972, 2168, 2297, 2096, 1911, 1811, 1704, 1624, 1562, 1513, 1502, 1514, 1555, 1606, 1692, 1769, 1896, 2042, 2228]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2396, 2208, 2020, 1905, 1813, 1742, 1681, 1632, 1624, 1648, 1686, 1743, 1827, 1921, 2021, 2199, 2415, 2205, 2015, 1881, 1786, 1690, 1602, 1533, 1487, 1480, 1488, 1544, 1610, 1702, 1785, 1898, 2041, 2225, 2123, 1947, 1810, 1717, 1607, 1513, 1426, 1395, 1379, 1396, 1430, 1518, 1625, 1733, 1832, 1955, 2112, 2036, 1876, 1759, 1651, 1527, 1430, 1349, 1296, 1283, 1302, 1355, 1431, 1541, 1666, 1781, 1890, 2033, 1973, 1833, 1717, 1580, 1459, 1358, 1269, 1219, 1205, 1219, 1276, 1356, 1475, 1604, 1739, 1850, 1968, 1939, 1800, 1671, 1530, 1406, 1299, 1204, 1153, 1124, 1148, 1203, 1292, 1416, 1543, 1685, 1814, 1936, 1877, 1770, 1623, 1494, 1355, 1244, 1148, 1099, 1077, 1086, 1147, 1246, 1371, 1508, 1648, 1772, 1905, 1858, 1744, 1594, 1456, 1320, 1201, 1112, 1062, 1038, 1055, 1111, 1209, 1337, 1468, 1622, 1749, 1882, 1857, 1719, 1592, 1447, 1317, 1190, 1096, 1045, 1024, 1040, 1101, 1191, 1316, 1460, 1610, 1738, 1849, 1859, 1733, 1607, 1451, 1317, 1196, 1103, 1045, 1030, 1047, 1108, 1205, 1325, 1461, 1612, 1737, 1844, 1871, 1741, 1620, 1475, 1339, 1222, 1126, 1070, 1054, 1073, 1134, 1227, 1338, 1486, 1628, 1743, 1860, 1893, 1774, 1636, 1511, 1385, 1268, 1173, 1127, 1101, 1123, 1179, 1276, 1383, 1516, 1658, 1785, 1914, 1957, 1805, 1684, 1557, 1440, 1328, 1241, 1191, 1174, 1197, 1241, 1326, 1448, 1575, 1698, 1816, 1935, 2022, 1863, 1747, 1624, 1501, 1397, 1314, 1260, 1245, 1264, 1323, 1394, 1501, 1624, 1752, 1859, 2003, 2115, 1921, 1796, 1691, 1588, 1483, 1401, 1348, 1341, 1357, 1406, 1473, 1583, 1695, 1807, 1919, 2090, 2193, 1997, 1842, 1749, 1655, 1565, 1485, 1443, 1422, 1438, 1489, 1559, 1665, 1755, 1856, 1997, 2193, 2356, 2122, 1927, 1824, 1722, 1648, 1576, 1546, 1516, 1540, 1575, 1640, 1727, 1805, 1928, 2097, 2278]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2301, 2091, 1932, 1832, 1727, 1676, 1622, 1585, 1583, 1592, 1638, 1692, 1767, 1834, 1967, 2128, 2348, 2160, 1946, 1803, 1711, 1624, 1543, 1488, 1457, 1446, 1466, 1499, 1579, 1645, 1735, 1847, 1993, 2179, 2068, 1862, 1733, 1626, 1547, 1453, 1397, 1356, 1344, 1367, 1418, 1479, 1563, 1671, 1776, 1913, 2062, 1978, 1806, 1675, 1557, 1459, 1372, 1301, 1265, 1248, 1283, 1324, 1385, 1484, 1599, 1721, 1838, 1984, 1919, 1763, 1635, 1501, 1390, 1304, 1228, 1189, 1183, 1194, 1248, 1323, 1422, 1542, 1676, 1786, 1906, 1869, 1725, 1588, 1458, 1339, 1246, 1169, 1129, 1114, 1135, 1187, 1259, 1363, 1495, 1625, 1751, 1874, 1849, 1697, 1564, 1416, 1285, 1197, 1129, 1078, 1069, 1079, 1140, 1219, 1319, 1442, 1596, 1728, 1833, 1829, 1691, 1545, 1392, 1271, 1174, 1094, 1051, 1036, 1053, 1104, 1189, 1296, 1425, 1572, 1693, 1808, 1826, 1686, 1532, 1390, 1262, 1158, 1084, 1040, 1024, 1042, 1096, 1173, 1286, 1413, 1556, 1689, 1805, 1829, 1697, 1541, 1406, 1267, 1165, 1089, 1050, 1033, 1047, 1102, 1177, 1285, 1415, 1560, 1704, 1807, 1844, 1696, 1563, 1422, 1294, 1192, 1112, 1075, 1055, 1078, 1131, 1206, 1301, 1434, 1570, 1718, 1812, 1870, 1727, 1588, 1457, 1332, 1232, 1155, 1114, 1099, 1115, 1169, 1243, 1345, 1468, 1598, 1725, 1840, 1911, 1764, 1634, 1506, 1388, 1291, 1206, 1171, 1159, 1176, 1227, 1297, 1392, 1507, 1642, 1761, 1889, 1984, 1813, 1677, 1564, 1451, 1359, 1278, 1240, 1231, 1245, 1289, 1354, 1447, 1564, 1688, 1802, 1952, 2066, 1876, 1747, 1640, 1531, 1441, 1364, 1330, 1315, 1329, 1367, 1442, 1529, 1630, 1739, 1875, 2041, 2177, 1964, 1814, 1708, 1613, 1524, 1455, 1423, 1405, 1424, 1464, 1527, 1606, 1701, 1804, 1944, 2119, 2278, 2051, 1858, 1756, 1652, 1599, 1534, 1477, 1477, 1484, 1521, 1579, 1659, 1748, 1858, 2032, 2201]
                                       }
                                   }, {
                                       "name":    "1296x972_HZ_100",
                                       "resolution":    "1296x972",
                                       "illumination":    "HZ",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [4493, 3944, 3514, 3209, 2961, 2715, 2541, 2433, 2400, 2451, 2573, 2731, 2993, 3231, 3548, 3994, 4493, 4166, 3663, 3281, 2951, 2664, 2423, 2230, 2113, 2091, 2132, 2273, 2470, 2717, 2988, 3315, 3731, 4226, 3900, 3419, 3040, 2715, 2400, 2144, 1944, 1829, 1795, 1842, 1978, 2179, 2468, 2782, 3116, 3494, 3967, 3652, 3233, 2835, 2486, 2166, 1907, 1707, 1595, 1566, 1601, 1716, 1915, 2207, 2549, 2918, 3314, 3734, 3436, 3075, 2687, 2300, 1968, 1696, 1508, 1405, 1363, 1411, 1524, 1725, 1983, 2357, 2766, 3150, 3539, 3374, 2945, 2551, 2139, 1801, 1539, 1358, 1250, 1221, 1255, 1372, 1570, 1843, 2193, 2626, 3035, 3446, 3227, 2857, 2414, 2026, 1685, 1428, 1248, 1143, 1107, 1146, 1261, 1454, 1716, 2095, 2497, 2957, 3354, 3167, 2789, 2355, 1948, 1623, 1364, 1182, 1085, 1050, 1084, 1192, 1381, 1652, 2002, 2429, 2874, 3289, 3151, 2758, 2331, 1916, 1584, 1331, 1155, 1056, 1024, 1058, 1173, 1356, 1630, 1980, 2389, 2869, 3249, 3153, 2770, 2337, 1927, 1603, 1350, 1171, 1070, 1036, 1072, 1184, 1376, 1645, 1994, 2418, 2873, 3297, 3235, 2820, 2408, 1987, 1667, 1407, 1222, 1127, 1088, 1132, 1242, 1431, 1701, 2060, 2491, 2897, 3289, 3286, 2907, 2479, 2110, 1755, 1502, 1323, 1224, 1188, 1228, 1342, 1537, 1808, 2155, 2561, 2982, 3441, 3395, 3003, 2622, 2253, 1901, 1648, 1462, 1355, 1329, 1367, 1487, 1674, 1946, 2302, 2690, 3070, 3515, 3596, 3172, 2762, 2423, 2093, 1831, 1649, 1542, 1512, 1538, 1669, 1859, 2149, 2477, 2865, 3231, 3676, 3796, 3326, 2969, 2627, 2340, 2077, 1882, 1773, 1733, 1780, 1913, 2099, 2367, 2732, 3031, 3446, 3881, 4047, 3581, 3140, 2840, 2591, 2347, 2151, 2031, 1999, 2033, 2168, 2344, 2625, 2927, 3221, 3651, 4126, 4306, 3821, 3378, 3060, 2806, 2601, 2440, 2314, 2297, 2339, 2442, 2608, 2846, 3125, 3421, 3891, 4309]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [3184, 2777, 2493, 2281, 2123, 2018, 1912, 1867, 1852, 1868, 1915, 2017, 2129, 2292, 2496, 2768, 3224, 2869, 2518, 2256, 2106, 1955, 1804, 1712, 1663, 1645, 1662, 1709, 1831, 1962, 2091, 2269, 2531, 2867, 2676, 2364, 2168, 1983, 1832, 1680, 1566, 1514, 1511, 1509, 1580, 1683, 1838, 1984, 2176, 2357, 2659, 2523, 2242, 2052, 1876, 1695, 1550, 1443, 1383, 1370, 1386, 1448, 1554, 1707, 1877, 2056, 2248, 2500, 2419, 2154, 1957, 1775, 1588, 1444, 1340, 1280, 1251, 1280, 1352, 1451, 1602, 1791, 1969, 2172, 2403, 2332, 2078, 1877, 1682, 1508, 1359, 1245, 1179, 1164, 1183, 1256, 1361, 1509, 1700, 1901, 2106, 2317, 2263, 2036, 1817, 1615, 1438, 1290, 1174, 1115, 1094, 1114, 1186, 1295, 1462, 1634, 1842, 2041, 2237, 2217, 2002, 1777, 1577, 1393, 1232, 1125, 1072, 1043, 1066, 1137, 1242, 1409, 1583, 1802, 1985, 2182, 2199, 1976, 1760, 1556, 1367, 1216, 1105, 1044, 1024, 1044, 1111, 1226, 1378, 1569, 1774, 1982, 2176, 2188, 1976, 1762, 1560, 1376, 1221, 1113, 1049, 1027, 1052, 1121, 1233, 1386, 1577, 1789, 1974, 2181, 2223, 2001, 1793, 1584, 1407, 1269, 1146, 1082, 1059, 1088, 1157, 1266, 1419, 1604, 1800, 1997, 2202, 2291, 2043, 1839, 1643, 1458, 1317, 1210, 1141, 1126, 1146, 1217, 1322, 1465, 1656, 1855, 2047, 2259, 2368, 2093, 1911, 1719, 1531, 1393, 1284, 1232, 1204, 1231, 1292, 1401, 1542, 1733, 1907, 2094, 2335, 2484, 2188, 1974, 1803, 1623, 1491, 1384, 1326, 1299, 1316, 1385, 1494, 1637, 1799, 1992, 2174, 2455, 2592, 2293, 2062, 1899, 1746, 1607, 1498, 1438, 1419, 1441, 1494, 1603, 1741, 1905, 2081, 2288, 2598, 2819, 2441, 2162, 2018, 1861, 1720, 1627, 1561, 1544, 1558, 1629, 1723, 1868, 1997, 2165, 2423, 2767, 3012, 2589, 2282, 2129, 1974, 1843, 1766, 1689, 1683, 1687, 1739, 1835, 1951, 2096, 2308, 2596, 2972]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [3216, 2777, 2476, 2277, 2108, 1972, 1885, 1821, 1802, 1811, 1893, 1982, 2112, 2266, 2455, 2780, 3194, 2865, 2515, 2265, 2086, 1930, 1791, 1687, 1623, 1609, 1622, 1689, 1803, 1929, 2089, 2279, 2511, 2881, 2702, 2370, 2149, 1988, 1809, 1666, 1542, 1485, 1472, 1491, 1546, 1654, 1818, 1977, 2177, 2387, 2691, 2534, 2253, 2052, 1868, 1691, 1553, 1427, 1364, 1352, 1364, 1440, 1541, 1692, 1888, 2082, 2282, 2541, 2428, 2199, 1981, 1779, 1597, 1453, 1335, 1256, 1241, 1264, 1338, 1438, 1600, 1780, 2003, 2200, 2436, 2369, 2123, 1903, 1699, 1522, 1359, 1251, 1177, 1153, 1171, 1256, 1366, 1521, 1707, 1912, 2153, 2358, 2298, 2077, 1841, 1648, 1455, 1299, 1181, 1113, 1091, 1114, 1179, 1298, 1459, 1657, 1858, 2067, 2301, 2252, 2025, 1818, 1605, 1408, 1254, 1141, 1068, 1045, 1070, 1135, 1256, 1417, 1607, 1825, 2046, 2265, 2232, 2025, 1799, 1583, 1404, 1234, 1115, 1047, 1029, 1046, 1120, 1235, 1401, 1591, 1800, 2024, 2227, 2257, 2023, 1807, 1588, 1406, 1243, 1130, 1056, 1024, 1059, 1132, 1245, 1398, 1590, 1804, 2031, 2210, 2281, 2044, 1826, 1603, 1431, 1269, 1155, 1082, 1062, 1086, 1163, 1279, 1425, 1619, 1827, 2030, 2254, 2328, 2069, 1863, 1670, 1481, 1324, 1209, 1148, 1124, 1151, 1216, 1329, 1479, 1657, 1882, 2078, 2310, 2399, 2128, 1927, 1732, 1563, 1407, 1286, 1227, 1206, 1228, 1290, 1405, 1558, 1744, 1937, 2128, 2361, 2504, 2213, 2022, 1830, 1661, 1501, 1379, 1312, 1300, 1311, 1387, 1477, 1638, 1818, 2015, 2200, 2479, 2646, 2317, 2106, 1914, 1767, 1607, 1499, 1434, 1414, 1435, 1490, 1603, 1756, 1920, 2089, 2307, 2615, 2808, 2457, 2197, 2020, 1868, 1732, 1619, 1554, 1537, 1556, 1624, 1719, 1867, 2022, 2188, 2442, 2788, 3063, 2637, 2322, 2119, 1980, 1860, 1768, 1693, 1669, 1682, 1752, 1850, 1953, 2116, 2313, 2614, 3011]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2866, 2450, 2159, 1983, 1862, 1793, 1702, 1672, 1669, 1700, 1750, 1839, 1947, 2091, 2288, 2638, 3125, 2618, 2236, 1975, 1823, 1715, 1610, 1548, 1512, 1512, 1523, 1606, 1688, 1802, 1934, 2108, 2368, 2739, 2419, 2107, 1881, 1721, 1603, 1487, 1426, 1410, 1393, 1420, 1482, 1560, 1684, 1822, 2003, 2227, 2526, 2246, 1971, 1800, 1620, 1502, 1402, 1327, 1291, 1290, 1322, 1374, 1464, 1597, 1761, 1907, 2122, 2353, 2153, 1922, 1712, 1549, 1419, 1306, 1246, 1208, 1196, 1229, 1284, 1388, 1506, 1678, 1860, 2044, 2259, 2074, 1838, 1670, 1499, 1345, 1260, 1172, 1128, 1128, 1165, 1227, 1320, 1461, 1608, 1773, 2006, 2178, 2025, 1804, 1637, 1439, 1297, 1205, 1127, 1081, 1074, 1101, 1166, 1278, 1399, 1575, 1753, 1932, 2092, 1982, 1803, 1596, 1424, 1289, 1172, 1100, 1048, 1027, 1063, 1132, 1231, 1381, 1541, 1715, 1898, 2113, 1994, 1783, 1600, 1422, 1275, 1167, 1088, 1029, 1024, 1051, 1123, 1220, 1354, 1532, 1708, 1896, 2070, 1988, 1788, 1589, 1429, 1288, 1175, 1097, 1044, 1028, 1065, 1130, 1237, 1356, 1519, 1714, 1919, 2080, 2026, 1796, 1626, 1444, 1311, 1198, 1112, 1084, 1064, 1098, 1160, 1252, 1382, 1556, 1727, 1904, 2080, 2074, 1839, 1671, 1513, 1364, 1257, 1163, 1128, 1129, 1147, 1210, 1314, 1433, 1590, 1759, 1969, 2114, 2145, 1905, 1712, 1562, 1417, 1310, 1229, 1197, 1196, 1223, 1289, 1362, 1479, 1651, 1801, 1994, 2247, 2273, 1985, 1786, 1629, 1479, 1389, 1303, 1278, 1275, 1291, 1355, 1441, 1554, 1715, 1894, 2043, 2301, 2399, 2083, 1866, 1727, 1610, 1495, 1420, 1378, 1376, 1386, 1454, 1535, 1658, 1810, 1953, 2160, 2498, 2644, 2286, 1991, 1837, 1713, 1592, 1535, 1492, 1493, 1501, 1569, 1659, 1764, 1891, 2052, 2331, 2669, 2860, 2414, 2069, 1910, 1772, 1699, 1635, 1593, 1562, 1572, 1630, 1718, 1807, 1947, 2128, 2423, 2830]
                                       }
                                   }, {
                                       "name":    "1296x972_HZ_70",
                                       "resolution":    "1296x972",
                                       "illumination":    "HZ",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [3452, 3204, 2975, 2804, 2652, 2480, 2352, 2270, 2245, 2286, 2380, 2493, 2679, 2822, 3002, 3242, 3452, 3310, 3058, 2846, 2640, 2443, 2263, 2110, 2015, 1998, 2032, 2149, 2305, 2489, 2671, 2874, 3110, 3354, 3178, 2919, 2694, 2478, 2244, 2041, 1873, 1775, 1745, 1787, 1905, 2072, 2304, 2536, 2757, 2978, 3228, 3038, 2811, 2556, 2308, 2058, 1842, 1668, 1567, 1541, 1573, 1676, 1850, 2095, 2363, 2626, 2876, 3101, 2907, 2712, 2456, 2164, 1893, 1657, 1488, 1393, 1353, 1398, 1503, 1685, 1907, 2215, 2524, 2774, 2987, 2885, 2627, 2356, 2033, 1749, 1516, 1348, 1246, 1218, 1250, 1362, 1545, 1788, 2082, 2422, 2702, 2942, 2786, 2569, 2248, 1940, 1646, 1413, 1243, 1142, 1106, 1145, 1256, 1438, 1676, 2003, 2321, 2653, 2887, 2748, 2520, 2203, 1873, 1591, 1353, 1180, 1085, 1050, 1084, 1190, 1370, 1619, 1923, 2269, 2592, 2846, 2739, 2496, 2184, 1845, 1555, 1322, 1153, 1056, 1024, 1058, 1171, 1346, 1599, 1904, 2235, 2591, 2818, 2737, 2504, 2187, 1854, 1572, 1340, 1169, 1070, 1036, 1072, 1182, 1365, 1612, 1915, 2259, 2591, 2853, 2792, 2537, 2243, 1904, 1629, 1393, 1218, 1126, 1088, 1131, 1238, 1416, 1661, 1971, 2316, 2602, 2835, 2815, 2595, 2293, 2007, 1706, 1480, 1314, 1220, 1185, 1224, 1333, 1514, 1755, 2048, 2365, 2658, 2938, 2875, 2653, 2400, 2122, 1832, 1612, 1444, 1344, 1320, 1356, 1468, 1637, 1873, 2166, 2458, 2708, 2969, 2995, 2761, 2494, 2253, 1992, 1772, 1613, 1517, 1490, 1513, 1632, 1798, 2042, 2300, 2582, 2809, 3056, 3100, 2845, 2635, 2403, 2191, 1980, 1816, 1722, 1687, 1729, 1845, 2000, 2215, 2493, 2686, 2940, 3163, 3224, 2994, 2732, 2547, 2380, 2196, 2039, 1940, 1914, 1942, 2054, 2193, 2409, 2620, 2798, 3048, 3281, 3321, 3113, 2868, 2683, 2522, 2382, 2264, 2165, 2154, 2187, 2266, 2388, 2555, 2736, 2902, 3165, 3324]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2536, 2333, 2175, 2048, 1948, 1880, 1801, 1770, 1759, 1770, 1804, 1879, 1953, 2057, 2177, 2326, 2564, 2367, 2175, 2019, 1932, 1829, 1715, 1644, 1605, 1591, 1604, 1641, 1739, 1835, 1919, 2029, 2185, 2365, 2261, 2084, 1971, 1849, 1740, 1620, 1524, 1481, 1480, 1476, 1537, 1622, 1746, 1850, 1978, 2079, 2248, 2173, 2009, 1894, 1772, 1631, 1511, 1419, 1366, 1354, 1368, 1424, 1515, 1642, 1773, 1897, 2014, 2155, 2113, 1954, 1827, 1695, 1543, 1420, 1327, 1272, 1244, 1272, 1338, 1426, 1556, 1709, 1837, 1969, 2101, 2060, 1904, 1768, 1620, 1476, 1344, 1239, 1176, 1162, 1180, 1249, 1346, 1476, 1636, 1789, 1927, 2048, 2015, 1877, 1722, 1564, 1414, 1280, 1171, 1114, 1093, 1113, 1183, 1285, 1436, 1581, 1744, 1881, 1994, 1984, 1853, 1691, 1532, 1373, 1226, 1123, 1072, 1043, 1066, 1135, 1235, 1389, 1538, 1713, 1838, 1956, 1971, 1832, 1677, 1514, 1349, 1210, 1104, 1044, 1024, 1044, 1110, 1220, 1360, 1526, 1690, 1837, 1953, 1960, 1831, 1678, 1517, 1357, 1215, 1112, 1049, 1027, 1052, 1120, 1227, 1367, 1532, 1702, 1829, 1955, 1983, 1847, 1701, 1536, 1385, 1260, 1144, 1081, 1059, 1087, 1154, 1257, 1396, 1554, 1707, 1844, 1966, 2027, 1874, 1735, 1584, 1429, 1304, 1205, 1139, 1124, 1144, 1211, 1309, 1435, 1596, 1749, 1878, 2002, 2073, 1904, 1788, 1645, 1491, 1372, 1273, 1225, 1199, 1224, 1281, 1379, 1501, 1657, 1784, 1905, 2047, 2143, 1965, 1828, 1708, 1566, 1457, 1363, 1311, 1287, 1302, 1364, 1460, 1579, 1705, 1843, 1954, 2121, 2198, 2028, 1884, 1777, 1664, 1553, 1462, 1410, 1393, 1413, 1458, 1550, 1660, 1782, 1899, 2024, 2203, 2330, 2116, 1943, 1858, 1748, 1640, 1567, 1513, 1499, 1510, 1569, 1643, 1754, 1840, 1945, 2102, 2292, 2416, 2193, 2010, 1924, 1822, 1729, 1674, 1612, 1609, 1610, 1650, 1722, 1803, 1897, 2030, 2198, 2388]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2558, 2333, 2162, 2045, 1935, 1840, 1778, 1729, 1714, 1720, 1785, 1849, 1938, 2036, 2145, 2335, 2543, 2364, 2173, 2026, 1915, 1808, 1703, 1621, 1569, 1558, 1568, 1623, 1714, 1807, 1917, 2037, 2170, 2375, 2281, 2089, 1956, 1853, 1720, 1607, 1502, 1454, 1443, 1459, 1506, 1596, 1728, 1844, 1979, 2102, 2272, 2181, 2018, 1894, 1765, 1628, 1514, 1404, 1348, 1337, 1348, 1416, 1503, 1629, 1783, 1919, 2041, 2187, 2120, 1991, 1848, 1699, 1552, 1428, 1322, 1249, 1235, 1256, 1325, 1414, 1554, 1699, 1867, 1992, 2126, 2089, 1941, 1791, 1635, 1489, 1344, 1244, 1174, 1151, 1168, 1249, 1351, 1488, 1642, 1799, 1966, 2080, 2043, 1911, 1744, 1594, 1430, 1289, 1178, 1112, 1091, 1113, 1176, 1288, 1434, 1602, 1759, 1903, 2045, 2012, 1872, 1727, 1558, 1388, 1247, 1139, 1068, 1045, 1070, 1133, 1249, 1396, 1560, 1733, 1890, 2022, 1998, 1874, 1712, 1539, 1385, 1228, 1114, 1047, 1029, 1046, 1119, 1229, 1382, 1546, 1713, 1873, 1994, 2016, 1871, 1718, 1542, 1386, 1236, 1128, 1056, 1024, 1059, 1130, 1238, 1378, 1544, 1715, 1877, 1978, 2029, 1883, 1730, 1553, 1407, 1260, 1152, 1081, 1062, 1085, 1160, 1270, 1402, 1568, 1731, 1872, 2008, 2056, 1896, 1756, 1609, 1450, 1310, 1204, 1146, 1122, 1148, 1210, 1315, 1448, 1597, 1773, 1904, 2042, 2097, 1933, 1801, 1657, 1520, 1385, 1275, 1220, 1201, 1221, 1279, 1383, 1516, 1667, 1810, 1933, 2068, 2158, 1986, 1868, 1732, 1601, 1466, 1358, 1298, 1288, 1297, 1366, 1444, 1580, 1721, 1862, 1975, 2139, 2239, 2047, 1920, 1789, 1683, 1553, 1462, 1406, 1389, 1407, 1454, 1550, 1673, 1795, 1906, 2039, 2215, 2322, 2128, 1971, 1859, 1754, 1651, 1560, 1506, 1492, 1508, 1564, 1640, 1753, 1861, 1964, 2117, 2308, 2451, 2228, 2041, 1916, 1827, 1744, 1675, 1616, 1596, 1606, 1661, 1735, 1805, 1914, 2034, 2211, 2415]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2313, 2089, 1913, 1805, 1728, 1686, 1618, 1597, 1596, 1622, 1660, 1726, 1800, 1893, 2014, 2229, 2495, 2184, 1958, 1792, 1694, 1622, 1543, 1496, 1468, 1470, 1478, 1548, 1612, 1697, 1787, 1899, 2060, 2272, 2069, 1881, 1734, 1623, 1537, 1444, 1395, 1384, 1369, 1393, 1447, 1511, 1609, 1710, 1835, 1976, 2149, 1961, 1790, 1681, 1547, 1457, 1374, 1309, 1278, 1278, 1308, 1354, 1432, 1543, 1671, 1771, 1912, 2043, 1905, 1763, 1616, 1493, 1388, 1290, 1237, 1202, 1191, 1222, 1273, 1367, 1468, 1608, 1744, 1864, 1988, 1855, 1703, 1588, 1454, 1323, 1249, 1168, 1126, 1126, 1162, 1221, 1307, 1432, 1553, 1677, 1843, 1938, 1825, 1681, 1564, 1403, 1281, 1198, 1125, 1080, 1074, 1100, 1163, 1269, 1377, 1528, 1666, 1789, 1878, 1795, 1684, 1531, 1392, 1275, 1167, 1099, 1048, 1027, 1063, 1130, 1225, 1362, 1499, 1636, 1765, 1900, 1806, 1669, 1535, 1390, 1262, 1163, 1087, 1029, 1024, 1051, 1122, 1214, 1337, 1492, 1631, 1764, 1867, 1800, 1671, 1524, 1396, 1274, 1170, 1096, 1044, 1028, 1065, 1128, 1230, 1338, 1479, 1635, 1783, 1874, 1825, 1675, 1554, 1408, 1294, 1192, 1110, 1083, 1064, 1097, 1157, 1244, 1361, 1510, 1643, 1766, 1869, 1855, 1704, 1588, 1467, 1341, 1246, 1159, 1126, 1127, 1145, 1205, 1301, 1406, 1536, 1665, 1813, 1887, 1899, 1749, 1616, 1505, 1386, 1294, 1220, 1191, 1191, 1217, 1278, 1343, 1443, 1584, 1693, 1823, 1979, 1981, 1801, 1669, 1555, 1436, 1362, 1287, 1266, 1264, 1278, 1336, 1410, 1504, 1631, 1760, 1848, 2003, 2054, 1862, 1721, 1629, 1544, 1452, 1390, 1354, 1353, 1361, 1421, 1488, 1586, 1700, 1793, 1923, 2128, 2203, 1997, 1805, 1706, 1620, 1527, 1484, 1450, 1452, 1458, 1515, 1586, 1664, 1751, 1854, 2031, 2221, 2309, 2062, 1843, 1746, 1653, 1605, 1559, 1527, 1501, 1509, 1555, 1621, 1682, 1776, 1889, 2069, 2288]
                                       }
                                   }, {
                                       "name":    "1296x972_TL84_100",
                                       "resolution":    "1296x972",
                                       "illumination":    "TL84",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [3389, 2971, 2632, 2369, 2191, 2049, 1916, 1859, 1828, 1855, 1939, 2049, 2218, 2396, 2638, 2988, 3361, 3119, 2753, 2434, 2199, 2010, 1842, 1717, 1639, 1620, 1666, 1729, 1870, 2035, 2245, 2488, 2789, 3162, 2936, 2568, 2284, 2046, 1836, 1660, 1543, 1480, 1460, 1480, 1551, 1677, 1873, 2100, 2351, 2632, 2960, 2754, 2411, 2144, 1903, 1683, 1514, 1402, 1335, 1311, 1338, 1415, 1524, 1719, 1936, 2201, 2497, 2767, 2608, 2314, 2035, 1773, 1559, 1402, 1289, 1236, 1209, 1237, 1311, 1415, 1582, 1814, 2110, 2362, 2647, 2515, 2235, 1944, 1665, 1461, 1316, 1212, 1147, 1135, 1157, 1219, 1326, 1496, 1710, 2001, 2262, 2580, 2453, 2172, 1862, 1594, 1397, 1247, 1151, 1092, 1073, 1092, 1157, 1261, 1417, 1626, 1921, 2220, 2505, 2439, 2118, 1809, 1545, 1351, 1208, 1111, 1059, 1038, 1058, 1120, 1227, 1381, 1591, 1880, 2170, 2488, 2406, 2086, 1806, 1536, 1333, 1194, 1098, 1040, 1024, 1041, 1110, 1210, 1360, 1582, 1858, 2153, 2445, 2424, 2117, 1816, 1550, 1343, 1193, 1102, 1045, 1030, 1055, 1117, 1218, 1377, 1596, 1867, 2171, 2481, 2438, 2166, 1846, 1587, 1381, 1231, 1129, 1080, 1058, 1082, 1150, 1257, 1408, 1627, 1918, 2214, 2490, 2499, 2220, 1929, 1665, 1441, 1295, 1184, 1138, 1107, 1137, 1209, 1316, 1478, 1698, 1975, 2259, 2569, 2610, 2296, 2020, 1747, 1524, 1372, 1267, 1208, 1194, 1213, 1280, 1399, 1562, 1783, 2053, 2344, 2695, 2740, 2393, 2137, 1871, 1647, 1479, 1367, 1308, 1292, 1317, 1386, 1502, 1691, 1906, 2197, 2430, 2767, 2887, 2537, 2262, 2024, 1816, 1641, 1516, 1450, 1423, 1454, 1528, 1651, 1834, 2051, 2293, 2573, 2965, 3111, 2713, 2422, 2170, 1978, 1808, 1684, 1609, 1592, 1619, 1693, 1829, 2027, 2216, 2460, 2748, 3144, 3254, 2854, 2533, 2308, 2129, 1953, 1841, 1788, 1763, 1779, 1868, 1986, 2137, 2348, 2573, 2898, 3276]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [3002, 2616, 2336, 2132, 1991, 1888, 1795, 1733, 1706, 1732, 1774, 1871, 1988, 2114, 2315, 2569, 2938, 2720, 2372, 2137, 1967, 1824, 1703, 1605, 1549, 1537, 1547, 1591, 1690, 1816, 1949, 2131, 2338, 2666, 2545, 2236, 2018, 1865, 1709, 1574, 1477, 1428, 1408, 1430, 1475, 1565, 1703, 1854, 2010, 2196, 2474, 2386, 2117, 1921, 1760, 1588, 1459, 1368, 1316, 1300, 1315, 1361, 1447, 1588, 1748, 1921, 2072, 2343, 2283, 2029, 1845, 1668, 1505, 1373, 1281, 1231, 1215, 1225, 1281, 1375, 1500, 1663, 1844, 2018, 2226, 2191, 1975, 1777, 1583, 1428, 1302, 1207, 1146, 1129, 1155, 1208, 1293, 1425, 1595, 1762, 1948, 2147, 2125, 1922, 1721, 1530, 1367, 1247, 1150, 1097, 1075, 1089, 1154, 1241, 1375, 1538, 1719, 1906, 2112, 2110, 1879, 1677, 1490, 1330, 1199, 1107, 1056, 1042, 1052, 1104, 1203, 1338, 1492, 1683, 1872, 2057, 2090, 1883, 1679, 1483, 1323, 1194, 1092, 1044, 1024, 1038, 1088, 1187, 1314, 1475, 1667, 1851, 2034, 2086, 1881, 1685, 1485, 1334, 1196, 1091, 1048, 1027, 1044, 1099, 1187, 1316, 1482, 1671, 1849, 2047, 2110, 1900, 1706, 1508, 1342, 1223, 1122, 1069, 1052, 1073, 1122, 1221, 1344, 1508, 1689, 1883, 2073, 2159, 1953, 1747, 1563, 1405, 1268, 1179, 1119, 1102, 1124, 1174, 1266, 1401, 1548, 1749, 1920, 2113, 2254, 2013, 1819, 1639, 1465, 1333, 1245, 1192, 1171, 1192, 1248, 1334, 1460, 1617, 1790, 1979, 2188, 2356, 2075, 1897, 1713, 1557, 1425, 1324, 1276, 1254, 1265, 1320, 1409, 1543, 1704, 1874, 2053, 2292, 2492, 2188, 1981, 1814, 1665, 1527, 1427, 1379, 1357, 1379, 1424, 1515, 1642, 1787, 1955, 2142, 2433, 2680, 2328, 2084, 1911, 1785, 1648, 1555, 1490, 1477, 1483, 1540, 1627, 1756, 1881, 2047, 2285, 2593, 2880, 2502, 2183, 2008, 1858, 1755, 1657, 1604, 1577, 1589, 1646, 1738, 1840, 1967, 2158, 2406, 2806]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2983, 2620, 2317, 2128, 1977, 1852, 1764, 1698, 1684, 1708, 1752, 1838, 1983, 2097, 2303, 2586, 2983, 2729, 2374, 2122, 1950, 1807, 1674, 1576, 1519, 1508, 1518, 1578, 1675, 1807, 1955, 2139, 2355, 2683, 2525, 2240, 2016, 1858, 1701, 1561, 1455, 1412, 1380, 1404, 1455, 1558, 1699, 1849, 2020, 2225, 2509, 2420, 2122, 1934, 1756, 1582, 1454, 1351, 1302, 1271, 1301, 1358, 1449, 1584, 1749, 1939, 2115, 2365, 2299, 2044, 1857, 1677, 1505, 1377, 1273, 1220, 1194, 1215, 1279, 1362, 1503, 1664, 1859, 2039, 2266, 2230, 1990, 1796, 1604, 1432, 1308, 1209, 1141, 1127, 1139, 1205, 1300, 1437, 1597, 1794, 1992, 2213, 2172, 1954, 1733, 1546, 1380, 1257, 1145, 1093, 1074, 1090, 1150, 1247, 1378, 1559, 1750, 1933, 2144, 2121, 1912, 1709, 1516, 1345, 1220, 1116, 1060, 1040, 1054, 1115, 1213, 1353, 1512, 1709, 1908, 2107, 2127, 1892, 1711, 1503, 1346, 1208, 1095, 1039, 1024, 1038, 1094, 1197, 1332, 1498, 1689, 1887, 2078, 2135, 1905, 1699, 1508, 1342, 1207, 1108, 1051, 1031, 1046, 1108, 1201, 1341, 1504, 1688, 1891, 2102, 2155, 1936, 1734, 1535, 1368, 1233, 1137, 1078, 1049, 1071, 1131, 1231, 1366, 1532, 1716, 1898, 2099, 2202, 1978, 1770, 1588, 1424, 1281, 1175, 1129, 1102, 1120, 1178, 1277, 1408, 1568, 1761, 1958, 2174, 2280, 2033, 1833, 1650, 1474, 1347, 1253, 1192, 1170, 1188, 1244, 1338, 1469, 1641, 1831, 2010, 2224, 2375, 2095, 1910, 1735, 1568, 1430, 1331, 1268, 1251, 1266, 1323, 1410, 1550, 1710, 1881, 2071, 2363, 2522, 2209, 1998, 1831, 1665, 1536, 1429, 1367, 1355, 1357, 1420, 1516, 1657, 1813, 1967, 2171, 2487, 2710, 2331, 2100, 1918, 1771, 1641, 1530, 1477, 1453, 1477, 1537, 1625, 1762, 1903, 2068, 2311, 2664, 2940, 2507, 2213, 2029, 1883, 1760, 1677, 1595, 1588, 1589, 1661, 1749, 1864, 2007, 2191, 2474, 2823]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2778, 2350, 2071, 1911, 1777, 1703, 1623, 1594, 1576, 1594, 1646, 1732, 1837, 1981, 2160, 2463, 2878, 2508, 2166, 1914, 1770, 1656, 1553, 1489, 1455, 1436, 1466, 1510, 1599, 1697, 1831, 2009, 2237, 2580, 2330, 2021, 1812, 1658, 1545, 1437, 1366, 1333, 1331, 1347, 1398, 1476, 1600, 1722, 1904, 2106, 2403, 2190, 1929, 1728, 1575, 1434, 1349, 1278, 1242, 1237, 1263, 1307, 1387, 1496, 1637, 1823, 1977, 2245, 2101, 1861, 1674, 1494, 1372, 1275, 1212, 1166, 1165, 1190, 1237, 1304, 1426, 1577, 1742, 1922, 2112, 2054, 1810, 1630, 1452, 1308, 1214, 1150, 1111, 1103, 1124, 1182, 1254, 1370, 1495, 1677, 1872, 2069, 1998, 1761, 1579, 1403, 1266, 1180, 1122, 1070, 1057, 1077, 1132, 1202, 1319, 1467, 1659, 1830, 1998, 1949, 1748, 1551, 1378, 1251, 1153, 1081, 1048, 1034, 1055, 1112, 1188, 1291, 1449, 1612, 1799, 1975, 1952, 1750, 1551, 1378, 1244, 1139, 1080, 1033, 1024, 1044, 1101, 1168, 1281, 1422, 1615, 1789, 1970, 1952, 1757, 1569, 1392, 1259, 1151, 1087, 1044, 1031, 1049, 1099, 1175, 1290, 1435, 1619, 1804, 1991, 1951, 1784, 1599, 1421, 1274, 1174, 1107, 1067, 1060, 1081, 1132, 1206, 1307, 1452, 1640, 1823, 2006, 2034, 1823, 1636, 1462, 1318, 1222, 1144, 1106, 1099, 1115, 1171, 1243, 1345, 1495, 1675, 1833, 2051, 2127, 1873, 1687, 1515, 1368, 1278, 1201, 1163, 1154, 1176, 1223, 1300, 1411, 1547, 1721, 1921, 2122, 2230, 1959, 1766, 1597, 1460, 1346, 1267, 1227, 1225, 1245, 1293, 1367, 1480, 1613, 1787, 1976, 2198, 2356, 2063, 1837, 1686, 1554, 1443, 1360, 1323, 1310, 1328, 1376, 1463, 1579, 1707, 1864, 2084, 2365, 2593, 2208, 1963, 1774, 1658, 1556, 1481, 1425, 1410, 1434, 1490, 1572, 1689, 1813, 1962, 2222, 2530, 2794, 2342, 2031, 1858, 1724, 1631, 1556, 1514, 1498, 1500, 1552, 1637, 1750, 1880, 2051, 2349, 2687]
                                       }
                                   }, {
                                       "name":    "1296x972_TL84_70",
                                       "resolution":    "1296x972",
                                       "illumination":    "TL84",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [2680, 2478, 2284, 2120, 2005, 1906, 1805, 1763, 1738, 1759, 1825, 1906, 2027, 2142, 2289, 2491, 2660, 2548, 2356, 2162, 2010, 1877, 1749, 1648, 1584, 1568, 1608, 1659, 1773, 1899, 2048, 2206, 2384, 2580, 2456, 2246, 2068, 1903, 1744, 1601, 1503, 1449, 1432, 1449, 1510, 1617, 1777, 1949, 2123, 2296, 2474, 2350, 2146, 1972, 1796, 1621, 1478, 1380, 1320, 1298, 1323, 1392, 1487, 1653, 1825, 2020, 2215, 2360, 2261, 2086, 1894, 1693, 1517, 1380, 1278, 1229, 1204, 1230, 1299, 1392, 1538, 1730, 1959, 2125, 2291, 2205, 2035, 1827, 1604, 1432, 1303, 1206, 1145, 1133, 1154, 1213, 1312, 1464, 1645, 1876, 2057, 2256, 2167, 1991, 1762, 1545, 1375, 1239, 1148, 1091, 1073, 1091, 1154, 1252, 1394, 1574, 1814, 2032, 2208, 2162, 1951, 1719, 1503, 1334, 1202, 1110, 1059, 1038, 1058, 1119, 1221, 1362, 1545, 1782, 1995, 2202, 2138, 1926, 1718, 1495, 1317, 1189, 1097, 1040, 1024, 1041, 1109, 1205, 1343, 1538, 1764, 1983, 2169, 2150, 1950, 1726, 1507, 1326, 1188, 1101, 1045, 1030, 1055, 1116, 1212, 1358, 1550, 1771, 1996, 2196, 2155, 1986, 1748, 1539, 1360, 1223, 1127, 1079, 1058, 1081, 1147, 1249, 1386, 1575, 1811, 2027, 2196, 2192, 2022, 1814, 1604, 1413, 1283, 1179, 1136, 1106, 1135, 1204, 1303, 1448, 1634, 1854, 2055, 2247, 2262, 2071, 1881, 1670, 1484, 1352, 1257, 1202, 1189, 1207, 1269, 1377, 1519, 1702, 1910, 2111, 2329, 2339, 2131, 1966, 1768, 1588, 1446, 1347, 1294, 1280, 1303, 1365, 1467, 1628, 1799, 2016, 2161, 2360, 2419, 2221, 2049, 1884, 1726, 1584, 1478, 1421, 1397, 1425, 1489, 1593, 1742, 1907, 2075, 2250, 2478, 2543, 2326, 2153, 1985, 1849, 1718, 1619, 1556, 1543, 1565, 1627, 1737, 1892, 2024, 2183, 2353, 2567, 2585, 2390, 2206, 2070, 1953, 1824, 1739, 1700, 1680, 1692, 1763, 1852, 1959, 2103, 2238, 2423, 2600]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2409, 2213, 2052, 1927, 1837, 1768, 1699, 1651, 1629, 1650, 1681, 1753, 1834, 1912, 2035, 2178, 2364, 2258, 2063, 1923, 1815, 1716, 1625, 1547, 1502, 1492, 1500, 1535, 1614, 1709, 1800, 1918, 2037, 2219, 2163, 1983, 1847, 1747, 1631, 1523, 1442, 1401, 1383, 1403, 1440, 1515, 1626, 1738, 1841, 1951, 2110, 2068, 1908, 1783, 1670, 1535, 1427, 1348, 1302, 1288, 1301, 1342, 1416, 1535, 1660, 1783, 1872, 2035, 2007, 1851, 1731, 1599, 1467, 1353, 1270, 1224, 1209, 1219, 1270, 1355, 1462, 1595, 1730, 1842, 1962, 1948, 1818, 1681, 1530, 1401, 1289, 1202, 1144, 1127, 1152, 1203, 1281, 1398, 1541, 1668, 1795, 1913, 1905, 1781, 1638, 1486, 1347, 1239, 1147, 1096, 1075, 1088, 1151, 1233, 1355, 1494, 1636, 1767, 1894, 1898, 1749, 1602, 1452, 1314, 1194, 1106, 1056, 1042, 1052, 1103, 1197, 1321, 1454, 1608, 1743, 1855, 1883, 1753, 1605, 1447, 1308, 1189, 1091, 1044, 1024, 1038, 1087, 1182, 1299, 1439, 1595, 1726, 1838, 1878, 1750, 1609, 1448, 1318, 1191, 1090, 1048, 1027, 1044, 1098, 1182, 1301, 1445, 1597, 1723, 1847, 1893, 1762, 1625, 1466, 1323, 1216, 1120, 1069, 1052, 1072, 1120, 1214, 1325, 1466, 1610, 1748, 1863, 1923, 1799, 1655, 1512, 1379, 1257, 1174, 1117, 1101, 1122, 1170, 1255, 1376, 1498, 1656, 1772, 1886, 1984, 1838, 1708, 1573, 1430, 1315, 1236, 1187, 1167, 1187, 1239, 1316, 1425, 1554, 1683, 1810, 1933, 2045, 1874, 1763, 1629, 1507, 1396, 1307, 1264, 1244, 1253, 1303, 1381, 1494, 1621, 1743, 1856, 1996, 2123, 1945, 1817, 1703, 1592, 1481, 1396, 1355, 1335, 1355, 1393, 1470, 1572, 1680, 1795, 1909, 2079, 2229, 2029, 1880, 1768, 1682, 1577, 1502, 1448, 1438, 1442, 1489, 1558, 1657, 1743, 1850, 1996, 2166, 2323, 2128, 1932, 1826, 1725, 1653, 1578, 1537, 1515, 1524, 1569, 1639, 1710, 1792, 1912, 2056, 2271]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2395, 2216, 2037, 1923, 1825, 1737, 1672, 1620, 1610, 1629, 1661, 1725, 1830, 1898, 2026, 2190, 2395, 2265, 2064, 1910, 1801, 1701, 1600, 1521, 1474, 1466, 1473, 1523, 1601, 1701, 1805, 1924, 2050, 2231, 2148, 1986, 1846, 1741, 1624, 1511, 1422, 1386, 1357, 1378, 1422, 1509, 1623, 1734, 1849, 1974, 2136, 2094, 1912, 1794, 1667, 1529, 1422, 1332, 1289, 1260, 1288, 1339, 1418, 1531, 1661, 1798, 1906, 2052, 2019, 1864, 1741, 1607, 1467, 1357, 1263, 1214, 1189, 1209, 1268, 1343, 1465, 1596, 1743, 1860, 1994, 1979, 1830, 1697, 1549, 1405, 1295, 1204, 1139, 1125, 1137, 1200, 1288, 1409, 1543, 1696, 1832, 1965, 1942, 1808, 1648, 1501, 1359, 1249, 1143, 1092, 1074, 1089, 1147, 1239, 1357, 1513, 1663, 1790, 1920, 1907, 1777, 1631, 1476, 1328, 1214, 1115, 1060, 1040, 1054, 1114, 1207, 1336, 1472, 1631, 1773, 1895, 1913, 1761, 1634, 1465, 1329, 1203, 1094, 1039, 1024, 1038, 1093, 1192, 1316, 1460, 1614, 1757, 1874, 1918, 1771, 1622, 1469, 1325, 1201, 1107, 1051, 1031, 1046, 1107, 1196, 1324, 1465, 1612, 1759, 1891, 1928, 1792, 1649, 1491, 1348, 1225, 1135, 1077, 1049, 1071, 1129, 1223, 1346, 1488, 1633, 1760, 1884, 1957, 1820, 1675, 1535, 1397, 1269, 1171, 1127, 1101, 1118, 1173, 1266, 1382, 1516, 1667, 1803, 1935, 2005, 1855, 1720, 1583, 1438, 1328, 1243, 1187, 1166, 1183, 1235, 1320, 1434, 1575, 1719, 1836, 1961, 2059, 1890, 1774, 1648, 1516, 1400, 1313, 1256, 1241, 1254, 1306, 1382, 1500, 1627, 1749, 1871, 2050, 2146, 1962, 1831, 1718, 1592, 1489, 1398, 1344, 1334, 1334, 1390, 1471, 1585, 1703, 1805, 1932, 2120, 2251, 2031, 1893, 1774, 1670, 1571, 1480, 1436, 1416, 1436, 1486, 1556, 1662, 1761, 1867, 2016, 2217, 2365, 2131, 1956, 1843, 1746, 1658, 1596, 1529, 1525, 1524, 1582, 1648, 1730, 1825, 1938, 2107, 2283]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2252, 2014, 1844, 1747, 1657, 1608, 1548, 1528, 1514, 1528, 1569, 1633, 1707, 1804, 1914, 2099, 2322, 2104, 1904, 1743, 1650, 1571, 1493, 1443, 1416, 1400, 1426, 1462, 1533, 1606, 1701, 1819, 1959, 2156, 2002, 1813, 1677, 1569, 1486, 1399, 1340, 1312, 1311, 1325, 1369, 1434, 1535, 1624, 1753, 1880, 2057, 1918, 1756, 1620, 1508, 1395, 1325, 1263, 1231, 1227, 1251, 1291, 1360, 1451, 1562, 1700, 1795, 1960, 1865, 1713, 1584, 1444, 1344, 1261, 1204, 1161, 1161, 1185, 1228, 1288, 1394, 1518, 1642, 1763, 1873, 1840, 1680, 1553, 1411, 1289, 1205, 1146, 1109, 1102, 1122, 1177, 1244, 1347, 1450, 1594, 1732, 1851, 1803, 1645, 1513, 1370, 1252, 1174, 1120, 1070, 1057, 1076, 1130, 1196, 1302, 1429, 1583, 1703, 1803, 1768, 1638, 1491, 1349, 1239, 1149, 1080, 1048, 1034, 1055, 1111, 1183, 1277, 1415, 1545, 1681, 1789, 1772, 1640, 1492, 1350, 1233, 1136, 1079, 1033, 1024, 1044, 1100, 1164, 1268, 1390, 1548, 1674, 1787, 1771, 1645, 1507, 1362, 1247, 1147, 1086, 1044, 1031, 1049, 1098, 1170, 1276, 1402, 1551, 1685, 1802, 1765, 1664, 1530, 1387, 1259, 1169, 1105, 1067, 1060, 1080, 1130, 1199, 1290, 1415, 1567, 1697, 1809, 1824, 1691, 1558, 1421, 1298, 1213, 1140, 1104, 1098, 1113, 1167, 1233, 1323, 1450, 1592, 1699, 1837, 1885, 1723, 1595, 1463, 1341, 1263, 1194, 1159, 1150, 1171, 1215, 1284, 1380, 1491, 1624, 1762, 1881, 1948, 1780, 1652, 1527, 1419, 1322, 1253, 1217, 1216, 1234, 1277, 1342, 1437, 1541, 1670, 1794, 1924, 2021, 1846, 1697, 1593, 1494, 1404, 1334, 1303, 1292, 1307, 1349, 1423, 1516, 1611, 1720, 1863, 2028, 2166, 1936, 1782, 1653, 1572, 1495, 1436, 1389, 1376, 1397, 1444, 1509, 1599, 1686, 1781, 1947, 2120, 2263, 2008, 1813, 1703, 1612, 1547, 1490, 1457, 1445, 1445, 1486, 1552, 1634, 1721, 1829, 2013, 2188]
                                       }
                                   }, {
                                       "name":    "1296x972_GRAY_0",
                                       "resolution":    "1296x972",
                                       "illumination":    "GRAY",
                                       "vignetting":    0,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024]
                                       }
                                   }],
                               "tableAll_len":    30
                           }
                       },
                       "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, 0.9, 0.75, 0.5, 0.3, 0.2, 0.1, 0.05]
                               }
                           },
                           "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":    [0.9938, 2.0159],
                                       "minDist":    0.05,
                                       "matrixUsed":    ["A_100", "A_74"],
                                       "matrixUsed_len":    2,
                                       "gain_sat_curve":    {
                                           "gains":    [1, 3, 6, 12],
                                           "sat":    [100, 100, 90, 74]
                                       }
                                   }, {
                                       "name":    "CWF",
                                       "awbGain":    [1.4524, 1.7631],
                                       "minDist":    0.05,
                                       "matrixUsed":    ["CWF_100", "CWF_74"],
                                       "matrixUsed_len":    2,
                                       "gain_sat_curve":    {
                                           "gains":    [1, 3, 6, 12],
                                           "sat":    [100, 100, 90, 74]
                                       }
                                   }, {
                                       "name":    "D50",
                                       "awbGain":    [1.6777, 1.3732],
                                       "minDist":    0.05,
                                       "matrixUsed":    ["D50_100", "D50_74"],
                                       "matrixUsed_len":    2,
                                       "gain_sat_curve":    {
                                           "gains":    [1, 3, 6, 12],
                                           "sat":    [100, 100, 90, 74]
                                       }
                                   }, {
                                       "name":    "D65",
                                       "awbGain":    [1.5245, 1.0703],
                                       "minDist":    0.05,
                                       "matrixUsed":    ["D65_100", "D65_74"],
                                       "matrixUsed_len":    2,
                                       "gain_sat_curve":    {
                                           "gains":    [1, 3, 6, 12],
                                           "sat":    [100, 100, 90, 74]
                                       }
                                   }, {
                                       "name":    "D75",
                                       "awbGain":    [1.6535, 0.9858],
                                       "minDist":    0.05,
                                       "matrixUsed":    ["D75_100", "D75_74"],
                                       "matrixUsed_len":    2,
                                       "gain_sat_curve":    {
                                           "gains":    [1, 3, 6, 12],
                                           "sat":    [100, 100, 90, 74]
                                       }
                                   }, {
                                       "name":    "HZ",
                                       "awbGain":    [0.849, 2.4217],
                                       "minDist":    0.05,
                                       "matrixUsed":    ["HZ_100", "HZ_74"],
                                       "matrixUsed_len":    2,
                                       "gain_sat_curve":    {
                                           "gains":    [1, 3, 6, 12],
                                           "sat":    [100, 100, 90, 74]
                                       }
                                   }, {
                                       "name":    "TL84",
                                       "awbGain":    [1.2793, 1.6815],
                                       "minDist":    0.05,
                                       "matrixUsed":    ["TL84_100", "TL84_74"],
                                       "matrixUsed_len":    2,
                                       "gain_sat_curve":    {
                                           "gains":    [1, 3, 6, 12],
                                           "sat":    [100, 100, 90, 74]
                                       }
                                   }],
                               "aCcmCof_len":    7,
                               "matrixAll":    [{
                                       "name":    "A_100",
                                       "illumination":    "A",
                                       "saturation":    100,
                                       "ccMatrix":    [1.4695, -0.2876, -0.1819, -0.3262, 1.4376, -0.1114, -0.0845, -1.0239, 2.1084],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "A_74",
                                       "illumination":    "A",
                                       "saturation":    74,
                                       "ccMatrix":    [1.1197, -0.0439, -0.0758, -0.1849, 1.2485, -0.0636, -0.0072, -0.3874, 1.3946],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "CWF_100",
                                       "illumination":    "CWF",
                                       "saturation":    100,
                                       "ccMatrix":    [1.9062, -0.724, -0.1822, -0.3128, 1.3635, -0.0506, -0.0171, -0.7009, 1.718],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "CWF_74",
                                       "illumination":    "CWF",
                                       "saturation":    74,
                                       "ccMatrix":    [1.4457, -0.3045, -0.1412, -0.1555, 1.1409, 0.0145, 0.125, -0.3938, 1.2688],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "D50_100",
                                       "illumination":    "D50",
                                       "saturation":    100,
                                       "ccMatrix":    [2.0441, -0.9587, -0.0854, -0.2412, 1.3738, -0.1326, 0.0268, -0.567, 1.5402],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "D50_74",
                                       "illumination":    "D50",
                                       "saturation":    74,
                                       "ccMatrix":    [1.4024, -0.3825, -0.0199, -0.0718, 1.1312, -0.0594, 0.1654, -0.3516, 1.1862],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "D65_100",
                                       "illumination":    "D65",
                                       "saturation":    100,
                                       "ccMatrix":    [1.7097, -0.6253, -0.0844, -0.2339, 1.4403, -0.2064, 0.04, -0.4488, 1.4088],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "D65_74",
                                       "illumination":    "D65",
                                       "saturation":    74,
                                       "ccMatrix":    [1.321, -0.2063, -0.1148, -0.0873, 1.2229, -0.1357, 0.1681, -0.245, 1.0769],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "D75_100",
                                       "illumination":    "D75",
                                       "saturation":    100,
                                       "ccMatrix":    [1.7659, -0.6443, -0.1215, -0.221, 1.4494, -0.2283, -0.0076, -0.4095, 1.4171],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "D75_74",
                                       "illumination":    "D75",
                                       "saturation":    74,
                                       "ccMatrix":    [1.4488, -0.3005, -0.1483, -0.073, 1.2234, -0.1504, 0.1487, -0.1887, 1.0401],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "HZ_100",
                                       "illumination":    "HZ",
                                       "saturation":    100,
                                       "ccMatrix":    [1.1206, -0.0442, -0.0764, -0.3571, 1.3141, 0.043, -0.2129, -1.1429, 2.3558],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "HZ_74",
                                       "illumination":    "HZ",
                                       "saturation":    74,
                                       "ccMatrix":    [1.0259, 0.0181, -0.0441, -0.1975, 1.1854, 0.0121, -0.1046, -0.4245, 1.5291],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "TL84_100",
                                       "illumination":    "TL84",
                                       "saturation":    100,
                                       "ccMatrix":    [1.6432, -0.5174, -0.1258, -0.3059, 1.3749, -0.069, -0.0401, -0.591, 1.6311],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "TL84_74",
                                       "illumination":    "TL84",
                                       "saturation":    74,
                                       "ccMatrix":    [1.2313, -0.1427, -0.0887, -0.1701, 1.1714, -0.0013, 0.1057, -0.3746, 1.2689],
                                       "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.1,
                                   "LumaTrigThers":    0,
                                   "StableThers":    0.03,
                                   "StableFrames":    3,
                                   "StableTime":    200,
                                   "SceneDiffEnable":    0,
                                   "SceneDiffThers":    0,
                                   "SceneDiffBlkThers":    0,
                                   "CenterSceneDiffThers":    0,
                                   "ValidMaxMinRatio":    0,
                                   "ValidValueThers":    0,
                                   "OutFocusValue":    200,
                                   "OutFocusPos":    64,
                                   "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":    [243, 229, 217, 207, 192, 182, 177, 173, 171, 167, 163, 156, 147, 135, 122, 109]
                                           }, {
                                               "iso":    100,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [536, 474, 416, 364, 280, 226, 204, 208, 223, 237, 244, 241, 227, 201, 166, 129]
                                           }, {
                                               "iso":    200,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [621, 553, 491, 436, 349, 294, 272, 273, 284, 294, 298, 290, 271, 239, 198, 156]
                                           }, {
                                               "iso":    400,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [653, 601, 555, 515, 450, 407, 381, 367, 359, 351, 340, 323, 299, 268, 231, 197]
                                           }, {
                                               "iso":    800,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [783, 735, 692, 653, 590, 543, 510, 485, 466, 447, 425, 400, 368, 331, 290, 251]
                                           }, {
                                               "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":    [243, 229, 217, 207, 192, 182, 177, 173, 171, 167, 163, 156, 147, 135, 122, 109]
                                           }, {
                                               "iso":    100,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [536, 474, 416, 364, 280, 226, 204, 208, 223, 237, 244, 241, 227, 201, 166, 129]
                                           }, {
                                               "iso":    200,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [621, 553, 491, 436, 349, 294, 272, 273, 284, 294, 298, 290, 271, 239, 198, 156]
                                           }, {
                                               "iso":    400,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [653, 601, 555, 515, 450, 407, 381, 367, 359, 351, 340, 323, 299, 268, 231, 197]
                                           }, {
                                               "iso":    800,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [783, 735, 692, 653, 590, 543, 510, 485, 466, 447, 425, 400, 368, 331, 290, 251]
                                           }, {
                                               "iso":    1600,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }, {
                                               "iso":    3200,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }, {
                                               "iso":    6400,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }, {
                                               "iso":    12800,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }, {
                                               "iso":    25600,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }, {
                                               "iso":    51200,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }, {
                                               "iso":    102400,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }, {
                                               "iso":    204800,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }],
                                       "Calib_ISO_len":    13
                                   }],
                               "Setting_len":    2
                           },
                           "Bayernr2D":    {
                               "enable":    1,
                               "Setting":    [{
                                       "SNR_Mode":    "LSNR",
                                       "Sensor_Mode":    "lcg",
                                       "Tuning_ISO":    [{
                                               "iso":    50,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.1,
                                               "edgesofts":    2,
                                               "ratio":    0.08,
                                               "weight":    0.1
                                           }, {
                                               "iso":    100,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.2,
                                               "edgesofts":    2,
                                               "ratio":    0.07,
                                               "weight":    0.15
                                           }, {
                                               "iso":    200,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.3,
                                               "edgesofts":    2,
                                               "ratio":    0.06,
                                               "weight":    0.25
                                           }, {
                                               "iso":    400,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.4,
                                               "edgesofts":    2,
                                               "ratio":    0.05,
                                               "weight":    0.35
                                           }, {
                                               "iso":    800,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.5,
                                               "edgesofts":    2,
                                               "ratio":    0.04,
                                               "weight":    0.45
                                           }, {
                                               "iso":    1600,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.6,
                                               "edgesofts":    2,
                                               "ratio":    0.02,
                                               "weight":    0.5
                                           }, {
                                               "iso":    3200,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.7,
                                               "edgesofts":    2,
                                               "ratio":    0.02,
                                               "weight":    0.6
                                           }, {
                                               "iso":    6400,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.8,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    0.65
                                           }, {
                                               "iso":    12800,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.9,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    0.7
                                           }, {
                                               "iso":    25600,
                                               "gauss_guide":    1,
                                               "filter_strength":    1,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    0.75
                                           }, {
                                               "iso":    51200,
                                               "gauss_guide":    1,
                                               "filter_strength":    1.1,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    0.8
                                           }, {
                                               "iso":    102400,
                                               "gauss_guide":    1,
                                               "filter_strength":    1.2,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    0.9
                                           }, {
                                               "iso":    204800,
                                               "gauss_guide":    1,
                                               "filter_strength":    1.3,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }],
                                       "Tuning_ISO_len":    13
                                   }, {
                                       "SNR_Mode":    "HSNR",
                                       "Sensor_Mode":    "hcg",
                                       "Tuning_ISO":    [{
                                               "iso":    50,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.2,
                                               "edgesofts":    2,
                                               "ratio":    0.08,
                                               "weight":    0.05
                                           }, {
                                               "iso":    100,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.3,
                                               "edgesofts":    2,
                                               "ratio":    0.07,
                                               "weight":    0.1
                                           }, {
                                               "iso":    200,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.4,
                                               "edgesofts":    2,
                                               "ratio":    0.06,
                                               "weight":    0.15
                                           }, {
                                               "iso":    400,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.5,
                                               "edgesofts":    2,
                                               "ratio":    0.05,
                                               "weight":    0.2
                                           }, {
                                               "iso":    800,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.6,
                                               "edgesofts":    2,
                                               "ratio":    0.04,
                                               "weight":    0.3
                                           }, {
                                               "iso":    1600,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.7,
                                               "edgesofts":    2,
                                               "ratio":    0.03,
                                               "weight":    0.4
                                           }, {
                                               "iso":    3200,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.8,
                                               "edgesofts":    2,
                                               "ratio":    0.02,
                                               "weight":    0.5
                                           }, {
                                               "iso":    6400,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.9,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    0.55
                                           }, {
                                               "iso":    12800,
                                               "gauss_guide":    1,
                                               "filter_strength":    1,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    0.6
                                           }, {
                                               "iso":    25600,
                                               "gauss_guide":    1,
                                               "filter_strength":    1.1,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    0.7
                                           }, {
                                               "iso":    51200,
                                               "gauss_guide":    1,
                                               "filter_strength":    1.2,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    0.8
                                           }, {
                                               "iso":    102400,
                                               "gauss_guide":    1,
                                               "filter_strength":    1.3,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    0.9
                                           }, {
                                               "iso":    204800,
                                               "gauss_guide":    1,
                                               "filter_strength":    1.4,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }],
                                       "Tuning_ISO_len":    13
                                   }],
                               "Setting_len":    2
                           },
                           "Bayernr3D":    {
                               "enable":    1,
                               "Setting":    [{
                                       "SNR_Mode":    "LSNR",
                                       "Sensor_Mode":    "lcg",
                                       "Tuning_ISO":    [{
                                               "iso":    50,
                                               "filter_strength":    0.75,
                                               "sp_filter_strength":    0.55,
                                               "lo_clipwgt":    0.125,
                                               "hi_clipwgt":    0.125,
                                               "softwgt":    0.75
                                           }, {
                                               "iso":    100,
                                               "filter_strength":    0.7,
                                               "sp_filter_strength":    0.55,
                                               "lo_clipwgt":    0.125,
                                               "hi_clipwgt":    0.125,
                                               "softwgt":    0.7
                                           }, {
                                               "iso":    200,
                                               "filter_strength":    0.65,
                                               "sp_filter_strength":    0.6,
                                               "lo_clipwgt":    0.125,
                                               "hi_clipwgt":    0.125,
                                               "softwgt":    0.65
                                           }, {
                                               "iso":    400,
                                               "filter_strength":    0.55,
                                               "sp_filter_strength":    0.6,
                                               "lo_clipwgt":    0.125,
                                               "hi_clipwgt":    0.125,
                                               "softwgt":    0.55
                                           }, {
                                               "iso":    800,
                                               "filter_strength":    0.45,
                                               "sp_filter_strength":    0.65,
                                               "lo_clipwgt":    0.125,
                                               "hi_clipwgt":    0.125,
                                               "softwgt":    0.45
                                           }, {
                                               "iso":    1600,
                                               "filter_strength":    0.45,
                                               "sp_filter_strength":    0.65,
                                               "lo_clipwgt":    0.125,
                                               "hi_clipwgt":    0.125,
                                               "softwgt":    0.45
                                           }, {
                                               "iso":    3200,
                                               "filter_strength":    0.45,
                                               "sp_filter_strength":    0.65,
                                               "lo_clipwgt":    0.125,
                                               "hi_clipwgt":    0.125,
                                               "softwgt":    0.45
                                           }, {
                                               "iso":    6400,
                                               "filter_strength":    0.45,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.125,
                                               "hi_clipwgt":    0.125,
                                               "softwgt":    0.45
                                           }, {
                                               "iso":    12800,
                                               "filter_strength":    0.45,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.125,
                                               "hi_clipwgt":    0.125,
                                               "softwgt":    0.45
                                           }, {
                                               "iso":    25600,
                                               "filter_strength":    0.45,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.125,
                                               "hi_clipwgt":    0.125,
                                               "softwgt":    0.45
                                           }, {
                                               "iso":    51200,
                                               "filter_strength":    0.45,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.125,
                                               "hi_clipwgt":    0.125,
                                               "softwgt":    0.45
                                           }, {
                                               "iso":    102400,
                                               "filter_strength":    0.45,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.125,
                                               "hi_clipwgt":    0.125,
                                               "softwgt":    0.45
                                           }, {
                                               "iso":    204800,
                                               "filter_strength":    0.45,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.125,
                                               "hi_clipwgt":    0.125,
                                               "softwgt":    0.45
                                           }],
                                       "Tuning_ISO_len":    13
                                   }, {
                                       "SNR_Mode":    "HSNR",
                                       "Sensor_Mode":    "hcg",
                                       "Tuning_ISO":    [{
                                               "iso":    50,
                                               "filter_strength":    0.9,
                                               "sp_filter_strength":    0.55,
                                               "lo_clipwgt":    0.125,
                                               "hi_clipwgt":    0.125,
                                               "softwgt":    0.8
                                           }, {
                                               "iso":    100,
                                               "filter_strength":    0.8,
                                               "sp_filter_strength":    0.55,
                                               "lo_clipwgt":    0.125,
                                               "hi_clipwgt":    0.125,
                                               "softwgt":    0.75
                                           }, {
                                               "iso":    200,
                                               "filter_strength":    0.7,
                                               "sp_filter_strength":    0.6,
                                               "lo_clipwgt":    0.25,
                                               "hi_clipwgt":    0.25,
                                               "softwgt":    0.7
                                           }, {
                                               "iso":    400,
                                               "filter_strength":    0.6,
                                               "sp_filter_strength":    0.6,
                                               "lo_clipwgt":    0.25,
                                               "hi_clipwgt":    0.25,
                                               "softwgt":    0.65
                                           }, {
                                               "iso":    800,
                                               "filter_strength":    0.5,
                                               "sp_filter_strength":    0.65,
                                               "lo_clipwgt":    0.25,
                                               "hi_clipwgt":    0.25,
                                               "softwgt":    0.6
                                           }, {
                                               "iso":    1600,
                                               "filter_strength":    0.5,
                                               "sp_filter_strength":    0.65,
                                               "lo_clipwgt":    0.25,
                                               "hi_clipwgt":    0.25,
                                               "softwgt":    0.55
                                           }, {
                                               "iso":    3200,
                                               "filter_strength":    0.5,
                                               "sp_filter_strength":    0.65,
                                               "lo_clipwgt":    0.25,
                                               "hi_clipwgt":    0.25,
                                               "softwgt":    0.5
                                           }, {
                                               "iso":    6400,
                                               "filter_strength":    0.5,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.25,
                                               "hi_clipwgt":    0.25,
                                               "softwgt":    0.45
                                           }, {
                                               "iso":    12800,
                                               "filter_strength":    0.5,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.25,
                                               "hi_clipwgt":    0.25,
                                               "softwgt":    0.4
                                           }, {
                                               "iso":    25600,
                                               "filter_strength":    0.5,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.25,
                                               "hi_clipwgt":    0.25,
                                               "softwgt":    0.4
                                           }, {
                                               "iso":    51200,
                                               "filter_strength":    0.5,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.25,
                                               "hi_clipwgt":    0.25,
                                               "softwgt":    0.4
                                           }, {
                                               "iso":    102400,
                                               "filter_strength":    0.5,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.25,
                                               "hi_clipwgt":    0.25,
                                               "softwgt":    0.4
                                           }, {
                                               "iso":    204800,
                                               "filter_strength":    0.5,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.25,
                                               "hi_clipwgt":    0.25,
                                               "softwgt":    0.4
                                           }],
                                       "Tuning_ISO_len":    13
                                   }],
                               "Setting_len":    2
                           }
                       },
                       "cnr_v1":    {
                           "Version":    "",
                           "TuningPara":    {
                               "enable":    1,
                               "Kernel_Coeff":    {
                                   "kernel_5x5":    [1, 0.8825, 0.7788, 0.6065, 0.3679]
                               },
                               "Setting":    [{
                                       "SNR_Mode":    "LSNR",
                                       "Sensor_Mode":    "lcg",
                                       "Tuning_ISO":    [{
                                               "iso":    50,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    50,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.1,
                                               "hf_denoise_strength":    8,
                                               "hf_color_sat":    4,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    4,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    4,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    100,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.75,
                                               "hf_spikes_reducion_strength":    0.2,
                                               "hf_denoise_strength":    12,
                                               "hf_color_sat":    4,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    6,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    6,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    200,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    30,
                                               "color_sat_adj_alpha":    0.7,
                                               "hf_spikes_reducion_strength":    0.3,
                                               "hf_denoise_strength":    16,
                                               "hf_color_sat":    3.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    1,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    8,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    8,
                                               "lf_color_sat":    3.5,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    400,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    20,
                                               "color_sat_adj_alpha":    0.6,
                                               "hf_spikes_reducion_strength":    0.4,
                                               "hf_denoise_strength":    24,
                                               "hf_color_sat":    2.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    2,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    12,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    10,
                                               "lf_color_sat":    2.5,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    800,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    10,
                                               "color_sat_adj_alpha":    0.5,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    36,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    4,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    16,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    12,
                                               "lf_color_sat":    1.5,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    1600,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    10,
                                               "color_sat_adj_alpha":    0.5,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    40,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    4,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    20,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    14,
                                               "lf_color_sat":    1.5,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    3200,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    10,
                                               "color_sat_adj_alpha":    0.5,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    40,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    4,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    24,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    16,
                                               "lf_color_sat":    1.5,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    6400,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    10,
                                               "color_sat_adj_alpha":    0.5,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    40,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    4,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    28,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    18,
                                               "lf_color_sat":    1.5,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    12800,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    10,
                                               "color_sat_adj_alpha":    0.5,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    40,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    4,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    32,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    20,
                                               "lf_color_sat":    1.5,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    25600,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    10,
                                               "color_sat_adj_alpha":    0.5,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    40,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    4,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    36,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    25,
                                               "lf_color_sat":    1.5,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    51200,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    10,
                                               "color_sat_adj_alpha":    0.5,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    40,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    4,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    40,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    30,
                                               "lf_color_sat":    1.5,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    102400,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    10,
                                               "color_sat_adj_alpha":    0.5,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    45,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    4,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    40,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    35,
                                               "lf_color_sat":    1.5,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    204800,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    10,
                                               "color_sat_adj_alpha":    0.5,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    50,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    4,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    40,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    40,
                                               "lf_color_sat":    1.5,
                                               "lf_denoise_alpha":    1
                                           }],
                                       "Tuning_ISO_len":    13
                                   }, {
                                       "SNR_Mode":    "HSNR",
                                       "Sensor_Mode":    "hcg",
                                       "Tuning_ISO":    [{
                                               "iso":    50,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.25,
                                               "hf_denoise_strength":    10,
                                               "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.25,
                                               "hf_denoise_strength":    10,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    6,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    6,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    200,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    35,
                                               "color_sat_adj_alpha":    0.7,
                                               "hf_spikes_reducion_strength":    0.3,
                                               "hf_denoise_strength":    12,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    8,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    8,
                                               "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":    35,
                                               "color_sat_adj_alpha":    0.7,
                                               "hf_spikes_reducion_strength":    0.35,
                                               "hf_denoise_strength":    14,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    10,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    10,
                                               "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":    30,
                                               "color_sat_adj_alpha":    0.6,
                                               "hf_spikes_reducion_strength":    0.4,
                                               "hf_denoise_strength":    16,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    12,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    12,
                                               "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":    30,
                                               "color_sat_adj_alpha":    0.6,
                                               "hf_spikes_reducion_strength":    0.45,
                                               "hf_denoise_strength":    18,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    14,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    14,
                                               "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":    30,
                                               "color_sat_adj_alpha":    0.5,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    21,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    16,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    16,
                                               "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":    30,
                                               "color_sat_adj_alpha":    0.5,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    25,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    18,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    18,
                                               "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":    30,
                                               "color_sat_adj_alpha":    0.5,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    30,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    20,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    20,
                                               "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":    30,
                                               "color_sat_adj_alpha":    0.5,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    35,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    25,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    25,
                                               "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":    30,
                                               "color_sat_adj_alpha":    0.5,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    40,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    30,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    30,
                                               "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":    30,
                                               "color_sat_adj_alpha":    0.5,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    45,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    35,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    35,
                                               "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":    30,
                                               "color_sat_adj_alpha":    0.5,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    50,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    40,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    40,
                                               "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":    [-1.58364e-12, 1.53838e-08, -5.31805e-05, 0.0698179, 6.06054],
                                               "ynr_ci_l":    0.278182,
                                               "ynr_ci_h":    0.18326
                                           }, {
                                               "iso":    100,
                                               "sigma_curve":    [-1.51222e-12, 1.52153e-08, -5.55976e-05, 0.0786126, 2.44184],
                                               "ynr_ci_l":    0.332976,
                                               "ynr_ci_h":    0.193503
                                           }, {
                                               "iso":    200,
                                               "sigma_curve":    [-2.6953e-12, 2.59286e-08, -8.79327e-05, 0.109972, 20.5644],
                                               "ynr_ci_l":    0.247962,
                                               "ynr_ci_h":    0.164976
                                           }, {
                                               "iso":    400,
                                               "sigma_curve":    [-3.78295e-12, 3.63566e-08, -0.000121309, 0.14447, 30.7233],
                                               "ynr_ci_l":    0.250026,
                                               "ynr_ci_h":    0.152414
                                           }, {
                                               "iso":    800,
                                               "sigma_curve":    [-4.89216e-12, 4.67895e-08, -0.000154503, 0.178735, 47.8904],
                                               "ynr_ci_l":    0.249325,
                                               "ynr_ci_h":    0.148131
                                           }, {
                                               "iso":    1600,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.249325,
                                               "ynr_ci_h":    0.148131
                                           }, {
                                               "iso":    3200,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.249325,
                                               "ynr_ci_h":    0.148131
                                           }, {
                                               "iso":    6400,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.249325,
                                               "ynr_ci_h":    0.148131
                                           }, {
                                               "iso":    12800,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.249325,
                                               "ynr_ci_h":    0.148131
                                           }, {
                                               "iso":    25600,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.249325,
                                               "ynr_ci_h":    0.148131
                                           }, {
                                               "iso":    51200,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.249325,
                                               "ynr_ci_h":    0.148131
                                           }, {
                                               "iso":    102400,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.249325,
                                               "ynr_ci_h":    0.148131
                                           }, {
                                               "iso":    204800,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.249325,
                                               "ynr_ci_h":    0.148131
                                           }],
                                       "Calib_ISO_len":    13
                                   }, {
                                       "SNR_Mode":    "HSNR",
                                       "Sensor_Mode":    "hcg",
                                       "Calib_ISO":    [{
                                               "iso":    50,
                                               "sigma_curve":    [-1.58364e-12, 1.53838e-08, -5.31805e-05, 0.0698179, 6.06054],
                                               "ynr_ci_l":    0.278182,
                                               "ynr_ci_h":    0.18326
                                           }, {
                                               "iso":    100,
                                               "sigma_curve":    [-1.51222e-12, 1.52153e-08, -5.55976e-05, 0.0786126, 2.44184],
                                               "ynr_ci_l":    0.332976,
                                               "ynr_ci_h":    0.193503
                                           }, {
                                               "iso":    200,
                                               "sigma_curve":    [-2.6953e-12, 2.59286e-08, -8.79327e-05, 0.109972, 20.5644],
                                               "ynr_ci_l":    0.247962,
                                               "ynr_ci_h":    0.164976
                                           }, {
                                               "iso":    400,
                                               "sigma_curve":    [-3.78295e-12, 3.63566e-08, -0.000121309, 0.14447, 30.7233],
                                               "ynr_ci_l":    0.250026,
                                               "ynr_ci_h":    0.152414
                                           }, {
                                               "iso":    800,
                                               "sigma_curve":    [-4.89216e-12, 4.67895e-08, -0.000154503, 0.178735, 47.8904],
                                               "ynr_ci_l":    0.249325,
                                               "ynr_ci_h":    0.148131
                                           }, {
                                               "iso":    1600,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.249325,
                                               "ynr_ci_h":    0.148131
                                           }, {
                                               "iso":    3200,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.249325,
                                               "ynr_ci_h":    0.148131
                                           }, {
                                               "iso":    6400,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.249325,
                                               "ynr_ci_h":    0.148131
                                           }, {
                                               "iso":    12800,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.249325,
                                               "ynr_ci_h":    0.148131
                                           }, {
                                               "iso":    25600,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.249325,
                                               "ynr_ci_h":    0.148131
                                           }, {
                                               "iso":    51200,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.249325,
                                               "ynr_ci_h":    0.148131
                                           }, {
                                               "iso":    102400,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.249325,
                                               "ynr_ci_h":    0.148131
                                           }, {
                                               "iso":    204800,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.249325,
                                               "ynr_ci_h":    0.148131
                                           }],
                                       "Calib_ISO_len":    13
                                   }],
                               "Setting_len":    2
                           },
                           "TuningPara":    {
                               "enable":    1,
                               "Setting":    [{
                                       "SNR_Mode":    "LSNR",
                                       "Sensor_Mode":    "lcg",
                                       "Tuning_ISO":    [{
                                               "iso":    50,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    1,
                                               "low_bf_1":    1,
                                               "low_thred_adj":    0.2,
                                               "low_peak_supress":    0.6,
                                               "low_edge_adj_thresh":    28,
                                               "low_center_weight":    0.6,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.2,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.1,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    0.6,
                                               "high_weight":    0.8,
                                               "hi_min_adj":    0.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":    1.5,
                                               "low_bf_1":    1.5,
                                               "low_thred_adj":    0.5,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    28,
                                               "low_center_weight":    0.55,
                                               "low_dist_adj":    8,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.15,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    0.8,
                                               "high_weight":    0.75,
                                               "hi_min_adj":    0.85,
                                               "hi_edge_thed":    95,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    200,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    2,
                                               "low_bf_1":    2,
                                               "low_thred_adj":    1,
                                               "low_peak_supress":    0.4,
                                               "low_edge_adj_thresh":    24,
                                               "low_center_weight":    0.5,
                                               "low_dist_adj":    7,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.2,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.7,
                                               "hi_min_adj":    0.75,
                                               "hi_edge_thed":    90,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    400,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    2.5,
                                               "low_bf_1":    2.5,
                                               "low_thred_adj":    1.5,
                                               "low_peak_supress":    0.3,
                                               "low_edge_adj_thresh":    24,
                                               "low_center_weight":    0.45,
                                               "low_dist_adj":    6,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.25,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    1.5,
                                               "high_weight":    0.65,
                                               "hi_min_adj":    0.65,
                                               "hi_edge_thed":    85,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    800,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    3,
                                               "low_bf_1":    3,
                                               "low_thred_adj":    2,
                                               "low_peak_supress":    0.2,
                                               "low_edge_adj_thresh":    20,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    5,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.35,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    2,
                                               "high_weight":    0.6,
                                               "hi_min_adj":    0.6,
                                               "hi_edge_thed":    80,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    1600,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    4,
                                               "low_bf_1":    4,
                                               "low_thred_adj":    2,
                                               "low_peak_supress":    0.2,
                                               "low_edge_adj_thresh":    20,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    4,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.35,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    2,
                                               "high_weight":    0.6,
                                               "hi_min_adj":    0.6,
                                               "hi_edge_thed":    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":    6,
                                               "low_bf_1":    6,
                                               "low_thred_adj":    2,
                                               "low_peak_supress":    0.2,
                                               "low_edge_adj_thresh":    20,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    4,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.35,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    2,
                                               "high_weight":    0.6,
                                               "hi_min_adj":    0.6,
                                               "hi_edge_thed":    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":    8,
                                               "low_bf_1":    8,
                                               "low_thred_adj":    3,
                                               "low_peak_supress":    0.2,
                                               "low_edge_adj_thresh":    16,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    4,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.35,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    2,
                                               "high_weight":    0.6,
                                               "hi_min_adj":    0.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":    10,
                                               "low_bf_1":    10,
                                               "low_thred_adj":    3,
                                               "low_peak_supress":    0.2,
                                               "low_edge_adj_thresh":    16,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    4,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.4,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    2,
                                               "high_weight":    0.6,
                                               "hi_min_adj":    0.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":    12,
                                               "low_bf_1":    12,
                                               "low_thred_adj":    3,
                                               "low_peak_supress":    0.2,
                                               "low_edge_adj_thresh":    16,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    4,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.4,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    2,
                                               "high_weight":    0.6,
                                               "hi_min_adj":    0.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":    15,
                                               "low_bf_1":    15,
                                               "low_thred_adj":    4,
                                               "low_peak_supress":    0.2,
                                               "low_edge_adj_thresh":    12,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    4,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.4,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    2,
                                               "high_weight":    0.6,
                                               "hi_min_adj":    0.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":    18,
                                               "low_bf_1":    18,
                                               "low_thred_adj":    4,
                                               "low_peak_supress":    0.2,
                                               "low_edge_adj_thresh":    12,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    4,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.4,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    2,
                                               "high_weight":    0.6,
                                               "hi_min_adj":    0.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":    20,
                                               "low_bf_1":    20,
                                               "low_thred_adj":    4,
                                               "low_peak_supress":    0.2,
                                               "low_edge_adj_thresh":    12,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    4,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.4,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    2,
                                               "high_weight":    0.6,
                                               "hi_min_adj":    0.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":    1,
                                               "low_bf_1":    1,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.6,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.35,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.05,
                                               "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.05, 1.05, 1.1, 1.15, 1.2, 1.3, 1.4, 1.6, 1.8, 2, 2.2, 2.4, 2.8, 3.2]
                                           }, {
                                               "iso":    100,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    1.5,
                                               "low_bf_1":    1.5,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.45,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.6,
                                               "low_dist_adj":    8,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.1,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    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.05, 1.05, 1.1, 1.15, 1.2, 1.3, 1.4, 1.6, 1.8, 2, 2.2, 2.4, 2.8, 3.2]
                                           }, {
                                               "iso":    200,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    2,
                                               "low_bf_1":    2,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.4,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.55,
                                               "low_dist_adj":    8,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.15,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    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.05, 1.05, 1.1, 1.15, 1.2, 1.3, 1.4, 1.6, 1.8, 2, 2.2, 2.4, 2.8, 3.2]
                                           }, {
                                               "iso":    400,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    2.5,
                                               "low_bf_1":    2.5,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.35,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.5,
                                               "low_dist_adj":    8,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.2,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.78,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1.05, 1.05, 1.1, 1.15, 1.2, 1.3, 1.4, 1.6, 1.8, 2, 2.2, 2.4, 2.8, 3.2]
                                           }, {
                                               "iso":    800,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    3,
                                               "low_bf_1":    3,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.3,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.45,
                                               "low_dist_adj":    8,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.25,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.78,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1.05, 1.1, 1.15, 1.2, 1.3, 1.4, 1.6, 1.8, 2, 2.2, 2.4, 2.8]
                                           }, {
                                               "iso":    1600,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    4,
                                               "low_bf_1":    4,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.25,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.3,
                                               "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":    6,
                                               "low_bf_1":    6,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.2,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.3,
                                               "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":    8,
                                               "low_bf_1":    8,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.15,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.3,
                                               "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":    10,
                                               "low_bf_1":    10,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.1,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.3,
                                               "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":    12,
                                               "low_bf_1":    12,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.3,
                                               "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":    15,
                                               "low_bf_1":    15,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.3,
                                               "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":    18,
                                               "low_bf_1":    18,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.3,
                                               "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":    20,
                                               "low_bf_1":    20,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.3,
                                               "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.4,
                                               "pbf_ratio":    0.4,
                                               "pbf_add":    2,
                                               "gaus_ratio":    0.4,
                                               "sharp_ratio":    12,
                                               "bf_gain":    0.4,
                                               "bf_ratio":    0.4,
                                               "bf_add":    2,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [8, 12, 16, 16, 24, 20, 16, 16],
                                                   "hf_clip":    [128, 160, 224, 256, 256, 256, 224, 160],
                                                   "local_sharp_strength":    [640, 768, 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.6,
                                               "pbf_ratio":    0.5,
                                               "pbf_add":    4,
                                               "gaus_ratio":    0.45,
                                               "sharp_ratio":    10,
                                               "bf_gain":    0.6,
                                               "bf_ratio":    0.45,
                                               "bf_add":    4,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [12, 16, 20, 24, 28, 24, 20, 20],
                                                   "hf_clip":    [128, 160, 224, 256, 256, 256, 224, 160],
                                                   "local_sharp_strength":    [640, 768, 896, 1023, 1023, 1023, 1023, 1023]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    200,
                                               "pbf_gain":    0.8,
                                               "pbf_ratio":    0.6,
                                               "pbf_add":    6,
                                               "gaus_ratio":    0.5,
                                               "sharp_ratio":    8,
                                               "bf_gain":    0.8,
                                               "bf_ratio":    0.5,
                                               "bf_add":    6,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [24, 32, 40, 48, 56, 48, 48, 40],
                                                   "hf_clip":    [128, 160, 224, 256, 256, 256, 224, 160],
                                                   "local_sharp_strength":    [512, 640, 768, 896, 896, 896, 896, 896]
                                               },
                                               "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":    1,
                                               "pbf_ratio":    0.7,
                                               "pbf_add":    9,
                                               "gaus_ratio":    0.55,
                                               "sharp_ratio":    6,
                                               "bf_gain":    1,
                                               "bf_ratio":    0.55,
                                               "bf_add":    9,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [32, 40, 48, 56, 64, 56, 48, 40],
                                                   "hf_clip":    [128, 160, 224, 256, 256, 256, 224, 160],
                                                   "local_sharp_strength":    [512, 640, 768, 896, 896, 896, 896, 896]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    800,
                                               "pbf_gain":    1.2,
                                               "pbf_ratio":    0.8,
                                               "pbf_add":    12,
                                               "gaus_ratio":    0.65,
                                               "sharp_ratio":    4,
                                               "bf_gain":    1.2,
                                               "bf_ratio":    0.6,
                                               "bf_add":    12,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [40, 48, 56, 64, 80, 64, 56, 48],
                                                   "hf_clip":    [128, 160, 224, 256, 256, 256, 224, 160],
                                                   "local_sharp_strength":    [512, 640, 768, 896, 896, 896, 896, 896]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    1600,
                                               "pbf_gain":    1.3,
                                               "pbf_ratio":    0.9,
                                               "pbf_add":    15,
                                               "gaus_ratio":    0.65,
                                               "sharp_ratio":    4,
                                               "bf_gain":    1.3,
                                               "bf_ratio":    0.65,
                                               "bf_add":    15,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 128, 160, 192, 160, 128, 0],
                                                   "local_sharp_strength":    [256, 256, 256, 256, 256, 256, 256, 256]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    3200,
                                               "pbf_gain":    1.4,
                                               "pbf_ratio":    1,
                                               "pbf_add":    18,
                                               "gaus_ratio":    0.7,
                                               "sharp_ratio":    4,
                                               "bf_gain":    1.4,
                                               "bf_ratio":    0.7,
                                               "bf_add":    18,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 128, 160, 192, 160, 128, 0],
                                                   "local_sharp_strength":    [128, 128, 128, 128, 128, 128, 128, 128]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    6400,
                                               "pbf_gain":    1.5,
                                               "pbf_ratio":    1,
                                               "pbf_add":    21,
                                               "gaus_ratio":    0.75,
                                               "sharp_ratio":    4,
                                               "bf_gain":    1.5,
                                               "bf_ratio":    0.75,
                                               "bf_add":    21,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 128, 160, 192, 160, 128, 0],
                                                   "local_sharp_strength":    [128, 128, 128, 128, 128, 128, 128, 128]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    12800,
                                               "pbf_gain":    1.6,
                                               "pbf_ratio":    1,
                                               "pbf_add":    24,
                                               "gaus_ratio":    0.8,
                                               "sharp_ratio":    3,
                                               "bf_gain":    1.6,
                                               "bf_ratio":    0.8,
                                               "bf_add":    24,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 128, 160, 192, 160, 128, 0],
                                                   "local_sharp_strength":    [128, 128, 128, 128, 128, 128, 128, 128]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    25600,
                                               "pbf_gain":    1.7,
                                               "pbf_ratio":    1,
                                               "pbf_add":    27,
                                               "gaus_ratio":    0.85,
                                               "sharp_ratio":    2,
                                               "bf_gain":    1.7,
                                               "bf_ratio":    0.85,
                                               "bf_add":    27,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 128, 160, 192, 160, 128, 0],
                                                   "local_sharp_strength":    [128, 128, 128, 128, 128, 128, 128, 128]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    51200,
                                               "pbf_gain":    1.8,
                                               "pbf_ratio":    1,
                                               "pbf_add":    30,
                                               "gaus_ratio":    0.9,
                                               "sharp_ratio":    2,
                                               "bf_gain":    1.8,
                                               "bf_ratio":    0.9,
                                               "bf_add":    30,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 128, 160, 192, 160, 128, 0],
                                                   "local_sharp_strength":    [128, 128, 128, 128, 128, 128, 128, 128]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    102400,
                                               "pbf_gain":    1.9,
                                               "pbf_ratio":    1,
                                               "pbf_add":    33,
                                               "gaus_ratio":    0.9,
                                               "sharp_ratio":    2,
                                               "bf_gain":    1.9,
                                               "bf_ratio":    1,
                                               "bf_add":    33,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 128, 160, 192, 160, 128, 0],
                                                   "local_sharp_strength":    [128, 128, 128, 128, 128, 128, 128, 128]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    204800,
                                               "pbf_gain":    2,
                                               "pbf_ratio":    1,
                                               "pbf_add":    36,
                                               "gaus_ratio":    0.9,
                                               "sharp_ratio":    2,
                                               "bf_gain":    2,
                                               "bf_ratio":    1,
                                               "bf_add":    36,
                                               "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.4,
                                               "pbf_ratio":    0.35,
                                               "pbf_add":    2,
                                               "gaus_ratio":    0.35,
                                               "sharp_ratio":    12,
                                               "bf_gain":    0.4,
                                               "bf_ratio":    0.35,
                                               "bf_add":    2,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [8, 12, 16, 16, 24, 20, 16, 16],
                                                   "hf_clip":    [128, 160, 224, 256, 256, 256, 224, 160],
                                                   "local_sharp_strength":    [640, 768, 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.6,
                                               "pbf_ratio":    0.4,
                                               "pbf_add":    4,
                                               "gaus_ratio":    0.4,
                                               "sharp_ratio":    10,
                                               "bf_gain":    0.6,
                                               "bf_ratio":    0.4,
                                               "bf_add":    4,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [12, 16, 20, 24, 28, 24, 20, 20],
                                                   "hf_clip":    [128, 160, 224, 256, 256, 256, 224, 160],
                                                   "local_sharp_strength":    [640, 768, 896, 1023, 1023, 1023, 1023, 1023]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    200,
                                               "pbf_gain":    0.8,
                                               "pbf_ratio":    0.5,
                                               "pbf_add":    6,
                                               "gaus_ratio":    0.5,
                                               "sharp_ratio":    9,
                                               "bf_gain":    0.8,
                                               "bf_ratio":    0.5,
                                               "bf_add":    6,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [24, 32, 40, 48, 56, 48, 48, 40],
                                                   "hf_clip":    [128, 160, 224, 256, 256, 256, 224, 160],
                                                   "local_sharp_strength":    [512, 640, 768, 896, 896, 896, 896, 896]
                                               },
                                               "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.9,
                                               "pbf_ratio":    0.5,
                                               "pbf_add":    8,
                                               "gaus_ratio":    0.55,
                                               "sharp_ratio":    8,
                                               "bf_gain":    0.9,
                                               "bf_ratio":    0.55,
                                               "bf_add":    8,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [32, 40, 48, 56, 64, 56, 48, 40],
                                                   "hf_clip":    [128, 160, 224, 256, 256, 256, 224, 160],
                                                   "local_sharp_strength":    [512, 640, 768, 896, 896, 896, 896, 896]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    800,
                                               "pbf_gain":    1,
                                               "pbf_ratio":    0.55,
                                               "pbf_add":    10,
                                               "gaus_ratio":    0.6,
                                               "sharp_ratio":    7,
                                               "bf_gain":    1,
                                               "bf_ratio":    0.6,
                                               "bf_add":    10,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [40, 48, 56, 64, 80, 64, 56, 48],
                                                   "hf_clip":    [128, 160, 224, 256, 256, 256, 224, 160],
                                                   "local_sharp_strength":    [512, 640, 768, 896, 896, 896, 896, 896]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    1600,
                                               "pbf_gain":    1.1,
                                               "pbf_ratio":    0.55,
                                               "pbf_add":    12,
                                               "gaus_ratio":    0.65,
                                               "sharp_ratio":    6,
                                               "bf_gain":    1.1,
                                               "bf_ratio":    0.65,
                                               "bf_add":    12,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 128, 160, 192, 160, 128, 0],
                                                   "local_sharp_strength":    [256, 256, 256, 256, 256, 256, 256, 256]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    3200,
                                               "pbf_gain":    1.2,
                                               "pbf_ratio":    0.6,
                                               "pbf_add":    14,
                                               "gaus_ratio":    0.7,
                                               "sharp_ratio":    5,
                                               "bf_gain":    1.2,
                                               "bf_ratio":    0.7,
                                               "bf_add":    14,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 128, 160, 192, 160, 128, 0],
                                                   "local_sharp_strength":    [128, 128, 128, 128, 128, 128, 128, 128]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    6400,
                                               "pbf_gain":    1.3,
                                               "pbf_ratio":    0.6,
                                               "pbf_add":    16,
                                               "gaus_ratio":    0.75,
                                               "sharp_ratio":    4,
                                               "bf_gain":    1.3,
                                               "bf_ratio":    0.75,
                                               "bf_add":    16,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 128, 160, 192, 160, 128, 0],
                                                   "local_sharp_strength":    [128, 128, 128, 128, 128, 128, 128, 128]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    12800,
                                               "pbf_gain":    1.4,
                                               "pbf_ratio":    0.65,
                                               "pbf_add":    18,
                                               "gaus_ratio":    0.8,
                                               "sharp_ratio":    3,
                                               "bf_gain":    1.4,
                                               "bf_ratio":    0.8,
                                               "bf_add":    18,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 128, 160, 192, 160, 128, 0],
                                                   "local_sharp_strength":    [128, 128, 128, 128, 128, 128, 128, 128]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    25600,
                                               "pbf_gain":    1.5,
                                               "pbf_ratio":    0.7,
                                               "pbf_add":    20,
                                               "gaus_ratio":    0.85,
                                               "sharp_ratio":    2,
                                               "bf_gain":    1.5,
                                               "bf_ratio":    0.85,
                                               "bf_add":    20,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 128, 160, 192, 160, 128, 0],
                                                   "local_sharp_strength":    [128, 128, 128, 128, 128, 128, 128, 128]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    51200,
                                               "pbf_gain":    1.6,
                                               "pbf_ratio":    0.75,
                                               "pbf_add":    22,
                                               "gaus_ratio":    0.9,
                                               "sharp_ratio":    2,
                                               "bf_gain":    1.6,
                                               "bf_ratio":    0.9,
                                               "bf_add":    22,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 128, 160, 192, 160, 128, 0],
                                                   "local_sharp_strength":    [128, 128, 128, 128, 128, 128, 128, 128]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    102400,
                                               "pbf_gain":    1.7,
                                               "pbf_ratio":    0.8,
                                               "pbf_add":    24,
                                               "gaus_ratio":    0.9,
                                               "sharp_ratio":    2,
                                               "bf_gain":    1.7,
                                               "bf_ratio":    1,
                                               "bf_add":    24,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 128, 160, 192, 160, 128, 0],
                                                   "local_sharp_strength":    [128, 128, 128, 128, 128, 128, 128, 128]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    204800,
                                               "pbf_gain":    1.8,
                                               "pbf_ratio":    0.8,
                                               "pbf_add":    28,
                                               "gaus_ratio":    0.9,
                                               "sharp_ratio":    2,
                                               "bf_gain":    1.8,
                                               "bf_ratio":    1,
                                               "bf_add":    26,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 128, 160, 192, 160, 128, 0],
                                                   "local_sharp_strength":    [128, 128, 128, 128, 128, 128, 128, 128]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }],
                                       "Tuning_ISO_len":    13
                                   }],
                               "Setting_len":    2
                           }
                       }
                   }
               }],
           "sub_scene_len":    1
       }],
   "main_scene_len":    1,
   "uapi":    [],
   "uapi_len":    0,
   "sys_static_cfg":    {
       "algoSwitch":    {
           "enable":    0,
           "enable_algos":    [],
           "enable_algos_len":    0
       }
   }
}