@complat/react-spectra-editor 1.0.0-rc2 → 1.0.0-rc20.patch-1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +16 -0
- package/dist/__tests__/fixtures/aif_jcamp_1.js +136 -0
- package/dist/__tests__/fixtures/aif_jcamp_2.js +122 -0
- package/dist/__tests__/fixtures/backup/nmr1h_a.js +3518 -0
- package/dist/__tests__/fixtures/backup/xrd_jcamp_1.js +10705 -0
- package/dist/__tests__/fixtures/cds_jcamp.js +861 -0
- package/dist/__tests__/fixtures/compare_ir_1_jcamp.js +585 -0
- package/dist/__tests__/fixtures/compare_ir_2_jcamp.js +515 -0
- package/dist/__tests__/fixtures/compare_uv_vis_jcamp.js +640 -0
- package/dist/__tests__/fixtures/cyclic_voltammetry_1.js +778 -0
- package/dist/__tests__/fixtures/cyclic_voltammetry_2.js +758 -0
- package/dist/__tests__/fixtures/cyclic_voltammetry_3.js +759 -0
- package/dist/__tests__/fixtures/dls_acf_jcamp.js +148 -0
- package/dist/__tests__/fixtures/dls_intensity_jcamp.js +151 -0
- package/dist/__tests__/fixtures/emissions_jcamp.js +883 -0
- package/dist/__tests__/fixtures/hplc_uvvis_jcamp.js +638 -0
- package/dist/__tests__/fixtures/hplc_uvvis_jcamp_2.js +221 -0
- package/dist/__tests__/fixtures/ir_jcamp.js +148 -0
- package/dist/__tests__/fixtures/ir_result.js +46 -0
- package/dist/__tests__/fixtures/ir_svg.js +8 -0
- package/dist/__tests__/fixtures/ms_jcamp.js +64 -0
- package/dist/__tests__/fixtures/nmr13c_dept_jcamp.js +3543 -0
- package/dist/__tests__/fixtures/nmr13c_jcamp.js +1229 -0
- package/dist/__tests__/fixtures/nmr15n_jcamp.js +7177 -0
- package/dist/__tests__/fixtures/nmr19f_jcamp.js +6560 -0
- package/dist/__tests__/fixtures/nmr1h_2_jcamp.js +2005 -0
- package/dist/__tests__/fixtures/nmr1h_jcamp.js +4516 -0
- package/dist/__tests__/fixtures/nmr29si_jcamp.js +3029 -0
- package/dist/__tests__/fixtures/nmr31p_jcamp.js +3418 -0
- package/dist/__tests__/fixtures/nmr_result.js +68 -0
- package/dist/__tests__/fixtures/nmr_svg.js +8 -0
- package/dist/__tests__/fixtures/phenylalanin.js +142 -0
- package/dist/__tests__/fixtures/qDescValue.js +65 -0
- package/dist/__tests__/fixtures/raman_jcamp.js +410 -0
- package/dist/__tests__/fixtures/sec_1_jcamp.js +425 -0
- package/dist/__tests__/fixtures/sec_2_jcamp.js +407 -0
- package/dist/__tests__/fixtures/sec_3_jcamp.js +408 -0
- package/dist/__tests__/fixtures/sec_4_jcamp.js +407 -0
- package/dist/__tests__/fixtures/tga_jcamp.js +4157 -0
- package/dist/__tests__/fixtures/uv_vis_jcamp.js +249 -0
- package/dist/__tests__/fixtures/xrd_jcamp_1.js +436 -0
- package/dist/__tests__/fixtures/xrd_jcamp_2.js +955 -0
- package/dist/__tests__/fixtures/xrd_jcamp_3.js +1871 -0
- package/dist/__tests__/units/components/panel/graph_selection.test.js +72 -0
- package/dist/__tests__/units/components/panel/peaks.test.js +87 -0
- package/dist/actions/curve.js +15 -14
- package/dist/actions/cyclic_voltammetry.js +40 -60
- package/dist/actions/edit_peak.js +8 -12
- package/dist/actions/forecast.js +16 -24
- package/dist/actions/integration.js +12 -18
- package/dist/actions/jcamp.js +16 -24
- package/dist/actions/layout.js +4 -6
- package/dist/actions/manager.js +20 -30
- package/dist/actions/meta.js +4 -6
- package/dist/actions/multiplicity.js +24 -36
- package/dist/actions/scan.js +12 -18
- package/dist/actions/shift.js +8 -12
- package/dist/actions/status.js +12 -18
- package/dist/actions/submit.js +16 -24
- package/dist/actions/threshold.js +20 -30
- package/dist/actions/ui.js +25 -31
- package/dist/actions/wavelength.js +4 -6
- package/dist/app.js +25 -23
- package/dist/components/cmd_bar/01_viewer.js +24 -34
- package/dist/components/cmd_bar/02_zoom.js +18 -28
- package/dist/components/cmd_bar/03_peak.js +50 -66
- package/dist/components/cmd_bar/04_integration.js +70 -84
- package/dist/components/cmd_bar/05_multiplicity.js +42 -56
- package/dist/components/cmd_bar/06_undo_redo.js +22 -36
- package/dist/components/cmd_bar/07_pecker.js +24 -34
- package/dist/components/cmd_bar/common.js +11 -7
- package/dist/components/cmd_bar/index.js +17 -23
- package/dist/components/cmd_bar/r01_layout.js +79 -56
- package/dist/components/cmd_bar/r02_scan.js +70 -87
- package/dist/components/cmd_bar/r03_threshold.js +54 -68
- package/dist/components/cmd_bar/r04_submit.js +71 -83
- package/dist/components/cmd_bar/r05_submit_btn.js +64 -72
- package/dist/components/cmd_bar/r06_predict_btn.js +142 -152
- package/dist/components/cmd_bar/r07_wavelength_btn.js +28 -36
- package/dist/components/cmd_bar/tri_btn.js +91 -113
- package/dist/components/common/chem.js +2 -3
- package/dist/components/common/comps.js +2 -2
- package/dist/components/common/draw.js +30 -11
- package/dist/components/d3_line/index.js +154 -176
- package/dist/components/d3_line/line_focus.js +595 -739
- package/dist/components/d3_multi/index.js +153 -174
- package/dist/components/d3_multi/multi_focus.js +725 -850
- package/dist/components/d3_rect/index.js +112 -134
- package/dist/components/d3_rect/rect_focus.js +163 -208
- package/dist/components/forecast/comps.js +60 -68
- package/dist/components/forecast/ir_comps.js +49 -56
- package/dist/components/forecast/ir_viewer.js +61 -68
- package/dist/components/forecast/nmr_comps.js +62 -72
- package/dist/components/forecast/nmr_viewer.js +59 -68
- package/dist/components/forecast/section_loading.js +39 -63
- package/dist/components/forecast_viewer.js +109 -119
- package/dist/components/multi_jcamps_viewer.js +97 -113
- package/dist/components/panel/compare.js +183 -192
- package/dist/components/panel/cyclic_voltamery_data.js +149 -165
- package/dist/components/panel/graph_selection.js +143 -132
- package/dist/components/panel/index.js +112 -144
- package/dist/components/panel/info.js +125 -132
- package/dist/components/panel/multiplicity.js +215 -223
- package/dist/components/panel/multiplicity_coupling.js +108 -136
- package/dist/components/panel/multiplicity_select.js +43 -51
- package/dist/components/panel/peaks.js +130 -132
- package/dist/constants/action_type.js +23 -39
- package/dist/constants/list_layout.js +7 -4
- package/dist/constants/list_shift.js +117 -103
- package/dist/constants/list_ui.js +3 -6
- package/dist/constants/list_wavelength.js +7 -8
- package/dist/fn.js +2 -3
- package/dist/helpers/brush.js +49 -65
- package/dist/helpers/calc.js +2 -4
- package/dist/helpers/carbonFeatures.js +22 -20
- package/dist/helpers/cfg.js +49 -67
- package/dist/helpers/chem.js +450 -393
- package/dist/helpers/compass.js +92 -83
- package/dist/helpers/converter.js +52 -65
- package/dist/helpers/extractParams.js +60 -52
- package/dist/helpers/extractPeaksEdit.js +29 -25
- package/dist/helpers/focus.js +2 -6
- package/dist/helpers/format.js +416 -361
- package/dist/helpers/init.js +41 -37
- package/dist/helpers/integration.js +18 -21
- package/dist/helpers/mount.js +57 -61
- package/dist/helpers/multiplicity.js +19 -24
- package/dist/helpers/multiplicity_calc.js +39 -50
- package/dist/helpers/multiplicity_complat.js +21 -47
- package/dist/helpers/multiplicity_manual.js +49 -55
- package/dist/helpers/multiplicity_verify_basic.js +108 -111
- package/dist/helpers/shift.js +15 -23
- package/dist/helpers/zoom.js +7 -11
- package/dist/index.js +680 -630
- package/dist/layer_content.js +40 -43
- package/dist/layer_init.js +162 -184
- package/dist/layer_prism.js +38 -41
- package/dist/reducers/index.js +2 -3
- package/dist/reducers/reducer_curve.js +35 -26
- package/dist/reducers/reducer_edit_peak.js +122 -98
- package/dist/reducers/reducer_forecast.js +57 -44
- package/dist/reducers/reducer_integration.js +135 -103
- package/dist/reducers/reducer_jcamp.js +49 -44
- package/dist/reducers/reducer_layout.js +5 -6
- package/dist/reducers/reducer_manager.js +5 -6
- package/dist/reducers/reducer_meta.js +5 -6
- package/dist/reducers/reducer_multiplicity.js +100 -77
- package/dist/reducers/reducer_scan.js +17 -20
- package/dist/reducers/reducer_shift.js +115 -70
- package/dist/reducers/reducer_simulation.js +7 -8
- package/dist/reducers/reducer_status.js +5 -6
- package/dist/reducers/reducer_submit.js +12 -15
- package/dist/reducers/reducer_threshold.js +5 -6
- package/dist/reducers/reducer_ui.js +5 -6
- package/dist/reducers/reducer_voltammetry.js +156 -96
- package/dist/reducers/reducer_wavelength.js +5 -6
- package/dist/reducers/undo_redo_config.js +3 -5
- package/dist/sagas/index.js +2 -15
- package/dist/sagas/saga_edit_peak.js +54 -68
- package/dist/sagas/saga_manager.js +86 -130
- package/dist/sagas/saga_meta.js +25 -31
- package/dist/sagas/saga_multi_entities.js +40 -103
- package/dist/sagas/saga_multiplicity.js +336 -406
- package/dist/sagas/saga_ui.js +296 -475
- package/dist/setupTests.js +8 -0
- package/dist/third_party/jAnalyzer.js +66 -67
- package/dist/third_party/peakInterval.js +34 -34
- package/package.json +14 -14
- package/dist/components/cmd_bar/03_peak_bk.js +0 -139
- package/dist/components/cmd_bar/04_integration_bk.js +0 -180
- package/dist/components/cmd_bar/05_multiplicity_bk.js +0 -131
- package/dist/components/cmd_bar/r01_layout_bk.js +0 -186
- package/dist/components/cmd_bar/r06_predict_btn_bk.js +0 -220
- package/dist/components/d3_line/line_focus_bk.js +0 -825
- package/dist/components/d3_multi/index_bk.js +0 -210
- package/dist/components/d3_multi/multi_focus_bk.js +0 -533
- package/dist/components/panel/compare_bk.js +0 -256
- package/dist/components/panel/cyclic_voltamery_data_bk.js +0 -292
- package/dist/components/panel/index_bk.js +0 -178
- package/dist/components/panel/info_bk.js +0 -235
- package/dist/components/panel/multiplicity_bk.js +0 -280
- package/dist/helpers/carbonFeatures_bk.js +0 -45
- package/dist/helpers/cfg_bk.js +0 -80
- package/dist/helpers/chem_bk.js +0 -787
- package/dist/helpers/compass_bk.js +0 -149
- package/dist/helpers/converter_bk.js +0 -96
- package/dist/helpers/extractPeaksEdit_bk.js +0 -53
- package/dist/helpers/format_bk.js +0 -497
- package/dist/index_bk.js +0 -640
- package/dist/layer_content_bk.js +0 -105
- package/dist/layer_init_bk.js +0 -235
- package/dist/layer_prism_bk.js +0 -133
- package/dist/reducers/reducer_edit_peak_bk.js +0 -108
- package/dist/reducers/reducer_integration_bk.js +0 -134
- package/dist/reducers/reducer_jcamp_bk.js +0 -71
- package/dist/reducers/reducer_multiplicity_bk.js +0 -126
- package/dist/reducers/reducer_shift_bk.js +0 -88
- package/dist/reducers/reducer_voltammetry_bk.js +0 -287
- package/dist/sagas/saga_edit_peak_bk.js +0 -73
- package/dist/sagas/saga_multi_entities_bk.js +0 -106
- package/dist/sagas/saga_multiplicity_bk.js +0 -351
- package/dist/sagas/saga_ui_bk.js +0 -453
package/README.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
An editor to View and Edit Chemical Spectra data (NMR, IR and MS).
|
|
4
4
|
|
|
5
|
+

|
|
6
|
+
|
|
5
7
|
### Usage
|
|
6
8
|
|
|
7
9
|
#### Installing from npm
|
|
@@ -35,3 +37,17 @@ $ yarn start
|
|
|
35
37
|
|
|
36
38
|
[demo & step-by-step manual](https://github.com/ComPlat/react-spectra-editor/blob/master/DEMO_MANUAL.md)
|
|
37
39
|
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
## Acknowledgments
|
|
43
|
+
|
|
44
|
+
This project has been funded by the **[DFG]**.
|
|
45
|
+
|
|
46
|
+
[![DFG Logo]][DFG]
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
Funded by the [Deutsche Forschungsgemeinschaft (DFG, German Research Foundation)](https://www.dfg.de/) under the [National Research Data Infrastructure – NFDI4Chem](https://nfdi4chem.de/) – Projektnummer **441958208** since 2020.
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
[DFG]: https://www.dfg.de/en/
|
|
53
|
+
[DFG Logo]: https://www.dfg.de/zentralablage/bilder/service/logos_corporate_design/logo_negativ_267.png
|
|
@@ -0,0 +1,136 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
const aifJcamp1 = `
|
|
8
|
+
##TITLE=Spectrum
|
|
9
|
+
##JCAMP-DX=5.00 $$ chemotion-converter-app (0.1.0)
|
|
10
|
+
##DATA TYPE=SORPTION-DESORPTION MEASUREMENT
|
|
11
|
+
##DATA CLASS=XYDATA
|
|
12
|
+
##ORIGIN=
|
|
13
|
+
##OWNER=
|
|
14
|
+
##XUNITS=p/p0
|
|
15
|
+
##YUNITS=ml/g
|
|
16
|
+
##OPERATOR=Volodymyr
|
|
17
|
+
##DATE=2020-04-30T00:00:00
|
|
18
|
+
##SERIAL=BEL 00218
|
|
19
|
+
##ADSORPTIVE=CH4
|
|
20
|
+
##TEMPERATURE=384.15
|
|
21
|
+
##AMOUNT=0.00980
|
|
22
|
+
##SAMPLE_CID=aus der BOX
|
|
23
|
+
##SAMPLE_MAT_ID=DUT-140(Cu)
|
|
24
|
+
##SOFTWARE=raw2aif
|
|
25
|
+
##SOFTWARE_VERSION=v004
|
|
26
|
+
##FIRSTX=0.000213204381723083
|
|
27
|
+
##LASTX=0.9634757722293498
|
|
28
|
+
##MINX=0.000213204381723083
|
|
29
|
+
##MAXX=0.9634757722293498
|
|
30
|
+
##MINY=10.631
|
|
31
|
+
##MAXY=1481.2
|
|
32
|
+
##NPOINTS=96
|
|
33
|
+
##FIRSTY=10.631
|
|
34
|
+
##XUNITS=p/p0
|
|
35
|
+
##YUNITS=ml/g
|
|
36
|
+
##XYDATA=(XY..XY)
|
|
37
|
+
0.000213204381723083, 10.631
|
|
38
|
+
0.0008993091878022303, 66.609
|
|
39
|
+
0.0016908121977696636, 120.28
|
|
40
|
+
0.002905260041448732, 170.14
|
|
41
|
+
0.004614526793644528, 214.69
|
|
42
|
+
0.008697226882463239, 282.5
|
|
43
|
+
0.012181979670383893, 322.52
|
|
44
|
+
0.016622915227474586, 360.27
|
|
45
|
+
0.022689233198460477, 401.55
|
|
46
|
+
0.024416263692884636, 412.09
|
|
47
|
+
0.030442119806572587, 445.23
|
|
48
|
+
0.03634757722293497, 475.88
|
|
49
|
+
0.037632487910786536, 482.6
|
|
50
|
+
0.04695253133326754, 528.34
|
|
51
|
+
0.049001282936938714, 538.13
|
|
52
|
+
0.05896378170334551, 588.18
|
|
53
|
+
0.06089213460969111, 598.56
|
|
54
|
+
0.06715878811803021, 632.29
|
|
55
|
+
0.0724217901904668, 664.8
|
|
56
|
+
0.0735468271982631, 673.66
|
|
57
|
+
0.12681338201914535, 551.43
|
|
58
|
+
0.13605052797789402, 552.89
|
|
59
|
+
0.14818908516727525, 554.89
|
|
60
|
+
0.16031777361097405, 557.43
|
|
61
|
+
0.17252541202013225, 559.16
|
|
62
|
+
0.1847034441922432, 560.83
|
|
63
|
+
0.19691108260140136, 562.66
|
|
64
|
+
0.20912858975624196, 563.62
|
|
65
|
+
0.22129675318267047, 565.09
|
|
66
|
+
0.2334353103720517, 566.49
|
|
67
|
+
0.24568242376393962, 568.2
|
|
68
|
+
0.2578111122076384, 569.8
|
|
69
|
+
0.26974242573768875, 571.86
|
|
70
|
+
0.2820388828579888, 573.23
|
|
71
|
+
0.29420704628441724, 574.73
|
|
72
|
+
0.3063456034737985, 576.8
|
|
73
|
+
0.3184742919174973, 577.93
|
|
74
|
+
0.33048455541300703, 580.66
|
|
75
|
+
0.34253429389124646, 583.42
|
|
76
|
+
0.3546728510806277, 586.22
|
|
77
|
+
0.3664363959340768, 590.5
|
|
78
|
+
0.37840718444685684, 595.32
|
|
79
|
+
0.3900621730977993, 602.39
|
|
80
|
+
0.4011052995164315, 612.81
|
|
81
|
+
0.4143294187308793, 644.21
|
|
82
|
+
0.425175170235863, 680.11
|
|
83
|
+
0.43460969110826014, 719.33
|
|
84
|
+
0.43827099575643935, 737.27
|
|
85
|
+
0.4470245731767492, 774.86
|
|
86
|
+
0.45003454060988846, 794.41
|
|
87
|
+
0.4586795618276917, 834.82
|
|
88
|
+
0.46289351623408664, 862.67
|
|
89
|
+
0.4716865686371262, 897.89
|
|
90
|
+
0.4746669298332182, 916.08
|
|
91
|
+
0.4841804006710747, 949.07
|
|
92
|
+
0.48683509325964675, 967.72
|
|
93
|
+
0.4977992697128195, 1006.3
|
|
94
|
+
0.5086055462350735, 1041.7
|
|
95
|
+
0.5107766702852068, 1051.9
|
|
96
|
+
0.5232310273364256, 1084.8
|
|
97
|
+
0.5350833909010165, 1108.9
|
|
98
|
+
0.5475377479522353, 1130.8
|
|
99
|
+
0.5602289548998323, 1151.2
|
|
100
|
+
0.5729596368301589, 1170.2
|
|
101
|
+
0.5835685384387644, 1182.7
|
|
102
|
+
0.5969900325668608, 1201.7
|
|
103
|
+
0.6076778841409257, 1215.4
|
|
104
|
+
0.6213362281654002, 1234.2
|
|
105
|
+
0.6324583045494918, 1246.5
|
|
106
|
+
0.6460376986085068, 1265.7
|
|
107
|
+
0.6567650251653014, 1277.2
|
|
108
|
+
0.6686568637126221, 1290.4
|
|
109
|
+
0.6803414586006118, 1305.8
|
|
110
|
+
0.6943649462153361, 1327.4
|
|
111
|
+
0.7055363663278398, 1338.5
|
|
112
|
+
0.7174676798578901, 1353.9
|
|
113
|
+
0.7297937432152374, 1364.5
|
|
114
|
+
0.7422875752491858, 1376.9
|
|
115
|
+
0.7547814072831344, 1386.7
|
|
116
|
+
0.767117339386164, 1395.1
|
|
117
|
+
0.7788019342741538, 1404.7
|
|
118
|
+
0.7906542978387447, 1415.0
|
|
119
|
+
0.8027040363169841, 1425.7
|
|
120
|
+
0.8154445869929933, 1433.9
|
|
121
|
+
0.827898944044212, 1442.2
|
|
122
|
+
0.8404322510608901, 1449.0
|
|
123
|
+
0.8528471331293792, 1454.4
|
|
124
|
+
0.8653409651633278, 1458.8
|
|
125
|
+
0.8776275535379454, 1462.7
|
|
126
|
+
0.8899240106582453, 1466.3
|
|
127
|
+
0.9024178426921937, 1469.2
|
|
128
|
+
0.9143886312049738, 1473.3
|
|
129
|
+
0.9270403631698411, 1473.8
|
|
130
|
+
0.9390506266653508, 1476.2
|
|
131
|
+
0.9511003651435903, 1479.6
|
|
132
|
+
0.9634757722293498, 1481.2
|
|
133
|
+
##END=$$ End of the data block
|
|
134
|
+
|
|
135
|
+
`;
|
|
136
|
+
var _default = exports.default = aifJcamp1;
|
|
@@ -0,0 +1,122 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
const aifJcamp2 = `
|
|
8
|
+
##TITLE=Spectrum
|
|
9
|
+
##JCAMP-DX=5.00 $$ chemotion-converter-app (0.1.0)
|
|
10
|
+
##DATA TYPE=SORPTION-DESORPTION MEASUREMENT
|
|
11
|
+
##DATA CLASS=XYDATA
|
|
12
|
+
##ORIGIN=
|
|
13
|
+
##OWNER=
|
|
14
|
+
##XUNITS=p/p0
|
|
15
|
+
##YUNITS=ml/g
|
|
16
|
+
##OPERATOR=Volodymyr
|
|
17
|
+
##DATE=2020-04-30T00:00:00
|
|
18
|
+
##SERIAL=BEL 00218
|
|
19
|
+
##ADSORPTIVE=CH4
|
|
20
|
+
##AMOUNT=0.00980
|
|
21
|
+
##SAMPLE_CID=aus der BOX
|
|
22
|
+
##SAMPLE_MAT_ID=DUT-140(Cu)
|
|
23
|
+
##SOFTWARE=raw2aif
|
|
24
|
+
##SOFTWARE_VERSION=v004
|
|
25
|
+
##FIRSTX=0.9562025066614033
|
|
26
|
+
##LASTX=0.0013190565479127604
|
|
27
|
+
##MINX=0.0013190565479127604
|
|
28
|
+
##MAXX=0.9562025066614033
|
|
29
|
+
##MINY=383.81
|
|
30
|
+
##MAXY=1479.7
|
|
31
|
+
##NPOINTS=82
|
|
32
|
+
##FIRSTY=1479.7
|
|
33
|
+
##XUNITS=p/p0
|
|
34
|
+
##YUNITS=ml/g
|
|
35
|
+
##XYDATA=(XY..XY)
|
|
36
|
+
0.9562025066614033, 1479.7
|
|
37
|
+
0.9443106681140827, 1477.3
|
|
38
|
+
0.9321819796703839, 1475.6
|
|
39
|
+
0.9204480410539821, 1472.5
|
|
40
|
+
0.9083588275930129, 1469.0
|
|
41
|
+
0.8962696141320439, 1465.6
|
|
42
|
+
0.8837757820980954, 1462.7
|
|
43
|
+
0.8719234185335044, 1459.8
|
|
44
|
+
0.8599131550379947, 1456.7
|
|
45
|
+
0.8474193230040462, 1454.9
|
|
46
|
+
0.8352906345603474, 1452.7
|
|
47
|
+
0.8232310273364256, 1449.4
|
|
48
|
+
0.8112602388236455, 1446.8
|
|
49
|
+
0.7988947004835686, 1444.5
|
|
50
|
+
0.7868350932596467, 1441.8
|
|
51
|
+
0.7746274548504885, 1439.6
|
|
52
|
+
0.7625382413895194, 1438.1
|
|
53
|
+
0.7503996842001381, 1435.6
|
|
54
|
+
0.7383894207046284, 1432.6
|
|
55
|
+
0.7260633573472812, 1430.5
|
|
56
|
+
0.7139248001578999, 1428.5
|
|
57
|
+
0.7020329616105793, 1427.2
|
|
58
|
+
0.6899042731668805, 1426.8
|
|
59
|
+
0.6789006217309781, 1424.4
|
|
60
|
+
0.664995559064443, 1422.2
|
|
61
|
+
0.6509819401954011, 1420.1
|
|
62
|
+
0.6373630711536564, 1417.9
|
|
63
|
+
0.623379058521662, 1415.6
|
|
64
|
+
0.6097996644626468, 1413.5
|
|
65
|
+
0.5956577518997336, 1411.1
|
|
66
|
+
0.5819599328925293, 1408.7
|
|
67
|
+
0.5679857890062173, 1406.1
|
|
68
|
+
0.5540807263396823, 1403.4
|
|
69
|
+
0.5401460574360999, 1400.6
|
|
70
|
+
0.5263199447350242, 1397.8
|
|
71
|
+
0.5124247508141715, 1394.8
|
|
72
|
+
0.49864798184150794, 1392.3
|
|
73
|
+
0.48498963781703347, 1388.9
|
|
74
|
+
0.4709661502023093, 1386.0
|
|
75
|
+
0.45703148129872695, 1382.9
|
|
76
|
+
0.44316589361492154, 1379.9
|
|
77
|
+
0.42934964965952827, 1376.6
|
|
78
|
+
0.4154939307214053, 1372.9
|
|
79
|
+
0.4016283430376, 1369.5
|
|
80
|
+
0.38781209908220665, 1365.7
|
|
81
|
+
0.3739563801440837, 1361.6
|
|
82
|
+
0.3600118424948189, 1357.8
|
|
83
|
+
0.34627454850488504, 1353.7
|
|
84
|
+
0.33229053587289054, 1349.8
|
|
85
|
+
0.3185927168656864, 1345.5
|
|
86
|
+
0.3047369979275634, 1340.4
|
|
87
|
+
0.28991414191256293, 1335.0
|
|
88
|
+
0.27569327938419025, 1329.6
|
|
89
|
+
0.26235073522155333, 1324.0
|
|
90
|
+
0.24861344123161946, 1317.6
|
|
91
|
+
0.23503404717260434, 1310.7
|
|
92
|
+
0.22129675318267047, 1302.6
|
|
93
|
+
0.20763840915819598, 1293.8
|
|
94
|
+
0.19478930227968025, 1284.5
|
|
95
|
+
0.1684298825619264, 1242.6
|
|
96
|
+
0.1667818020329616, 1235.8
|
|
97
|
+
0.15903483667225896, 1176.6
|
|
98
|
+
0.1511990526004145, 1093.3
|
|
99
|
+
0.14665942958649955, 1030.0
|
|
100
|
+
0.14400473699792757, 986.68
|
|
101
|
+
0.14155728806868648, 942.29
|
|
102
|
+
0.1387841705319254, 870.19
|
|
103
|
+
0.13701766505477153, 816.27
|
|
104
|
+
0.13480706602190862, 742.71
|
|
105
|
+
0.13319846047567355, 683.09
|
|
106
|
+
0.1316391986578506, 633.49
|
|
107
|
+
0.1289845060692786, 581.11
|
|
108
|
+
0.1115859074311655, 544.44
|
|
109
|
+
0.09708773314911674, 537.71
|
|
110
|
+
0.08266554820882266, 533.49
|
|
111
|
+
0.0688868054870226, 529.35
|
|
112
|
+
0.05518799960525017, 524.71
|
|
113
|
+
0.04177045297542682, 518.59
|
|
114
|
+
0.00863692884634363, 482.67
|
|
115
|
+
0.003195993289252936, 448.59
|
|
116
|
+
0.0018709168064738972, 415.76
|
|
117
|
+
0.0013190565479127604, 383.81
|
|
118
|
+
##END=$$ End of the data block
|
|
119
|
+
|
|
120
|
+
|
|
121
|
+
`;
|
|
122
|
+
var _default = exports.default = aifJcamp2;
|