id
int64 0
877k
| file_name
stringlengths 3
109
| file_path
stringlengths 13
185
| content
stringlengths 31
9.38M
| size
int64 31
9.38M
| language
stringclasses 1
value | extension
stringclasses 11
values | total_lines
int64 1
340k
| avg_line_length
float64 2.18
149k
| max_line_length
int64 7
2.22M
| alphanum_fraction
float64 0
1
| repo_name
stringlengths 6
66
| repo_stars
int64 94
47.3k
| repo_forks
int64 0
12k
| repo_open_issues
int64 0
3.4k
| repo_license
stringclasses 11
values | repo_extraction_date
stringclasses 197
values | exact_duplicates_redpajama
bool 2
classes | near_duplicates_redpajama
bool 2
classes | exact_duplicates_githubcode
bool 2
classes | exact_duplicates_stackv2
bool 1
class | exact_duplicates_stackv1
bool 2
classes | near_duplicates_githubcode
bool 2
classes | near_duplicates_stackv1
bool 2
classes | near_duplicates_stackv2
bool 1
class |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1,542,824
|
Chi.cpp
|
RCameron93_FehlerFabrik/src/Chi.cpp
|
// 3-Band Voltage controlled crossover
// Ross Cameron 2020/08/16
// Title Font - Rumeur Bold
// https://github.com/groupeccc/Rumeur
// Main font - Jost
// https://indestructibletype.com/Jost.html
#include "plugin.hpp"
#include "ffFilters.hpp"
struct Chi : Module
{
enum ParamIds
{
LOW_GAIN_PARAM,
MID_GAIN_PARAM,
HIGH_GAIN_PARAM,
LOW_GAIN_CV_PARAM,
MID_GAIN_CV_PARAM,
HIGH_GAIN_CV_PARAM,
LOW_X_PARAM,
HIGH_X_PARAM,
NUM_PARAMS
};
enum InputIds
{
LOW_GAIN_INPUT,
MID_GAIN_INPUT,
HIGH_GAIN_INPUT,
LOW_X_INPUT,
HIGH_X_INPUT,
IN_INPUT,
NUM_INPUTS
};
enum OutputIds
{
LOW_OUTPUT,
MID_OUTPUT,
HIGH_OUTPUT,
OUT_OUTPUT,
NUM_OUTPUTS
};
enum LightIds
{
NUM_LIGHTS
};
Chi()
{
config(NUM_PARAMS, NUM_INPUTS, NUM_OUTPUTS, NUM_LIGHTS);
configParam(LOW_GAIN_PARAM, 0.f, 1.99526f, 1.f, "Low Gain", "dB", -10.f, 20.f); // max value is slightly less than 2.f to get a max of 6dB voltage gain
configParam(MID_GAIN_PARAM, 0.f, 1.99526f, 1.f, "Mid Gain", "dB", -10.f, 20.f);
configParam(HIGH_GAIN_PARAM, 0.f, 1.99526f, 1.f, "High Gain", "dB", -10.f, 20.f);
configParam(LOW_GAIN_CV_PARAM, -1.f, 1.f, 0.f, "Low Gain CV Trim", "%", 0.f, 100.f);
configParam(MID_GAIN_CV_PARAM, -1.f, 1.f, 0.f, "Mid Gain CV Trim", "%", 0.f, 100.f);
configParam(HIGH_GAIN_CV_PARAM, -1.f, 1.f, 0.f, "High Gain CV Trim", "%", 0.f, 100.f);
configParam(LOW_X_PARAM, 0.f, 1.f, 0.49728f, "Low/Mid Crossover Freq", "Hz", 8.f, 80.f); // default values slightly less than 0.5 to give the illusion that centre position produces a nice round freq
configParam(HIGH_X_PARAM, 0.f, 1.f, 0.49514f, "Mid/High Crossover Freq", "Hz", 8.f, 1000.f);
configInput(LOW_GAIN_INPUT, "Low Gain CV");
configInput(MID_GAIN_INPUT, "Mid Gain CV");
configInput(HIGH_GAIN_INPUT, "High Gain CV");
configInput(LOW_X_INPUT, "Low/Mid Crossover Freq CV");
configInput(HIGH_X_INPUT, "Mid/High Crossover Freq CV");
configInput(IN_INPUT, "Main");
configOutput(LOW_OUTPUT, "Low Band");
configOutput(MID_OUTPUT, "Mid Band");
configOutput(HIGH_OUTPUT, "High Band");
configOutput(OUT_OUTPUT, "Combined");
configBypass(IN_INPUT, OUT_OUTPUT);
configBypass(IN_INPUT, LOW_OUTPUT);
configBypass(IN_INPUT, MID_OUTPUT);
configBypass(IN_INPUT, HIGH_OUTPUT);
}
LinkwitzRiley4Filter filter[32];
float lowFreqScale(float knobValue)
{
// Converts a knob value from 0 -> 0.5 -> 1 to 80 -> 225 -> 640
// float scaled = 540 * knobValue * knobValue + 20 * knobValue + 80;
float scaled = 80 * pow(8, knobValue);
return scaled;
}
float highFreqScale(float knobValue)
{
// Converts a knob value from 0 -> 0.5 -> 1 to 1k -> 2.8k -> 8k
// float scaled = 6800 * knobValue * knobValue + 200 * knobValue + 1000;
float scaled = 1000 * pow(8, knobValue);
return scaled;
}
bool anythingConnected()
{
for (int i = 0; i < NUM_OUTPUTS; ++i)
{
if (outputs[i].isConnected())
{
return true;
}
}
return false;
}
void process(const ProcessArgs &args) override
{
// Do we need to do anything?
if (!anythingConnected())
{
return;
}
// Global Parameters#
// Xover Freqs
float lowXParam = params[LOW_X_PARAM].getValue();
float highXParam = params[HIGH_X_PARAM].getValue();
// Gains
float gainParams[3] = {0.f};
float gainCVTrimParams[3] = {0.f};
for (int i = 0; i < 3; ++i)
{
gainParams[i] = params[LOW_GAIN_PARAM + i].getValue();
gainCVTrimParams[i] = params[LOW_GAIN_CV_PARAM + i].getValue();
}
int channels = inputs[IN_INPUT].getChannels();
for (int c = 0; c < channels; ++c)
{
float in = inputs[IN_INPUT].getPolyVoltage(c);
/////////////// Get parameters
// Frequencies
// For now we're just taking MP2015 frequency ranges
// Start with all values [0:1]
float lowX = lowXParam;
lowX += inputs[LOW_X_INPUT].getPolyVoltage(c) / 10.f;
lowX = clamp(lowX, 0.f, 1.f);
// Convert to Hz
lowX = lowFreqScale(lowX);
// Start with all values [0:1]
float highX = highXParam;
highX += inputs[HIGH_X_INPUT].getPolyVoltage(c) / 10.f;
highX = clamp(highX, 0.f, 1.f);
// Convert to Hz
highX = highFreqScale(highX);
// Gains
// We go up to 2.0 because we want the right hand side of the knob to be 0dB -> +6dB
float gains[3] = {0.f};
for (int i = 0; i < 3; ++i)
{
gains[i] = gainParams[i];
gains[i] += inputs[LOW_GAIN_INPUT + i].getPolyVoltage(c) * gainCVTrimParams[i];
gains[i] = clamp(gains[i], 0.f, 2.f);
}
/////////////// Process
float outs[3] = {0.f};
// Process low/mid Xover
filter[c * 2].process(in, lowX, args.sampleRate);
outs[0] = filter[c * 2].outs[0];
outs[1] = filter[c * 2].outs[1];
// Process mid/high Xover
filter[c * 2 + 1].process(outs[1], highX, args.sampleRate);
outs[1] = filter[c * 2 + 1].outs[0];
outs[2] = filter[c * 2 + 1].outs[1];
/////////////// Output
// Set gains and outs
float mainOut = 0.f;
for (int i = 0; i < 3; ++i)
{
// Check for NaN
outs[i] = std::isfinite(outs[i]) ? outs[i] : 0.f;
outs[i] *= gains[i];
outputs[LOW_OUTPUT + i].setVoltage(outs[i], c);
mainOut += outs[i];
}
outputs[OUT_OUTPUT].setVoltage(mainOut, c);
}
for (int i = 0; i < NUM_OUTPUTS; ++i)
{
outputs[i].setChannels(channels);
}
}
};
struct ChiWidget : ModuleWidget
{
ChiWidget(Chi *module)
{
setModule(module);
setPanel(APP->window->loadSvg(asset::plugin(pluginInstance, "res/Chi.svg")));
addChild(createWidget<FFHexScrew>(Vec(RACK_GRID_WIDTH, 0)));
addChild(createWidget<FFHexScrew>(Vec(box.size.x - 2 * RACK_GRID_WIDTH, 0)));
addChild(createWidget<FFHexScrew>(Vec(RACK_GRID_WIDTH, RACK_GRID_HEIGHT - RACK_GRID_WIDTH)));
addChild(createWidget<FFHexScrew>(Vec(box.size.x - 2 * RACK_GRID_WIDTH, RACK_GRID_HEIGHT - RACK_GRID_WIDTH)));
addParam(createParamCentered<FF20GKnob>(mm2px(Vec(18.473, 47.126)), module, Chi::LOW_GAIN_PARAM));
addParam(createParamCentered<FF20GKnob>(mm2px(Vec(55.88, 47.126)), module, Chi::MID_GAIN_PARAM));
addParam(createParamCentered<FF20GKnob>(mm2px(Vec(93.289, 47.126)), module, Chi::HIGH_GAIN_PARAM));
addParam(createParamCentered<FF06GKnob>(mm2px(Vec(18.473, 70.063)), module, Chi::LOW_GAIN_CV_PARAM));
addParam(createParamCentered<FF06GKnob>(mm2px(Vec(55.88, 70.063)), module, Chi::MID_GAIN_CV_PARAM));
addParam(createParamCentered<FF06GKnob>(mm2px(Vec(93.289, 70.063)), module, Chi::HIGH_GAIN_CV_PARAM));
addParam(createParamCentered<FF15GKnob>(mm2px(Vec(37.177, 70.063)), module, Chi::LOW_X_PARAM));
addParam(createParamCentered<FF15GKnob>(mm2px(Vec(74.584, 70.063)), module, Chi::HIGH_X_PARAM));
addInput(createInputCentered<FF01JKPort>(mm2px(Vec(18.473, 87.595)), module, Chi::LOW_GAIN_INPUT));
addInput(createInputCentered<FF01JKPort>(mm2px(Vec(55.88, 87.595)), module, Chi::MID_GAIN_INPUT));
addInput(createInputCentered<FF01JKPort>(mm2px(Vec(93.289, 87.595)), module, Chi::HIGH_GAIN_INPUT));
addInput(createInputCentered<FF01JKPort>(mm2px(Vec(37.177, 87.595)), module, Chi::LOW_X_INPUT));
addInput(createInputCentered<FF01JKPort>(mm2px(Vec(74.584, 87.595)), module, Chi::HIGH_X_INPUT));
addInput(createInputCentered<FF01JKPort>(mm2px(Vec(37.177, 113.225)), module, Chi::IN_INPUT));
addOutput(createOutputCentered<FF01JKPort>(mm2px(Vec(18.473, 23.417)), module, Chi::LOW_OUTPUT));
addOutput(createOutputCentered<FF01JKPort>(mm2px(Vec(55.88, 23.417)), module, Chi::MID_OUTPUT));
addOutput(createOutputCentered<FF01JKPort>(mm2px(Vec(93.289, 23.417)), module, Chi::HIGH_OUTPUT));
addOutput(createOutputCentered<FF01JKPort>(mm2px(Vec(74.584, 113.225)), module, Chi::OUT_OUTPUT));
}
};
Model *modelChi = createModel<Chi, ChiWidget>("Chi");
| 7,679
|
C++
|
.cpp
| 203
| 34.640394
| 200
| 0.677731
|
RCameron93/FehlerFabrik
| 30
| 3
| 7
|
GPL-3.0
|
9/20/2024, 10:45:25 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,825
|
Aspect.cpp
|
RCameron93_FehlerFabrik/src/Aspect.cpp
|
// Clock Divider and sequential sequencer
// Ross Cameron
// Title font - Resistance Regular
// https://velvetyne.fr/fonts/resistance/
// Main font - Jost
// https://indestructibletype.com/Jost.html
#include "plugin.hpp"
struct Aspect : Module
{
enum ParamIds
{
NUM_PARAMS
};
enum InputIds
{
TRIG_INPUT,
RESET_INPUT,
NUM_INPUTS
};
enum OutputIds
{
ENUMS(DIVISOR1_OUTPUT, 6),
ENUMS(SEQ1_OUTPUT, 8),
NUM_OUTPUTS
};
enum LightIds
{
ENUMS(DIVISOR1_LIGHT, 6),
ENUMS(SEQ1_LIGHT, 8),
NUM_LIGHTS
};
dsp::SchmittTrigger clockTrigger;
dsp::SchmittTrigger resetTrigger;
int divisors[6] = {2, 4, 8, 16, 32, 64};
int index = 0;
Aspect()
{
config(NUM_PARAMS, NUM_INPUTS, NUM_OUTPUTS, NUM_LIGHTS);
configInput(TRIG_INPUT, "Trigger");
configInput(RESET_INPUT, "Reset");
for (int i = 0; i < 6; ++i)
{
configOutput(DIVISOR1_OUTPUT + i, string::f("%dth's", divisors[i]));
configLight(DIVISOR1_LIGHT + i, string::f("%dth's", divisors[i]));
}
for (int i = 0; i < 8; ++i)
{
configOutput(SEQ1_OUTPUT + i, string::f("Step %d", i + 1));
configLight(SEQ1_LIGHT + i, string::f("Step %d", i + 1));
}
}
void process(const ProcessArgs &args) override
{
// Determine index
if (clockTrigger.process(inputs[TRIG_INPUT].getVoltage()))
{
++index;
}
// Reset if rising edge on reset input
if (resetTrigger.process(inputs[RESET_INPUT].getVoltage()))
{
index = 0;
}
// Reset index after 64 pulses
if (index > 63)
{
index = 0;
}
// Process clock divisors
for (int i = 0; i < 6; ++i)
{
int out = 0;
if (index % divisors[i] == 0)
{
out = 10;
}
outputs[DIVISOR1_OUTPUT + i].setVoltage(out);
lights[DIVISOR1_LIGHT + i].setBrightness(out);
}
// Process gate sequencer
int seqIndex = index % 8;
int seqGates[8] = {0};
seqGates[seqIndex] = 10;
for (int i = 0; i < 8; ++i)
{
outputs[SEQ1_OUTPUT + i].setVoltage(seqGates[i]);
lights[SEQ1_LIGHT + i].setBrightness(seqGates[i]);
}
}
};
struct AspectWidget : ModuleWidget
{
AspectWidget(Aspect *module)
{
setModule(module);
setPanel(APP->window->loadSvg(asset::plugin(pluginInstance, "res/Aspect.svg")));
addChild(createWidget<FFHexScrew>(Vec(RACK_GRID_WIDTH, 0)));
addChild(createWidget<FFHexScrew>(Vec(box.size.x - 2 * RACK_GRID_WIDTH, 0)));
addChild(createWidget<FFHexScrew>(Vec(RACK_GRID_WIDTH, RACK_GRID_HEIGHT - RACK_GRID_WIDTH)));
addChild(createWidget<FFHexScrew>(Vec(box.size.x - 2 * RACK_GRID_WIDTH, RACK_GRID_HEIGHT - RACK_GRID_WIDTH)));
addInput(createInputCentered<FF01JKPort>(mm2px(Vec(18.714, 23.417)), module, Aspect::TRIG_INPUT));
addInput(createInputCentered<FF01JKPort>(mm2px(Vec(18.714, 36.251)), module, Aspect::RESET_INPUT));
for (int i = 0; i < 6; i++)
{
addOutput(createOutputCentered<FF01JKPort>(mm2px(Vec(18.714, 49.09 + i * 12.83)), module, Aspect::DIVISOR1_OUTPUT + i));
addChild(createLightCentered<MediumLight<RedLight>>(mm2px(Vec(25.714, 49.09 + i * 12.83)), module, Aspect::DIVISOR1_LIGHT + i));
}
for (int i = 0; i < 8; i++)
{
addOutput(createOutputCentered<FF01JKPort>(mm2px(Vec(38.771, 23.417 + i * 12.83)), module, Aspect::SEQ1_OUTPUT + i));
addChild(createLightCentered<MediumLight<RedLight>>(mm2px(Vec(45.771, 23.417 + i * 12.83)), module, Aspect::SEQ1_LIGHT + i));
}
}
};
Model *modelAspect = createModel<Aspect, AspectWidget>("Aspect");
| 3,985
|
C++
|
.cpp
| 115
| 26.617391
| 140
| 0.574617
|
RCameron93/FehlerFabrik
| 30
| 3
| 7
|
GPL-3.0
|
9/20/2024, 10:45:25 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,826
|
Fax.cpp
|
RCameron93_FehlerFabrik/src/Fax.cpp
|
// CV Recorder/Sequencer
// Ross Cameron 2020/07/11
// Title font - ARK-ES Dense Regular
// https://stued.io/projects/ark-typeface
// Main font - Jost
// https://indestructibletype.com/Jost.html
#include "plugin.hpp"
// Magic numbers for the led positions
// These came from using tranform tools in Adobe Illustrator
// I should write a function to generate them within the widget struct, it's simple trig
const float ledPos[32][2] = {
{40.724, 55.342}, {45.699, 56.332}, {49.917, 59.150}, {52.735, 63.367}, {53.725, 68.343}, {52.735, 73.317}, {49.917, 77.535}, {45.699, 80.353}, {40.724, 81.343}, {35.749, 80.353}, {31.531, 77.535}, {28.713, 73.317}, {27.723, 68.343}, {28.713, 63.367}, {31.531, 59.150}, {35.749, 56.332}, {40.724, 51.342}, {47.230, 52.636}, {52.745, 56.321}, {56.430, 61.837}, {57.724, 68.343}, {56.430, 74.848}, {52.745, 80.363}, {47.230, 84.049}, {40.724, 85.343}, {34.218, 84.049}, {28.703, 80.363}, {25.018, 74.848}, {23.724, 68.343}, {25.018, 61.837}, {28.703, 56.321}, {34.218, 52.636}};
struct Fax : Module
{
enum ParamIds
{
NSTEPS_PARAM,
CLOCK_PARAM,
STEPADV_PARAM,
RESET_PARAM,
CV_PARAM,
START_PARAM,
REC_PARAM,
STARTTOGGLE_PARAM,
RECTOGGLE_PARAM,
PRE_PARAM,
AUTO_PARAM,
NUM_PARAMS
};
enum InputIds
{
NSTEPS_INPUT,
CLOCK_INPUT,
IN_INPUT,
STEPADV_INPUT,
RESET_INPUT,
START_INPUT,
REC_INPUT,
NUM_INPUTS
};
enum OutputIds
{
OUT_OUTPUT,
NUM_OUTPUTS
};
enum LightIds
{
ENUMS(LED1_LIGHT, 96),
REC_LIGHT,
NUM_LIGHTS
};
Fax()
{
config(NUM_PARAMS, NUM_INPUTS, NUM_OUTPUTS, NUM_LIGHTS);
configParam(NSTEPS_PARAM, 1.f, 32.f, 16.f, "Sequencer Steps");
configParam(CLOCK_PARAM, -2.f, 6.f, 2.f, "Clock Rate", "BPM", 2.f, 60.f);
configButton(STEPADV_PARAM, "Step");
configButton(RESET_PARAM, "Reset");
configParam(CV_PARAM, -5.f, 5.f, 0.f, "CV");
configButton(START_PARAM, "Start");
configButton(REC_PARAM, "Record");
configSwitch(STARTTOGGLE_PARAM, 0.f, 1.f, 0.f, "Start Mode", {"Trigger", "Gate"});
configSwitch(RECTOGGLE_PARAM, 0.f, 1.f, 0.f, "Record Mode", {"Trigger", "Gate"});
configSwitch(PRE_PARAM, 0.f, 1.f, 0.f, "Pre/Post", {"Post", "Pre"});
configSwitch(AUTO_PARAM, 0.f, 1.f, 1.f, "Auto Stop", {"Continue", "Stop"});
configInput(NSTEPS_INPUT, "Sequencer Steps CV");
configInput(CLOCK_INPUT, "Clock Rate CV");
configInput(IN_INPUT, "CV");
configInput(STEPADV_INPUT, "Step Advance Trigger");
configInput(RESET_INPUT, "Reset Trigger");
configInput(START_INPUT, "Start Trigger");
configInput(REC_INPUT, "Record Trigger");
configOutput(OUT_OUTPUT, "CV");
for (int i = 0; i < 32; ++i)
{
configLight(LED1_LIGHT + i * 3, string::f("Step %d", i + 1));
}
}
dsp::SchmittTrigger stepTrigger;
dsp::SchmittTrigger resetTrigger;
dsp::SchmittTrigger startTrigger;
dsp::SchmittTrigger recordTrigger;
// Initialise stopped
bool running = false;
bool recording = false;
bool recordMode = false;
bool autoStop = false;
bool pre = false;
float phase = 0.f;
int index = 0;
// Initialise in auto
// Auto - menuChannels == -1 - channels = N channels of whatever is input
// !Auto - menuChannels >= 0 - channels = set by context menu
int menuChannels = -1;
int channels = 1;
// One voltage to record and/or output for each poly channel
float newVolt[16] = {0.f};
float out[16] = {0.f};
float voltages[16][32] = {{0.f}};
float getRate()
{
float rate = params[CLOCK_PARAM].getValue();
rate += inputs[CLOCK_INPUT].getVoltage();
rate = std::pow(2.f, rate);
return rate;
}
int getSteps()
{
int steps = (int)params[NSTEPS_PARAM].getValue();
steps += (int)inputs[NSTEPS_INPUT].getVoltage();
steps = clamp(steps, 1, 32);
return steps;
}
void record(float newVolt, int c)
{
voltages[c][index] = newVolt;
}
void advanceIndex()
{
int max = getSteps() - 1;
if (pre && recording)
{
for (int c = 0; c < 16; ++c)
{
record(newVolt[c], c);
}
}
++index;
if (!pre && recording)
{
for (int c = 0; c < 16; ++c)
{
record(newVolt[c], c);
}
}
if (index > max)
{
index = 0;
if (autoStop)
{
// Stops recording when the index rolls over
recording = false;
}
}
}
void lfoPhase(float rate, float delta)
{
// Accumulate phase
phase += rate * delta;
// After one cycle advance the sequencer index
if (phase >= 1.f)
{
advanceIndex();
phase = 0.f;
}
}
void reset()
{
if (resetTrigger.process(params[RESET_PARAM].getValue() + inputs[RESET_INPUT].getVoltage()))
{
index = 0;
}
}
void skip()
{
if (stepTrigger.process(params[STEPADV_PARAM].getValue() + inputs[STEPADV_INPUT].getVoltage()))
{
advanceIndex();
}
}
void sequencerstep()
{
for (int c = 0; c < 16; ++c)
{
out[c] = voltages[c][index];
}
// Set every light to off
for (int i = 0; i < 32; ++i)
{
lights[LED1_LIGHT + i * 3].setBrightness(0);
lights[LED1_LIGHT + i * 3 + 1].setBrightness(0);
lights[LED1_LIGHT + i * 3 + 2].setBrightness(0);
}
// Set the light for the current step
// LEDs only represent the output voltage if in mono
if (channels < 2)
{
float ledValue = out[0] / 10.0;
lights[LED1_LIGHT + index * 3].setBrightness(0.5 + 0.5 * -1 * ledValue);
lights[LED1_LIGHT + index * 3 + 1].setBrightness(0.5 + 0.5 * ledValue);
lights[LED1_LIGHT + index * 3 + 2].setBrightness(0);
}
// If poly, LEDs are solid blue.
else
{
lights[LED1_LIGHT + index * 3].setBrightness(0);
lights[LED1_LIGHT + index * 3 + 1].setBrightness(0);
lights[LED1_LIGHT + index * 3 + 2].setBrightness(1);
}
}
void startControls()
{
// Get the start/stop mode
// false = trig, true = gate,
bool startMode = (bool)params[STARTTOGGLE_PARAM].getValue();
if (startMode)
{
// Gate (momentary) start
if (params[START_PARAM].getValue() || inputs[START_INPUT].getVoltage())
{
running = true;
}
else
{
running = false;
}
}
else
{
// Trig (toggle) start
if (startTrigger.process(params[START_PARAM].getValue() + inputs[START_INPUT].getVoltage()))
{
running = !running;
}
}
}
void recordControls()
{
if (params[AUTO_PARAM].getValue())
{
autoStop = true;
}
else
{
autoStop = false;
}
if (params[PRE_PARAM].getValue())
{
pre = true;
}
else
{
pre = false;
}
// Get the record mode
// false = trig, true = gate,
recordMode = (bool)params[RECTOGGLE_PARAM].getValue();
if (recordMode)
{
// Gate (momentary) record
if (params[REC_PARAM].getValue() || inputs[REC_INPUT].getVoltage())
{
recording = true;
}
else
{
recording = false;
}
}
else
{
// Trig (toggle) recording
if (recordTrigger.process(params[REC_PARAM].getValue() + inputs[REC_INPUT].getVoltage()))
{
recording = !recording;
}
}
}
void getInputVoltages()
{
// Get number of channels
// Auto
if (menuChannels == -1)
{
channels = inputs[IN_INPUT].getChannels();
}
// Menu determined
else
{
channels = menuChannels + 1;
}
// Get voltages, either from channels or from the knob
if (channels)
{
// Get voltage from each incoming poly channel
for (int c = 0; c < channels; ++c)
{
newVolt[c] = inputs[IN_INPUT].getPolyVoltage(c);
}
// If the input is monophonic then input is duplicated to all output channels
if (channels == 1)
{
for (int c = channels; c < 16; ++c)
{
newVolt[c] = newVolt[0];
}
}
else
{
// If there's less than 16 channels coming in, set the remaining ones to 0v
for (int c = channels; c < 16; ++c)
{
newVolt[c] = 0;
}
}
// NOTE - all of these newVolt values are just to represent whatever voltage is being input at the current frame
// They'll only be stored and output if recording is active.
}
else
{
// No channels are connected, so we take our value to record from the big knob
newVolt[0] = params[CV_PARAM].getValue();
// All channels are set to the same voltage
for (int c = 1; c < 16; ++c)
{
newVolt[c] = newVolt[0];
}
}
}
void process(const ProcessArgs &args) override
{
startControls();
if (running)
{
// Get clock rate
float clockRate = getRate();
// Accumulate LFO
lfoPhase(clockRate, args.sampleTime);
}
recordControls();
getInputVoltages();
skip();
reset();
sequencerstep();
if (recording)
{
lights[REC_LIGHT].setBrightness(1);
for (int c = 0; c < channels; ++c)
{
out[c] = newVolt[c];
}
}
else
{
lights[REC_LIGHT].setBrightness(0);
}
for (int c = 0; c < channels; ++c)
{
outputs[OUT_OUTPUT].setVoltage(out[c], c);
}
outputs[OUT_OUTPUT].setChannels(channels);
// HACKY make sure we still output an already recorded channel if the current Nchans == 0
if (channels == 0)
{
outputs[OUT_OUTPUT].setVoltage(out[0], 0);
outputs[OUT_OUTPUT].setChannels(1);
}
}
void onReset() override
{
// autoPoly = true;
running = false;
menuChannels = -1;
index = 0;
phase = 0.f;
for (int i = 0; i < 16; ++i)
{
newVolt[i] = 0.f;
out[i] = 0.f;
for (int j = 0; j < 32; ++j)
{
voltages[i][j] = 0.f;
}
}
}
json_t *dataToJson() override
{
json_t *rootJ = json_object();
// json_object_set_new(rootJ, "Auto Polyphony", json_boolean(autoPoly));
json_object_set_new(rootJ, "Polyphony Channels", json_integer(menuChannels));
json_object_set_new(rootJ, "Index", json_integer(index));
json_object_set_new(rootJ, "Running", json_integer(running));
// stored voltages
json_t *chansJ = json_array();
for (int i = 0; i < 16; ++i)
{
json_t *stepsJ = json_array();
for (int j = 0; j < 32; ++j)
{
json_array_insert_new(stepsJ, j, json_real(voltages[i][j]));
}
json_array_insert_new(chansJ, i, stepsJ);
}
json_object_set_new(rootJ, "Stored Voltages", chansJ);
return rootJ;
}
void dataFromJson(json_t *rootJ) override
{
// json_t *autoJ = json_object_get(rootJ, "Auto Polyphony");
// if (autoJ)
// autoPoly = json_boolean_value(autoJ);
json_t *channelsJ = json_object_get(rootJ, "Polyphony Channels");
if (channelsJ)
menuChannels = json_integer_value(channelsJ);
json_t *indexJ = json_object_get(rootJ, "Index");
if (indexJ)
index = json_integer_value(indexJ);
json_t *runningJ = json_object_get(rootJ, "Running");
if (runningJ)
running = json_is_true(runningJ);
json_t *chansJ = json_object_get(rootJ, "Stored Voltages");
if (chansJ)
{
for (int i = 0; i < 16; ++i)
{
json_t *chanJ = json_array_get(chansJ, i);
if (chanJ)
{
for (int j = 0; j < 32; ++j)
{
json_t *stepJ = json_array_get(chanJ, j);
if (stepJ)
{
voltages[i][j] = (float)json_real_value(stepJ);
}
}
}
}
}
}
};
struct FaxWidget : ModuleWidget
{
FaxWidget(Fax *module)
{
setModule(module);
setPanel(APP->window->loadSvg(asset::plugin(pluginInstance, "res/Fax.svg")));
addChild(createWidget<FFHexScrew>(Vec(RACK_GRID_WIDTH, 0)));
addChild(createWidget<FFHexScrew>(Vec(box.size.x - 2 * RACK_GRID_WIDTH, 0)));
addChild(createWidget<FFHexScrew>(Vec(RACK_GRID_WIDTH, RACK_GRID_HEIGHT - RACK_GRID_WIDTH)));
addChild(createWidget<FFHexScrew>(Vec(box.size.x - 2 * RACK_GRID_WIDTH, RACK_GRID_HEIGHT - RACK_GRID_WIDTH)));
addParam(createParamCentered<FF15GSnapKnob>(mm2px(Vec(24.0, 37.562)), module, Fax::NSTEPS_PARAM));
addParam(createParamCentered<FF15GKnob>(mm2px(Vec(57.28, 37.562)), module, Fax::CLOCK_PARAM));
addParam(createParamCentered<FFDPW>(mm2px(Vec(12.0, 62.056)), module, Fax::STEPADV_PARAM));
addParam(createParamCentered<FFDPW>(mm2px(Vec(69.28, 62.056)), module, Fax::RESET_PARAM));
addParam(createParamCentered<FF20GKnob>(mm2px(Vec(40.724, 68.343)), module, Fax::CV_PARAM));
addParam(createParamCentered<FFDPW>(mm2px(Vec(16.0, 90.009)), module, Fax::START_PARAM));
addParam(createParamCentered<FFDPW>(mm2px(Vec(65.28, 90.009)), module, Fax::REC_PARAM));
addParam(createParamCentered<HCKSS>(mm2px(Vec(16.0, 99.716)), module, Fax::STARTTOGGLE_PARAM));
addParam(createParamCentered<HCKSS>(mm2px(Vec(65.28, 99.716)), module, Fax::RECTOGGLE_PARAM));
addParam(createParamCentered<CKSS>(mm2px(Vec(9.0, 29.647)), module, Fax::PRE_PARAM));
addParam(createParamCentered<CKSS>(mm2px(Vec(72.28, 29.647)), module, Fax::AUTO_PARAM));
addInput(createInputCentered<FF01JKPort>(mm2px(Vec(24.0, 23.417)), module, Fax::NSTEPS_INPUT));
addInput(createInputCentered<FF01JKPort>(mm2px(Vec(57.28, 23.417)), module, Fax::CLOCK_INPUT));
addInput(createInputCentered<FF01JKPort>(mm2px(Vec(40.64, 36.251)), module, Fax::IN_INPUT));
addInput(createInputCentered<FF01JKPort>(mm2px(Vec(11.905, 74.976)), module, Fax::STEPADV_INPUT));
addInput(createInputCentered<FF01JKPort>(mm2px(Vec(69.28, 74.976)), module, Fax::RESET_INPUT));
addInput(createInputCentered<FF01JKPort>(mm2px(Vec(16.0, 113.225)), module, Fax::START_INPUT));
addInput(createInputCentered<FF01JKPort>(mm2px(Vec(65.28, 113.225)), module, Fax::REC_INPUT));
addOutput(createOutputCentered<FF01JKPort>(mm2px(Vec(40.64, 100.386)), module, Fax::OUT_OUTPUT));
for (int i = 0; i < 32; i++)
{
addChild(createLightCentered<MediumLight<RedGreenBlueLight>>(mm2px(Vec(ledPos[i][0], ledPos[i][1])), module, Fax::LED1_LIGHT + (i * 3)));
}
addChild(createLightCentered<MediumLight<RedLight>>(mm2px(Vec(56.28, 113.225)), module, Fax::REC_LIGHT));
}
void appendContextMenu(Menu *menu) override
{
Fax *fax = dynamic_cast<Fax *>(module);
assert(fax);
struct ChannelValueItem : MenuItem
{
Fax *fax;
int c;
void onAction(const event::Action &e) override
{
fax->menuChannels = c;
}
};
struct FaxPolyChansItem : MenuItem
{
Fax *fax;
Menu *createChildMenu() override
{
Menu *menu = new Menu;
for (int c = -1; c < 16; ++c)
{
ChannelValueItem *item = new ChannelValueItem;
if (c == -1)
item->text = "Auto";
else
item->text = string::f("%d", c + 1);
item->rightText = CHECKMARK(fax->menuChannels == c);
item->fax = fax;
item->c = c;
menu->addChild(item);
}
return menu;
}
};
menu->addChild(new MenuEntry);
FaxPolyChansItem *faxPolyChansItem = new FaxPolyChansItem;
faxPolyChansItem->text = "Polyphony Channels";
if (fax->menuChannels == -1)
faxPolyChansItem->rightText = string::f("Auto ") + RIGHT_ARROW;
else
faxPolyChansItem->rightText = string::f("%d", fax->channels) + " " + RIGHT_ARROW;
faxPolyChansItem->fax = fax;
menu->addChild(faxPolyChansItem);
}
};
Model *modelFax = createModel<Fax, FaxWidget>("Fax");
| 14,632
|
C++
|
.cpp
| 512
| 25.197266
| 577
| 0.656768
|
RCameron93/FehlerFabrik
| 30
| 3
| 7
|
GPL-3.0
|
9/20/2024, 10:45:25 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,827
|
Rasoir.cpp
|
RCameron93_FehlerFabrik/src/Rasoir.cpp
|
// Asymmetrical Voltage Processor
// Ross Cameron 2020/07/21
// Title Font - VTF Lment
// https://velvetyne.fr/fonts/lment/
// Main font - Jost
// https://indestructibletype.com/Jost.html
#include "plugin.hpp"
#include "samplerate.h"
#include "ffFilters.hpp"
#include "ffCommon.hpp"
#define HISTORY_SIZE (1 << 21)
struct SimpleDelay
{
// From Fundamental Delay
// https://github.com/VCVRack/Fundamental/blob/v1/src/Delay.cpp
dsp::DoubleRingBuffer<float, HISTORY_SIZE> historyBuffer;
dsp::DoubleRingBuffer<float, 16> outBuffer;
SRC_STATE *src = nullptr;
SimpleDelay()
{
src = src_new(SRC_SINC_FASTEST, 1, NULL);
assert(src);
}
~SimpleDelay()
{
src_delete(src);
}
float process(float in, float delay, float smpRate)
{
float dry = in;
delay = 1e-3 * std::pow(10.f / 1e-3, delay);
// Number of delay samples
float index = std::round(delay * smpRate);
// Push dry sample into history buffer
if (!historyBuffer.full())
{
historyBuffer.push(dry);
}
// How many samples do we need consume to catch up?
float consume = index - historyBuffer.size();
if (outBuffer.empty())
{
double ratio = 1.f;
if (std::fabs(consume) >= 16.f)
{
// Here's where the delay magic is. Smooth the ratio depending on how divergent we are from the correct delay time.
ratio = std::pow(10.f, clamp(consume / 10000.f, -1.f, 1.f));
}
SRC_DATA srcData;
srcData.data_in = (const float *)historyBuffer.startData();
srcData.data_out = (float *)outBuffer.endData();
srcData.input_frames = std::min((int)historyBuffer.size(), 16);
srcData.output_frames = outBuffer.capacity();
srcData.end_of_input = false;
srcData.src_ratio = ratio;
src_process(src, &srcData);
historyBuffer.startIncr(srcData.input_frames_used);
outBuffer.endIncr(srcData.output_frames_gen);
}
float wet = 0.f;
if (!outBuffer.empty())
{
wet = outBuffer.shift();
}
return wet;
}
};
struct SlewLimiter
{
// Taken from Befaco Slew Limiter
// https://github.com/VCVRack/Befaco/blob/v1/src/SlewLimiter.cpp
float out = 0.0;
float process(float input, float amount, float delta)
{
float shape = 0.f;
// minimum and maximum slopes in volts per second
const float slewMin = 0.1f;
const float slewMax = 100000.f;
// Amount of extra slew per voltage difference
const float shapeScale = 1 / 10.f;
// Rise
if (input > out)
{
float rise = amount;
float slew = slewMax * std::pow(slewMin / slewMax, rise);
out += slew * crossfade(1.f, shapeScale * (input - out), shape) * delta;
if (out > input)
out = input;
}
// Fall
else if (input < out)
{
float fall = amount;
float slew = slewMax * std::pow(slewMin / slewMax, fall);
out -= slew * crossfade(1.f, shapeScale * (out - input), shape) * delta;
if (out < input)
out = input;
}
return out;
}
};
struct Rasoir : Module
{
enum ParamIds
{
THRESH_PARAM,
WET_PARAM,
THRESHTRIM_PARAM,
DC_PARAM,
LOWSHIFTTRIM_PARAM,
HIGHSHIFTTRIM_PARAM,
LOWPINCHTRIM_PARAM,
HIGHPINCHTRIM_PARAM,
LOWFOLDTRIM_PARAM,
HIGHFOLDTRIM_PARAM,
LOWSLEWTRIM_PARAM,
HIGHSLEWTRIM_PARAM,
LOWSHIFT_PARAM,
HIGHSHIFT_PARAM,
LOWPINCH_PARAM,
HIGHPINCH_PARAM,
LOWFOLD_PARAM,
HIGHFOLD_PARAM,
LOWSLEW_PARAM,
HIGHSLEW_PARAM,
NUM_PARAMS
};
enum InputIds
{
THRESH_INPUT,
IN_INPUT,
WET_INPUT,
LOWSHIFT_INPUT,
HIGHSHIFT_INPUT,
LOWPINCH_INPUT,
HIGHPINCH_INPUT,
LOWFOLD_INPUT,
HIGHFOLD_INPUT,
LOWSLEW_INPUT,
HIGHSLEW_INPUT,
NUM_INPUTS
};
enum OutputIds
{
LOW_OUTPUT,
OUT_OUTPUT,
HIGH_OUTPUT,
NUM_OUTPUTS
};
enum LightIds
{
NUM_LIGHTS
};
SlewLimiter slewLims[2];
SimpleDelay delays[2];
DCBlock dcFilter;
Rasoir()
{
config(NUM_PARAMS, NUM_INPUTS, NUM_OUTPUTS, NUM_LIGHTS);
configParam(THRESH_PARAM, -10.f, 10.f, 0.f, "High/Low Threshold", "V");
configParam(WET_PARAM, 0.f, 1.f, 1.f, "Wet/Dry Mix", "%", 0.f, 100.f);
configParam(THRESHTRIM_PARAM, -1.f, 1.f, 0.f, "Threshold CV Amount", "%", 0.f, 100.f);
configSwitch(DC_PARAM, 0.f, 1.f, 1.f, "DC Offset Filter", {"Off", "On"});
for (int i = 0; i < 8; ++i)
{
configParam(LOWSHIFTTRIM_PARAM + i, -1.f, 1.f, 0.f, "CV Amount", "%", 0.f, 100.f);
}
configParam(LOWSHIFT_PARAM, 0.f, 1.f, 0.f, "Low Shift");
configParam(HIGHSHIFT_PARAM, 0.f, 1.f, 0.f, "High Shift");
configParam(LOWPINCH_PARAM, -1.f, 1.f, 0.f, "Low Pinch");
configParam(HIGHPINCH_PARAM, -1.f, 1.f, 0.f, "High Pinch");
configParam(LOWFOLD_PARAM, 0.1f, 1.f, 1.f, "Low Wavefold");
configParam(HIGHFOLD_PARAM, 0.1f, 1.f, 1.f, "High Wavefold");
configParam(LOWSLEW_PARAM, 0.f, 1.f, 0.f, "Low Slew Limiter");
configParam(HIGHSLEW_PARAM, 0.f, 1.f, 0.f, "High Slew Limiter");
configInput(THRESH_INPUT, "Voltage Threshold CV");
configInput(IN_INPUT, "Signal");
configInput(WET_INPUT, "Dry/Wet CV");
configInput(LOWSHIFT_INPUT, "Low Shift CV");
configInput(HIGHSHIFT_INPUT, "High Shift CV");
configInput(LOWPINCH_INPUT, "Low Pinch CV");
configInput(HIGHPINCH_INPUT, "High Pinch CV");
configInput(LOWFOLD_INPUT, "Low Wavefold CV");
configInput(HIGHFOLD_INPUT, "High Wavefold CV");
configInput(LOWSLEW_INPUT, "Low Slew Limiter CV");
configInput(HIGHSLEW_INPUT, "High Slew Limiter CV");
configOutput(LOW_OUTPUT, "Low Voltage");
configOutput(OUT_OUTPUT, "Main");
configOutput(HIGH_OUTPUT, "High Voltage");
configBypass(IN_INPUT, LOW_OUTPUT);
configBypass(IN_INPUT, OUT_OUTPUT);
configBypass(IN_INPUT, HIGH_OUTPUT);
}
float pincher(float input, float amount)
{
// Taken from HetrickCV Waveshaper
// https://github.com/mhetrick/hetrickcv/blob/master/src/Waveshape.cpp
input *= 0.2;
amount *= 0.99f;
const float shapeB = (1.0 - amount) / (1.0 + amount);
const float shapeA = (4.0 * amount) / ((1.0 - amount) * (1.0 + amount));
float output = input * (shapeA + shapeB);
output = output / ((std::abs(input) * shapeA) + shapeB);
return output * 5;
}
float folder(float input, float amount)
{
// Taken from Autodafe FoldBack
// https://github.com/antoniograzioli/Autodafe/blob/master/src/FoldBack.cpp
input = input * 0.1f;
if (input > amount || input < -amount)
{
input = fabs(fabs(fmod(input - amount, amount * 4)) - amount * 2) - amount;
}
return input * 10.f;
}
void process(const ProcessArgs &args) override
{
// Get input sample
float input = inputs[IN_INPUT].getVoltage();
// Split Input into high and low
// What constitutes high and low is determined by the threshold
float threshold = params[THRESH_PARAM].getValue();
threshold += inputs[THRESH_INPUT].getVoltage() * params[THRESHTRIM_PARAM].getValue();
threshold = clamp(threshold, -10.f, 10.f);
// Is the current sample above or below the threshold?
bool high = input > threshold;
// Get parameters
// The sample will run through the same type of process if it's high or low
// The difference is which paramaters to use for high or low processing
// We've interleaved the parameter ENUMS so we can avoid an if branch by simply adding the high state to the index
float shift = params[LOWSHIFT_PARAM + high].getValue();
shift += inputs[LOWSHIFT_INPUT + high].getVoltage() * 0.1f * params[LOWSHIFTTRIM_PARAM + high].getValue();
shift = clamp(shift, 0.f, 1.f);
float pinch = params[LOWPINCH_PARAM + high].getValue();
pinch += inputs[LOWPINCH_INPUT + high].getVoltage() * params[LOWPINCHTRIM_PARAM + high].getValue();
pinch = clamp(pinch, -1.f, 1.f);
float fold = params[LOWFOLD_PARAM + high].getValue();
fold += inputs[LOWFOLD_INPUT + high].getVoltage() * 0.1f * params[LOWFOLDTRIM_PARAM + high].getValue();
fold = clamp(fold, 0.1f, 1.f);
float slew = params[LOWSLEW_PARAM + high].getValue();
slew += inputs[LOWSLEW_INPUT + high].getVoltage() * 0.1f * params[LOWSLEWTRIM_PARAM + high].getValue();
slew = clamp(slew, 0.f, 1.f);
// Processing
float output = input;
// shift - taken from vcv delay
if (shift > 0)
{
output = delays[high].process(output, shift, args.sampleRate);
}
// pinch - taken from HetrickCV Waveshaper
output = pincher(output, pinch);
// fold - taken output Autodafe wavefolder
output = folder(output, fold);
// slew - taken from befaco slew limiter
output = slewLims[high].process(output, slew, args.sampleTime);
// Output high and low components
if (high)
{
outputs[HIGH_OUTPUT].setVoltage(output);
outputs[LOW_OUTPUT].setVoltage(threshold);
// outputs[LOW_OUTPUT].setVoltage(0); // This gives a great weird pulsey "gapped" wave
}
else
{
outputs[HIGH_OUTPUT].setVoltage(threshold);
// outputs[HIGHA_OUTPUT].setVoltage(0); // This gives a great weird pulsey "gapped" wave
outputs[LOW_OUTPUT].setVoltage(output);
}
// Dry/Wet
float wet = params[WET_PARAM].getValue();
wet += inputs[WET_INPUT].getVoltage() * 0.1;
wet = clamp(wet, 0.f, 1.f);
output = crossfade(input, output, wet);
// Output main
if (params[DC_PARAM].getValue())
{
output = dcFilter.process(output);
}
// Check for NaN
output = std::isfinite(output) ? output : 0.f;
outputs[OUT_OUTPUT].setVoltage(output);
}
};
struct RasoirWidget : ModuleWidget
{
RasoirWidget(Rasoir *module)
{
setModule(module);
setPanel(APP->window->loadSvg(asset::plugin(pluginInstance, "res/Rasoir.svg")));
addChild(createWidget<FFHexScrew>(Vec(RACK_GRID_WIDTH, 0)));
addChild(createWidget<FFHexScrew>(Vec(box.size.x - 2 * RACK_GRID_WIDTH, 0)));
addChild(createWidget<FFHexScrew>(Vec(RACK_GRID_WIDTH, RACK_GRID_HEIGHT - RACK_GRID_WIDTH)));
addChild(createWidget<FFHexScrew>(Vec(box.size.x - 2 * RACK_GRID_WIDTH, RACK_GRID_HEIGHT - RACK_GRID_WIDTH)));
addParam(createParamCentered<FF10GKnob>(mm2px(Vec(30.084, 23.404)), module, Rasoir::THRESH_PARAM));
addParam(createParamCentered<FF10GKnob>(mm2px(Vec(78.503, 23.404)), module, Rasoir::WET_PARAM));
addParam(createParamCentered<FF06GKnob>(mm2px(Vec(19.14, 23.864)), module, Rasoir::THRESHTRIM_PARAM));
addParam(createParamCentered<CKSS>(mm2px(Vec(50.8, 36.251)), module, Rasoir::DC_PARAM));
addParam(createParamCentered<FF06GKnob>(mm2px(Vec(17.82, 90.023)), module, Rasoir::LOWSHIFTTRIM_PARAM));
addParam(createParamCentered<FF06GKnob>(mm2px(Vec(17.82, 48.282)), module, Rasoir::HIGHSHIFTTRIM_PARAM));
addParam(createParamCentered<FF06GKnob>(mm2px(Vec(38.813, 90.023)), module, Rasoir::LOWPINCHTRIM_PARAM));
addParam(createParamCentered<FF06GKnob>(mm2px(Vec(38.813, 48.282)), module, Rasoir::HIGHPINCHTRIM_PARAM));
addParam(createParamCentered<FF06GKnob>(mm2px(Vec(62.807, 90.023)), module, Rasoir::LOWFOLDTRIM_PARAM));
addParam(createParamCentered<FF06GKnob>(mm2px(Vec(62.807, 48.282)), module, Rasoir::HIGHFOLDTRIM_PARAM));
addParam(createParamCentered<FF06GKnob>(mm2px(Vec(83.8, 90.023)), module, Rasoir::LOWSLEWTRIM_PARAM));
addParam(createParamCentered<FF06GKnob>(mm2px(Vec(83.8, 48.282)), module, Rasoir::HIGHSLEWTRIM_PARAM));
addParam(createParamCentered<FF10GKnob>(mm2px(Vec(20.82, 77.584)), module, Rasoir::LOWSHIFT_PARAM));
addParam(createParamCentered<FF10GKnob>(mm2px(Vec(20.82, 59.027)), module, Rasoir::HIGHSHIFT_PARAM));
addParam(createParamCentered<FF10GKnob>(mm2px(Vec(40.813, 77.584)), module, Rasoir::LOWPINCH_PARAM));
addParam(createParamCentered<FF10GKnob>(mm2px(Vec(40.813, 59.027)), module, Rasoir::HIGHPINCH_PARAM));
addParam(createParamCentered<FF10GKnob>(mm2px(Vec(60.807, 77.584)), module, Rasoir::LOWFOLD_PARAM));
addParam(createParamCentered<FF10GKnob>(mm2px(Vec(60.807, 59.027)), module, Rasoir::HIGHFOLD_PARAM));
addParam(createParamCentered<FF10GKnob>(mm2px(Vec(80.8, 77.584)), module, Rasoir::LOWSLEW_PARAM));
addParam(createParamCentered<FF10GKnob>(mm2px(Vec(80.8, 59.027)), module, Rasoir::HIGHSLEW_PARAM));
addInput(createInputCentered<FF01JKPort>(mm2px(Vec(8.0, 23.417)), module, Rasoir::THRESH_INPUT));
addInput(createInputCentered<FF01JKPort>(mm2px(Vec(50.758, 23.417)), module, Rasoir::IN_INPUT));
addInput(createInputCentered<FF01JKPort>(mm2px(Vec(93.6, 23.417)), module, Rasoir::WET_INPUT));
addInput(createInputCentered<FF01JKPort>(mm2px(Vec(14.82, 100.386)), module, Rasoir::LOWSHIFT_INPUT));
addInput(createInputCentered<FF01JKPort>(mm2px(Vec(14.82, 36.251)), module, Rasoir::HIGHSHIFT_INPUT));
addInput(createInputCentered<FF01JKPort>(mm2px(Vec(36.813, 100.386)), module, Rasoir::LOWPINCH_INPUT));
addInput(createInputCentered<FF01JKPort>(mm2px(Vec(36.813, 36.251)), module, Rasoir::HIGHPINCH_INPUT));
addInput(createInputCentered<FF01JKPort>(mm2px(Vec(64.807, 100.386)), module, Rasoir::LOWFOLD_INPUT));
addInput(createInputCentered<FF01JKPort>(mm2px(Vec(64.807, 36.251)), module, Rasoir::HIGHFOLD_INPUT));
addInput(createInputCentered<FF01JKPort>(mm2px(Vec(86.8, 100.386)), module, Rasoir::LOWSLEW_INPUT));
addInput(createInputCentered<FF01JKPort>(mm2px(Vec(86.8, 36.251)), module, Rasoir::HIGHSLEW_INPUT));
addOutput(createOutputCentered<FF01JKPort>(mm2px(Vec(26.0, 113.225)), module, Rasoir::LOW_OUTPUT));
addOutput(createOutputCentered<FF01JKPort>(mm2px(Vec(50.8, 113.225)), module, Rasoir::OUT_OUTPUT));
addOutput(createOutputCentered<FF01JKPort>(mm2px(Vec(75.6, 113.225)), module, Rasoir::HIGH_OUTPUT));
}
};
Model *modelRasoir = createModel<Rasoir, RasoirWidget>("Rasoir");
| 13,246
|
C++
|
.cpp
| 331
| 37.009063
| 119
| 0.716319
|
RCameron93/FehlerFabrik
| 30
| 3
| 7
|
GPL-3.0
|
9/20/2024, 10:45:25 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,828
|
plugin.cpp
|
RCameron93_FehlerFabrik/src/plugin.cpp
|
#include "plugin.hpp"
Plugin *pluginInstance;
void init(Plugin *p)
{
pluginInstance = p;
// Add modules here
// p->addModel(modelMyModule);
p->addModel(modelPSIOP);
p->addModel(modelPlanck);
p->addModel(modelLuigi);
p->addModel(modelAspect);
p->addModel(modelMonte);
p->addModel(modelArpanet);
p->addModel(modelSigma);
p->addModel(modelFax);
p->addModel(modelRasoir);
p->addModel(modelChi);
p->addModel(modelNova);
p->addModel(modelLilt);
p->addModel(modelBotzinger);
// Any other plugin initialization may go here.
// As an alternative, consider lazy-loading assets and lookup tables when your module is created to reduce startup times of Rack.
}
| 670
|
C++
|
.cpp
| 23
| 27.173913
| 130
| 0.766719
|
RCameron93/FehlerFabrik
| 30
| 3
| 7
|
GPL-3.0
|
9/20/2024, 10:45:25 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,829
|
Lilt.cpp
|
RCameron93_FehlerFabrik/src/Lilt.cpp
|
// Phase-Shifted Shuffling Clock Pair
// Ross Cameron
// Title font - Velvetyne Basteleur Bold
// https://velvetyne.fr/fonts/basteleur/
// Main font - Jost
// https://indestructibletype.com/Jost.html
#include "plugin.hpp"
const float amplitude = 10.0f;
struct Lilt : Module
{
enum ParamIds
{
ALPHA_RATE_PARAM,
BETA_SHIFT_PARAM,
WIDTH_PARAM,
NUM_PARAMS
};
enum InputIds
{
RATE_IN_INPUT,
SHIFT_IN_INPUT,
NUM_INPUTS
};
enum OutputIds
{
MAIN_OUTPUT,
ALPHA_OUTPUT,
BETA_OUTPUT,
NUM_OUTPUTS
};
enum LightIds
{
NUM_LIGHTS
};
Lilt()
{
config(NUM_PARAMS, NUM_INPUTS, NUM_OUTPUTS, NUM_LIGHTS);
configParam(ALPHA_RATE_PARAM, -2.f, 4.f, 1.f, "Alpha Clock Rate", " BPM", 2.f, 60.f);
configParam(BETA_SHIFT_PARAM, 0.f, 1.f, 0.5f, "Beta Phase Shift", "Ëš", 0.f, 360.f);
configParam(WIDTH_PARAM, 0.01f, 0.99f, 0.25f, "Clock Pulse Width", "%", 0.f, 100.f);
configInput(RATE_IN_INPUT, "Alpha Rate CV");
configInput(SHIFT_IN_INPUT, "Beta Shift CV");
configOutput(MAIN_OUTPUT, "Combined");
configOutput(ALPHA_OUTPUT, "Alpha");
configOutput(BETA_OUTPUT, "Beta");
}
float phase = 0.f;
float pw = 0.5f;
float freq = 1.f;
float phaseShift = 0.f;
void setPitch(float pitch)
{
freq = dsp::approxExp2_taylor5(pitch + 20) / 1048576;
}
void setPulseWidth(float pw)
{
this->pw = pw;
}
void setPhaseShift(float shift)
{
phaseShift = 1.f - shift;
}
void osc(float dt)
{
float deltaPhase = fmin(freq * dt, 0.5f);
phase += deltaPhase;
if (phase >= 1.0f)
{
phase -= 1.0f;
}
}
float alpha()
{
float v = (phase < pw) ? 1.0f : 0.f;
return v;
}
float beta()
{
float offset = eucMod(phase + phaseShift, 1.0);
float v = (offset < pw) ? 1.0f : 0.f;
return v;
}
void process(const ProcessArgs &args) override
{
float freqParam = params[ALPHA_RATE_PARAM].getValue();
float pwParam = params[WIDTH_PARAM].getValue();
float shiftParam = params[BETA_SHIFT_PARAM].getValue();
if (inputs[RATE_IN_INPUT].isConnected())
{
float freqCV = inputs[RATE_IN_INPUT].getVoltage();
freqParam = freqParam + freqCV;
freqParam = clamp(freqParam, -10.f, 10.f);
}
if (inputs[SHIFT_IN_INPUT].isConnected())
{
float shiftCV = inputs[SHIFT_IN_INPUT].getVoltage();
shiftParam = shiftParam + 0.1f * shiftCV;
shiftParam = clamp(shiftParam, 0.f, 1.f);
}
setPitch(freqParam);
setPulseWidth(pwParam);
setPhaseShift(shiftParam);
osc(args.sampleTime);
float alphaOut = amplitude * alpha();
float betaOut = amplitude * beta();
float mainOut = fmax(alphaOut, betaOut);
outputs[ALPHA_OUTPUT].setVoltage(alphaOut);
outputs[BETA_OUTPUT].setVoltage(betaOut);
outputs[MAIN_OUTPUT].setVoltage(mainOut);
}
};
struct LiltWidget : ModuleWidget
{
LiltWidget(Lilt *module)
{
setModule(module);
setPanel(APP->window->loadSvg(asset::plugin(pluginInstance, "res/Lilt.svg")));
addChild(createWidget<FFHexScrew>(Vec(RACK_GRID_WIDTH, 0)));
addChild(createWidget<FFHexScrew>(Vec(box.size.x - 2 * RACK_GRID_WIDTH, 0)));
addChild(createWidget<FFHexScrew>(Vec(RACK_GRID_WIDTH, RACK_GRID_HEIGHT - RACK_GRID_WIDTH)));
addChild(createWidget<FFHexScrew>(Vec(box.size.x - 2 * RACK_GRID_WIDTH, RACK_GRID_HEIGHT - RACK_GRID_WIDTH)));
addParam(createParamCentered<FF10BKnob>(mm2px(Vec(14.956, 29.642)), module, Lilt::ALPHA_RATE_PARAM));
addParam(createParamCentered<FF10BKnob>(mm2px(Vec(35.894, 48.903)), module, Lilt::BETA_SHIFT_PARAM));
addParam(createParamCentered<FF10GKnob>(mm2px(Vec(14.956, 78.918)), module, Lilt::WIDTH_PARAM));
addInput(createInputCentered<FF01JKPort>(mm2px(Vec(14.956, 49.985)), module, Lilt::RATE_IN_INPUT));
addInput(createInputCentered<FF01JKPort>(mm2px(Vec(35.894, 69.629)), module, Lilt::SHIFT_IN_INPUT));
addOutput(createOutputCentered<FF01JKPort>(mm2px(Vec(25.425, 100.386)), module, Lilt::MAIN_OUTPUT));
addOutput(createOutputCentered<FF01JKPort>(mm2px(Vec(14.956, 113.225)), module, Lilt::ALPHA_OUTPUT));
addOutput(createOutputCentered<FF01JKPort>(mm2px(Vec(35.894, 113.225)), module, Lilt::BETA_OUTPUT));
}
};
Model *modelLilt = createModel<Lilt, LiltWidget>("Lilt");
| 4,115
|
C++
|
.cpp
| 132
| 28.515152
| 112
| 0.712014
|
RCameron93/FehlerFabrik
| 30
| 3
| 7
|
GPL-3.0
|
9/20/2024, 10:45:25 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,830
|
PSIOP.cpp
|
RCameron93_FehlerFabrik/src/PSIOP.cpp
|
// Title Font - Jaapokki
// https://mikkonuuttila.com/jaapokki/
// Main font - Jost
// https://indestructibletype.com/Jost.html
#include "plugin.hpp"
#include "PSIOP.hpp"
#include "ffCommon.hpp"
#include "ffFilters.hpp"
struct PSIOP : Module
{
enum ParamIds
{
START_PARAM,
FINE_PARAM,
END_PARAM,
RATIO_PARAM,
WAVE_PARAM,
ALGO_PARAM,
FB_PARAM,
RATE1_PARAM,
RATE2_PARAM,
SPEED_PARAM,
RATE2ATTEN_PARAM,
WAVEATTEN_PARAM,
RATIOATTEN_PARAM,
NUM_PARAMS
};
enum InputIds
{
START_INPUT,
END_INPUT,
RATIO_INPUT,
WAVE_INPUT,
ALGO_INPUT,
FB_INPUT,
RATE1_INPUT,
RATE2_INPUT,
SPEED_INPUT,
TRIGGER_INPUT,
ACCENT_INPUT,
CHOKE_INPUT,
NUM_INPUTS
};
enum OutputIds
{
OUT_OUTPUT,
NUM_OUTPUTS
};
enum LightIds
{
OUT_LIGHT,
NUM_LIGHTS
};
Operator operators[4];
Ramp ramps[3];
DCBlock dcBlock;
bool blocking = true; // DC filter enabled
bool looping = false; // Pitch envelope looping disabled
bool indexMod = false; // Tigger level moduates FM mod index disabled
bool sync = false; // Operators re-sync on trigger
dsp::SchmittTrigger trigger;
dsp::SchmittTrigger choke;
dsp::SchmittTrigger accent;
float startPitch = 0;
float endPitch = 0;
float finePitch = 0;
float rates[3] = {};
int algo = 0;
int ratioIndex = 0;
float feedback = 0;
int table = 0;
float index = 0.6f; // Global modulation index
float level = 1.0f;
PSIOP()
{
config(NUM_PARAMS, NUM_INPUTS, NUM_OUTPUTS, NUM_LIGHTS);
configParam(START_PARAM, -4.f, 4.f, 0.f, "Start Freq", "Hz", dsp::FREQ_SEMITONE, dsp::FREQ_C4);
configParam(FINE_PARAM, -0.2f, 0.2f, 0.f, "Start Fine Freq");
configParam(END_PARAM, -4.f, 4.f, 0.f, "End Freq", "Hz", dsp::FREQ_SEMITONE, dsp::FREQ_C4);
configParam(RATIO_PARAM, 0.f, 31.f, 0.f, "FM Ratios", "", 0.f, 1.f, 1.f);
configParam(WAVE_PARAM, 0.f, 63.f, 0.f, "Wave Combination", "", 0.f, 1.f, 1.f);
configParam(ALGO_PARAM, 0.f, 5.f, 0.f, "FM Algorithm", "", 0.f, 1.f, 1.f);
configParam(FB_PARAM, 0.f, 1.f, 0.f, "OP 1 Feedback");
configParam(RATE1_PARAM, 0.f, 1.f, 0.5f, "Operator 1 & 3 Release Envelope");
configParam(RATE2_PARAM, 0.f, 1.f, 0.5f, "Operator 2 & 4 Release Envelope");
configParam(SPEED_PARAM, 0.f, 1.f, 0.f, "Pitch Envelope Speed");
configParam(RATE2ATTEN_PARAM, -1.f, 1.f, 0.f, "Rate 2 Attenuverter", "%", 0.f, 100.f);
configParam(WAVEATTEN_PARAM, -1.f, 1.f, 0.f, "Wave Attenuverter", "%", 0.f, 100.f);
configParam(RATIOATTEN_PARAM, -1.f, 1.f, 0.f, "Ratio Attenuverter", "%", 0.f, 100.f);
configInput(START_INPUT, "Start Freq CV");
configInput(END_INPUT, "End Freq CV");
configInput(RATIO_INPUT, "FM Ratio CV");
configInput(WAVE_INPUT, "Wave Combination CV");
configInput(ALGO_INPUT, "FM Algorithm CV");
configInput(FB_INPUT, "OP 1 Feedback CV");
configInput(RATE1_INPUT, "Operator 1 & 3 Release Envelope CV");
configInput(RATE2_INPUT, "Operator 2 & 4 Release Envelope CV");
configInput(SPEED_INPUT, "Pitch Envelope Speed CV");
configInput(TRIGGER_INPUT, "Trigger");
configInput(ACCENT_INPUT, "Accent Trigger");
configInput(CHOKE_INPUT, "Choke Trigger");
configOutput(OUT_OUTPUT, "Main");
configLight(OUT_LIGHT, "Output");
}
void process(const ProcessArgs &args) override
{
// Look for input on the trigger
// All parameters are held on trigger input
if (trigger.process(inputs[TRIGGER_INPUT].getVoltage() / 2.0f))
{
if (sync)
{
// Reset operators
for (int i = 0; i < 4; ++i)
{
operators[i].phase = 0.f;
}
}
// Look for accent trigger
if (accent.process(inputs[ACCENT_INPUT].getVoltage() / 2.0f))
{
index = 1.f;
level = 1.8f;
}
else
{
index = 0.6f;
level = 1.f;
}
// Modulation index is determined by trigger level
if (indexMod)
{
index *= fabs(inputs[TRIGGER_INPUT].getVoltage() / 10.f);
}
// Compute the start and end pitches
startPitch = params[START_PARAM].getValue();
startPitch += inputs[START_INPUT].getVoltage();
finePitch = params[FINE_PARAM].getValue();
startPitch += finePitch;
startPitch = clamp(startPitch, -4.f, 4.f);
endPitch = params[END_PARAM].getValue();
endPitch += inputs[END_INPUT].getVoltage();
endPitch = clamp(endPitch, -4.f, 4.f);
// Get the index for the ratio matrix
ratioIndex = (int)params[RATIO_PARAM].getValue();
ratioIndex += (int)round(inputs[RATIO_INPUT].getVoltage() * params[RATIOATTEN_PARAM].getValue());
ratioIndex = clamp(ratioIndex, 0, 31);
// Get the wavetable index
table = (int)params[WAVE_PARAM].getValue();
table += (int)round(inputs[WAVE_INPUT].getVoltage() * params[WAVEATTEN_PARAM].getValue());
table = clamp(table, 0, 63);
// Get the algorithim
algo = (int)params[ALGO_PARAM].getValue();
algo += (int)round(inputs[ALGO_INPUT].getVoltage());
algo = clamp(algo, 0, 5);
// Get the OP1 feedback amount
feedback = params[FB_PARAM].getValue();
feedback += 0.2f * inputs[FB_INPUT].getVoltage();
feedback = clamp(feedback, 0.f, 1.f);
// Get the rates for the volume and pitch envelopes
for (int i = 0; i < 3; i++)
{
rates[i] = params[RATE1_PARAM + i].getValue();
// Special case to factor in rate 2 attenuator
rates[i] += i == 1 ? 0.2 * params[RATE2ATTEN_PARAM].getValue() * inputs[RATE2_INPUT].getVoltage() : 0.2 * inputs[RATE1_INPUT + i].getVoltage();
rates[i] = clamp(rates[i], 0.f, 1.f);
}
// Trigger
for (int i = 0; i < 3; i++)
{
// Set the gate for the ramps to active
ramps[i].gate = true;
}
}
// Look for Choke trigger
if (choke.process(inputs[CHOKE_INPUT].getVoltage() / 2.0f))
{
for (int i = 0; i < 3; i++)
{
// Set the gate for the ramps to off
ramps[i].gate = false;
ramps[i].out = 0.f;
}
}
// Process amplitude ramps
for (int i = 0; i < 2; i++)
{
ramps[i].process(0, 0, rates[i], args.sampleTime, false);
}
// Compute current pitch as a function of pitchStart, pitchEnd and the pitch speed envelope
float pitch = startPitch;
if (rates[2] > 0.2)
{
ramps[2].process(0.3, 0, 1 - rates[2], args.sampleTime, looping);
// Crossfade from start pitch to end pitch
float xf = ramps[2].out;
pitch = crossfade(endPitch, startPitch, xf);
}
// Process operators
float output = 0.f;
for (int i = 0; i < 4; i++)
{
// Set initial pitch for each operator
operators[i].setPitch(pitch);
// Actual per operator ratio to be used is taken from the LUT of magic ratios
float ratio = fm_frequency_ratios[ratioMatrix[ratioIndex][i]];
operators[i].applyRatio(ratio);
float fmMod = 0;
// Determine how much operator i is modulated by other modulators j++
for (int j = 0; j < 4; j++)
{
fmMod += operators[j].out * index * modMatrix[algo][j][i];
}
// Accumulate phase, apply FM modulation, apply appropriate amp modulation
// Feedback is applied for OP1 only
// Ramp 1 affects OP1 & OP3 VCA, ramp 2 affects OP2 & OP4
if (i == 0)
{
operators[i].process(args.sampleTime, ramps[0].out, fmMod, feedback, tableMatrix[table][i]);
}
else if (i == 2)
{
operators[i].process(args.sampleTime, ramps[0].out, fmMod, 0, tableMatrix[table][i]);
}
else
{
operators[i].process(args.sampleTime, ramps[1].out, fmMod, 0, tableMatrix[table][i]);
}
// Send to output as dependent on Algorithim
output += operators[i].out * modMatrix[algo][i][4];
}
// Filter DC content from output
if (blocking)
{
output = dcBlock.process(output);
}
// Check for NaN
output = std::isfinite(output) ? output : 0.f;
// Send output signal to output jack
outputs[OUT_OUTPUT].setVoltage(output * 3.5 * level);
}
void onReset() override
{
blocking = true;
looping = false;
indexMod = false;
sync = false;
}
json_t *dataToJson() override
{
json_t *rootJ = json_object();
json_object_set_new(rootJ, "DC Blocking", json_boolean(blocking));
json_object_set_new(rootJ, "Speed Looping", json_boolean(looping));
json_object_set_new(rootJ, "FM Index Modulation", json_boolean(indexMod));
json_object_set_new(rootJ, "Operator Resyncing", json_boolean(sync));
return rootJ;
}
void dataFromJson(json_t *rootJ) override
{
json_t *dcJ = json_object_get(rootJ, "DC Blocking");
if (dcJ)
blocking = json_boolean_value(dcJ);
json_t *loopJ = json_object_get(rootJ, "Speed Looping");
if (loopJ)
looping = json_boolean_value(loopJ);
json_t *indexJ = json_object_get(rootJ, "FM Index Modulation");
if (indexJ)
indexMod = json_boolean_value(indexJ);
json_t *syncJ = json_object_get(rootJ, "Operator Resyncing");
if (syncJ)
sync = json_boolean_value(syncJ);
}
};
struct PSIOPWidget : ModuleWidget
{
PSIOPWidget(PSIOP *module)
{
setModule(module);
setPanel(APP->window->loadSvg(asset::plugin(pluginInstance, "res/PSIOP.svg")));
addChild(createWidget<FFHexScrew>(Vec(RACK_GRID_WIDTH, 0)));
addChild(createWidget<FFHexScrew>(Vec(box.size.x - 2 * RACK_GRID_WIDTH, 0)));
addChild(createWidget<FFHexScrew>(Vec(RACK_GRID_WIDTH, RACK_GRID_HEIGHT - RACK_GRID_WIDTH)));
addChild(createWidget<FFHexScrew>(Vec(box.size.x - 2 * RACK_GRID_WIDTH, RACK_GRID_HEIGHT - RACK_GRID_WIDTH)));
addParam(createParamCentered<FF15GKnob>(mm2px(Vec(12.098, 38.016)), module, PSIOP::START_PARAM));
addParam(createParamCentered<FF06BKnob>(mm2px(Vec(18.829, 47.995)), module, PSIOP::FINE_PARAM));
addParam(createParamCentered<FF15GKnob>(mm2px(Vec(79.414, 38.016)), module, PSIOP::END_PARAM));
addParam(createParamCentered<FF10GSnapKnob>(mm2px(Vec(45.756, 72.726)), module, PSIOP::RATIO_PARAM));
addParam(createParamCentered<FF10GSnapKnob>(mm2px(Vec(76.049, 72.762)), module, PSIOP::WAVE_PARAM));
addParam(createParamCentered<FF10GSnapKnob>(mm2px(Vec(55.854, 40.581)), module, PSIOP::ALGO_PARAM));
addParam(createParamCentered<FF10GKnob>(mm2px(Vec(62.585, 55.501)), module, PSIOP::FB_PARAM));
addParam(createParamCentered<FF10GKnob>(mm2px(Vec(28.927, 55.505)), module, PSIOP::RATE1_PARAM)); // Release B
addParam(createParamCentered<FF10GKnob>(mm2px(Vec(15.463, 72.762)), module, PSIOP::RATE2_PARAM)); // Release A
addParam(createParamCentered<FF10GKnob>(mm2px(Vec(35.636, 40.581)), module, PSIOP::SPEED_PARAM));
addParam(createParamCentered<FF06GKnob>(mm2px(Vec(18.829, 89.907)), module, PSIOP::RATE2ATTEN_PARAM));
addParam(createParamCentered<FF06GKnob>(mm2px(Vec(72.683, 89.907)), module, PSIOP::WAVEATTEN_PARAM));
addParam(createParamCentered<FF06GKnob>(mm2px(Vec(45.756, 89.907)), module, PSIOP::RATIOATTEN_PARAM));
addInput(createInputCentered<FF01JKPort>(mm2px(Vec(12.098, 23.418)), module, PSIOP::START_INPUT));
addInput(createInputCentered<FF01JKPort>(mm2px(Vec(79.414, 23.418)), module, PSIOP::END_INPUT));
addInput(createInputCentered<FF01JKPort>(mm2px(Vec(45.756, 100.427)), module, PSIOP::RATIO_INPUT));
addInput(createInputCentered<FF01JKPort>(mm2px(Vec(72.683, 100.427)), module, PSIOP::WAVE_INPUT));
addInput(createInputCentered<FF01JKPort>(mm2px(Vec(55.854, 27.393)), module, PSIOP::ALGO_INPUT));
addInput(createInputCentered<FF01JKPort>(mm2px(Vec(59.219, 100.427)), module, PSIOP::FB_INPUT));
addInput(createInputCentered<FF01JKPort>(mm2px(Vec(32.031, 100.427)), module, PSIOP::RATE1_INPUT));
addInput(createInputCentered<FF01JKPort>(mm2px(Vec(18.829, 100.427)), module, PSIOP::RATE2_INPUT));
addInput(createInputCentered<FF01JKPort>(mm2px(Vec(35.658, 27.393)), module, PSIOP::SPEED_INPUT));
addInput(createInputCentered<FF01JKPort>(mm2px(Vec(25.527, 113.264)), module, PSIOP::TRIGGER_INPUT));
addInput(createInputCentered<FF01JKPort>(mm2px(Vec(38.99, 113.264)), module, PSIOP::ACCENT_INPUT));
addInput(createInputCentered<FF01JKPort>(mm2px(Vec(52.454, 113.264)), module, PSIOP::CHOKE_INPUT));
addOutput(createOutputCentered<FF01JKPort>(mm2px(Vec(65.951, 113.264)), module, PSIOP::OUT_OUTPUT));
addChild(createLightCentered<MediumLight<RedLight>>(mm2px(Vec(74, 113.264)), module, PSIOP::OUT_LIGHT));
}
void appendContextMenu(Menu *menu) override
{
PSIOP *psiop = dynamic_cast<PSIOP *>(module);
assert(psiop);
struct PSIOPBlockDCItem : MenuItem
{
PSIOP *psiop;
void onAction(const event::Action &e) override
{
psiop->blocking = !psiop->blocking;
}
void step() override
{
rightText = CHECKMARK(psiop->blocking);
}
};
struct PSIOPSpeedLoopItem : MenuItem
{
PSIOP *psiop;
void onAction(const event::Action &e) override
{
psiop->looping = !psiop->looping;
}
void step() override
{
rightText = CHECKMARK(psiop->looping);
}
};
struct PSIOPIndexModItem : MenuItem
{
PSIOP *psiop;
void onAction(const event::Action &e) override
{
psiop->indexMod = !psiop->indexMod;
}
void step() override
{
rightText = CHECKMARK(psiop->indexMod);
}
};
struct PSIOPSyncItem : MenuItem
{
PSIOP *psiop;
void onAction(const event::Action &e) override
{
psiop->sync = !psiop->sync;
}
void step() override
{
rightText = CHECKMARK(psiop->sync);
}
};
menu->addChild(new MenuEntry);
PSIOPBlockDCItem *blockDC = createMenuItem<PSIOPBlockDCItem>("DC Filter");
blockDC->psiop = psiop;
menu->addChild(blockDC);
PSIOPSpeedLoopItem *speedLoop = createMenuItem<PSIOPSpeedLoopItem>("Speed Ramp Looping");
speedLoop->psiop = psiop;
menu->addChild(speedLoop);
PSIOPIndexModItem *FMIndexMod = createMenuItem<PSIOPIndexModItem>("Trigger mods index");
FMIndexMod->psiop = psiop;
menu->addChild(FMIndexMod);
PSIOPSyncItem *syncOp = createMenuItem<PSIOPSyncItem>("Operators sync on trigger");
syncOp->psiop = psiop;
menu->addChild(syncOp);
}
};
Model *modelPSIOP = createModel<PSIOP, PSIOPWidget>("PSIOP");
| 16,257
|
C++
|
.cpp
| 379
| 32.751979
| 159
| 0.583254
|
RCameron93/FehlerFabrik
| 30
| 3
| 7
|
GPL-3.0
|
9/20/2024, 10:45:25 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,831
|
Arpanet.cpp
|
RCameron93_FehlerFabrik/src/Arpanet.cpp
|
// 1601 Style Step Sequencer
// Ross Cameron 2020/06/04
// Title Font - ZXX Camo
// https://www.librarystack.org/zxx/
// Main font - Jost
// https://indestructibletype.com/Jost.html
#include "plugin.hpp"
struct Arpanet : Module
{
enum ParamIds
{
ENUMS(GATE1_PARAM, 16),
ENUMS(SLIDER1_PARAM, 16),
STARTTOGGLE_PARAM,
SKIP_PARAM,
SKIPTOGGLE_PARAM,
STARTSTOP_PARAM,
CLOCK_PARAM,
FM_PARAM,
PULSE_PARAM,
RESET_PARAM,
LENGTH_PARAM,
RANDOM_PARAM,
NUM_PARAMS
};
enum InputIds
{
QUANTCV_INPUT,
SKIP_INPUT,
START_INPUT,
QUANTA_INPUT,
QUANTB_INPUT,
RESET_INPUT,
STOP_INPUT,
STARTSTOP_INPUT,
FM_INPUT,
PULSE_INPUT,
NUM_INPUTS
};
enum OutputIds
{
GATEBUS1_OUTPUT,
GATEBUS2_OUTPUT,
GATEBUS3_OUTPUT,
POSITION1_OUTPUT,
CLOCKEDGATE1_OUTPUT,
QUANTA_OUTPUT,
QUANTB_OUTPUT,
CLOCK_OUTPUT,
SEQA_OUTPUT,
SEQB_OUTPUT,
NUM_OUTPUTS
};
enum LightIds
{
ENUMS(POS1_LIGHT, 16),
CLOCK_LIGHT,
NUM_LIGHTS
};
Arpanet()
{
config(NUM_PARAMS, NUM_INPUTS, NUM_OUTPUTS, NUM_LIGHTS);
for (int i = 0; i < 16; ++i)
{
configSwitch(GATE1_PARAM + i, 0.f, 2.f, 1.f, string::f("Step %d Gate Assign", i + 1), {"Bus 3", "Bus 2", "Bus 1"});
configParam(SLIDER1_PARAM + i, 0.f, 12.f, 6.f, string::f("Step %d Voltage", i + 1), "V");
configLight(POS1_LIGHT, string::f("Step %d", i + 1));
}
configSwitch(STARTTOGGLE_PARAM, 0.f, 1.f, 0.f, "Start CV Mode", {"Trigger", "Gate"});
configButton(SKIP_PARAM, "Skip Sequencer Step");
configSwitch(SKIPTOGGLE_PARAM, 0.f, 2.f, 1.f, "Gate Bus 3 Assign", {"Reset", "", "Skip Step"});
configButton(STARTSTOP_PARAM, "Sequencer Start/Stop");
configParam(CLOCK_PARAM, -2.f, 6.f, 2.f, "Clock Rate", "BPM", 2.f, 60.f);
configParam(FM_PARAM, 0.f, 1.f, 0.f, "Clock FM Amount");
configParam(PULSE_PARAM, 0.05f, 1.f, 0.05f, "Clock Pulse-Width");
configButton(RESET_PARAM, "Sequencer Reset");
configSwitch(LENGTH_PARAM, 0.f, 1.f, 0.f, "Sequence Length", {"16 Steps", "8 Steps"});
configSwitch(RANDOM_PARAM, 0.f, 1.f, 0.f, "Direction Mode", {"Sequential", "Random"});
configInput(QUANTCV_INPUT, "Quantizer CV Offset");
configInput(SKIP_INPUT, "Skip Step Trig");
configInput(START_INPUT, "Start Trig");
configInput(QUANTA_INPUT, "Quantizer A");
configInput(QUANTB_INPUT, "Quantizer B");
configInput(RESET_INPUT, "Reset Trig");
configInput(STOP_INPUT, "Stop Trig");
configInput(STARTSTOP_INPUT, "Start/Stop Trig");
configInput(FM_INPUT, "Clock FM CV");
configInput(PULSE_INPUT, "Clock Pulse Width CV");
configOutput(GATEBUS1_OUTPUT, "Gate Bus 1");
configOutput(GATEBUS2_OUTPUT, "Gate Bus 2");
configOutput(GATEBUS3_OUTPUT, "Gate Bus 3");
configOutput(POSITION1_OUTPUT, "Position 1");
configOutput(CLOCKEDGATE1_OUTPUT, "Clocked Gate Bus 1");
configOutput(QUANTA_OUTPUT, "Quantizer A");
configOutput(QUANTB_OUTPUT, "Quantizer B");
configOutput(CLOCK_OUTPUT, "Clock");
configOutput(SEQA_OUTPUT, "Sequencer A");
configOutput(SEQB_OUTPUT, "Sequencer B");
}
dsp::SchmittTrigger resetTrigger;
dsp::SchmittTrigger skipTrigger;
dsp::SchmittTrigger startTrigger;
dsp::SchmittTrigger stopTrigger;
dsp::SchmittTrigger runningTrigger;
bool running = true;
float phase = 0.f;
int index = 0;
int indexA = 0;
int indexB = 0;
int clock = 1;
// Init bus assignment to Bus 2
int currentBus = 1;
float gates[3] = {0.f};
bool random = false;
bool dual = false;
float outA = 0.f;
float outB = 0.f;
float getRate(float fm)
{
float rate = params[CLOCK_PARAM].getValue();
rate += params[FM_PARAM].getValue() * fm;
rate = std::pow(2.f, rate);
return rate;
}
float getWidth()
{
float width = params[PULSE_PARAM].getValue() * (0.1f * inputs[PULSE_INPUT].getNormalVoltage(10.f));
return width;
}
void setGateBusses()
{
// Set all to zero volts
for (int i = 0; i < 3; ++i)
{
gates[i] = 0.f;
}
// Set currently assigned bus to 10v
gates[currentBus] = 10.f;
// Output busses
for (int i = 0; i < 3; ++i)
{
outputs[GATEBUS1_OUTPUT + i].setVoltage(gates[i]);
}
// Output clocked gate 1
outputs[CLOCKEDGATE1_OUTPUT].setVoltage(gates[0] * clock);
}
void advanceIndex()
{
// Random mode
if (random)
{
float rng = 15 * random::uniform();
index = (int)round(rng);
}
// Sequenatial mode
else
{
// Advance sequence
++index;
// Reset if we've reached the max number of steps
if (index > 15)
{
index = 0;
}
}
}
bool lfoPhase(float rate, float delta, float width)
{
// Accumulate phase
phase += rate * delta;
// After one cycle advance the sequencer index
if (phase >= 1.f)
{
advanceIndex();
phase = 0.f;
}
// Outputs a squarewave with duty cycle determined by width input
bool lfo = phase < width;
return lfo;
}
float quantise(float in)
{
// Scale up from 0v/12v to 0v/24v
in *= 2.f;
// Cast to an int to round
int q = (int)in;
// Attenuate and cast to float
float out = q / 12.f;
return out;
}
void skips()
{
// Process skips
if (skipTrigger.process(params[SKIP_PARAM].getValue() + inputs[SKIP_INPUT].getVoltage()))
{
advanceIndex();
}
if (params[SKIPTOGGLE_PARAM].getValue() == 2 && currentBus == 2)
{
advanceIndex();
}
}
void resets()
{
if (resetTrigger.process(params[RESET_PARAM].getValue() + inputs[RESET_INPUT].getVoltage()))
{
index = 0;
}
if (params[SKIPTOGGLE_PARAM].getValue() == 0 && currentBus == 2)
{
index = 0;
}
}
void sequencerStep()
{
// Get sequencer voltages
outA = params[SLIDER1_PARAM + indexA].getValue();
outB = params[SLIDER1_PARAM + indexB].getValue();
// Set position lights
for (int i = 0; i < 16; ++i)
{
lights[POS1_LIGHT + i].setBrightness(0);
}
lights[POS1_LIGHT + indexA].setBrightness(1);
lights[POS1_LIGHT + indexB].setBrightness(1);
}
void startControls()
{
// Get the start/stop mode
// false = trig, true = gate,
bool startMode = (bool)params[STARTTOGGLE_PARAM].getValue();
if (startMode)
{
// Gate (momentary) start
// Only starts if there's nothing present on the stop input
if (inputs[STOP_INPUT].getVoltage())
{
running = false;
}
else if (params[STARTSTOP_PARAM].getValue() || inputs[START_INPUT].getVoltage() || inputs[STARTSTOP_INPUT].getVoltage())
{
running = true;
}
else
{
running = false;
}
}
else
{
// Trig (toggle) start
if (runningTrigger.process(params[STARTSTOP_PARAM].getValue() + inputs[STARTSTOP_INPUT].getVoltage()))
{
running = !running;
}
if (startTrigger.process(inputs[START_INPUT].getVoltage()))
{
running = true;
}
if (stopTrigger.process(inputs[STOP_INPUT].getVoltage()))
{
running = false;
}
}
}
void process(const ProcessArgs &args) override
{
// Check if in random or sequential mode
random = (bool)params[RANDOM_PARAM].getValue();
// Get the length mode
dual = (bool)params[LENGTH_PARAM].getValue();
startControls();
if (running)
{
// Get clock rate
// FM input is normaled to Gate Bus 1
float clockRate = getRate(inputs[FM_INPUT].getNormalVoltage(gates[0] / 2.f));
// Get pulse width
float pulseWidth = getWidth();
// Accumulate LFO to advance clock and index
clock = (int)lfoPhase(clockRate, args.sampleTime, pulseWidth);
// Output clock
outputs[CLOCK_OUTPUT].setVoltage(clock * 10);
lights[CLOCK_LIGHT].setSmoothBrightness(clock, args.sampleTime);
}
else
{
// Choke clock output when not running
outputs[CLOCK_OUTPUT].setVoltage(0);
lights[CLOCK_LIGHT].setSmoothBrightness(0, args.sampleTime);
}
if (dual)
{
// 8 step dual mode
// Set dual indexes
indexA = index % 8;
indexB = indexA + 8;
}
else
{
// 16 step mode
indexA = index;
indexB = index;
}
// Get gate bus assignment for this step
currentBus = 2 - (int)params[GATE1_PARAM + indexA].getValue();
// Output gate busses
setGateBusses();
// // Process skips
skips();
// // Process resets
resets();
sequencerStep();
// Output pos 1 gate
float pos1Out = (indexA == 0) ? 10.f : 0.f;
outputs[POSITION1_OUTPUT].setVoltage(pos1Out);
// Output sequencer voltages
outputs[SEQA_OUTPUT].setVoltage(outA);
outputs[SEQB_OUTPUT].setVoltage(outB);
// Quantise
float quantA = quantise(inputs[QUANTA_INPUT].getNormalVoltage(outA));
quantA += inputs[QUANTCV_INPUT].getVoltage();
outputs[QUANTA_OUTPUT].setVoltage(quantA);
float quantB = quantise(inputs[QUANTB_INPUT].getNormalVoltage(outB));
quantB += inputs[QUANTCV_INPUT].getVoltage();
outputs[QUANTB_OUTPUT].setVoltage(quantB);
}
};
struct ArpanetWidget : ModuleWidget
{
ArpanetWidget(Arpanet *module)
{
setModule(module);
setPanel(APP->window->loadSvg(asset::plugin(pluginInstance, "res/Arpanet.svg")));
addChild(createWidget<FFHexScrew>(Vec(RACK_GRID_WIDTH, 0)));
addChild(createWidget<FFHexScrew>(Vec(box.size.x - 2 * RACK_GRID_WIDTH, 0)));
addChild(createWidget<FFHexScrew>(Vec(RACK_GRID_WIDTH, RACK_GRID_HEIGHT - RACK_GRID_WIDTH)));
addChild(createWidget<FFHexScrew>(Vec(box.size.x - 2 * RACK_GRID_WIDTH, RACK_GRID_HEIGHT - RACK_GRID_WIDTH)));
for (int i = 0; i < 8; ++i)
{
addParam(createParamCentered<CKSSThree>(mm2px(Vec(9.465 + (i * 10), 41.019)), module, Arpanet::GATE1_PARAM + i));
addParam(createParamCentered<BefacoSlidePot>(mm2px(Vec(9.465 + (i * 10), 81.99)), module, Arpanet::SLIDER1_PARAM + i));
addChild(createLightCentered<MediumLight<RedLight>>(mm2px(Vec(9.465 + (i * 10), 110.334)), module, Arpanet::POS1_LIGHT + i));
}
// Need a second loop to account for the 8.798mm gap between the A and B groups of sliders/lights/switches
for (int i = 8; i < 16; ++i)
{
addParam(createParamCentered<CKSSThree>(mm2px(Vec(18.263 + (i * 10), 41.019)), module, Arpanet::GATE1_PARAM + i));
addParam(createParamCentered<BefacoSlidePot>(mm2px(Vec(18.263 + (i * 10), 81.99)), module, Arpanet::SLIDER1_PARAM + i));
addChild(createLightCentered<MediumLight<RedLight>>(mm2px(Vec(18.263 + (i * 10), 110.334)), module, Arpanet::POS1_LIGHT + i));
}
addParam(createParamCentered<HCKSS>(mm2px(Vec(219.565, 68.243)), module, Arpanet::STARTTOGGLE_PARAM));
addParam(createParamCentered<FFDPW>(mm2px(Vec(198.312, 72.24)), module, Arpanet::SKIP_PARAM));
addParam(createParamCentered<CKSSThree>(mm2px(Vec(185.0, 81.99)), module, Arpanet::SKIPTOGGLE_PARAM));
addParam(createParamCentered<FFDPW>(mm2px(Vec(219.514, 81.99)), module, Arpanet::STARTSTOP_PARAM));
addParam(createParamCentered<BefacoSlidePot>(mm2px(Vec(246.143, 82.039)), module, Arpanet::CLOCK_PARAM));
addParam(createParamCentered<BefacoSlidePot>(mm2px(Vec(259.175, 82.039)), module, Arpanet::FM_PARAM));
addParam(createParamCentered<BefacoSlidePot>(mm2px(Vec(272.205, 82.039)), module, Arpanet::PULSE_PARAM));
addParam(createParamCentered<FFDPW>(mm2px(Vec(198.309, 91.74)), module, Arpanet::RESET_PARAM));
addParam(createParamCentered<HCKSS>(mm2px(Vec(44.542, 118.093)), module, Arpanet::LENGTH_PARAM));
addParam(createParamCentered<HCKSS>(mm2px(Vec(136.158, 118.093)), module, Arpanet::RANDOM_PARAM));
addInput(createInputCentered<FF01JKPort>(mm2px(Vec(310.721, 39.262)), module, Arpanet::QUANTCV_INPUT));
addInput(createInputCentered<FF01JKPort>(mm2px(Vec(198.312, 52.719)), module, Arpanet::SKIP_INPUT));
addInput(createInputCentered<FF01JKPort>(mm2px(Vec(219.564, 52.719)), module, Arpanet::START_INPUT));
addInput(createInputCentered<FF01JKPort>(mm2px(Vec(294.668, 97.34)), module, Arpanet::QUANTA_INPUT));
addInput(createInputCentered<FF01JKPort>(mm2px(Vec(326.774, 97.34)), module, Arpanet::QUANTB_INPUT));
addInput(createInputCentered<FF01JKPort>(mm2px(Vec(198.312, 111.244)), module, Arpanet::RESET_INPUT));
addInput(createInputCentered<FF01JKPort>(mm2px(Vec(219.564, 111.244)), module, Arpanet::STOP_INPUT));
addInput(createInputCentered<FF01JKPort>(mm2px(Vec(233.223, 111.244)), module, Arpanet::STARTSTOP_INPUT));
addInput(createInputCentered<FF01JKPort>(mm2px(Vec(259.175, 111.244)), module, Arpanet::FM_INPUT));
addInput(createInputCentered<FF01JKPort>(mm2px(Vec(272.206, 111.244)), module, Arpanet::PULSE_INPUT));
addOutput(createOutputCentered<FF01JKPort>(mm2px(Vec(198.312, 26.462)), module, Arpanet::GATEBUS1_OUTPUT));
addOutput(createOutputCentered<FF01JKPort>(mm2px(Vec(212.361, 26.462)), module, Arpanet::GATEBUS2_OUTPUT));
addOutput(createOutputCentered<FF01JKPort>(mm2px(Vec(226.409, 26.462)), module, Arpanet::GATEBUS3_OUTPUT));
addOutput(createOutputCentered<FF01JKPort>(mm2px(Vec(243.675, 26.462)), module, Arpanet::POSITION1_OUTPUT));
addOutput(createOutputCentered<FF01JKPort>(mm2px(Vec(269.736, 26.462)), module, Arpanet::CLOCKEDGATE1_OUTPUT));
addOutput(createOutputCentered<FF01JKPort>(mm2px(Vec(294.668, 26.462)), module, Arpanet::QUANTA_OUTPUT));
addOutput(createOutputCentered<FF01JKPort>(mm2px(Vec(326.774, 26.462)), module, Arpanet::QUANTB_OUTPUT));
addOutput(createOutputCentered<FF01JKPort>(mm2px(Vec(259.175, 50.51)), module, Arpanet::CLOCK_OUTPUT));
addOutput(createOutputCentered<FF01JKPort>(mm2px(Vec(294.668, 111.244)), module, Arpanet::SEQA_OUTPUT));
addOutput(createOutputCentered<FF01JKPort>(mm2px(Vec(326.774, 111.244)), module, Arpanet::SEQB_OUTPUT));
addChild(createLightCentered<MediumLight<RedLight>>(mm2px(Vec(246.144, 50.51)), module, Arpanet::CLOCK_LIGHT));
}
};
Model *modelArpanet = createModel<Arpanet, ArpanetWidget>("Arpanet");
| 13,435
|
C++
|
.cpp
| 385
| 31.784416
| 129
| 0.706797
|
RCameron93/FehlerFabrik
| 30
| 3
| 7
|
GPL-3.0
|
9/20/2024, 10:45:25 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,832
|
ffComponents.hpp
|
RCameron93_FehlerFabrik/src/ffComponents.hpp
|
// #include "plugin.hpp"
// #include <rack.hpp>
extern Plugin *pluginInstance;
// Switches
struct HCKSS : app::SvgSwitch
{
HCKSS()
{
addFrame(APP->window->loadSvg(asset::plugin(pluginInstance, "res/Components/HCKSS_0.svg")));
addFrame(APP->window->loadSvg(asset::plugin(pluginInstance, "res/Components/HCKSS_1.svg")));
}
};
struct FFDPW : app::SvgSwitch
{
FFDPW()
{
momentary = true;
addFrame(APP->window->loadSvg(asset::plugin(pluginInstance, "res/Components/FFDPW_0.svg")));
addFrame(APP->window->loadSvg(asset::plugin(pluginInstance, "res/Components/FFDPW_1.svg")));
}
};
struct FFDPTW : app::SvgSwitch
{
FFDPTW()
{
addFrame(APP->window->loadSvg(asset::plugin(pluginInstance, "res/Components/FFDPW_0.svg")));
addFrame(APP->window->loadSvg(asset::plugin(pluginInstance, "res/Components/FFDPW_1.svg")));
}
};
// Knobs
struct FF06BKnob : RoundKnob
{
FF06BKnob()
{
setSvg(APP->window->loadSvg(asset::plugin(pluginInstance, "res/Components/FF06B.svg")));
}
};
struct FF06GKnob : RoundKnob
{
FF06GKnob()
{
setSvg(APP->window->loadSvg(asset::plugin(pluginInstance, "res/Components/FF06G.svg")));
}
};
struct FF08GKnob : RoundKnob
{
FF08GKnob()
{
setSvg(APP->window->loadSvg(asset::plugin(pluginInstance, "res/Components/FF08G.svg")));
}
};
struct FF08GSnapKnob : FF08GKnob
{
FF08GSnapKnob()
{
snap = true;
}
};
struct FF10BKnob : RoundKnob
{
FF10BKnob()
{
setSvg(APP->window->loadSvg(asset::plugin(pluginInstance, "res/Components/FF10B.svg")));
}
};
struct FF10GKnob : RoundKnob
{
FF10GKnob()
{
setSvg(APP->window->loadSvg(asset::plugin(pluginInstance, "res/Components/FF10G.svg")));
}
};
struct FF10GSnapKnob : FF10GKnob
{
FF10GSnapKnob()
{
snap = true;
}
};
struct FF15GKnob : RoundKnob
{
FF15GKnob()
{
setSvg(APP->window->loadSvg(asset::plugin(pluginInstance, "res/Components/FF15G.svg")));
}
};
struct FF15GSnapKnob : FF15GKnob
{
FF15GSnapKnob()
{
snap = true;
}
};
struct FF20GKnob : RoundKnob
{
FF20GKnob()
{
setSvg(APP->window->loadSvg(asset::plugin(pluginInstance, "res/Components/FF20G.svg")));
}
};
// Port
struct FF01JKPort : app::SvgPort
{
FF01JKPort()
{
setSvg(APP->window->loadSvg(asset::plugin(pluginInstance, "res/Components/FF01JK.svg")));
}
};
// Misc
struct FFHexScrew : app::SvgScrew
{
FFHexScrew()
{
setSvg(APP->window->loadSvg(asset::plugin(pluginInstance, "res/Components/FFHexScrew.svg")));
}
};
| 2,654
|
C++
|
.h
| 116
| 18.965517
| 101
| 0.659953
|
RCameron93/FehlerFabrik
| 30
| 3
| 7
|
GPL-3.0
|
9/20/2024, 10:45:25 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,833
|
ffFilters.hpp
|
RCameron93_FehlerFabrik/src/ffFilters.hpp
|
struct DCBlock
{
// https://www.dsprelated.com/freebooks/filters/DC_Blocker.html
float xm1 = 0;
float ym1 = 0;
float r = 0.995;
float process(float x)
{
float y = x - xm1 + r * ym1;
xm1 = x;
ym1 = y;
return y;
}
};
struct ButterWorth2Filter : dsp::IIRFilter<3, 3>
{
enum Type
{
LOWPASS,
HIGHPASS
};
ButterWorth2Filter()
{
setParameters(LOWPASS, 0.f, 0.f);
}
/** Second order Butterworth filter
Coefficients taken from Pirkle - Designing Audio Effect Plugins in C++
Code based on filter.hpp
Calculates and sets the biquad transfer function coefficients.
fc: cutoff frequency
fs: sample rate
*/
void setParameters(int type, float fc, float fs)
{
// fn: normalised frequency
float fn = fc / fs;
// Used in HPF
float K = std::tan(M_PI * fn);
// Used in LPF
float C = 1 / K;
// Note - Pirkle uses a0... for the x coefficients, b0 for the y coefficients.
// Rack API is switched
switch (type)
{
case LOWPASS:
this->b[0] = 1 / (1 + M_SQRT2 * C + C * C);
this->b[1] = 2 * this->b[0];
this->b[2] = this->b[0];
this->a[0] = 2 * this->b[0] * (1 - C * C);
this->a[1] = this->b[0] * (1 - M_SQRT2 * C + C * C);
break;
case HIGHPASS:
this->b[0] = 1 / (1 + M_SQRT2 * K + K * K);
this->b[1] = -2 * this->b[0];
this->b[2] = this->b[0];
this->a[0] = 2 * this->b[0] * (K * K - 1);
this->a[1] = this->b[0] * (1 - M_SQRT2 * K + K * K);
break;
default:
break;
}
}
};
struct LinkwitzRiley2Filter : dsp::IIRFilter<3, 3>
{
enum Type
{
LOWPASS,
HIGHPASS
};
LinkwitzRiley2Filter()
{
setParameters(LOWPASS, 0.f, 0.f);
}
/** Second order Linkwitz-Riley filter
Coefficients taken from Pirkle - Designing Audio Effect Plugins in C++
Code based on filter.hpp
Calculates and sets the biquad transfer function coefficients.
fc: cutoff frequency
fs: sample rate
*/
void setParameters(int type, float fc, float fs)
{
float omega = M_PI * fc;
float theta = omega / fs;
float kappa = omega / std::tan(theta);
float delta = kappa * kappa + omega * omega + 2 * kappa * omega;
// Note - Pirkle uses a0... for the x coefficients, b0 for the y coefficients.
// Rack API is switched
switch (type)
{
case LOWPASS:
this->b[0] = omega * omega / delta;
this->b[1] = 2 * this->b[0];
this->b[2] = this->b[0];
this->a[0] = (-2 * kappa * kappa + 2 * omega * omega) / delta;
this->a[1] = (-2 * kappa * omega + kappa * kappa + omega * omega) / delta;
break;
case HIGHPASS:
this->b[0] = kappa * kappa / delta;
this->b[1] = -2 * this->b[0];
this->b[2] = this->b[0];
this->a[0] = (-2 * kappa * kappa + 2 * omega * omega) / delta;
this->a[1] = (-2 * kappa * omega + kappa * kappa + omega * omega) / delta;
break;
default:
break;
}
}
};
struct LinkwitzRiley4Filter
{
/** 24 dB/Oct 4th order LR filter
Built from 2 cascaded 2nd order BW Filters
Computes both low and high pass in parallel
*/
// 0,2: LPF, 1,3: HPF
ButterWorth2Filter butterWorth[4];
float outs[2] = {};
void process(float input, float fc, float fs)
{
// First Stage
butterWorth[0].setParameters(0, fc, fs);
outs[0] = butterWorth[0].process(input);
butterWorth[1].setParameters(1, fc, fs);
outs[1] = butterWorth[1].process(input);
// Second Stage
butterWorth[2].setParameters(0, fc, fs);
outs[0] = butterWorth[2].process(outs[0]);
butterWorth[3].setParameters(1, fc, fs);
outs[1] = butterWorth[3].process(outs[1]);
}
};
| 4,083
|
C++
|
.h
| 133
| 23.240602
| 86
| 0.533741
|
RCameron93/FehlerFabrik
| 30
| 3
| 7
|
GPL-3.0
|
9/20/2024, 10:45:25 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,834
|
ffCommon.hpp
|
RCameron93_FehlerFabrik/src/ffCommon.hpp
|
#include "wavetables/Wavetables.hpp"
struct FFLogger
{
int counter = 0;
// Outputs a message to the log once a second
void log(const char *message, float samplerate)
{
if (counter == (int)samplerate)
{
DEBUG("error: %s", message);
counter = 0;
}
counter++;
}
};
struct BitDepthReducer
{
// Powers of 2, minus 1
float powers[16] = {1.f, 3.f, 7.f, 15.f, 31.f, 63.f, 127.f, 255.f, 511.f, 1023.f, 2047.f, 4095.f, 8191.f, 16383.f, 32767.f, 65535.f};
float process(float in, int depth, float range)
{
// Quantises a voltage signal of "range" volts peak to peak (eg 10 volts) to a given bit depth
float maxVolts = range / 2.f;
// Clamp incoming signal
in = clamp(in, -(maxVolts), (maxVolts));
// Offset input by eg 5v so we're dealing with a number between 0v and 10v
in += maxVolts;
// How many possible values we have
float steps = powers[depth - 1];
// The step size of each of those values
float stepSize = range / steps;
// Quantise
float out = round(in / stepSize) * stepSize;
// Remove offset
out -= maxVolts;
return out;
}
// Process between -1V/+1V at 12 bit
// Same idea I just wanted to have a streamlined version for a plugin that only uses 12bit reduction
// Probably not any apreciable decrease in time but hey ho
float process12bit(float in)
{
// in = clamp(in, -1.f, 1.f);
in += 1.f;
float stepSize = 0.0004884004884004884f;
float out = int(in / stepSize) * stepSize;
out -= 1.0f;
return out;
}
};
struct SampleRateCrusher
{
float out = 0.f;
int counter = 0;
void process(int n, float in)
{
// Hold every Nth sample
if (counter < n)
{
counter++;
}
else
{
counter = 0;
out = in;
}
}
};
// Ramp generator based on Befaco Rampage
// https://github.com/VCVRack/Befaco/blob/v1/src/Rampage.cpp
struct Ramp
{
float minTime = 1e-3;
float shape = 0.0;
float out = 0.f;
bool gate = false;
float shapeDelta(float delta, float tau, float shape)
{
float lin = sgn(delta) * 10.f / tau;
if (shape < 0.f)
{
float log = sgn(delta) * 40.f / tau / (fabs(delta) + 1.f);
return crossfade(lin, log, -shape * 0.95f);
}
else
{
float exp = M_E * delta / tau;
return crossfade(lin, exp, shape * 0.90f);
}
}
dsp::PulseGenerator endOfCyclePulse;
void process(float shape, float riseRate, float fallRate, float time, bool cycle)
{
float in = 0;
if (gate)
{
in = 1.f;
}
float delta = in - out;
bool rising = false;
bool falling = false;
if (delta > 0)
{
// Rise removed for now, just decay
// Rise
float riseCv = riseRate;
float rise = minTime * pow(2.0, riseCv * 20.0);
out += shapeDelta(delta, rise, shape) * time;
rising = (in - out > 1e-3);
if (!rising)
{
gate = false;
}
}
else if (delta < 0)
{
// Fall
// Just control knob for now, will add CV control later
float fallCv = fallRate;
fallCv = clamp(fallCv, 0.0f, 1.0f);
float fall = minTime * pow(2.0f, fallCv * 20.0f);
out += shapeDelta(delta, fall, shape) * time;
falling = (in - out < -1e-3);
if (!falling)
{
// End of cycle, check if we should turn the gate back on (cycle mode)
endOfCyclePulse.trigger(1e-3);
if (cycle)
{
gate = true;
}
}
}
else
{
gate = false;
}
if (!rising && !falling)
{
out = in;
}
}
};
// Wavetable operator for FM synthesis
struct Operator
{
float phase = 0.f;
float freq = 0.f;
float wave = 0.f;
float out = 0.f;
float bufferSample1 = 0.f;
float bufferSample2 = 0.f;
float feedbackSample = 0.f;
void setPitch(float pitch)
{
// The default pitch is C4 = 256.6256f
freq = dsp::FREQ_C4 * pow(2.f, pitch);
}
void applyRatio(float ratio)
{
freq *= ratio;
}
void process(float time, float amplitude, float fmMod, float feedback, int table)
{
phase += freq * time + fmMod * 0.5f;
if (phase >= 0.5f)
{
phase -= 1.f;
}
else if (phase <= -0.5f)
{
phase += 1.f;
}
float wtPOS = (phase + feedback * feedbackSample);
// Wrap wavetable position between 0.f and 1.f
wtPOS = eucMod(wtPOS, 1.f);
float *waveTable = wavetable_opal[table];
float tableLength = wavetable_opal_lengths[table];
wtPOS *= (tableLength);
wave = interpolateLinear(waveTable, wtPOS);
out = wave * amplitude;
bufferSample1 = wave;
bufferSample2 = bufferSample1;
feedbackSample = (bufferSample1 + bufferSample2) / 2.f;
}
};
struct Sequencer
{
bool running = false;
// 0 = fwd, 1 = rev, 2 = bounce, 3 = rnd
int direction = 0;
// Just used in bounce mode
int bounceDir = 0;
int length = 8; // Amount of steps
int index = 0; // Sequencer index
void reset()
{
index = 0;
}
void setLength(int newLength)
{
if (newLength > 0)
{
length = newLength;
if (index > (length - 1))
{
reset();
}
}
}
void setIndex(int step)
{
if (step < length && step > -1)
{
index = step;
}
}
void startStop()
{
running = !running;
}
void directionChange()
{
// Cycle through direction modes
++direction;
direction %= 4;
}
void advanceIndex()
{
switch (direction)
{
case 0:
// Forward
++index;
index %= length;
break;
case 1:
// Reverse
--index;
index = (index % length + length) % length;
break;
case 2:
// Bouncing (plays each end twice so as to be a factor of four)
if (bounceDir)
{
++index;
if (index == length)
{
bounceDir = !bounceDir;
index = length - 1;
}
}
else
{
--index;
if (index == -1)
{
bounceDir = !bounceDir;
index = 0;
}
}
break;
case 3:
// Random
{
float rng = (length - 1) * random::uniform();
index = (int)round(rng);
}
break;
default:
break;
}
}
};
| 6,824
|
C++
|
.h
| 274
| 17.821168
| 137
| 0.529529
|
RCameron93/FehlerFabrik
| 30
| 3
| 7
|
GPL-3.0
|
9/20/2024, 10:45:25 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,835
|
PSIOP.hpp
|
RCameron93_FehlerFabrik/src/PSIOP.hpp
|
// 3D modulation matrix
// 6 algorithims, 4 sources (each operators sine output), 5 destinations (each ops fm in and the master output)
float modMatrix[6][4][5] =
{
{{0, 1, 0, 0, 0}, {0, 0, 0, 0, 1}, {0, 0, 0, 0, 0}, {0, 0, 0, 0, 0}},
{{0, 0, 0, 0, 0.5}, {0, 0, 0, 0, 0.5}, {0, 0, 0, 0, 0}, {0, 0, 0, 0, 0}},
{{0, 1, 0, 0, 0}, {0, 0, 1, 0, 0}, {0, 0, 0, 1, 0}, {0, 0, 0, 0, 1}},
{{0, 1, 0, 0, 0}, {0, 0, 0, 0, 0.5}, {0, 0, 0, 1, 0}, {0, 0, 0, 0, 0.5}},
{{0, 0, 0, 0, 0.5}, {0, 0, 1, 0, 0}, {0, 0, 0, 1, 0}, {0, 0, 0, 0, 0.5}},
{{0, 0, 0, 0, 0.3}, {0, 0, 1, 0, 0}, {0, 0, 0, 0, 0.3}, {0, 0, 0, 0, 0.3}},
};
// 23 Frequency ratios taken from Mutable Instruments Plaits 2 OP FM mode
// https://github.com/pichenettes/eurorack/blob/master/plaits/resources/lookup_tables.py
float fm_frequency_ratios[23] = {0.5f, 0.5f * pow(2.f, (16.f / 1200.0f)),
sqrt(2.f) / 2.f, M_PI / 4.f, 1.0f, 1.0f * pow(2.f, (16.f / 1200.0f)), sqrt(2.f),
M_PI / 2.f, 7.0f / 4.f, 2.f, 2.f * pow(2.f, (16.f / 1200.0f)), 9.0f / 4.f, 11.0f / 4.f,
2.f * sqrt(2.f), 3.f, M_PI, sqrt(3.f) * 2.f, 4.f, sqrt(2.f) * 3.f,
M_PI * 3.f / 2.f, 5.f, sqrt(2.f) * 4.f, 8.f};
// 32 Combinations of the above ratios that sound interesting.
int ratioMatrix[32][4] = {
{5, 5, 5, 5}, {3, 5, 7, 5}, {0, 5, 8, 5}, {7, 5, 2, 5}, {9, 5, 10, 5}, {14, 5, 15, 5}, {14, 8, 9, 5}, {14, 11, 8, 5}, {9, 8, 12, 5}, {22, 14, 17, 4}, {14, 14, 12, 4}, {9, 11, 14, 7}, {22, 9, 9, 13}, {15, 8, 17, 13}, {10, 12, 6, 15}, {10, 12, 6, 16}, {17, 12, 6, 11}, {5, 14, 8, 12}, {5, 10, 13, 12}, {5, 14, 14, 14}, {4, 2, 5, 2}, {0, 8, 16, 9}, {3, 13, 14, 1}, {4, 12, 14, 1}, {0, 10, 9, 0}, {0, 14, 13, 13}, {0, 10, 4, 16}, {0, 3, 4, 18}, {0, 1, 4, 13}, {14, 0, 12, 22}, {15, 0, 5, 22}, {1, 14, 9, 4}};
// 64 combinations of waveform
int tableMatrix[64][4] = {
{0, 0, 0, 0}, {0, 1, 0, 1}, {0, 2, 0, 2}, {0, 3, 0, 3}, {0, 4, 0, 4}, {0, 5, 0, 5}, {0, 6, 0, 6}, {0, 7, 0, 7}, {1, 0, 1, 0}, {1, 1, 1, 1}, {1, 2, 1, 2}, {1, 3, 1, 3}, {1, 4, 1, 4}, {1, 5, 1, 5}, {1, 6, 1, 6}, {1, 7, 1, 7}, {2, 0, 2, 0}, {2, 1, 2, 1}, {2, 2, 2, 2}, {2, 3, 2, 3}, {2, 4, 2, 4}, {2, 5, 2, 5}, {2, 6, 2, 6}, {2, 7, 2, 7}, {3, 0, 3, 0}, {3, 1, 3, 1}, {3, 2, 3, 2}, {3, 3, 3, 3}, {3, 4, 3, 4}, {3, 5, 3, 5}, {3, 6, 3, 6}, {3, 7, 3, 7}, {4, 0, 4, 0}, {4, 1, 4, 1}, {4, 2, 4, 2}, {4, 3, 4, 3}, {4, 4, 4, 4}, {4, 5, 4, 5}, {4, 6, 4, 6}, {4, 7, 4, 7}, {5, 0, 5, 0}, {5, 1, 5, 1}, {5, 2, 5, 2}, {5, 3, 5, 3}, {5, 4, 5, 4}, {5, 5, 5, 5}, {5, 6, 5, 6}, {5, 7, 5, 7}, {6, 0, 6, 0}, {6, 1, 6, 1}, {6, 2, 6, 2}, {6, 3, 6, 3}, {6, 4, 6, 4}, {6, 5, 6, 5}, {6, 6, 6, 6}, {6, 7, 6, 7}, {7, 0, 7, 0}, {7, 1, 7, 1}, {7, 2, 7, 2}, {7, 3, 7, 3}, {7, 4, 7, 4}, {7, 5, 7, 5}, {7, 6, 7, 6}, {7, 7, 7, 7}};
| 2,869
|
C++
|
.h
| 24
| 110.458333
| 900
| 0.386915
|
RCameron93/FehlerFabrik
| 30
| 3
| 7
|
GPL-3.0
|
9/20/2024, 10:45:25 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,836
|
plugin.hpp
|
RCameron93_FehlerFabrik/src/plugin.hpp
|
#pragma once
#include <rack.hpp>
using namespace rack;
#include "ffComponents.hpp"
// Declare the Plugin, defined in plugin.cpp
extern Plugin *pluginInstance;
// Declare each Model, defined in each module source file
// extern Model* modelMyModule;
extern Model *modelPSIOP;
extern Model *modelPlanck;
extern Model *modelLuigi;
extern Model *modelAspect;
extern Model *modelMonte;
extern Model *modelArpanet;
extern Model *modelSigma;
extern Model *modelFax;
extern Model *modelRasoir;
extern Model *modelChi;
extern Model *modelNova;
extern Model *modelLilt;
extern Model* modelBotzinger;
| 595
|
C++
|
.h
| 21
| 27.095238
| 57
| 0.824253
|
RCameron93/FehlerFabrik
| 30
| 3
| 7
|
GPL-3.0
|
9/20/2024, 10:45:25 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,837
|
Wavetables.hpp
|
RCameron93_FehlerFabrik/src/wavetables/Wavetables.hpp
|
// Wavetables from Valley Rack
// https://github.com/ValleyAudio/ValleyRackFree/tree/v1.0/src/Common/Wavetables
// #pragma once
#include "opal_wavetable/opal_wavetable.h"
// #include "TeeEks_wavetable/TeeEks_wavetable.h"
// #include "basic_wavetable/basic_wavetable.h"
// #include "additiveBank_wavetable/additiveBank_wavetable.h"
// #include "additiveSine_wavetable/additiveSine_wavetable.h"
// #include "additiveSaw_wavetable/additiveSaw_wavetable.h"
// #include "additiveSquare_wavetable/additiveSquare_wavetable.h"
// #include "sweepHarmonic_wavetable/sweepHarmonic_wavetable.h"
// #include "sineHarmonics_wavetable/sineHarmonics_wavetable.h"
// #include "amHarmonic_wavetable/amHarmonic_wavetable.h"
// #include "altosax_wavetable/altosax_waveTable.h"
// #include "cello1_wavetable/cello1_waveTable.h"
// #include "cello2_wavetable/cello2_waveTable.h"
// #include "violin_wavetable/violin_waveTable.h"
// #include "oboe_wavetable/oboe_waveTable.h"
// #include "piano_wavetable/piano_waveTable.h"
// #include "pluck_wavetable/pluck_waveTable.h"
// #include "theremin_wavetable/theremin_waveTable.h"
// #include "overtone1_wavetable/overtone1_waveTable.h"
// #include "overtone2_wavetable/overtone2_waveTable.h"
// #include "symetric_wavetable/symetric_waveTable.h"
// #include "voice1_wavetable/voice1_waveTable.h"
// #include "voice2_wavetable/voice2_waveTable.h"
// #include "voice3_wavetable/voice3_waveTable.h"
// #include "voice4_wavetable/voice4_waveTable.h"
// #include "voice5_wavetable/voice5_waveTable.h"
// #include "chip1_wavetable/chip1_waveTable.h"
// #include "chip2_wavetable/chip2_waveTable.h"
// #include "bitcrush1_wavetable/bitcrush1_waveTable.h"
// #include "bitcrush2_wavetable/bitcrush2_waveTable.h"
// #include "pwm_wavetable/pwm_wavetable.h"
// #include "biPulse_wavetable/biPulse_wavetable.h"
// #include "sawGap_wavetable/sawGap_wavetable.h"
// #include "sawGap2_wavetable/sawGap2_wavetable.h"
// #include "vgame_wavetable/vgame_wavetable.h"
// #define NUM_VALLEY_WAVETABLES 35
| 2,011
|
C++
|
.h
| 39
| 50.512821
| 80
| 0.788832
|
RCameron93/FehlerFabrik
| 30
| 3
| 7
|
GPL-3.0
|
9/20/2024, 10:45:25 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,838
|
opal_5.h
|
RCameron93_FehlerFabrik/src/wavetables/opal_wavetable/opal_5.h
|
#ifndef WAVETABLE_OPAL_5_H
#define WAVETABLE_OPAL_5_H
#define WAVETABLE_OPAL_5_LENGTH 4096
static long opal_5_tableLength = 4096;
static float opal_5_waveTable[WAVETABLE_OPAL_5_LENGTH] = {
0.000000e+00, 3.067851e-03, 6.135821e-03, 9.203672e-03, 1.227152e-02, 1.533914e-02, 1.840663e-02, 2.147400e-02, 2.454114e-02, 2.760804e-02, 3.067470e-02, 3.374112e-02, 3.680718e-02, 3.987288e-02, 4.293823e-02, 4.600310e-02,
4.906762e-02, 5.213165e-02, 5.519521e-02, 5.825818e-02, 6.132066e-02, 6.438255e-02, 6.744385e-02, 7.050455e-02, 7.356453e-02, 7.662380e-02, 7.968235e-02, 8.274019e-02, 8.579731e-02, 8.885348e-02, 9.190893e-02, 9.496343e-02,
9.801710e-02, 1.010698e-01, 1.041216e-01, 1.071724e-01, 1.102221e-01, 1.132709e-01, 1.163186e-01, 1.193651e-01, 1.224107e-01, 1.254549e-01, 1.284981e-01, 1.315399e-01, 1.345806e-01, 1.376201e-01, 1.406581e-01, 1.436950e-01,
1.467304e-01, 1.497644e-01, 1.527971e-01, 1.558284e-01, 1.588581e-01, 1.618863e-01, 1.649131e-01, 1.679382e-01, 1.709619e-01, 1.739838e-01, 1.770042e-01, 1.800228e-01, 1.830398e-01, 1.860551e-01, 1.890686e-01, 1.920804e-01,
1.950903e-01, 1.980983e-01, 2.011045e-01, 2.041090e-01, 2.071114e-01, 2.101117e-01, 2.131102e-01, 2.161068e-01, 2.191012e-01, 2.220936e-01, 2.250838e-01, 2.280720e-01, 2.310580e-01, 2.340419e-01, 2.370236e-01, 2.400030e-01,
2.429801e-01, 2.459550e-01, 2.489276e-01, 2.518978e-01, 2.548656e-01, 2.578311e-01, 2.607940e-01, 2.637546e-01, 2.667127e-01, 2.696682e-01, 2.726213e-01, 2.755717e-01, 2.785196e-01, 2.814649e-01, 2.844075e-01, 2.873474e-01,
2.902846e-01, 2.932191e-01, 2.961508e-01, 2.990798e-01, 3.020059e-01, 3.049291e-01, 3.078495e-01, 3.107671e-01, 3.136817e-01, 3.165933e-01, 3.195020e-01, 3.224076e-01, 3.253102e-01, 3.282098e-01, 3.311063e-01, 3.339996e-01,
3.368897e-01, 3.397769e-01, 3.426607e-01, 3.455412e-01, 3.484186e-01, 3.512927e-01, 3.541634e-01, 3.570309e-01, 3.598950e-01, 3.627557e-01, 3.656130e-01, 3.684667e-01, 3.713171e-01, 3.741640e-01, 3.770074e-01, 3.798472e-01,
3.826834e-01, 3.855160e-01, 3.883450e-01, 3.911704e-01, 3.939919e-01, 3.968099e-01, 3.996241e-01, 4.024346e-01, 4.052413e-01, 4.080441e-01, 4.108431e-01, 4.136382e-01, 4.164295e-01, 4.192169e-01, 4.220002e-01, 4.247797e-01,
4.275551e-01, 4.303265e-01, 4.330938e-01, 4.358571e-01, 4.386162e-01, 4.413712e-01, 4.441221e-01, 4.468688e-01, 4.496113e-01, 4.523495e-01, 4.550835e-01, 4.578133e-01, 4.605386e-01, 4.632597e-01, 4.659765e-01, 4.686887e-01,
4.713967e-01, 4.741001e-01, 4.767991e-01, 4.794937e-01, 4.821837e-01, 4.848692e-01, 4.875501e-01, 4.902264e-01, 4.928981e-01, 4.955652e-01, 4.982276e-01, 5.008854e-01, 5.035384e-01, 5.061866e-01, 5.088301e-01, 5.114688e-01,
5.141027e-01, 5.167317e-01, 5.193559e-01, 5.219753e-01, 5.245897e-01, 5.271990e-01, 5.298035e-01, 5.324031e-01, 5.349976e-01, 5.375870e-01, 5.401714e-01, 5.427507e-01, 5.453249e-01, 5.478940e-01, 5.504580e-01, 5.530167e-01,
5.555701e-01, 5.581185e-01, 5.606616e-01, 5.631993e-01, 5.657318e-01, 5.682589e-01, 5.707806e-01, 5.732971e-01, 5.758082e-01, 5.783137e-01, 5.808139e-01, 5.833086e-01, 5.857978e-01, 5.882815e-01, 5.907596e-01, 5.932323e-01,
5.956992e-01, 5.981606e-01, 6.006165e-01, 6.030666e-01, 6.055110e-01, 6.079497e-01, 6.103828e-01, 6.128100e-01, 6.152315e-01, 6.176473e-01, 6.200571e-01, 6.224612e-01, 6.248595e-01, 6.272517e-01, 6.296382e-01, 6.320187e-01,
6.343932e-01, 6.367618e-01, 6.391244e-01, 6.414809e-01, 6.438315e-01, 6.461760e-01, 6.485144e-01, 6.508466e-01, 6.531727e-01, 6.554928e-01, 6.578066e-01, 6.601143e-01, 6.624157e-01, 6.647109e-01, 6.669998e-01, 6.692826e-01,
6.715589e-01, 6.738290e-01, 6.760926e-01, 6.783500e-01, 6.806009e-01, 6.828455e-01, 6.850836e-01, 6.873152e-01, 6.895405e-01, 6.917592e-01, 6.939714e-01, 6.961771e-01, 6.983762e-01, 7.005687e-01, 7.027547e-01, 7.049340e-01,
7.071067e-01, 7.092727e-01, 7.114321e-01, 7.135848e-01, 7.157308e-01, 7.178700e-01, 7.200024e-01, 7.221282e-01, 7.242470e-01, 7.263591e-01, 7.284644e-01, 7.305627e-01, 7.326542e-01, 7.347388e-01, 7.368165e-01, 7.388873e-01,
7.409511e-01, 7.430079e-01, 7.450577e-01, 7.471006e-01, 7.491363e-01, 7.511650e-01, 7.531867e-01, 7.552013e-01, 7.572088e-01, 7.592092e-01, 7.612023e-01, 7.631884e-01, 7.651672e-01, 7.671388e-01, 7.691033e-01, 7.710605e-01,
7.730104e-01, 7.749530e-01, 7.768884e-01, 7.788165e-01, 7.807372e-01, 7.826506e-01, 7.845565e-01, 7.864552e-01, 7.883464e-01, 7.902302e-01, 7.921065e-01, 7.939755e-01, 7.958368e-01, 7.976907e-01, 7.995372e-01, 8.013761e-01,
8.032075e-01, 8.050313e-01, 8.068475e-01, 8.086561e-01, 8.104571e-01, 8.122505e-01, 8.140363e-01, 8.158144e-01, 8.175848e-01, 8.193475e-01, 8.211025e-01, 8.228498e-01, 8.245893e-01, 8.263210e-01, 8.280450e-01, 8.297611e-01,
8.314695e-01, 8.331701e-01, 8.348628e-01, 8.365476e-01, 8.382246e-01, 8.398937e-01, 8.415549e-01, 8.432082e-01, 8.448535e-01, 8.464909e-01, 8.481203e-01, 8.497417e-01, 8.513551e-01, 8.529606e-01, 8.545579e-01, 8.561473e-01,
8.577286e-01, 8.593018e-01, 8.608669e-01, 8.624239e-01, 8.639728e-01, 8.655136e-01, 8.670462e-01, 8.685707e-01, 8.700869e-01, 8.715950e-01, 8.730949e-01, 8.745866e-01, 8.760700e-01, 8.775452e-01, 8.790121e-01, 8.804709e-01,
8.819212e-01, 8.833632e-01, 8.847971e-01, 8.862225e-01, 8.876395e-01, 8.890483e-01, 8.904487e-01, 8.918407e-01, 8.932242e-01, 8.945994e-01, 8.959662e-01, 8.973246e-01, 8.986744e-01, 9.000158e-01, 9.013488e-01, 9.026732e-01,
9.039892e-01, 9.052967e-01, 9.065956e-01, 9.078860e-01, 9.091679e-01, 9.104413e-01, 9.117060e-01, 9.129621e-01, 9.142097e-01, 9.154487e-01, 9.166790e-01, 9.179007e-01, 9.191138e-01, 9.203182e-01, 9.215140e-01, 9.227011e-01,
9.238795e-01, 9.250492e-01, 9.262102e-01, 9.273624e-01, 9.285060e-01, 9.296409e-01, 9.307669e-01, 9.318842e-01, 9.329927e-01, 9.340925e-01, 9.351834e-01, 9.362656e-01, 9.373389e-01, 9.384035e-01, 9.394592e-01, 9.405060e-01,
9.415441e-01, 9.425732e-01, 9.435934e-01, 9.446048e-01, 9.456073e-01, 9.466008e-01, 9.475856e-01, 9.485613e-01, 9.495281e-01, 9.504861e-01, 9.514350e-01, 9.523749e-01, 9.533060e-01, 9.542280e-01, 9.551411e-01, 9.560452e-01,
9.569403e-01, 9.578264e-01, 9.587034e-01, 9.595715e-01, 9.604305e-01, 9.612805e-01, 9.621214e-01, 9.629532e-01, 9.637760e-01, 9.645897e-01, 9.653944e-01, 9.661900e-01, 9.669764e-01, 9.677538e-01, 9.685221e-01, 9.692812e-01,
9.700311e-01, 9.707720e-01, 9.715039e-01, 9.722264e-01, 9.729398e-01, 9.736441e-01, 9.743394e-01, 9.750253e-01, 9.757020e-01, 9.763696e-01, 9.770281e-01, 9.776773e-01, 9.783173e-01, 9.789481e-01, 9.795697e-01, 9.801821e-01,
9.807853e-01, 9.813792e-01, 9.819638e-01, 9.825393e-01, 9.831054e-01, 9.836624e-01, 9.842100e-01, 9.847485e-01, 9.852775e-01, 9.857974e-01, 9.863080e-01, 9.868094e-01, 9.873013e-01, 9.877840e-01, 9.882575e-01, 9.887216e-01,
9.891764e-01, 9.896220e-01, 9.900582e-01, 9.904851e-01, 9.909025e-01, 9.913108e-01, 9.917097e-01, 9.920993e-01, 9.924794e-01, 9.928503e-01, 9.932119e-01, 9.935641e-01, 9.939069e-01, 9.942404e-01, 9.945645e-01, 9.948792e-01,
9.951847e-01, 9.954807e-01, 9.957674e-01, 9.960446e-01, 9.963125e-01, 9.965711e-01, 9.968202e-01, 9.970601e-01, 9.972904e-01, 9.975114e-01, 9.977230e-01, 9.979253e-01, 9.981180e-01, 9.983015e-01, 9.984756e-01, 9.986402e-01,
9.987954e-01, 9.989412e-01, 9.990777e-01, 9.992048e-01, 9.993223e-01, 9.994305e-01, 9.995294e-01, 9.996188e-01, 9.996988e-01, 9.997693e-01, 9.998305e-01, 9.998823e-01, 9.999247e-01, 9.999576e-01, 9.999812e-01, 9.999952e-01,
9.999999e-01, 9.999952e-01, 9.999812e-01, 9.999576e-01, 9.999247e-01, 9.998823e-01, 9.998305e-01, 9.997693e-01, 9.996988e-01, 9.996188e-01, 9.995294e-01, 9.994305e-01, 9.993223e-01, 9.992048e-01, 9.990777e-01, 9.989412e-01,
9.987954e-01, 9.986402e-01, 9.984756e-01, 9.983015e-01, 9.981180e-01, 9.979253e-01, 9.977230e-01, 9.975114e-01, 9.972904e-01, 9.970601e-01, 9.968202e-01, 9.965711e-01, 9.963125e-01, 9.960446e-01, 9.957674e-01, 9.954807e-01,
9.951847e-01, 9.948792e-01, 9.945645e-01, 9.942404e-01, 9.939069e-01, 9.935641e-01, 9.932119e-01, 9.928503e-01, 9.924794e-01, 9.920993e-01, 9.917097e-01, 9.913108e-01, 9.909025e-01, 9.904851e-01, 9.900582e-01, 9.896220e-01,
9.891764e-01, 9.887216e-01, 9.882575e-01, 9.877840e-01, 9.873013e-01, 9.868094e-01, 9.863080e-01, 9.857974e-01, 9.852775e-01, 9.847485e-01, 9.842100e-01, 9.836624e-01, 9.831054e-01, 9.825393e-01, 9.819638e-01, 9.813792e-01,
9.807853e-01, 9.801821e-01, 9.795697e-01, 9.789481e-01, 9.783173e-01, 9.776773e-01, 9.770281e-01, 9.763696e-01, 9.757020e-01, 9.750253e-01, 9.743394e-01, 9.736441e-01, 9.729398e-01, 9.722264e-01, 9.715039e-01, 9.707720e-01,
9.700311e-01, 9.692812e-01, 9.685221e-01, 9.677538e-01, 9.669764e-01, 9.661900e-01, 9.653944e-01, 9.645897e-01, 9.637760e-01, 9.629532e-01, 9.621214e-01, 9.612805e-01, 9.604305e-01, 9.595715e-01, 9.587034e-01, 9.578264e-01,
9.569403e-01, 9.560452e-01, 9.551411e-01, 9.542280e-01, 9.533060e-01, 9.523749e-01, 9.514350e-01, 9.504861e-01, 9.495281e-01, 9.485613e-01, 9.475856e-01, 9.466008e-01, 9.456073e-01, 9.446048e-01, 9.435934e-01, 9.425732e-01,
9.415441e-01, 9.405060e-01, 9.394592e-01, 9.384035e-01, 9.373389e-01, 9.362656e-01, 9.351834e-01, 9.340925e-01, 9.329927e-01, 9.318842e-01, 9.307669e-01, 9.296409e-01, 9.285060e-01, 9.273624e-01, 9.262102e-01, 9.250492e-01,
9.238795e-01, 9.227011e-01, 9.215140e-01, 9.203182e-01, 9.191138e-01, 9.179007e-01, 9.166790e-01, 9.154487e-01, 9.142097e-01, 9.129621e-01, 9.117060e-01, 9.104413e-01, 9.091679e-01, 9.078860e-01, 9.065956e-01, 9.052967e-01,
9.039892e-01, 9.026732e-01, 9.013488e-01, 9.000158e-01, 8.986744e-01, 8.973246e-01, 8.959662e-01, 8.945994e-01, 8.932242e-01, 8.918407e-01, 8.904487e-01, 8.890483e-01, 8.876395e-01, 8.862225e-01, 8.847971e-01, 8.833632e-01,
8.819212e-01, 8.804709e-01, 8.790121e-01, 8.775452e-01, 8.760700e-01, 8.745866e-01, 8.730949e-01, 8.715950e-01, 8.700869e-01, 8.685707e-01, 8.670462e-01, 8.655136e-01, 8.639728e-01, 8.624239e-01, 8.608669e-01, 8.593018e-01,
8.577286e-01, 8.561473e-01, 8.545579e-01, 8.529606e-01, 8.513551e-01, 8.497417e-01, 8.481203e-01, 8.464909e-01, 8.448535e-01, 8.432082e-01, 8.415549e-01, 8.398937e-01, 8.382246e-01, 8.365476e-01, 8.348628e-01, 8.331701e-01,
8.314695e-01, 8.297611e-01, 8.280450e-01, 8.263210e-01, 8.245893e-01, 8.228498e-01, 8.211025e-01, 8.193475e-01, 8.175848e-01, 8.158144e-01, 8.140363e-01, 8.122505e-01, 8.104571e-01, 8.086561e-01, 8.068475e-01, 8.050313e-01,
8.032075e-01, 8.013761e-01, 7.995372e-01, 7.976907e-01, 7.958368e-01, 7.939755e-01, 7.921065e-01, 7.902302e-01, 7.883464e-01, 7.864552e-01, 7.845565e-01, 7.826506e-01, 7.807372e-01, 7.788165e-01, 7.768884e-01, 7.749530e-01,
7.730104e-01, 7.710605e-01, 7.691033e-01, 7.671388e-01, 7.651672e-01, 7.631884e-01, 7.612023e-01, 7.592092e-01, 7.572088e-01, 7.552013e-01, 7.531867e-01, 7.511650e-01, 7.491363e-01, 7.471006e-01, 7.450577e-01, 7.430079e-01,
7.409511e-01, 7.388873e-01, 7.368165e-01, 7.347388e-01, 7.326542e-01, 7.305627e-01, 7.284644e-01, 7.263591e-01, 7.242470e-01, 7.221282e-01, 7.200024e-01, 7.178700e-01, 7.157308e-01, 7.135848e-01, 7.114321e-01, 7.092727e-01,
7.071067e-01, 7.049340e-01, 7.027547e-01, 7.005687e-01, 6.983762e-01, 6.961771e-01, 6.939714e-01, 6.917592e-01, 6.895405e-01, 6.873152e-01, 6.850836e-01, 6.828455e-01, 6.806009e-01, 6.783500e-01, 6.760926e-01, 6.738290e-01,
6.715589e-01, 6.692826e-01, 6.669998e-01, 6.647109e-01, 6.624157e-01, 6.601143e-01, 6.578066e-01, 6.554928e-01, 6.531727e-01, 6.508466e-01, 6.485144e-01, 6.461760e-01, 6.438315e-01, 6.414809e-01, 6.391244e-01, 6.367618e-01,
6.343932e-01, 6.320187e-01, 6.296382e-01, 6.272517e-01, 6.248595e-01, 6.224612e-01, 6.200571e-01, 6.176473e-01, 6.152315e-01, 6.128100e-01, 6.103828e-01, 6.079497e-01, 6.055110e-01, 6.030666e-01, 6.006165e-01, 5.981606e-01,
5.956992e-01, 5.932323e-01, 5.907596e-01, 5.882815e-01, 5.857978e-01, 5.833086e-01, 5.808139e-01, 5.783137e-01, 5.758082e-01, 5.732971e-01, 5.707806e-01, 5.682589e-01, 5.657318e-01, 5.631993e-01, 5.606616e-01, 5.581185e-01,
5.555701e-01, 5.530167e-01, 5.504580e-01, 5.478940e-01, 5.453249e-01, 5.427507e-01, 5.401714e-01, 5.375870e-01, 5.349976e-01, 5.324031e-01, 5.298035e-01, 5.271990e-01, 5.245897e-01, 5.219753e-01, 5.193559e-01, 5.167317e-01,
5.141027e-01, 5.114688e-01, 5.088301e-01, 5.061866e-01, 5.035384e-01, 5.008854e-01, 4.982276e-01, 4.955652e-01, 4.928981e-01, 4.902264e-01, 4.875501e-01, 4.848692e-01, 4.821837e-01, 4.794937e-01, 4.767991e-01, 4.741001e-01,
4.713967e-01, 4.686887e-01, 4.659765e-01, 4.632597e-01, 4.605386e-01, 4.578133e-01, 4.550835e-01, 4.523495e-01, 4.496113e-01, 4.468688e-01, 4.441221e-01, 4.413712e-01, 4.386162e-01, 4.358571e-01, 4.330938e-01, 4.303265e-01,
4.275551e-01, 4.247797e-01, 4.220002e-01, 4.192169e-01, 4.164295e-01, 4.136382e-01, 4.108431e-01, 4.080441e-01, 4.052413e-01, 4.024346e-01, 3.996241e-01, 3.968099e-01, 3.939919e-01, 3.911704e-01, 3.883450e-01, 3.855160e-01,
3.826834e-01, 3.798472e-01, 3.770074e-01, 3.741640e-01, 3.713171e-01, 3.684667e-01, 3.656130e-01, 3.627557e-01, 3.598950e-01, 3.570309e-01, 3.541634e-01, 3.512927e-01, 3.484186e-01, 3.455412e-01, 3.426607e-01, 3.397769e-01,
3.368897e-01, 3.339996e-01, 3.311063e-01, 3.282098e-01, 3.253102e-01, 3.224076e-01, 3.195020e-01, 3.165933e-01, 3.136817e-01, 3.107671e-01, 3.078495e-01, 3.049291e-01, 3.020059e-01, 2.990798e-01, 2.961508e-01, 2.932191e-01,
2.902846e-01, 2.873474e-01, 2.844075e-01, 2.814649e-01, 2.785196e-01, 2.755717e-01, 2.726213e-01, 2.696682e-01, 2.667127e-01, 2.637546e-01, 2.607940e-01, 2.578311e-01, 2.548656e-01, 2.518978e-01, 2.489276e-01, 2.459550e-01,
2.429801e-01, 2.400030e-01, 2.370236e-01, 2.340419e-01, 2.310580e-01, 2.280720e-01, 2.250838e-01, 2.220936e-01, 2.191012e-01, 2.161068e-01, 2.131102e-01, 2.101117e-01, 2.071114e-01, 2.041090e-01, 2.011045e-01, 1.980983e-01,
1.950903e-01, 1.920804e-01, 1.890686e-01, 1.860551e-01, 1.830398e-01, 1.800228e-01, 1.770042e-01, 1.739838e-01, 1.709619e-01, 1.679382e-01, 1.649131e-01, 1.618863e-01, 1.588581e-01, 1.558284e-01, 1.527971e-01, 1.497644e-01,
1.467304e-01, 1.436950e-01, 1.406581e-01, 1.376201e-01, 1.345806e-01, 1.315399e-01, 1.284981e-01, 1.254549e-01, 1.224107e-01, 1.193651e-01, 1.163186e-01, 1.132709e-01, 1.102221e-01, 1.071724e-01, 1.041216e-01, 1.010698e-01,
9.801710e-02, 9.496343e-02, 9.190893e-02, 8.885348e-02, 8.579731e-02, 8.274019e-02, 7.968235e-02, 7.662380e-02, 7.356453e-02, 7.050455e-02, 6.744385e-02, 6.438255e-02, 6.132066e-02, 5.825818e-02, 5.519521e-02, 5.213165e-02,
4.906762e-02, 4.600310e-02, 4.293823e-02, 3.987288e-02, 3.680718e-02, 3.374112e-02, 3.067470e-02, 2.760804e-02, 2.454114e-02, 2.147400e-02, 1.840663e-02, 1.533914e-02, 1.227152e-02, 9.203672e-03, 6.135821e-03, 3.067851e-03,
0.000000e+00, -3.067970e-03, -6.135941e-03, -9.203792e-03, -1.227164e-02, -1.533926e-02, -1.840675e-02, -2.147412e-02, -2.454126e-02, -2.760816e-02, -3.067482e-02, -3.374124e-02, -3.680730e-02, -3.987300e-02, -4.293835e-02, -4.600322e-02,
-4.906774e-02, -5.213177e-02, -5.519533e-02, -5.825830e-02, -6.132078e-02, -6.438267e-02, -6.744397e-02, -7.050467e-02, -7.356465e-02, -7.662392e-02, -7.968247e-02, -8.274031e-02, -8.579743e-02, -8.885360e-02, -9.190905e-02, -9.496355e-02,
-9.801722e-02, -1.010699e-01, -1.041217e-01, -1.071725e-01, -1.102222e-01, -1.132710e-01, -1.163187e-01, -1.193652e-01, -1.224108e-01, -1.254550e-01, -1.284982e-01, -1.315401e-01, -1.345807e-01, -1.376202e-01, -1.406583e-01, -1.436951e-01,
-1.467305e-01, -1.497645e-01, -1.527972e-01, -1.558285e-01, -1.588582e-01, -1.618865e-01, -1.649132e-01, -1.679384e-01, -1.709620e-01, -1.739839e-01, -1.770043e-01, -1.800230e-01, -1.830399e-01, -1.860552e-01, -1.890687e-01, -1.920805e-01,
-1.950904e-01, -1.980984e-01, -2.011046e-01, -2.041091e-01, -2.071115e-01, -2.101119e-01, -2.131103e-01, -2.161069e-01, -2.191013e-01, -2.220937e-01, -2.250839e-01, -2.280722e-01, -2.310581e-01, -2.340420e-01, -2.370237e-01, -2.400031e-01,
-2.429802e-01, -2.459551e-01, -2.489277e-01, -2.518979e-01, -2.548658e-01, -2.578312e-01, -2.607942e-01, -2.637547e-01, -2.667128e-01, -2.696683e-01, -2.726214e-01, -2.755718e-01, -2.785197e-01, -2.814651e-01, -2.844076e-01, -2.873476e-01,
-2.902848e-01, -2.932192e-01, -2.961509e-01, -2.990799e-01, -3.020060e-01, -3.049293e-01, -3.078496e-01, -3.107672e-01, -3.136818e-01, -3.165934e-01, -3.195021e-01, -3.224077e-01, -3.253103e-01, -3.282099e-01, -3.311064e-01, -3.339998e-01,
-3.368899e-01, -3.397770e-01, -3.426608e-01, -3.455414e-01, -3.484187e-01, -3.512928e-01, -3.541635e-01, -3.570310e-01, -3.598951e-01, -3.627558e-01, -3.656131e-01, -3.684669e-01, -3.713173e-01, -3.741641e-01, -3.770075e-01, -3.798473e-01,
-3.826835e-01, -3.855162e-01, -3.883451e-01, -3.911705e-01, -3.939921e-01, -3.968101e-01, -3.996242e-01, -4.024347e-01, -4.052414e-01, -4.080442e-01, -4.108433e-01, -4.136384e-01, -4.164296e-01, -4.192170e-01, -4.220003e-01, -4.247798e-01,
-4.275552e-01, -4.303266e-01, -4.330939e-01, -4.358572e-01, -4.386163e-01, -4.413713e-01, -4.441222e-01, -4.468689e-01, -4.496114e-01, -4.523497e-01, -4.550836e-01, -4.578134e-01, -4.605387e-01, -4.632598e-01, -4.659766e-01, -4.686888e-01,
-4.713968e-01, -4.741002e-01, -4.767992e-01, -4.794939e-01, -4.821838e-01, -4.848694e-01, -4.875503e-01, -4.902265e-01, -4.928982e-01, -4.955653e-01, -4.982277e-01, -5.008855e-01, -5.035385e-01, -5.061867e-01, -5.088302e-01, -5.114689e-01,
-5.141028e-01, -5.167319e-01, -5.193560e-01, -5.219754e-01, -5.245898e-01, -5.271991e-01, -5.298036e-01, -5.324032e-01, -5.349977e-01, -5.375872e-01, -5.401715e-01, -5.427508e-01, -5.453250e-01, -5.478941e-01, -5.504581e-01, -5.530168e-01,
-5.555702e-01, -5.581186e-01, -5.606617e-01, -5.631994e-01, -5.657319e-01, -5.682590e-01, -5.707808e-01, -5.732973e-01, -5.758083e-01, -5.783138e-01, -5.808140e-01, -5.833087e-01, -5.857979e-01, -5.882816e-01, -5.907598e-01, -5.932324e-01,
-5.956993e-01, -5.981607e-01, -6.006166e-01, -6.030667e-01, -6.055111e-01, -6.079499e-01, -6.103829e-01, -6.128101e-01, -6.152316e-01, -6.176474e-01, -6.200572e-01, -6.224613e-01, -6.248596e-01, -6.272519e-01, -6.296383e-01, -6.320188e-01,
-6.343933e-01, -6.367619e-01, -6.391245e-01, -6.414810e-01, -6.438316e-01, -6.461761e-01, -6.485145e-01, -6.508467e-01, -6.531729e-01, -6.554929e-01, -6.578068e-01, -6.601144e-01, -6.624159e-01, -6.647110e-01, -6.669999e-01, -6.692827e-01,
-6.715590e-01, -6.738291e-01, -6.760927e-01, -6.783501e-01, -6.806010e-01, -6.828456e-01, -6.850837e-01, -6.873153e-01, -6.895406e-01, -6.917593e-01, -6.939715e-01, -6.961772e-01, -6.983763e-01, -7.005688e-01, -7.027549e-01, -7.049341e-01,
-7.071068e-01, -7.092729e-01, -7.114322e-01, -7.135849e-01, -7.157309e-01, -7.178701e-01, -7.200025e-01, -7.221283e-01, -7.242471e-01, -7.263592e-01, -7.284645e-01, -7.305628e-01, -7.326543e-01, -7.347389e-01, -7.368166e-01, -7.388874e-01,
-7.409512e-01, -7.430080e-01, -7.450578e-01, -7.471007e-01, -7.491364e-01, -7.511652e-01, -7.531868e-01, -7.552015e-01, -7.572089e-01, -7.592093e-01, -7.612025e-01, -7.631885e-01, -7.651674e-01, -7.671390e-01, -7.691034e-01, -7.710606e-01,
-7.730105e-01, -7.749531e-01, -7.768885e-01, -7.788166e-01, -7.807373e-01, -7.826507e-01, -7.845566e-01, -7.864553e-01, -7.883465e-01, -7.902303e-01, -7.921066e-01, -7.939756e-01, -7.958369e-01, -7.976909e-01, -7.995373e-01, -8.013762e-01,
-8.032076e-01, -8.050314e-01, -8.068476e-01, -8.086562e-01, -8.104572e-01, -8.122506e-01, -8.140364e-01, -8.158145e-01, -8.175849e-01, -8.193476e-01, -8.211026e-01, -8.228499e-01, -8.245894e-01, -8.263211e-01, -8.280451e-01, -8.297613e-01,
-8.314697e-01, -8.331702e-01, -8.348629e-01, -8.365477e-01, -8.382248e-01, -8.398938e-01, -8.415550e-01, -8.432083e-01, -8.448536e-01, -8.464910e-01, -8.481205e-01, -8.497418e-01, -8.513552e-01, -8.529607e-01, -8.545580e-01, -8.561474e-01,
-8.577287e-01, -8.593019e-01, -8.608670e-01, -8.624240e-01, -8.639729e-01, -8.655137e-01, -8.670464e-01, -8.685708e-01, -8.700870e-01, -8.715951e-01, -8.730950e-01, -8.745867e-01, -8.760701e-01, -8.775454e-01, -8.790122e-01, -8.804710e-01,
-8.819213e-01, -8.833634e-01, -8.847972e-01, -8.862226e-01, -8.876396e-01, -8.890485e-01, -8.904488e-01, -8.918408e-01, -8.932244e-01, -8.945996e-01, -8.959663e-01, -8.973247e-01, -8.986745e-01, -9.000160e-01, -9.013489e-01, -9.026734e-01,
-9.039893e-01, -9.052968e-01, -9.065957e-01, -9.078861e-01, -9.091680e-01, -9.104414e-01, -9.117061e-01, -9.129622e-01, -9.142098e-01, -9.154488e-01, -9.166791e-01, -9.179008e-01, -9.191139e-01, -9.203184e-01, -9.215142e-01, -9.227012e-01,
-9.238796e-01, -9.250493e-01, -9.262103e-01, -9.273626e-01, -9.285061e-01, -9.296410e-01, -9.307671e-01, -9.318843e-01, -9.329928e-01, -9.340926e-01, -9.351835e-01, -9.362657e-01, -9.373391e-01, -9.384036e-01, -9.394593e-01, -9.405061e-01,
-9.415442e-01, -9.425733e-01, -9.435935e-01, -9.446049e-01, -9.456074e-01, -9.466009e-01, -9.475857e-01, -9.485614e-01, -9.495282e-01, -9.504862e-01, -9.514351e-01, -9.523751e-01, -9.533061e-01, -9.542282e-01, -9.551412e-01, -9.560453e-01,
-9.569404e-01, -9.578265e-01, -9.587035e-01, -9.595716e-01, -9.604306e-01, -9.612806e-01, -9.621215e-01, -9.629533e-01, -9.637761e-01, -9.645898e-01, -9.653945e-01, -9.661901e-01, -9.669765e-01, -9.677539e-01, -9.685222e-01, -9.692813e-01,
-9.700313e-01, -9.707721e-01, -9.715040e-01, -9.722265e-01, -9.729400e-01, -9.736443e-01, -9.743395e-01, -9.750254e-01, -9.757022e-01, -9.763697e-01, -9.770283e-01, -9.776775e-01, -9.783174e-01, -9.789482e-01, -9.795698e-01, -9.801822e-01,
-9.807854e-01, -9.813793e-01, -9.819639e-01, -9.825394e-01, -9.831055e-01, -9.836625e-01, -9.842101e-01, -9.847486e-01, -9.852777e-01, -9.857975e-01, -9.863081e-01, -9.868095e-01, -9.873015e-01, -9.877841e-01, -9.882576e-01, -9.887217e-01,
-9.891765e-01, -9.896221e-01, -9.900583e-01, -9.904852e-01, -9.909027e-01, -9.913110e-01, -9.917098e-01, -9.920994e-01, -9.924796e-01, -9.928504e-01, -9.932120e-01, -9.935642e-01, -9.939070e-01, -9.942405e-01, -9.945647e-01, -9.948794e-01,
-9.951848e-01, -9.954808e-01, -9.957675e-01, -9.960448e-01, -9.963126e-01, -9.965712e-01, -9.968203e-01, -9.970602e-01, -9.972905e-01, -9.975115e-01, -9.977231e-01, -9.979254e-01, -9.981182e-01, -9.983016e-01, -9.984757e-01, -9.986403e-01,
-9.987955e-01, -9.989413e-01, -9.990778e-01, -9.992049e-01, -9.993224e-01, -9.994307e-01, -9.995295e-01, -9.996189e-01, -9.996989e-01, -9.997694e-01, -9.998306e-01, -9.998825e-01, -9.999248e-01, -9.999577e-01, -9.999813e-01, -9.999954e-01,
-1.000000e+00, -9.999954e-01, -9.999813e-01, -9.999577e-01, -9.999248e-01, -9.998825e-01, -9.998306e-01, -9.997694e-01, -9.996989e-01, -9.996189e-01, -9.995295e-01, -9.994307e-01, -9.993224e-01, -9.992049e-01, -9.990778e-01, -9.989413e-01,
-9.987955e-01, -9.986403e-01, -9.984757e-01, -9.983016e-01, -9.981182e-01, -9.979254e-01, -9.977231e-01, -9.975115e-01, -9.972905e-01, -9.970602e-01, -9.968203e-01, -9.965712e-01, -9.963126e-01, -9.960448e-01, -9.957675e-01, -9.954808e-01,
-9.951848e-01, -9.948794e-01, -9.945647e-01, -9.942405e-01, -9.939070e-01, -9.935642e-01, -9.932120e-01, -9.928504e-01, -9.924796e-01, -9.920994e-01, -9.917098e-01, -9.913110e-01, -9.909027e-01, -9.904852e-01, -9.900583e-01, -9.896221e-01,
-9.891765e-01, -9.887217e-01, -9.882576e-01, -9.877841e-01, -9.873015e-01, -9.868095e-01, -9.863081e-01, -9.857975e-01, -9.852777e-01, -9.847486e-01, -9.842101e-01, -9.836625e-01, -9.831055e-01, -9.825394e-01, -9.819639e-01, -9.813793e-01,
-9.807854e-01, -9.801822e-01, -9.795698e-01, -9.789482e-01, -9.783174e-01, -9.776775e-01, -9.770283e-01, -9.763697e-01, -9.757022e-01, -9.750254e-01, -9.743395e-01, -9.736443e-01, -9.729400e-01, -9.722265e-01, -9.715040e-01, -9.707721e-01,
-9.700313e-01, -9.692813e-01, -9.685222e-01, -9.677539e-01, -9.669765e-01, -9.661901e-01, -9.653945e-01, -9.645898e-01, -9.637761e-01, -9.629533e-01, -9.621215e-01, -9.612806e-01, -9.604306e-01, -9.595716e-01, -9.587035e-01, -9.578265e-01,
-9.569404e-01, -9.560453e-01, -9.551412e-01, -9.542282e-01, -9.533061e-01, -9.523751e-01, -9.514351e-01, -9.504862e-01, -9.495282e-01, -9.485614e-01, -9.475857e-01, -9.466009e-01, -9.456074e-01, -9.446049e-01, -9.435935e-01, -9.425733e-01,
-9.415442e-01, -9.405061e-01, -9.394593e-01, -9.384036e-01, -9.373391e-01, -9.362657e-01, -9.351835e-01, -9.340926e-01, -9.329928e-01, -9.318843e-01, -9.307671e-01, -9.296410e-01, -9.285061e-01, -9.273626e-01, -9.262103e-01, -9.250493e-01,
-9.238796e-01, -9.227012e-01, -9.215142e-01, -9.203184e-01, -9.191139e-01, -9.179008e-01, -9.166791e-01, -9.154488e-01, -9.142098e-01, -9.129622e-01, -9.117061e-01, -9.104414e-01, -9.091680e-01, -9.078861e-01, -9.065957e-01, -9.052968e-01,
-9.039893e-01, -9.026734e-01, -9.013489e-01, -9.000160e-01, -8.986745e-01, -8.973247e-01, -8.959663e-01, -8.945996e-01, -8.932244e-01, -8.918408e-01, -8.904488e-01, -8.890485e-01, -8.876396e-01, -8.862226e-01, -8.847972e-01, -8.833634e-01,
-8.819213e-01, -8.804710e-01, -8.790122e-01, -8.775454e-01, -8.760701e-01, -8.745867e-01, -8.730950e-01, -8.715951e-01, -8.700870e-01, -8.685708e-01, -8.670464e-01, -8.655137e-01, -8.639729e-01, -8.624240e-01, -8.608670e-01, -8.593019e-01,
-8.577287e-01, -8.561474e-01, -8.545580e-01, -8.529607e-01, -8.513552e-01, -8.497418e-01, -8.481205e-01, -8.464910e-01, -8.448536e-01, -8.432083e-01, -8.415550e-01, -8.398938e-01, -8.382248e-01, -8.365477e-01, -8.348629e-01, -8.331702e-01,
-8.314697e-01, -8.297613e-01, -8.280451e-01, -8.263211e-01, -8.245894e-01, -8.228499e-01, -8.211026e-01, -8.193476e-01, -8.175849e-01, -8.158145e-01, -8.140364e-01, -8.122506e-01, -8.104572e-01, -8.086562e-01, -8.068476e-01, -8.050314e-01,
-8.032076e-01, -8.013762e-01, -7.995373e-01, -7.976909e-01, -7.958369e-01, -7.939756e-01, -7.921066e-01, -7.902303e-01, -7.883465e-01, -7.864553e-01, -7.845566e-01, -7.826507e-01, -7.807373e-01, -7.788166e-01, -7.768885e-01, -7.749531e-01,
-7.730105e-01, -7.710606e-01, -7.691034e-01, -7.671390e-01, -7.651674e-01, -7.631885e-01, -7.612025e-01, -7.592093e-01, -7.572089e-01, -7.552015e-01, -7.531868e-01, -7.511652e-01, -7.491364e-01, -7.471007e-01, -7.450578e-01, -7.430080e-01,
-7.409512e-01, -7.388874e-01, -7.368166e-01, -7.347389e-01, -7.326543e-01, -7.305628e-01, -7.284645e-01, -7.263592e-01, -7.242471e-01, -7.221283e-01, -7.200025e-01, -7.178701e-01, -7.157309e-01, -7.135849e-01, -7.114322e-01, -7.092729e-01,
-7.071068e-01, -7.049341e-01, -7.027549e-01, -7.005688e-01, -6.983763e-01, -6.961772e-01, -6.939715e-01, -6.917593e-01, -6.895406e-01, -6.873153e-01, -6.850837e-01, -6.828456e-01, -6.806010e-01, -6.783501e-01, -6.760927e-01, -6.738291e-01,
-6.715590e-01, -6.692827e-01, -6.669999e-01, -6.647110e-01, -6.624159e-01, -6.601144e-01, -6.578068e-01, -6.554929e-01, -6.531729e-01, -6.508467e-01, -6.485145e-01, -6.461761e-01, -6.438316e-01, -6.414810e-01, -6.391245e-01, -6.367619e-01,
-6.343933e-01, -6.320188e-01, -6.296383e-01, -6.272519e-01, -6.248596e-01, -6.224613e-01, -6.200572e-01, -6.176474e-01, -6.152316e-01, -6.128101e-01, -6.103829e-01, -6.079499e-01, -6.055111e-01, -6.030667e-01, -6.006166e-01, -5.981607e-01,
-5.956993e-01, -5.932324e-01, -5.907598e-01, -5.882816e-01, -5.857979e-01, -5.833087e-01, -5.808140e-01, -5.783138e-01, -5.758083e-01, -5.732973e-01, -5.707808e-01, -5.682590e-01, -5.657319e-01, -5.631994e-01, -5.606617e-01, -5.581186e-01,
-5.555702e-01, -5.530168e-01, -5.504581e-01, -5.478941e-01, -5.453250e-01, -5.427508e-01, -5.401715e-01, -5.375872e-01, -5.349977e-01, -5.324032e-01, -5.298036e-01, -5.271991e-01, -5.245898e-01, -5.219754e-01, -5.193560e-01, -5.167319e-01,
-5.141028e-01, -5.114689e-01, -5.088302e-01, -5.061867e-01, -5.035385e-01, -5.008855e-01, -4.982277e-01, -4.955653e-01, -4.928982e-01, -4.902265e-01, -4.875503e-01, -4.848694e-01, -4.821838e-01, -4.794939e-01, -4.767992e-01, -4.741002e-01,
-4.713968e-01, -4.686888e-01, -4.659766e-01, -4.632598e-01, -4.605387e-01, -4.578134e-01, -4.550836e-01, -4.523497e-01, -4.496114e-01, -4.468689e-01, -4.441222e-01, -4.413713e-01, -4.386163e-01, -4.358572e-01, -4.330939e-01, -4.303266e-01,
-4.275552e-01, -4.247798e-01, -4.220003e-01, -4.192170e-01, -4.164296e-01, -4.136384e-01, -4.108433e-01, -4.080442e-01, -4.052414e-01, -4.024347e-01, -3.996242e-01, -3.968101e-01, -3.939921e-01, -3.911705e-01, -3.883451e-01, -3.855162e-01,
-3.826835e-01, -3.798473e-01, -3.770075e-01, -3.741641e-01, -3.713173e-01, -3.684669e-01, -3.656131e-01, -3.627558e-01, -3.598951e-01, -3.570310e-01, -3.541635e-01, -3.512928e-01, -3.484187e-01, -3.455414e-01, -3.426608e-01, -3.397770e-01,
-3.368899e-01, -3.339998e-01, -3.311064e-01, -3.282099e-01, -3.253103e-01, -3.224077e-01, -3.195021e-01, -3.165934e-01, -3.136818e-01, -3.107672e-01, -3.078496e-01, -3.049293e-01, -3.020060e-01, -2.990799e-01, -2.961509e-01, -2.932192e-01,
-2.902848e-01, -2.873476e-01, -2.844076e-01, -2.814651e-01, -2.785197e-01, -2.755718e-01, -2.726214e-01, -2.696683e-01, -2.667128e-01, -2.637547e-01, -2.607942e-01, -2.578312e-01, -2.548658e-01, -2.518979e-01, -2.489277e-01, -2.459551e-01,
-2.429802e-01, -2.400031e-01, -2.370237e-01, -2.340420e-01, -2.310581e-01, -2.280722e-01, -2.250839e-01, -2.220937e-01, -2.191013e-01, -2.161069e-01, -2.131103e-01, -2.101119e-01, -2.071115e-01, -2.041091e-01, -2.011046e-01, -1.980984e-01,
-1.950904e-01, -1.920805e-01, -1.890687e-01, -1.860552e-01, -1.830399e-01, -1.800230e-01, -1.770043e-01, -1.739839e-01, -1.709620e-01, -1.679384e-01, -1.649132e-01, -1.618865e-01, -1.588582e-01, -1.558285e-01, -1.527972e-01, -1.497645e-01,
-1.467305e-01, -1.436951e-01, -1.406583e-01, -1.376202e-01, -1.345807e-01, -1.315401e-01, -1.284982e-01, -1.254550e-01, -1.224108e-01, -1.193652e-01, -1.163187e-01, -1.132710e-01, -1.102222e-01, -1.071725e-01, -1.041217e-01, -1.010699e-01,
-9.801722e-02, -9.496355e-02, -9.190905e-02, -8.885360e-02, -8.579743e-02, -8.274031e-02, -7.968247e-02, -7.662392e-02, -7.356465e-02, -7.050467e-02, -6.744397e-02, -6.438267e-02, -6.132078e-02, -5.825830e-02, -5.519533e-02, -5.213177e-02,
-4.906774e-02, -4.600322e-02, -4.293835e-02, -3.987300e-02, -3.680730e-02, -3.374124e-02, -3.067482e-02, -2.760816e-02, -2.454126e-02, -2.147412e-02, -1.840675e-02, -1.533926e-02, -1.227164e-02, -9.203792e-03, -6.135941e-03, -3.067970e-03,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00
};
#endif // WAVETABLE_OPAL_5_H
| 59,868
|
C++
|
.h
| 263
| 221.764259
| 244
| 0.690016
|
RCameron93/FehlerFabrik
| 30
| 3
| 7
|
GPL-3.0
|
9/20/2024, 10:45:25 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,839
|
opal_2.h
|
RCameron93_FehlerFabrik/src/wavetables/opal_wavetable/opal_2.h
|
#ifndef WAVETABLE_OPAL_2_H
#define WAVETABLE_OPAL_2_H
#define WAVETABLE_OPAL_2_LENGTH 4096
static long opal_2_tableLength = 4096;
static float opal_2_waveTable[WAVETABLE_OPAL_2_LENGTH] = {
0.000000e+00, 1.533866e-03, 3.067851e-03, 4.601836e-03, 6.135821e-03, 7.669806e-03, 9.203672e-03, 1.073766e-02, 1.227152e-02, 1.380527e-02, 1.533914e-02, 1.687288e-02, 1.840663e-02, 1.994038e-02, 2.147400e-02, 2.300763e-02,
2.454114e-02, 2.607465e-02, 2.760804e-02, 2.914143e-02, 3.067470e-02, 3.220797e-02, 3.374112e-02, 3.527415e-02, 3.680718e-02, 3.834009e-02, 3.987288e-02, 4.140556e-02, 4.293823e-02, 4.447067e-02, 4.600310e-02, 4.753542e-02,
4.906762e-02, 5.059969e-02, 5.213165e-02, 5.366349e-02, 5.519521e-02, 5.672681e-02, 5.825818e-02, 5.978954e-02, 6.132066e-02, 6.285167e-02, 6.438255e-02, 6.591332e-02, 6.744385e-02, 6.897426e-02, 7.050455e-02, 7.203460e-02,
7.356453e-02, 7.509422e-02, 7.662380e-02, 7.815313e-02, 7.968235e-02, 8.121133e-02, 8.274019e-02, 8.426881e-02, 8.579731e-02, 8.732545e-02, 8.885348e-02, 9.038126e-02, 9.190893e-02, 9.343624e-02, 9.496343e-02, 9.649038e-02,
9.801710e-02, 9.954357e-02, 1.010698e-01, 1.025958e-01, 1.041216e-01, 1.056471e-01, 1.071724e-01, 1.086974e-01, 1.102221e-01, 1.117467e-01, 1.132709e-01, 1.147949e-01, 1.163186e-01, 1.178420e-01, 1.193651e-01, 1.208880e-01,
1.224107e-01, 1.239330e-01, 1.254549e-01, 1.269766e-01, 1.284981e-01, 1.300192e-01, 1.315399e-01, 1.330605e-01, 1.345806e-01, 1.361005e-01, 1.376201e-01, 1.391393e-01, 1.406581e-01, 1.421767e-01, 1.436950e-01, 1.452129e-01,
1.467304e-01, 1.482476e-01, 1.497644e-01, 1.512810e-01, 1.527971e-01, 1.543130e-01, 1.558284e-01, 1.573434e-01, 1.588581e-01, 1.603724e-01, 1.618863e-01, 1.633999e-01, 1.649131e-01, 1.664258e-01, 1.679382e-01, 1.694503e-01,
1.709619e-01, 1.724731e-01, 1.739838e-01, 1.754942e-01, 1.770042e-01, 1.785138e-01, 1.800228e-01, 1.815315e-01, 1.830398e-01, 1.845477e-01, 1.860551e-01, 1.875621e-01, 1.890686e-01, 1.905746e-01, 1.920804e-01, 1.935855e-01,
1.950903e-01, 1.965946e-01, 1.980983e-01, 1.996017e-01, 2.011045e-01, 2.026070e-01, 2.041090e-01, 2.056104e-01, 2.071114e-01, 2.086118e-01, 2.101117e-01, 2.116113e-01, 2.131102e-01, 2.146088e-01, 2.161068e-01, 2.176042e-01,
2.191012e-01, 2.205976e-01, 2.220936e-01, 2.235889e-01, 2.250838e-01, 2.265782e-01, 2.280720e-01, 2.295653e-01, 2.310580e-01, 2.325503e-01, 2.340419e-01, 2.355330e-01, 2.370236e-01, 2.385136e-01, 2.400030e-01, 2.414918e-01,
2.429801e-01, 2.444679e-01, 2.459550e-01, 2.474415e-01, 2.489276e-01, 2.504129e-01, 2.518978e-01, 2.533820e-01, 2.548656e-01, 2.563486e-01, 2.578311e-01, 2.593129e-01, 2.607940e-01, 2.622746e-01, 2.637546e-01, 2.652340e-01,
2.667127e-01, 2.681907e-01, 2.696682e-01, 2.711451e-01, 2.726213e-01, 2.740968e-01, 2.755717e-01, 2.770460e-01, 2.785196e-01, 2.799926e-01, 2.814649e-01, 2.829365e-01, 2.844075e-01, 2.858778e-01, 2.873474e-01, 2.888163e-01,
2.902846e-01, 2.917522e-01, 2.932191e-01, 2.946854e-01, 2.961508e-01, 2.976156e-01, 2.990798e-01, 3.005432e-01, 3.020059e-01, 3.034679e-01, 3.049291e-01, 3.063897e-01, 3.078495e-01, 3.093086e-01, 3.107671e-01, 3.122247e-01,
3.136817e-01, 3.151379e-01, 3.165933e-01, 3.180480e-01, 3.195020e-01, 3.209552e-01, 3.224076e-01, 3.238593e-01, 3.253102e-01, 3.267604e-01, 3.282098e-01, 3.296584e-01, 3.311063e-01, 3.325533e-01, 3.339996e-01, 3.354450e-01,
3.368897e-01, 3.383337e-01, 3.397769e-01, 3.412192e-01, 3.426607e-01, 3.441013e-01, 3.455412e-01, 3.469803e-01, 3.484186e-01, 3.498560e-01, 3.512927e-01, 3.527285e-01, 3.541634e-01, 3.555976e-01, 3.570309e-01, 3.584634e-01,
3.598950e-01, 3.613257e-01, 3.627557e-01, 3.641847e-01, 3.656130e-01, 3.670403e-01, 3.684667e-01, 3.698924e-01, 3.713171e-01, 3.727410e-01, 3.741640e-01, 3.755862e-01, 3.770074e-01, 3.784277e-01, 3.798472e-01, 3.812658e-01,
3.826834e-01, 3.841001e-01, 3.855160e-01, 3.869309e-01, 3.883450e-01, 3.897581e-01, 3.911704e-01, 3.925816e-01, 3.939919e-01, 3.954015e-01, 3.968099e-01, 3.982176e-01, 3.996241e-01, 4.010298e-01, 4.024346e-01, 4.038384e-01,
4.052413e-01, 4.066432e-01, 4.080441e-01, 4.094441e-01, 4.108431e-01, 4.122412e-01, 4.136382e-01, 4.150344e-01, 4.164295e-01, 4.178237e-01, 4.192169e-01, 4.206090e-01, 4.220002e-01, 4.233904e-01, 4.247797e-01, 4.261678e-01,
4.275551e-01, 4.289412e-01, 4.303265e-01, 4.317106e-01, 4.330938e-01, 4.344759e-01, 4.358571e-01, 4.372371e-01, 4.386162e-01, 4.399942e-01, 4.413712e-01, 4.427471e-01, 4.441221e-01, 4.454960e-01, 4.468688e-01, 4.482405e-01,
4.496113e-01, 4.509809e-01, 4.523495e-01, 4.537171e-01, 4.550835e-01, 4.564489e-01, 4.578133e-01, 4.591765e-01, 4.605386e-01, 4.618998e-01, 4.632597e-01, 4.646187e-01, 4.659765e-01, 4.673332e-01, 4.686887e-01, 4.700433e-01,
4.713967e-01, 4.727490e-01, 4.741001e-01, 4.754503e-01, 4.767991e-01, 4.781470e-01, 4.794937e-01, 4.808393e-01, 4.821837e-01, 4.835271e-01, 4.848692e-01, 4.862102e-01, 4.875501e-01, 4.888889e-01, 4.902264e-01, 4.915628e-01,
4.928981e-01, 4.942323e-01, 4.955652e-01, 4.968970e-01, 4.982276e-01, 4.995570e-01, 5.008854e-01, 5.022124e-01, 5.035384e-01, 5.048630e-01, 5.061866e-01, 5.075089e-01, 5.088301e-01, 5.101501e-01, 5.114688e-01, 5.127864e-01,
5.141027e-01, 5.154178e-01, 5.167317e-01, 5.180445e-01, 5.193559e-01, 5.206662e-01, 5.219753e-01, 5.232830e-01, 5.245897e-01, 5.258950e-01, 5.271990e-01, 5.285020e-01, 5.298035e-01, 5.311040e-01, 5.324031e-01, 5.337009e-01,
5.349976e-01, 5.362929e-01, 5.375870e-01, 5.388799e-01, 5.401714e-01, 5.414617e-01, 5.427507e-01, 5.440384e-01, 5.453249e-01, 5.466101e-01, 5.478940e-01, 5.491766e-01, 5.504580e-01, 5.517379e-01, 5.530167e-01, 5.542941e-01,
5.555701e-01, 5.568449e-01, 5.581185e-01, 5.593907e-01, 5.606616e-01, 5.619310e-01, 5.631993e-01, 5.644662e-01, 5.657318e-01, 5.669960e-01, 5.682589e-01, 5.695205e-01, 5.707806e-01, 5.720396e-01, 5.732971e-01, 5.745533e-01,
5.758082e-01, 5.770617e-01, 5.783137e-01, 5.795645e-01, 5.808139e-01, 5.820619e-01, 5.833086e-01, 5.845538e-01, 5.857978e-01, 5.870403e-01, 5.882815e-01, 5.895213e-01, 5.907596e-01, 5.919967e-01, 5.932323e-01, 5.944664e-01,
5.956992e-01, 5.969306e-01, 5.981606e-01, 5.993892e-01, 6.006165e-01, 6.018422e-01, 6.030666e-01, 6.042894e-01, 6.055110e-01, 6.067311e-01, 6.079497e-01, 6.091670e-01, 6.103828e-01, 6.115971e-01, 6.128100e-01, 6.140215e-01,
6.152315e-01, 6.164401e-01, 6.176473e-01, 6.188530e-01, 6.200571e-01, 6.212599e-01, 6.224612e-01, 6.236610e-01, 6.248595e-01, 6.260563e-01, 6.272517e-01, 6.284457e-01, 6.296382e-01, 6.308292e-01, 6.320187e-01, 6.332067e-01,
6.343932e-01, 6.355783e-01, 6.367618e-01, 6.379439e-01, 6.391244e-01, 6.403034e-01, 6.414809e-01, 6.426569e-01, 6.438315e-01, 6.450045e-01, 6.461760e-01, 6.473459e-01, 6.485144e-01, 6.496812e-01, 6.508466e-01, 6.520104e-01,
6.531727e-01, 6.543336e-01, 6.554928e-01, 6.566505e-01, 6.578066e-01, 6.589612e-01, 6.601143e-01, 6.612657e-01, 6.624157e-01, 6.635641e-01, 6.647109e-01, 6.658561e-01, 6.669998e-01, 6.681420e-01, 6.692826e-01, 6.704215e-01,
6.715589e-01, 6.726947e-01, 6.738290e-01, 6.749616e-01, 6.760926e-01, 6.772221e-01, 6.783500e-01, 6.794763e-01, 6.806009e-01, 6.817241e-01, 6.828455e-01, 6.839653e-01, 6.850836e-01, 6.862003e-01, 6.873152e-01, 6.884286e-01,
6.895405e-01, 6.906507e-01, 6.917592e-01, 6.928661e-01, 6.939714e-01, 6.950750e-01, 6.961771e-01, 6.972774e-01, 6.983762e-01, 6.994733e-01, 7.005687e-01, 7.016625e-01, 7.027547e-01, 7.038451e-01, 7.049340e-01, 7.060212e-01,
7.071067e-01, 7.081906e-01, 7.092727e-01, 7.103533e-01, 7.114321e-01, 7.125093e-01, 7.135848e-01, 7.146586e-01, 7.157308e-01, 7.168012e-01, 7.178700e-01, 7.189370e-01, 7.200024e-01, 7.210661e-01, 7.221282e-01, 7.231884e-01,
7.242470e-01, 7.253039e-01, 7.263591e-01, 7.274126e-01, 7.284644e-01, 7.295144e-01, 7.305627e-01, 7.316093e-01, 7.326542e-01, 7.336974e-01, 7.347388e-01, 7.357786e-01, 7.368165e-01, 7.378528e-01, 7.388873e-01, 7.399200e-01,
7.409511e-01, 7.419803e-01, 7.430079e-01, 7.440337e-01, 7.450577e-01, 7.460800e-01, 7.471006e-01, 7.481194e-01, 7.491363e-01, 7.501516e-01, 7.511650e-01, 7.521768e-01, 7.531867e-01, 7.541950e-01, 7.552013e-01, 7.562059e-01,
7.572088e-01, 7.582098e-01, 7.592092e-01, 7.602066e-01, 7.612023e-01, 7.621962e-01, 7.631884e-01, 7.641786e-01, 7.651672e-01, 7.661539e-01, 7.671388e-01, 7.681220e-01, 7.691033e-01, 7.700828e-01, 7.710605e-01, 7.720363e-01,
7.730104e-01, 7.739826e-01, 7.749530e-01, 7.759216e-01, 7.768884e-01, 7.778534e-01, 7.788165e-01, 7.797778e-01, 7.807372e-01, 7.816948e-01, 7.826506e-01, 7.836045e-01, 7.845565e-01, 7.855067e-01, 7.864552e-01, 7.874017e-01,
7.883464e-01, 7.892892e-01, 7.902302e-01, 7.911693e-01, 7.921065e-01, 7.930419e-01, 7.939755e-01, 7.949071e-01, 7.958368e-01, 7.967647e-01, 7.976907e-01, 7.986150e-01, 7.995372e-01, 8.004576e-01, 8.013761e-01, 8.022927e-01,
8.032075e-01, 8.041203e-01, 8.050313e-01, 8.059404e-01, 8.068475e-01, 8.077527e-01, 8.086561e-01, 8.095576e-01, 8.104571e-01, 8.113548e-01, 8.122505e-01, 8.131443e-01, 8.140363e-01, 8.149263e-01, 8.158144e-01, 8.167005e-01,
8.175848e-01, 8.184670e-01, 8.193475e-01, 8.202260e-01, 8.211025e-01, 8.219770e-01, 8.228498e-01, 8.237205e-01, 8.245893e-01, 8.254561e-01, 8.263210e-01, 8.271840e-01, 8.280450e-01, 8.289040e-01, 8.297611e-01, 8.306164e-01,
8.314695e-01, 8.323208e-01, 8.331701e-01, 8.340174e-01, 8.348628e-01, 8.357062e-01, 8.365476e-01, 8.373871e-01, 8.382246e-01, 8.390602e-01, 8.398937e-01, 8.407253e-01, 8.415549e-01, 8.423826e-01, 8.432082e-01, 8.440318e-01,
8.448535e-01, 8.456732e-01, 8.464909e-01, 8.473066e-01, 8.481203e-01, 8.489320e-01, 8.497417e-01, 8.505495e-01, 8.513551e-01, 8.521588e-01, 8.529606e-01, 8.537602e-01, 8.545579e-01, 8.553536e-01, 8.561473e-01, 8.569390e-01,
8.577286e-01, 8.585162e-01, 8.593018e-01, 8.600854e-01, 8.608669e-01, 8.616464e-01, 8.624239e-01, 8.631994e-01, 8.639728e-01, 8.647442e-01, 8.655136e-01, 8.662809e-01, 8.670462e-01, 8.678094e-01, 8.685707e-01, 8.693298e-01,
8.700869e-01, 8.708420e-01, 8.715950e-01, 8.723460e-01, 8.730949e-01, 8.738418e-01, 8.745866e-01, 8.753294e-01, 8.760700e-01, 8.768086e-01, 8.775452e-01, 8.782797e-01, 8.790121e-01, 8.797425e-01, 8.804709e-01, 8.811971e-01,
8.819212e-01, 8.826432e-01, 8.833632e-01, 8.840812e-01, 8.847971e-01, 8.855108e-01, 8.862225e-01, 8.869320e-01, 8.876395e-01, 8.883450e-01, 8.890483e-01, 8.897495e-01, 8.904487e-01, 8.911457e-01, 8.918407e-01, 8.925335e-01,
8.932242e-01, 8.939129e-01, 8.945994e-01, 8.952838e-01, 8.959662e-01, 8.966464e-01, 8.973246e-01, 8.980005e-01, 8.986744e-01, 8.993462e-01, 9.000158e-01, 9.006834e-01, 9.013488e-01, 9.020121e-01, 9.026732e-01, 9.033324e-01,
9.039892e-01, 9.046440e-01, 9.052967e-01, 9.059472e-01, 9.065956e-01, 9.072419e-01, 9.078860e-01, 9.085281e-01, 9.091679e-01, 9.098057e-01, 9.104413e-01, 9.110746e-01, 9.117060e-01, 9.123352e-01, 9.129621e-01, 9.135870e-01,
9.142097e-01, 9.148302e-01, 9.154487e-01, 9.160649e-01, 9.166790e-01, 9.172909e-01, 9.179007e-01, 9.185083e-01, 9.191138e-01, 9.197171e-01, 9.203182e-01, 9.209172e-01, 9.215140e-01, 9.221087e-01, 9.227011e-01, 9.232913e-01,
9.238795e-01, 9.244654e-01, 9.250492e-01, 9.256308e-01, 9.262102e-01, 9.267874e-01, 9.273624e-01, 9.279354e-01, 9.285060e-01, 9.290745e-01, 9.296409e-01, 9.302050e-01, 9.307669e-01, 9.313266e-01, 9.318842e-01, 9.324396e-01,
9.329927e-01, 9.335437e-01, 9.340925e-01, 9.346391e-01, 9.351834e-01, 9.357257e-01, 9.362656e-01, 9.368033e-01, 9.373389e-01, 9.378723e-01, 9.384035e-01, 9.389324e-01, 9.394592e-01, 9.399837e-01, 9.405060e-01, 9.410261e-01,
9.415441e-01, 9.420596e-01, 9.425732e-01, 9.430844e-01, 9.435934e-01, 9.441001e-01, 9.446048e-01, 9.451071e-01, 9.456073e-01, 9.461051e-01, 9.466008e-01, 9.470943e-01, 9.475856e-01, 9.480746e-01, 9.485613e-01, 9.490458e-01,
9.495281e-01, 9.500082e-01, 9.504861e-01, 9.509616e-01, 9.514350e-01, 9.519061e-01, 9.523749e-01, 9.528416e-01, 9.533060e-01, 9.537681e-01, 9.542280e-01, 9.546857e-01, 9.551411e-01, 9.555943e-01, 9.560452e-01, 9.564939e-01,
9.569403e-01, 9.573845e-01, 9.578264e-01, 9.582660e-01, 9.587034e-01, 9.591385e-01, 9.595715e-01, 9.600021e-01, 9.604305e-01, 9.608566e-01, 9.612805e-01, 9.617020e-01, 9.621214e-01, 9.625384e-01, 9.629532e-01, 9.633658e-01,
9.637760e-01, 9.641840e-01, 9.645897e-01, 9.649932e-01, 9.653944e-01, 9.657933e-01, 9.661900e-01, 9.665843e-01, 9.669764e-01, 9.673662e-01, 9.677538e-01, 9.681391e-01, 9.685221e-01, 9.689027e-01, 9.692812e-01, 9.696573e-01,
9.700311e-01, 9.704028e-01, 9.707720e-01, 9.711391e-01, 9.715039e-01, 9.718663e-01, 9.722264e-01, 9.725844e-01, 9.729398e-01, 9.732932e-01, 9.736441e-01, 9.739929e-01, 9.743394e-01, 9.746834e-01, 9.750253e-01, 9.753648e-01,
9.757020e-01, 9.760370e-01, 9.763696e-01, 9.767001e-01, 9.770281e-01, 9.773538e-01, 9.776773e-01, 9.779985e-01, 9.783173e-01, 9.786339e-01, 9.789481e-01, 9.792601e-01, 9.795697e-01, 9.798770e-01, 9.801821e-01, 9.804848e-01,
9.807853e-01, 9.810833e-01, 9.813792e-01, 9.816726e-01, 9.819638e-01, 9.822527e-01, 9.825393e-01, 9.828235e-01, 9.831054e-01, 9.833851e-01, 9.836624e-01, 9.839374e-01, 9.842100e-01, 9.844804e-01, 9.847485e-01, 9.850142e-01,
9.852775e-01, 9.855387e-01, 9.857974e-01, 9.860539e-01, 9.863080e-01, 9.865599e-01, 9.868094e-01, 9.870565e-01, 9.873013e-01, 9.875439e-01, 9.877840e-01, 9.880220e-01, 9.882575e-01, 9.884907e-01, 9.887216e-01, 9.889503e-01,
9.891764e-01, 9.894004e-01, 9.896220e-01, 9.898412e-01, 9.900582e-01, 9.902728e-01, 9.904851e-01, 9.906950e-01, 9.909025e-01, 9.911078e-01, 9.913108e-01, 9.915115e-01, 9.917097e-01, 9.919057e-01, 9.920993e-01, 9.922905e-01,
9.924794e-01, 9.926661e-01, 9.928503e-01, 9.930323e-01, 9.932119e-01, 9.933891e-01, 9.935641e-01, 9.937366e-01, 9.939069e-01, 9.940748e-01, 9.942404e-01, 9.944036e-01, 9.945645e-01, 9.947231e-01, 9.948792e-01, 9.950331e-01,
9.951847e-01, 9.953339e-01, 9.954807e-01, 9.956251e-01, 9.957674e-01, 9.959072e-01, 9.960446e-01, 9.961798e-01, 9.963125e-01, 9.964430e-01, 9.965711e-01, 9.966968e-01, 9.968202e-01, 9.969413e-01, 9.970601e-01, 9.971764e-01,
9.972904e-01, 9.974021e-01, 9.975114e-01, 9.976183e-01, 9.977230e-01, 9.978253e-01, 9.979253e-01, 9.980228e-01, 9.981180e-01, 9.982109e-01, 9.983015e-01, 9.983897e-01, 9.984756e-01, 9.985590e-01, 9.986402e-01, 9.987190e-01,
9.987954e-01, 9.988695e-01, 9.989412e-01, 9.990107e-01, 9.990777e-01, 9.991424e-01, 9.992048e-01, 9.992647e-01, 9.993223e-01, 9.993776e-01, 9.994305e-01, 9.994811e-01, 9.995294e-01, 9.995753e-01, 9.996188e-01, 9.996599e-01,
9.996988e-01, 9.997352e-01, 9.997693e-01, 9.998012e-01, 9.998305e-01, 9.998575e-01, 9.998823e-01, 9.999046e-01, 9.999247e-01, 9.999423e-01, 9.999576e-01, 9.999706e-01, 9.999812e-01, 9.999894e-01, 9.999952e-01, 9.999988e-01,
9.999999e-01, 9.999988e-01, 9.999952e-01, 9.999894e-01, 9.999812e-01, 9.999706e-01, 9.999576e-01, 9.999423e-01, 9.999247e-01, 9.999046e-01, 9.998823e-01, 9.998575e-01, 9.998305e-01, 9.998012e-01, 9.997693e-01, 9.997352e-01,
9.996988e-01, 9.996599e-01, 9.996188e-01, 9.995753e-01, 9.995294e-01, 9.994811e-01, 9.994305e-01, 9.993776e-01, 9.993223e-01, 9.992647e-01, 9.992048e-01, 9.991424e-01, 9.990777e-01, 9.990107e-01, 9.989412e-01, 9.988695e-01,
9.987954e-01, 9.987190e-01, 9.986402e-01, 9.985590e-01, 9.984756e-01, 9.983897e-01, 9.983015e-01, 9.982109e-01, 9.981180e-01, 9.980228e-01, 9.979253e-01, 9.978253e-01, 9.977230e-01, 9.976183e-01, 9.975114e-01, 9.974021e-01,
9.972904e-01, 9.971764e-01, 9.970601e-01, 9.969413e-01, 9.968202e-01, 9.966968e-01, 9.965711e-01, 9.964430e-01, 9.963125e-01, 9.961798e-01, 9.960446e-01, 9.959072e-01, 9.957674e-01, 9.956251e-01, 9.954807e-01, 9.953339e-01,
9.951847e-01, 9.950331e-01, 9.948792e-01, 9.947231e-01, 9.945645e-01, 9.944036e-01, 9.942404e-01, 9.940748e-01, 9.939069e-01, 9.937366e-01, 9.935641e-01, 9.933891e-01, 9.932119e-01, 9.930323e-01, 9.928503e-01, 9.926661e-01,
9.924794e-01, 9.922905e-01, 9.920993e-01, 9.919057e-01, 9.917097e-01, 9.915115e-01, 9.913108e-01, 9.911078e-01, 9.909025e-01, 9.906950e-01, 9.904851e-01, 9.902728e-01, 9.900582e-01, 9.898412e-01, 9.896220e-01, 9.894004e-01,
9.891764e-01, 9.889503e-01, 9.887216e-01, 9.884907e-01, 9.882575e-01, 9.880220e-01, 9.877840e-01, 9.875439e-01, 9.873013e-01, 9.870565e-01, 9.868094e-01, 9.865599e-01, 9.863080e-01, 9.860539e-01, 9.857974e-01, 9.855387e-01,
9.852775e-01, 9.850142e-01, 9.847485e-01, 9.844804e-01, 9.842100e-01, 9.839374e-01, 9.836624e-01, 9.833851e-01, 9.831054e-01, 9.828235e-01, 9.825393e-01, 9.822527e-01, 9.819638e-01, 9.816726e-01, 9.813792e-01, 9.810833e-01,
9.807853e-01, 9.804848e-01, 9.801821e-01, 9.798770e-01, 9.795697e-01, 9.792601e-01, 9.789481e-01, 9.786339e-01, 9.783173e-01, 9.779985e-01, 9.776773e-01, 9.773538e-01, 9.770281e-01, 9.767001e-01, 9.763696e-01, 9.760370e-01,
9.757020e-01, 9.753648e-01, 9.750253e-01, 9.746834e-01, 9.743394e-01, 9.739929e-01, 9.736441e-01, 9.732932e-01, 9.729398e-01, 9.725844e-01, 9.722264e-01, 9.718663e-01, 9.715039e-01, 9.711391e-01, 9.707720e-01, 9.704028e-01,
9.700311e-01, 9.696573e-01, 9.692812e-01, 9.689027e-01, 9.685221e-01, 9.681391e-01, 9.677538e-01, 9.673662e-01, 9.669764e-01, 9.665843e-01, 9.661900e-01, 9.657933e-01, 9.653944e-01, 9.649932e-01, 9.645897e-01, 9.641840e-01,
9.637760e-01, 9.633658e-01, 9.629532e-01, 9.625384e-01, 9.621214e-01, 9.617020e-01, 9.612805e-01, 9.608566e-01, 9.604305e-01, 9.600021e-01, 9.595715e-01, 9.591385e-01, 9.587034e-01, 9.582660e-01, 9.578264e-01, 9.573845e-01,
9.569403e-01, 9.564939e-01, 9.560452e-01, 9.555943e-01, 9.551411e-01, 9.546857e-01, 9.542280e-01, 9.537681e-01, 9.533060e-01, 9.528416e-01, 9.523749e-01, 9.519061e-01, 9.514350e-01, 9.509616e-01, 9.504861e-01, 9.500082e-01,
9.495281e-01, 9.490458e-01, 9.485613e-01, 9.480746e-01, 9.475856e-01, 9.470943e-01, 9.466008e-01, 9.461051e-01, 9.456073e-01, 9.451071e-01, 9.446048e-01, 9.441001e-01, 9.435934e-01, 9.430844e-01, 9.425732e-01, 9.420596e-01,
9.415441e-01, 9.410261e-01, 9.405060e-01, 9.399837e-01, 9.394592e-01, 9.389324e-01, 9.384035e-01, 9.378723e-01, 9.373389e-01, 9.368033e-01, 9.362656e-01, 9.357257e-01, 9.351834e-01, 9.346391e-01, 9.340925e-01, 9.335437e-01,
9.329927e-01, 9.324396e-01, 9.318842e-01, 9.313266e-01, 9.307669e-01, 9.302050e-01, 9.296409e-01, 9.290745e-01, 9.285060e-01, 9.279354e-01, 9.273624e-01, 9.267874e-01, 9.262102e-01, 9.256308e-01, 9.250492e-01, 9.244654e-01,
9.238795e-01, 9.232913e-01, 9.227011e-01, 9.221087e-01, 9.215140e-01, 9.209172e-01, 9.203182e-01, 9.197171e-01, 9.191138e-01, 9.185083e-01, 9.179007e-01, 9.172909e-01, 9.166790e-01, 9.160649e-01, 9.154487e-01, 9.148302e-01,
9.142097e-01, 9.135870e-01, 9.129621e-01, 9.123352e-01, 9.117060e-01, 9.110746e-01, 9.104413e-01, 9.098057e-01, 9.091679e-01, 9.085281e-01, 9.078860e-01, 9.072419e-01, 9.065956e-01, 9.059472e-01, 9.052967e-01, 9.046440e-01,
9.039892e-01, 9.033324e-01, 9.026732e-01, 9.020121e-01, 9.013488e-01, 9.006834e-01, 9.000158e-01, 8.993462e-01, 8.986744e-01, 8.980005e-01, 8.973246e-01, 8.966464e-01, 8.959662e-01, 8.952838e-01, 8.945994e-01, 8.939129e-01,
8.932242e-01, 8.925335e-01, 8.918407e-01, 8.911457e-01, 8.904487e-01, 8.897495e-01, 8.890483e-01, 8.883450e-01, 8.876395e-01, 8.869320e-01, 8.862225e-01, 8.855108e-01, 8.847971e-01, 8.840812e-01, 8.833632e-01, 8.826432e-01,
8.819212e-01, 8.811971e-01, 8.804709e-01, 8.797425e-01, 8.790121e-01, 8.782797e-01, 8.775452e-01, 8.768086e-01, 8.760700e-01, 8.753294e-01, 8.745866e-01, 8.738418e-01, 8.730949e-01, 8.723460e-01, 8.715950e-01, 8.708420e-01,
8.700869e-01, 8.693298e-01, 8.685707e-01, 8.678094e-01, 8.670462e-01, 8.662809e-01, 8.655136e-01, 8.647442e-01, 8.639728e-01, 8.631994e-01, 8.624239e-01, 8.616464e-01, 8.608669e-01, 8.600854e-01, 8.593018e-01, 8.585162e-01,
8.577286e-01, 8.569390e-01, 8.561473e-01, 8.553536e-01, 8.545579e-01, 8.537602e-01, 8.529606e-01, 8.521588e-01, 8.513551e-01, 8.505495e-01, 8.497417e-01, 8.489320e-01, 8.481203e-01, 8.473066e-01, 8.464909e-01, 8.456732e-01,
8.448535e-01, 8.440318e-01, 8.432082e-01, 8.423826e-01, 8.415549e-01, 8.407253e-01, 8.398937e-01, 8.390602e-01, 8.382246e-01, 8.373871e-01, 8.365476e-01, 8.357062e-01, 8.348628e-01, 8.340174e-01, 8.331701e-01, 8.323208e-01,
8.314695e-01, 8.306164e-01, 8.297611e-01, 8.289040e-01, 8.280450e-01, 8.271840e-01, 8.263210e-01, 8.254561e-01, 8.245893e-01, 8.237205e-01, 8.228498e-01, 8.219770e-01, 8.211025e-01, 8.202260e-01, 8.193475e-01, 8.184670e-01,
8.175848e-01, 8.167005e-01, 8.158144e-01, 8.149263e-01, 8.140363e-01, 8.131443e-01, 8.122505e-01, 8.113548e-01, 8.104571e-01, 8.095576e-01, 8.086561e-01, 8.077527e-01, 8.068475e-01, 8.059404e-01, 8.050313e-01, 8.041203e-01,
8.032075e-01, 8.022927e-01, 8.013761e-01, 8.004576e-01, 7.995372e-01, 7.986150e-01, 7.976907e-01, 7.967647e-01, 7.958368e-01, 7.949071e-01, 7.939755e-01, 7.930419e-01, 7.921065e-01, 7.911693e-01, 7.902302e-01, 7.892892e-01,
7.883464e-01, 7.874017e-01, 7.864552e-01, 7.855067e-01, 7.845565e-01, 7.836045e-01, 7.826506e-01, 7.816948e-01, 7.807372e-01, 7.797778e-01, 7.788165e-01, 7.778534e-01, 7.768884e-01, 7.759216e-01, 7.749530e-01, 7.739826e-01,
7.730104e-01, 7.720363e-01, 7.710605e-01, 7.700828e-01, 7.691033e-01, 7.681220e-01, 7.671388e-01, 7.661539e-01, 7.651672e-01, 7.641786e-01, 7.631884e-01, 7.621962e-01, 7.612023e-01, 7.602066e-01, 7.592092e-01, 7.582098e-01,
7.572088e-01, 7.562059e-01, 7.552013e-01, 7.541950e-01, 7.531867e-01, 7.521768e-01, 7.511650e-01, 7.501516e-01, 7.491363e-01, 7.481194e-01, 7.471006e-01, 7.460800e-01, 7.450577e-01, 7.440337e-01, 7.430079e-01, 7.419803e-01,
7.409511e-01, 7.399200e-01, 7.388873e-01, 7.378528e-01, 7.368165e-01, 7.357786e-01, 7.347388e-01, 7.336974e-01, 7.326542e-01, 7.316093e-01, 7.305627e-01, 7.295144e-01, 7.284644e-01, 7.274126e-01, 7.263591e-01, 7.253039e-01,
7.242470e-01, 7.231884e-01, 7.221282e-01, 7.210661e-01, 7.200024e-01, 7.189370e-01, 7.178700e-01, 7.168012e-01, 7.157308e-01, 7.146586e-01, 7.135848e-01, 7.125093e-01, 7.114321e-01, 7.103533e-01, 7.092727e-01, 7.081906e-01,
7.071067e-01, 7.060212e-01, 7.049340e-01, 7.038451e-01, 7.027547e-01, 7.016625e-01, 7.005687e-01, 6.994733e-01, 6.983762e-01, 6.972774e-01, 6.961771e-01, 6.950750e-01, 6.939714e-01, 6.928661e-01, 6.917592e-01, 6.906507e-01,
6.895405e-01, 6.884286e-01, 6.873152e-01, 6.862003e-01, 6.850836e-01, 6.839653e-01, 6.828455e-01, 6.817241e-01, 6.806009e-01, 6.794763e-01, 6.783500e-01, 6.772221e-01, 6.760926e-01, 6.749616e-01, 6.738290e-01, 6.726947e-01,
6.715589e-01, 6.704215e-01, 6.692826e-01, 6.681420e-01, 6.669998e-01, 6.658561e-01, 6.647109e-01, 6.635641e-01, 6.624157e-01, 6.612657e-01, 6.601143e-01, 6.589612e-01, 6.578066e-01, 6.566505e-01, 6.554928e-01, 6.543336e-01,
6.531727e-01, 6.520104e-01, 6.508466e-01, 6.496812e-01, 6.485144e-01, 6.473459e-01, 6.461760e-01, 6.450045e-01, 6.438315e-01, 6.426569e-01, 6.414809e-01, 6.403034e-01, 6.391244e-01, 6.379439e-01, 6.367618e-01, 6.355783e-01,
6.343932e-01, 6.332067e-01, 6.320187e-01, 6.308292e-01, 6.296382e-01, 6.284457e-01, 6.272517e-01, 6.260563e-01, 6.248595e-01, 6.236610e-01, 6.224612e-01, 6.212599e-01, 6.200571e-01, 6.188530e-01, 6.176473e-01, 6.164401e-01,
6.152315e-01, 6.140215e-01, 6.128100e-01, 6.115971e-01, 6.103828e-01, 6.091670e-01, 6.079497e-01, 6.067311e-01, 6.055110e-01, 6.042894e-01, 6.030666e-01, 6.018422e-01, 6.006165e-01, 5.993892e-01, 5.981606e-01, 5.969306e-01,
5.956992e-01, 5.944664e-01, 5.932323e-01, 5.919967e-01, 5.907596e-01, 5.895213e-01, 5.882815e-01, 5.870403e-01, 5.857978e-01, 5.845538e-01, 5.833086e-01, 5.820619e-01, 5.808139e-01, 5.795645e-01, 5.783137e-01, 5.770617e-01,
5.758082e-01, 5.745533e-01, 5.732971e-01, 5.720396e-01, 5.707806e-01, 5.695205e-01, 5.682589e-01, 5.669960e-01, 5.657318e-01, 5.644662e-01, 5.631993e-01, 5.619310e-01, 5.606616e-01, 5.593907e-01, 5.581185e-01, 5.568449e-01,
5.555701e-01, 5.542941e-01, 5.530167e-01, 5.517379e-01, 5.504580e-01, 5.491766e-01, 5.478940e-01, 5.466101e-01, 5.453249e-01, 5.440384e-01, 5.427507e-01, 5.414617e-01, 5.401714e-01, 5.388799e-01, 5.375870e-01, 5.362929e-01,
5.349976e-01, 5.337009e-01, 5.324031e-01, 5.311040e-01, 5.298035e-01, 5.285020e-01, 5.271990e-01, 5.258950e-01, 5.245897e-01, 5.232830e-01, 5.219753e-01, 5.206662e-01, 5.193559e-01, 5.180445e-01, 5.167317e-01, 5.154178e-01,
5.141027e-01, 5.127864e-01, 5.114688e-01, 5.101501e-01, 5.088301e-01, 5.075089e-01, 5.061866e-01, 5.048630e-01, 5.035384e-01, 5.022124e-01, 5.008854e-01, 4.995570e-01, 4.982276e-01, 4.968970e-01, 4.955652e-01, 4.942323e-01,
4.928981e-01, 4.915628e-01, 4.902264e-01, 4.888889e-01, 4.875501e-01, 4.862102e-01, 4.848692e-01, 4.835271e-01, 4.821837e-01, 4.808393e-01, 4.794937e-01, 4.781470e-01, 4.767991e-01, 4.754503e-01, 4.741001e-01, 4.727490e-01,
4.713967e-01, 4.700433e-01, 4.686887e-01, 4.673332e-01, 4.659765e-01, 4.646187e-01, 4.632597e-01, 4.618998e-01, 4.605386e-01, 4.591765e-01, 4.578133e-01, 4.564489e-01, 4.550835e-01, 4.537171e-01, 4.523495e-01, 4.509809e-01,
4.496113e-01, 4.482405e-01, 4.468688e-01, 4.454960e-01, 4.441221e-01, 4.427471e-01, 4.413712e-01, 4.399942e-01, 4.386162e-01, 4.372371e-01, 4.358571e-01, 4.344759e-01, 4.330938e-01, 4.317106e-01, 4.303265e-01, 4.289412e-01,
4.275551e-01, 4.261678e-01, 4.247797e-01, 4.233904e-01, 4.220002e-01, 4.206090e-01, 4.192169e-01, 4.178237e-01, 4.164295e-01, 4.150344e-01, 4.136382e-01, 4.122412e-01, 4.108431e-01, 4.094441e-01, 4.080441e-01, 4.066432e-01,
4.052413e-01, 4.038384e-01, 4.024346e-01, 4.010298e-01, 3.996241e-01, 3.982176e-01, 3.968099e-01, 3.954015e-01, 3.939919e-01, 3.925816e-01, 3.911704e-01, 3.897581e-01, 3.883450e-01, 3.869309e-01, 3.855160e-01, 3.841001e-01,
3.826834e-01, 3.812658e-01, 3.798472e-01, 3.784277e-01, 3.770074e-01, 3.755862e-01, 3.741640e-01, 3.727410e-01, 3.713171e-01, 3.698924e-01, 3.684667e-01, 3.670403e-01, 3.656130e-01, 3.641847e-01, 3.627557e-01, 3.613257e-01,
3.598950e-01, 3.584634e-01, 3.570309e-01, 3.555976e-01, 3.541634e-01, 3.527285e-01, 3.512927e-01, 3.498560e-01, 3.484186e-01, 3.469803e-01, 3.455412e-01, 3.441013e-01, 3.426607e-01, 3.412192e-01, 3.397769e-01, 3.383337e-01,
3.368897e-01, 3.354450e-01, 3.339996e-01, 3.325533e-01, 3.311063e-01, 3.296584e-01, 3.282098e-01, 3.267604e-01, 3.253102e-01, 3.238593e-01, 3.224076e-01, 3.209552e-01, 3.195020e-01, 3.180480e-01, 3.165933e-01, 3.151379e-01,
3.136817e-01, 3.122247e-01, 3.107671e-01, 3.093086e-01, 3.078495e-01, 3.063897e-01, 3.049291e-01, 3.034679e-01, 3.020059e-01, 3.005432e-01, 2.990798e-01, 2.976156e-01, 2.961508e-01, 2.946854e-01, 2.932191e-01, 2.917522e-01,
2.902846e-01, 2.888163e-01, 2.873474e-01, 2.858778e-01, 2.844075e-01, 2.829365e-01, 2.814649e-01, 2.799926e-01, 2.785196e-01, 2.770460e-01, 2.755717e-01, 2.740968e-01, 2.726213e-01, 2.711451e-01, 2.696682e-01, 2.681907e-01,
2.667127e-01, 2.652340e-01, 2.637546e-01, 2.622746e-01, 2.607940e-01, 2.593129e-01, 2.578311e-01, 2.563486e-01, 2.548656e-01, 2.533820e-01, 2.518978e-01, 2.504129e-01, 2.489276e-01, 2.474415e-01, 2.459550e-01, 2.444679e-01,
2.429801e-01, 2.414918e-01, 2.400030e-01, 2.385136e-01, 2.370236e-01, 2.355330e-01, 2.340419e-01, 2.325503e-01, 2.310580e-01, 2.295653e-01, 2.280720e-01, 2.265782e-01, 2.250838e-01, 2.235889e-01, 2.220936e-01, 2.205976e-01,
2.191012e-01, 2.176042e-01, 2.161068e-01, 2.146088e-01, 2.131102e-01, 2.116113e-01, 2.101117e-01, 2.086118e-01, 2.071114e-01, 2.056104e-01, 2.041090e-01, 2.026070e-01, 2.011045e-01, 1.996017e-01, 1.980983e-01, 1.965946e-01,
1.950903e-01, 1.935855e-01, 1.920804e-01, 1.905746e-01, 1.890686e-01, 1.875621e-01, 1.860551e-01, 1.845477e-01, 1.830398e-01, 1.815315e-01, 1.800228e-01, 1.785138e-01, 1.770042e-01, 1.754942e-01, 1.739838e-01, 1.724731e-01,
1.709619e-01, 1.694503e-01, 1.679382e-01, 1.664258e-01, 1.649131e-01, 1.633999e-01, 1.618863e-01, 1.603724e-01, 1.588581e-01, 1.573434e-01, 1.558284e-01, 1.543130e-01, 1.527971e-01, 1.512810e-01, 1.497644e-01, 1.482476e-01,
1.467304e-01, 1.452129e-01, 1.436950e-01, 1.421767e-01, 1.406581e-01, 1.391393e-01, 1.376201e-01, 1.361005e-01, 1.345806e-01, 1.330605e-01, 1.315399e-01, 1.300192e-01, 1.284981e-01, 1.269766e-01, 1.254549e-01, 1.239330e-01,
1.224107e-01, 1.208880e-01, 1.193651e-01, 1.178420e-01, 1.163186e-01, 1.147949e-01, 1.132709e-01, 1.117467e-01, 1.102221e-01, 1.086974e-01, 1.071724e-01, 1.056471e-01, 1.041216e-01, 1.025958e-01, 1.010698e-01, 9.954357e-02,
9.801710e-02, 9.649038e-02, 9.496343e-02, 9.343624e-02, 9.190893e-02, 9.038126e-02, 8.885348e-02, 8.732545e-02, 8.579731e-02, 8.426881e-02, 8.274019e-02, 8.121133e-02, 7.968235e-02, 7.815313e-02, 7.662380e-02, 7.509422e-02,
7.356453e-02, 7.203460e-02, 7.050455e-02, 6.897426e-02, 6.744385e-02, 6.591332e-02, 6.438255e-02, 6.285167e-02, 6.132066e-02, 5.978954e-02, 5.825818e-02, 5.672681e-02, 5.519521e-02, 5.366349e-02, 5.213165e-02, 5.059969e-02,
4.906762e-02, 4.753542e-02, 4.600310e-02, 4.447067e-02, 4.293823e-02, 4.140556e-02, 3.987288e-02, 3.834009e-02, 3.680718e-02, 3.527415e-02, 3.374112e-02, 3.220797e-02, 3.067470e-02, 2.914143e-02, 2.760804e-02, 2.607465e-02,
2.454114e-02, 2.300763e-02, 2.147400e-02, 1.994038e-02, 1.840663e-02, 1.687288e-02, 1.533914e-02, 1.380527e-02, 1.227152e-02, 1.073766e-02, 9.203672e-03, 7.669806e-03, 6.135821e-03, 4.601836e-03, 3.067851e-03, 1.533866e-03,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00
};
#endif // WAVETABLE_OPAL_2_H
| 58,845
|
C++
|
.h
| 263
| 217.874525
| 228
| 0.702066
|
RCameron93/FehlerFabrik
| 30
| 3
| 7
|
GPL-3.0
|
9/20/2024, 10:45:25 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,840
|
opal_wavetable.h
|
RCameron93_FehlerFabrik/src/wavetables/opal_wavetable/opal_wavetable.h
|
#ifndef WAVETABLE_OPAL_H
#define WAVETABLE_OPAL_H
#define WAVETABLE_OPAL_NUM 8
#include "opal_1.h"
#include "opal_2.h"
#include "opal_3.h"
#include "opal_4.h"
#include "opal_5.h"
#include "opal_6.h"
#include "opal_7.h"
#include "opal_8.h"
static float* wavetable_opal[WAVETABLE_OPAL_NUM] = {
opal_1_waveTable,
opal_2_waveTable,
opal_3_waveTable,
opal_4_waveTable,
opal_5_waveTable,
opal_6_waveTable,
opal_7_waveTable,
opal_8_waveTable
};
static long wavetable_opal_lengths[WAVETABLE_OPAL_NUM] = {
opal_1_tableLength,
opal_2_tableLength,
opal_3_tableLength,
opal_4_tableLength,
opal_5_tableLength,
opal_6_tableLength,
opal_7_tableLength,
opal_8_tableLength
};
#endif // WAVETABLE_OPAL_H
| 754
|
C++
|
.h
| 32
| 20.4375
| 58
| 0.713092
|
RCameron93/FehlerFabrik
| 30
| 3
| 7
|
GPL-3.0
|
9/20/2024, 10:45:25 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,841
|
opal_6.h
|
RCameron93_FehlerFabrik/src/wavetables/opal_wavetable/opal_6.h
|
#ifndef WAVETABLE_OPAL_6_H
#define WAVETABLE_OPAL_6_H
#define WAVETABLE_OPAL_6_LENGTH 4096
static long opal_6_tableLength = 4096;
static float opal_6_waveTable[WAVETABLE_OPAL_6_LENGTH] = {
0.000000e+00, 3.067851e-03, 6.135821e-03, 9.203672e-03, 1.227152e-02, 1.533914e-02, 1.840663e-02, 2.147400e-02, 2.454114e-02, 2.760804e-02, 3.067470e-02, 3.374112e-02, 3.680718e-02, 3.987288e-02, 4.293823e-02, 4.600310e-02,
4.906762e-02, 5.213165e-02, 5.519521e-02, 5.825818e-02, 6.132066e-02, 6.438255e-02, 6.744385e-02, 7.050455e-02, 7.356453e-02, 7.662380e-02, 7.968235e-02, 8.274019e-02, 8.579731e-02, 8.885348e-02, 9.190893e-02, 9.496343e-02,
9.801710e-02, 1.010698e-01, 1.041216e-01, 1.071724e-01, 1.102221e-01, 1.132709e-01, 1.163186e-01, 1.193651e-01, 1.224107e-01, 1.254549e-01, 1.284981e-01, 1.315399e-01, 1.345806e-01, 1.376201e-01, 1.406581e-01, 1.436950e-01,
1.467304e-01, 1.497644e-01, 1.527971e-01, 1.558284e-01, 1.588581e-01, 1.618863e-01, 1.649131e-01, 1.679382e-01, 1.709619e-01, 1.739838e-01, 1.770042e-01, 1.800228e-01, 1.830398e-01, 1.860551e-01, 1.890686e-01, 1.920804e-01,
1.950903e-01, 1.980983e-01, 2.011045e-01, 2.041090e-01, 2.071114e-01, 2.101117e-01, 2.131102e-01, 2.161068e-01, 2.191012e-01, 2.220936e-01, 2.250838e-01, 2.280720e-01, 2.310580e-01, 2.340419e-01, 2.370236e-01, 2.400030e-01,
2.429801e-01, 2.459550e-01, 2.489276e-01, 2.518978e-01, 2.548656e-01, 2.578311e-01, 2.607940e-01, 2.637546e-01, 2.667127e-01, 2.696682e-01, 2.726213e-01, 2.755717e-01, 2.785196e-01, 2.814649e-01, 2.844075e-01, 2.873474e-01,
2.902846e-01, 2.932191e-01, 2.961508e-01, 2.990798e-01, 3.020059e-01, 3.049291e-01, 3.078495e-01, 3.107671e-01, 3.136817e-01, 3.165933e-01, 3.195020e-01, 3.224076e-01, 3.253102e-01, 3.282098e-01, 3.311063e-01, 3.339996e-01,
3.368897e-01, 3.397769e-01, 3.426607e-01, 3.455412e-01, 3.484186e-01, 3.512927e-01, 3.541634e-01, 3.570309e-01, 3.598950e-01, 3.627557e-01, 3.656130e-01, 3.684667e-01, 3.713171e-01, 3.741640e-01, 3.770074e-01, 3.798472e-01,
3.826834e-01, 3.855160e-01, 3.883450e-01, 3.911704e-01, 3.939919e-01, 3.968099e-01, 3.996241e-01, 4.024346e-01, 4.052413e-01, 4.080441e-01, 4.108431e-01, 4.136382e-01, 4.164295e-01, 4.192169e-01, 4.220002e-01, 4.247797e-01,
4.275551e-01, 4.303265e-01, 4.330938e-01, 4.358571e-01, 4.386162e-01, 4.413712e-01, 4.441221e-01, 4.468688e-01, 4.496113e-01, 4.523495e-01, 4.550835e-01, 4.578133e-01, 4.605386e-01, 4.632597e-01, 4.659765e-01, 4.686887e-01,
4.713967e-01, 4.741001e-01, 4.767991e-01, 4.794937e-01, 4.821837e-01, 4.848692e-01, 4.875501e-01, 4.902264e-01, 4.928981e-01, 4.955652e-01, 4.982276e-01, 5.008854e-01, 5.035384e-01, 5.061866e-01, 5.088301e-01, 5.114688e-01,
5.141027e-01, 5.167317e-01, 5.193559e-01, 5.219753e-01, 5.245897e-01, 5.271990e-01, 5.298035e-01, 5.324031e-01, 5.349976e-01, 5.375870e-01, 5.401714e-01, 5.427507e-01, 5.453249e-01, 5.478940e-01, 5.504580e-01, 5.530167e-01,
5.555701e-01, 5.581185e-01, 5.606616e-01, 5.631993e-01, 5.657318e-01, 5.682589e-01, 5.707806e-01, 5.732971e-01, 5.758082e-01, 5.783137e-01, 5.808139e-01, 5.833086e-01, 5.857978e-01, 5.882815e-01, 5.907596e-01, 5.932323e-01,
5.956992e-01, 5.981606e-01, 6.006165e-01, 6.030666e-01, 6.055110e-01, 6.079497e-01, 6.103828e-01, 6.128100e-01, 6.152315e-01, 6.176473e-01, 6.200571e-01, 6.224612e-01, 6.248595e-01, 6.272517e-01, 6.296382e-01, 6.320187e-01,
6.343932e-01, 6.367618e-01, 6.391244e-01, 6.414809e-01, 6.438315e-01, 6.461760e-01, 6.485144e-01, 6.508466e-01, 6.531727e-01, 6.554928e-01, 6.578066e-01, 6.601143e-01, 6.624157e-01, 6.647109e-01, 6.669998e-01, 6.692826e-01,
6.715589e-01, 6.738290e-01, 6.760926e-01, 6.783500e-01, 6.806009e-01, 6.828455e-01, 6.850836e-01, 6.873152e-01, 6.895405e-01, 6.917592e-01, 6.939714e-01, 6.961771e-01, 6.983762e-01, 7.005687e-01, 7.027547e-01, 7.049340e-01,
7.071067e-01, 7.092727e-01, 7.114321e-01, 7.135848e-01, 7.157308e-01, 7.178700e-01, 7.200024e-01, 7.221282e-01, 7.242470e-01, 7.263591e-01, 7.284644e-01, 7.305627e-01, 7.326542e-01, 7.347388e-01, 7.368165e-01, 7.388873e-01,
7.409511e-01, 7.430079e-01, 7.450577e-01, 7.471006e-01, 7.491363e-01, 7.511650e-01, 7.531867e-01, 7.552013e-01, 7.572088e-01, 7.592092e-01, 7.612023e-01, 7.631884e-01, 7.651672e-01, 7.671388e-01, 7.691033e-01, 7.710605e-01,
7.730104e-01, 7.749530e-01, 7.768884e-01, 7.788165e-01, 7.807372e-01, 7.826506e-01, 7.845565e-01, 7.864552e-01, 7.883464e-01, 7.902302e-01, 7.921065e-01, 7.939755e-01, 7.958368e-01, 7.976907e-01, 7.995372e-01, 8.013761e-01,
8.032075e-01, 8.050313e-01, 8.068475e-01, 8.086561e-01, 8.104571e-01, 8.122505e-01, 8.140363e-01, 8.158144e-01, 8.175848e-01, 8.193475e-01, 8.211025e-01, 8.228498e-01, 8.245893e-01, 8.263210e-01, 8.280450e-01, 8.297611e-01,
8.314695e-01, 8.331701e-01, 8.348628e-01, 8.365476e-01, 8.382246e-01, 8.398937e-01, 8.415549e-01, 8.432082e-01, 8.448535e-01, 8.464909e-01, 8.481203e-01, 8.497417e-01, 8.513551e-01, 8.529606e-01, 8.545579e-01, 8.561473e-01,
8.577286e-01, 8.593018e-01, 8.608669e-01, 8.624239e-01, 8.639728e-01, 8.655136e-01, 8.670462e-01, 8.685707e-01, 8.700869e-01, 8.715950e-01, 8.730949e-01, 8.745866e-01, 8.760700e-01, 8.775452e-01, 8.790121e-01, 8.804709e-01,
8.819212e-01, 8.833632e-01, 8.847971e-01, 8.862225e-01, 8.876395e-01, 8.890483e-01, 8.904487e-01, 8.918407e-01, 8.932242e-01, 8.945994e-01, 8.959662e-01, 8.973246e-01, 8.986744e-01, 9.000158e-01, 9.013488e-01, 9.026732e-01,
9.039892e-01, 9.052967e-01, 9.065956e-01, 9.078860e-01, 9.091679e-01, 9.104413e-01, 9.117060e-01, 9.129621e-01, 9.142097e-01, 9.154487e-01, 9.166790e-01, 9.179007e-01, 9.191138e-01, 9.203182e-01, 9.215140e-01, 9.227011e-01,
9.238795e-01, 9.250492e-01, 9.262102e-01, 9.273624e-01, 9.285060e-01, 9.296409e-01, 9.307669e-01, 9.318842e-01, 9.329927e-01, 9.340925e-01, 9.351834e-01, 9.362656e-01, 9.373389e-01, 9.384035e-01, 9.394592e-01, 9.405060e-01,
9.415441e-01, 9.425732e-01, 9.435934e-01, 9.446048e-01, 9.456073e-01, 9.466008e-01, 9.475856e-01, 9.485613e-01, 9.495281e-01, 9.504861e-01, 9.514350e-01, 9.523749e-01, 9.533060e-01, 9.542280e-01, 9.551411e-01, 9.560452e-01,
9.569403e-01, 9.578264e-01, 9.587034e-01, 9.595715e-01, 9.604305e-01, 9.612805e-01, 9.621214e-01, 9.629532e-01, 9.637760e-01, 9.645897e-01, 9.653944e-01, 9.661900e-01, 9.669764e-01, 9.677538e-01, 9.685221e-01, 9.692812e-01,
9.700311e-01, 9.707720e-01, 9.715039e-01, 9.722264e-01, 9.729398e-01, 9.736441e-01, 9.743394e-01, 9.750253e-01, 9.757020e-01, 9.763696e-01, 9.770281e-01, 9.776773e-01, 9.783173e-01, 9.789481e-01, 9.795697e-01, 9.801821e-01,
9.807853e-01, 9.813792e-01, 9.819638e-01, 9.825393e-01, 9.831054e-01, 9.836624e-01, 9.842100e-01, 9.847485e-01, 9.852775e-01, 9.857974e-01, 9.863080e-01, 9.868094e-01, 9.873013e-01, 9.877840e-01, 9.882575e-01, 9.887216e-01,
9.891764e-01, 9.896220e-01, 9.900582e-01, 9.904851e-01, 9.909025e-01, 9.913108e-01, 9.917097e-01, 9.920993e-01, 9.924794e-01, 9.928503e-01, 9.932119e-01, 9.935641e-01, 9.939069e-01, 9.942404e-01, 9.945645e-01, 9.948792e-01,
9.951847e-01, 9.954807e-01, 9.957674e-01, 9.960446e-01, 9.963125e-01, 9.965711e-01, 9.968202e-01, 9.970601e-01, 9.972904e-01, 9.975114e-01, 9.977230e-01, 9.979253e-01, 9.981180e-01, 9.983015e-01, 9.984756e-01, 9.986402e-01,
9.987954e-01, 9.989412e-01, 9.990777e-01, 9.992048e-01, 9.993223e-01, 9.994305e-01, 9.995294e-01, 9.996188e-01, 9.996988e-01, 9.997693e-01, 9.998305e-01, 9.998823e-01, 9.999247e-01, 9.999576e-01, 9.999812e-01, 9.999952e-01,
9.999999e-01, 9.999952e-01, 9.999812e-01, 9.999576e-01, 9.999247e-01, 9.998823e-01, 9.998305e-01, 9.997693e-01, 9.996988e-01, 9.996188e-01, 9.995294e-01, 9.994305e-01, 9.993223e-01, 9.992048e-01, 9.990777e-01, 9.989412e-01,
9.987954e-01, 9.986402e-01, 9.984756e-01, 9.983015e-01, 9.981180e-01, 9.979253e-01, 9.977230e-01, 9.975114e-01, 9.972904e-01, 9.970601e-01, 9.968202e-01, 9.965711e-01, 9.963125e-01, 9.960446e-01, 9.957674e-01, 9.954807e-01,
9.951847e-01, 9.948792e-01, 9.945645e-01, 9.942404e-01, 9.939069e-01, 9.935641e-01, 9.932119e-01, 9.928503e-01, 9.924794e-01, 9.920993e-01, 9.917097e-01, 9.913108e-01, 9.909025e-01, 9.904851e-01, 9.900582e-01, 9.896220e-01,
9.891764e-01, 9.887216e-01, 9.882575e-01, 9.877840e-01, 9.873013e-01, 9.868094e-01, 9.863080e-01, 9.857974e-01, 9.852775e-01, 9.847485e-01, 9.842100e-01, 9.836624e-01, 9.831054e-01, 9.825393e-01, 9.819638e-01, 9.813792e-01,
9.807853e-01, 9.801821e-01, 9.795697e-01, 9.789481e-01, 9.783173e-01, 9.776773e-01, 9.770281e-01, 9.763696e-01, 9.757020e-01, 9.750253e-01, 9.743394e-01, 9.736441e-01, 9.729398e-01, 9.722264e-01, 9.715039e-01, 9.707720e-01,
9.700311e-01, 9.692812e-01, 9.685221e-01, 9.677538e-01, 9.669764e-01, 9.661900e-01, 9.653944e-01, 9.645897e-01, 9.637760e-01, 9.629532e-01, 9.621214e-01, 9.612805e-01, 9.604305e-01, 9.595715e-01, 9.587034e-01, 9.578264e-01,
9.569403e-01, 9.560452e-01, 9.551411e-01, 9.542280e-01, 9.533060e-01, 9.523749e-01, 9.514350e-01, 9.504861e-01, 9.495281e-01, 9.485613e-01, 9.475856e-01, 9.466008e-01, 9.456073e-01, 9.446048e-01, 9.435934e-01, 9.425732e-01,
9.415441e-01, 9.405060e-01, 9.394592e-01, 9.384035e-01, 9.373389e-01, 9.362656e-01, 9.351834e-01, 9.340925e-01, 9.329927e-01, 9.318842e-01, 9.307669e-01, 9.296409e-01, 9.285060e-01, 9.273624e-01, 9.262102e-01, 9.250492e-01,
9.238795e-01, 9.227011e-01, 9.215140e-01, 9.203182e-01, 9.191138e-01, 9.179007e-01, 9.166790e-01, 9.154487e-01, 9.142097e-01, 9.129621e-01, 9.117060e-01, 9.104413e-01, 9.091679e-01, 9.078860e-01, 9.065956e-01, 9.052967e-01,
9.039892e-01, 9.026732e-01, 9.013488e-01, 9.000158e-01, 8.986744e-01, 8.973246e-01, 8.959662e-01, 8.945994e-01, 8.932242e-01, 8.918407e-01, 8.904487e-01, 8.890483e-01, 8.876395e-01, 8.862225e-01, 8.847971e-01, 8.833632e-01,
8.819212e-01, 8.804709e-01, 8.790121e-01, 8.775452e-01, 8.760700e-01, 8.745866e-01, 8.730949e-01, 8.715950e-01, 8.700869e-01, 8.685707e-01, 8.670462e-01, 8.655136e-01, 8.639728e-01, 8.624239e-01, 8.608669e-01, 8.593018e-01,
8.577286e-01, 8.561473e-01, 8.545579e-01, 8.529606e-01, 8.513551e-01, 8.497417e-01, 8.481203e-01, 8.464909e-01, 8.448535e-01, 8.432082e-01, 8.415549e-01, 8.398937e-01, 8.382246e-01, 8.365476e-01, 8.348628e-01, 8.331701e-01,
8.314695e-01, 8.297611e-01, 8.280450e-01, 8.263210e-01, 8.245893e-01, 8.228498e-01, 8.211025e-01, 8.193475e-01, 8.175848e-01, 8.158144e-01, 8.140363e-01, 8.122505e-01, 8.104571e-01, 8.086561e-01, 8.068475e-01, 8.050313e-01,
8.032075e-01, 8.013761e-01, 7.995372e-01, 7.976907e-01, 7.958368e-01, 7.939755e-01, 7.921065e-01, 7.902302e-01, 7.883464e-01, 7.864552e-01, 7.845565e-01, 7.826506e-01, 7.807372e-01, 7.788165e-01, 7.768884e-01, 7.749530e-01,
7.730104e-01, 7.710605e-01, 7.691033e-01, 7.671388e-01, 7.651672e-01, 7.631884e-01, 7.612023e-01, 7.592092e-01, 7.572088e-01, 7.552013e-01, 7.531867e-01, 7.511650e-01, 7.491363e-01, 7.471006e-01, 7.450577e-01, 7.430079e-01,
7.409511e-01, 7.388873e-01, 7.368165e-01, 7.347388e-01, 7.326542e-01, 7.305627e-01, 7.284644e-01, 7.263591e-01, 7.242470e-01, 7.221282e-01, 7.200024e-01, 7.178700e-01, 7.157308e-01, 7.135848e-01, 7.114321e-01, 7.092727e-01,
7.071067e-01, 7.049340e-01, 7.027547e-01, 7.005687e-01, 6.983762e-01, 6.961771e-01, 6.939714e-01, 6.917592e-01, 6.895405e-01, 6.873152e-01, 6.850836e-01, 6.828455e-01, 6.806009e-01, 6.783500e-01, 6.760926e-01, 6.738290e-01,
6.715589e-01, 6.692826e-01, 6.669998e-01, 6.647109e-01, 6.624157e-01, 6.601143e-01, 6.578066e-01, 6.554928e-01, 6.531727e-01, 6.508466e-01, 6.485144e-01, 6.461760e-01, 6.438315e-01, 6.414809e-01, 6.391244e-01, 6.367618e-01,
6.343932e-01, 6.320187e-01, 6.296382e-01, 6.272517e-01, 6.248595e-01, 6.224612e-01, 6.200571e-01, 6.176473e-01, 6.152315e-01, 6.128100e-01, 6.103828e-01, 6.079497e-01, 6.055110e-01, 6.030666e-01, 6.006165e-01, 5.981606e-01,
5.956992e-01, 5.932323e-01, 5.907596e-01, 5.882815e-01, 5.857978e-01, 5.833086e-01, 5.808139e-01, 5.783137e-01, 5.758082e-01, 5.732971e-01, 5.707806e-01, 5.682589e-01, 5.657318e-01, 5.631993e-01, 5.606616e-01, 5.581185e-01,
5.555701e-01, 5.530167e-01, 5.504580e-01, 5.478940e-01, 5.453249e-01, 5.427507e-01, 5.401714e-01, 5.375870e-01, 5.349976e-01, 5.324031e-01, 5.298035e-01, 5.271990e-01, 5.245897e-01, 5.219753e-01, 5.193559e-01, 5.167317e-01,
5.141027e-01, 5.114688e-01, 5.088301e-01, 5.061866e-01, 5.035384e-01, 5.008854e-01, 4.982276e-01, 4.955652e-01, 4.928981e-01, 4.902264e-01, 4.875501e-01, 4.848692e-01, 4.821837e-01, 4.794937e-01, 4.767991e-01, 4.741001e-01,
4.713967e-01, 4.686887e-01, 4.659765e-01, 4.632597e-01, 4.605386e-01, 4.578133e-01, 4.550835e-01, 4.523495e-01, 4.496113e-01, 4.468688e-01, 4.441221e-01, 4.413712e-01, 4.386162e-01, 4.358571e-01, 4.330938e-01, 4.303265e-01,
4.275551e-01, 4.247797e-01, 4.220002e-01, 4.192169e-01, 4.164295e-01, 4.136382e-01, 4.108431e-01, 4.080441e-01, 4.052413e-01, 4.024346e-01, 3.996241e-01, 3.968099e-01, 3.939919e-01, 3.911704e-01, 3.883450e-01, 3.855160e-01,
3.826834e-01, 3.798472e-01, 3.770074e-01, 3.741640e-01, 3.713171e-01, 3.684667e-01, 3.656130e-01, 3.627557e-01, 3.598950e-01, 3.570309e-01, 3.541634e-01, 3.512927e-01, 3.484186e-01, 3.455412e-01, 3.426607e-01, 3.397769e-01,
3.368897e-01, 3.339996e-01, 3.311063e-01, 3.282098e-01, 3.253102e-01, 3.224076e-01, 3.195020e-01, 3.165933e-01, 3.136817e-01, 3.107671e-01, 3.078495e-01, 3.049291e-01, 3.020059e-01, 2.990798e-01, 2.961508e-01, 2.932191e-01,
2.902846e-01, 2.873474e-01, 2.844075e-01, 2.814649e-01, 2.785196e-01, 2.755717e-01, 2.726213e-01, 2.696682e-01, 2.667127e-01, 2.637546e-01, 2.607940e-01, 2.578311e-01, 2.548656e-01, 2.518978e-01, 2.489276e-01, 2.459550e-01,
2.429801e-01, 2.400030e-01, 2.370236e-01, 2.340419e-01, 2.310580e-01, 2.280720e-01, 2.250838e-01, 2.220936e-01, 2.191012e-01, 2.161068e-01, 2.131102e-01, 2.101117e-01, 2.071114e-01, 2.041090e-01, 2.011045e-01, 1.980983e-01,
1.950903e-01, 1.920804e-01, 1.890686e-01, 1.860551e-01, 1.830398e-01, 1.800228e-01, 1.770042e-01, 1.739838e-01, 1.709619e-01, 1.679382e-01, 1.649131e-01, 1.618863e-01, 1.588581e-01, 1.558284e-01, 1.527971e-01, 1.497644e-01,
1.467304e-01, 1.436950e-01, 1.406581e-01, 1.376201e-01, 1.345806e-01, 1.315399e-01, 1.284981e-01, 1.254549e-01, 1.224107e-01, 1.193651e-01, 1.163186e-01, 1.132709e-01, 1.102221e-01, 1.071724e-01, 1.041216e-01, 1.010698e-01,
9.801710e-02, 9.496343e-02, 9.190893e-02, 8.885348e-02, 8.579731e-02, 8.274019e-02, 7.968235e-02, 7.662380e-02, 7.356453e-02, 7.050455e-02, 6.744385e-02, 6.438255e-02, 6.132066e-02, 5.825818e-02, 5.519521e-02, 5.213165e-02,
4.906762e-02, 4.600310e-02, 4.293823e-02, 3.987288e-02, 3.680718e-02, 3.374112e-02, 3.067470e-02, 2.760804e-02, 2.454114e-02, 2.147400e-02, 1.840663e-02, 1.533914e-02, 1.227152e-02, 9.203672e-03, 6.135821e-03, 3.067851e-03,
0.000000e+00, 3.067851e-03, 6.135821e-03, 9.203672e-03, 1.227152e-02, 1.533914e-02, 1.840663e-02, 2.147400e-02, 2.454114e-02, 2.760804e-02, 3.067470e-02, 3.374112e-02, 3.680718e-02, 3.987288e-02, 4.293823e-02, 4.600310e-02,
4.906762e-02, 5.213165e-02, 5.519521e-02, 5.825818e-02, 6.132066e-02, 6.438255e-02, 6.744385e-02, 7.050455e-02, 7.356453e-02, 7.662380e-02, 7.968235e-02, 8.274019e-02, 8.579731e-02, 8.885348e-02, 9.190893e-02, 9.496343e-02,
9.801710e-02, 1.010698e-01, 1.041216e-01, 1.071724e-01, 1.102221e-01, 1.132709e-01, 1.163186e-01, 1.193651e-01, 1.224107e-01, 1.254549e-01, 1.284981e-01, 1.315399e-01, 1.345806e-01, 1.376201e-01, 1.406581e-01, 1.436950e-01,
1.467304e-01, 1.497644e-01, 1.527971e-01, 1.558284e-01, 1.588581e-01, 1.618863e-01, 1.649131e-01, 1.679382e-01, 1.709619e-01, 1.739838e-01, 1.770042e-01, 1.800228e-01, 1.830398e-01, 1.860551e-01, 1.890686e-01, 1.920804e-01,
1.950903e-01, 1.980983e-01, 2.011045e-01, 2.041090e-01, 2.071114e-01, 2.101117e-01, 2.131102e-01, 2.161068e-01, 2.191012e-01, 2.220936e-01, 2.250838e-01, 2.280720e-01, 2.310580e-01, 2.340419e-01, 2.370236e-01, 2.400030e-01,
2.429801e-01, 2.459550e-01, 2.489276e-01, 2.518978e-01, 2.548656e-01, 2.578311e-01, 2.607940e-01, 2.637546e-01, 2.667127e-01, 2.696682e-01, 2.726213e-01, 2.755717e-01, 2.785196e-01, 2.814649e-01, 2.844075e-01, 2.873474e-01,
2.902846e-01, 2.932191e-01, 2.961508e-01, 2.990798e-01, 3.020059e-01, 3.049291e-01, 3.078495e-01, 3.107671e-01, 3.136817e-01, 3.165933e-01, 3.195020e-01, 3.224076e-01, 3.253102e-01, 3.282098e-01, 3.311063e-01, 3.339996e-01,
3.368897e-01, 3.397769e-01, 3.426607e-01, 3.455412e-01, 3.484186e-01, 3.512927e-01, 3.541634e-01, 3.570309e-01, 3.598950e-01, 3.627557e-01, 3.656130e-01, 3.684667e-01, 3.713171e-01, 3.741640e-01, 3.770074e-01, 3.798472e-01,
3.826834e-01, 3.855160e-01, 3.883450e-01, 3.911704e-01, 3.939919e-01, 3.968099e-01, 3.996241e-01, 4.024346e-01, 4.052413e-01, 4.080441e-01, 4.108431e-01, 4.136382e-01, 4.164295e-01, 4.192169e-01, 4.220002e-01, 4.247797e-01,
4.275551e-01, 4.303265e-01, 4.330938e-01, 4.358571e-01, 4.386162e-01, 4.413712e-01, 4.441221e-01, 4.468688e-01, 4.496113e-01, 4.523495e-01, 4.550835e-01, 4.578133e-01, 4.605386e-01, 4.632597e-01, 4.659765e-01, 4.686887e-01,
4.713967e-01, 4.741001e-01, 4.767991e-01, 4.794937e-01, 4.821837e-01, 4.848692e-01, 4.875501e-01, 4.902264e-01, 4.928981e-01, 4.955652e-01, 4.982276e-01, 5.008854e-01, 5.035384e-01, 5.061866e-01, 5.088301e-01, 5.114688e-01,
5.141027e-01, 5.167317e-01, 5.193559e-01, 5.219753e-01, 5.245897e-01, 5.271990e-01, 5.298035e-01, 5.324031e-01, 5.349976e-01, 5.375870e-01, 5.401714e-01, 5.427507e-01, 5.453249e-01, 5.478940e-01, 5.504580e-01, 5.530167e-01,
5.555701e-01, 5.581185e-01, 5.606616e-01, 5.631993e-01, 5.657318e-01, 5.682589e-01, 5.707806e-01, 5.732971e-01, 5.758082e-01, 5.783137e-01, 5.808139e-01, 5.833086e-01, 5.857978e-01, 5.882815e-01, 5.907596e-01, 5.932323e-01,
5.956992e-01, 5.981606e-01, 6.006165e-01, 6.030666e-01, 6.055110e-01, 6.079497e-01, 6.103828e-01, 6.128100e-01, 6.152315e-01, 6.176473e-01, 6.200571e-01, 6.224612e-01, 6.248595e-01, 6.272517e-01, 6.296382e-01, 6.320187e-01,
6.343932e-01, 6.367618e-01, 6.391244e-01, 6.414809e-01, 6.438315e-01, 6.461760e-01, 6.485144e-01, 6.508466e-01, 6.531727e-01, 6.554928e-01, 6.578066e-01, 6.601143e-01, 6.624157e-01, 6.647109e-01, 6.669998e-01, 6.692826e-01,
6.715589e-01, 6.738290e-01, 6.760926e-01, 6.783500e-01, 6.806009e-01, 6.828455e-01, 6.850836e-01, 6.873152e-01, 6.895405e-01, 6.917592e-01, 6.939714e-01, 6.961771e-01, 6.983762e-01, 7.005687e-01, 7.027547e-01, 7.049340e-01,
7.071067e-01, 7.092727e-01, 7.114321e-01, 7.135848e-01, 7.157308e-01, 7.178700e-01, 7.200024e-01, 7.221282e-01, 7.242470e-01, 7.263591e-01, 7.284644e-01, 7.305627e-01, 7.326542e-01, 7.347388e-01, 7.368165e-01, 7.388873e-01,
7.409511e-01, 7.430079e-01, 7.450577e-01, 7.471006e-01, 7.491363e-01, 7.511650e-01, 7.531867e-01, 7.552013e-01, 7.572088e-01, 7.592092e-01, 7.612023e-01, 7.631884e-01, 7.651672e-01, 7.671388e-01, 7.691033e-01, 7.710605e-01,
7.730104e-01, 7.749530e-01, 7.768884e-01, 7.788165e-01, 7.807372e-01, 7.826506e-01, 7.845565e-01, 7.864552e-01, 7.883464e-01, 7.902302e-01, 7.921065e-01, 7.939755e-01, 7.958368e-01, 7.976907e-01, 7.995372e-01, 8.013761e-01,
8.032075e-01, 8.050313e-01, 8.068475e-01, 8.086561e-01, 8.104571e-01, 8.122505e-01, 8.140363e-01, 8.158144e-01, 8.175848e-01, 8.193475e-01, 8.211025e-01, 8.228498e-01, 8.245893e-01, 8.263210e-01, 8.280450e-01, 8.297611e-01,
8.314695e-01, 8.331701e-01, 8.348628e-01, 8.365476e-01, 8.382246e-01, 8.398937e-01, 8.415549e-01, 8.432082e-01, 8.448535e-01, 8.464909e-01, 8.481203e-01, 8.497417e-01, 8.513551e-01, 8.529606e-01, 8.545579e-01, 8.561473e-01,
8.577286e-01, 8.593018e-01, 8.608669e-01, 8.624239e-01, 8.639728e-01, 8.655136e-01, 8.670462e-01, 8.685707e-01, 8.700869e-01, 8.715950e-01, 8.730949e-01, 8.745866e-01, 8.760700e-01, 8.775452e-01, 8.790121e-01, 8.804709e-01,
8.819212e-01, 8.833632e-01, 8.847971e-01, 8.862225e-01, 8.876395e-01, 8.890483e-01, 8.904487e-01, 8.918407e-01, 8.932242e-01, 8.945994e-01, 8.959662e-01, 8.973246e-01, 8.986744e-01, 9.000158e-01, 9.013488e-01, 9.026732e-01,
9.039892e-01, 9.052967e-01, 9.065956e-01, 9.078860e-01, 9.091679e-01, 9.104413e-01, 9.117060e-01, 9.129621e-01, 9.142097e-01, 9.154487e-01, 9.166790e-01, 9.179007e-01, 9.191138e-01, 9.203182e-01, 9.215140e-01, 9.227011e-01,
9.238795e-01, 9.250492e-01, 9.262102e-01, 9.273624e-01, 9.285060e-01, 9.296409e-01, 9.307669e-01, 9.318842e-01, 9.329927e-01, 9.340925e-01, 9.351834e-01, 9.362656e-01, 9.373389e-01, 9.384035e-01, 9.394592e-01, 9.405060e-01,
9.415441e-01, 9.425732e-01, 9.435934e-01, 9.446048e-01, 9.456073e-01, 9.466008e-01, 9.475856e-01, 9.485613e-01, 9.495281e-01, 9.504861e-01, 9.514350e-01, 9.523749e-01, 9.533060e-01, 9.542280e-01, 9.551411e-01, 9.560452e-01,
9.569403e-01, 9.578264e-01, 9.587034e-01, 9.595715e-01, 9.604305e-01, 9.612805e-01, 9.621214e-01, 9.629532e-01, 9.637760e-01, 9.645897e-01, 9.653944e-01, 9.661900e-01, 9.669764e-01, 9.677538e-01, 9.685221e-01, 9.692812e-01,
9.700311e-01, 9.707720e-01, 9.715039e-01, 9.722264e-01, 9.729398e-01, 9.736441e-01, 9.743394e-01, 9.750253e-01, 9.757020e-01, 9.763696e-01, 9.770281e-01, 9.776773e-01, 9.783173e-01, 9.789481e-01, 9.795697e-01, 9.801821e-01,
9.807853e-01, 9.813792e-01, 9.819638e-01, 9.825393e-01, 9.831054e-01, 9.836624e-01, 9.842100e-01, 9.847485e-01, 9.852775e-01, 9.857974e-01, 9.863080e-01, 9.868094e-01, 9.873013e-01, 9.877840e-01, 9.882575e-01, 9.887216e-01,
9.891764e-01, 9.896220e-01, 9.900582e-01, 9.904851e-01, 9.909025e-01, 9.913108e-01, 9.917097e-01, 9.920993e-01, 9.924794e-01, 9.928503e-01, 9.932119e-01, 9.935641e-01, 9.939069e-01, 9.942404e-01, 9.945645e-01, 9.948792e-01,
9.951847e-01, 9.954807e-01, 9.957674e-01, 9.960446e-01, 9.963125e-01, 9.965711e-01, 9.968202e-01, 9.970601e-01, 9.972904e-01, 9.975114e-01, 9.977230e-01, 9.979253e-01, 9.981180e-01, 9.983015e-01, 9.984756e-01, 9.986402e-01,
9.987954e-01, 9.989412e-01, 9.990777e-01, 9.992048e-01, 9.993223e-01, 9.994305e-01, 9.995294e-01, 9.996188e-01, 9.996988e-01, 9.997693e-01, 9.998305e-01, 9.998823e-01, 9.999247e-01, 9.999576e-01, 9.999812e-01, 9.999952e-01,
9.999999e-01, 9.999952e-01, 9.999812e-01, 9.999576e-01, 9.999247e-01, 9.998823e-01, 9.998305e-01, 9.997693e-01, 9.996988e-01, 9.996188e-01, 9.995294e-01, 9.994305e-01, 9.993223e-01, 9.992048e-01, 9.990777e-01, 9.989412e-01,
9.987954e-01, 9.986402e-01, 9.984756e-01, 9.983015e-01, 9.981180e-01, 9.979253e-01, 9.977230e-01, 9.975114e-01, 9.972904e-01, 9.970601e-01, 9.968202e-01, 9.965711e-01, 9.963125e-01, 9.960446e-01, 9.957674e-01, 9.954807e-01,
9.951847e-01, 9.948792e-01, 9.945645e-01, 9.942404e-01, 9.939069e-01, 9.935641e-01, 9.932119e-01, 9.928503e-01, 9.924794e-01, 9.920993e-01, 9.917097e-01, 9.913108e-01, 9.909025e-01, 9.904851e-01, 9.900582e-01, 9.896220e-01,
9.891764e-01, 9.887216e-01, 9.882575e-01, 9.877840e-01, 9.873013e-01, 9.868094e-01, 9.863080e-01, 9.857974e-01, 9.852775e-01, 9.847485e-01, 9.842100e-01, 9.836624e-01, 9.831054e-01, 9.825393e-01, 9.819638e-01, 9.813792e-01,
9.807853e-01, 9.801821e-01, 9.795697e-01, 9.789481e-01, 9.783173e-01, 9.776773e-01, 9.770281e-01, 9.763696e-01, 9.757020e-01, 9.750253e-01, 9.743394e-01, 9.736441e-01, 9.729398e-01, 9.722264e-01, 9.715039e-01, 9.707720e-01,
9.700311e-01, 9.692812e-01, 9.685221e-01, 9.677538e-01, 9.669764e-01, 9.661900e-01, 9.653944e-01, 9.645897e-01, 9.637760e-01, 9.629532e-01, 9.621214e-01, 9.612805e-01, 9.604305e-01, 9.595715e-01, 9.587034e-01, 9.578264e-01,
9.569403e-01, 9.560452e-01, 9.551411e-01, 9.542280e-01, 9.533060e-01, 9.523749e-01, 9.514350e-01, 9.504861e-01, 9.495281e-01, 9.485613e-01, 9.475856e-01, 9.466008e-01, 9.456073e-01, 9.446048e-01, 9.435934e-01, 9.425732e-01,
9.415441e-01, 9.405060e-01, 9.394592e-01, 9.384035e-01, 9.373389e-01, 9.362656e-01, 9.351834e-01, 9.340925e-01, 9.329927e-01, 9.318842e-01, 9.307669e-01, 9.296409e-01, 9.285060e-01, 9.273624e-01, 9.262102e-01, 9.250492e-01,
9.238795e-01, 9.227011e-01, 9.215140e-01, 9.203182e-01, 9.191138e-01, 9.179007e-01, 9.166790e-01, 9.154487e-01, 9.142097e-01, 9.129621e-01, 9.117060e-01, 9.104413e-01, 9.091679e-01, 9.078860e-01, 9.065956e-01, 9.052967e-01,
9.039892e-01, 9.026732e-01, 9.013488e-01, 9.000158e-01, 8.986744e-01, 8.973246e-01, 8.959662e-01, 8.945994e-01, 8.932242e-01, 8.918407e-01, 8.904487e-01, 8.890483e-01, 8.876395e-01, 8.862225e-01, 8.847971e-01, 8.833632e-01,
8.819212e-01, 8.804709e-01, 8.790121e-01, 8.775452e-01, 8.760700e-01, 8.745866e-01, 8.730949e-01, 8.715950e-01, 8.700869e-01, 8.685707e-01, 8.670462e-01, 8.655136e-01, 8.639728e-01, 8.624239e-01, 8.608669e-01, 8.593018e-01,
8.577286e-01, 8.561473e-01, 8.545579e-01, 8.529606e-01, 8.513551e-01, 8.497417e-01, 8.481203e-01, 8.464909e-01, 8.448535e-01, 8.432082e-01, 8.415549e-01, 8.398937e-01, 8.382246e-01, 8.365476e-01, 8.348628e-01, 8.331701e-01,
8.314695e-01, 8.297611e-01, 8.280450e-01, 8.263210e-01, 8.245893e-01, 8.228498e-01, 8.211025e-01, 8.193475e-01, 8.175848e-01, 8.158144e-01, 8.140363e-01, 8.122505e-01, 8.104571e-01, 8.086561e-01, 8.068475e-01, 8.050313e-01,
8.032075e-01, 8.013761e-01, 7.995372e-01, 7.976907e-01, 7.958368e-01, 7.939755e-01, 7.921065e-01, 7.902302e-01, 7.883464e-01, 7.864552e-01, 7.845565e-01, 7.826506e-01, 7.807372e-01, 7.788165e-01, 7.768884e-01, 7.749530e-01,
7.730104e-01, 7.710605e-01, 7.691033e-01, 7.671388e-01, 7.651672e-01, 7.631884e-01, 7.612023e-01, 7.592092e-01, 7.572088e-01, 7.552013e-01, 7.531867e-01, 7.511650e-01, 7.491363e-01, 7.471006e-01, 7.450577e-01, 7.430079e-01,
7.409511e-01, 7.388873e-01, 7.368165e-01, 7.347388e-01, 7.326542e-01, 7.305627e-01, 7.284644e-01, 7.263591e-01, 7.242470e-01, 7.221282e-01, 7.200024e-01, 7.178700e-01, 7.157308e-01, 7.135848e-01, 7.114321e-01, 7.092727e-01,
7.071067e-01, 7.049340e-01, 7.027547e-01, 7.005687e-01, 6.983762e-01, 6.961771e-01, 6.939714e-01, 6.917592e-01, 6.895405e-01, 6.873152e-01, 6.850836e-01, 6.828455e-01, 6.806009e-01, 6.783500e-01, 6.760926e-01, 6.738290e-01,
6.715589e-01, 6.692826e-01, 6.669998e-01, 6.647109e-01, 6.624157e-01, 6.601143e-01, 6.578066e-01, 6.554928e-01, 6.531727e-01, 6.508466e-01, 6.485144e-01, 6.461760e-01, 6.438315e-01, 6.414809e-01, 6.391244e-01, 6.367618e-01,
6.343932e-01, 6.320187e-01, 6.296382e-01, 6.272517e-01, 6.248595e-01, 6.224612e-01, 6.200571e-01, 6.176473e-01, 6.152315e-01, 6.128100e-01, 6.103828e-01, 6.079497e-01, 6.055110e-01, 6.030666e-01, 6.006165e-01, 5.981606e-01,
5.956992e-01, 5.932323e-01, 5.907596e-01, 5.882815e-01, 5.857978e-01, 5.833086e-01, 5.808139e-01, 5.783137e-01, 5.758082e-01, 5.732971e-01, 5.707806e-01, 5.682589e-01, 5.657318e-01, 5.631993e-01, 5.606616e-01, 5.581185e-01,
5.555701e-01, 5.530167e-01, 5.504580e-01, 5.478940e-01, 5.453249e-01, 5.427507e-01, 5.401714e-01, 5.375870e-01, 5.349976e-01, 5.324031e-01, 5.298035e-01, 5.271990e-01, 5.245897e-01, 5.219753e-01, 5.193559e-01, 5.167317e-01,
5.141027e-01, 5.114688e-01, 5.088301e-01, 5.061866e-01, 5.035384e-01, 5.008854e-01, 4.982276e-01, 4.955652e-01, 4.928981e-01, 4.902264e-01, 4.875501e-01, 4.848692e-01, 4.821837e-01, 4.794937e-01, 4.767991e-01, 4.741001e-01,
4.713967e-01, 4.686887e-01, 4.659765e-01, 4.632597e-01, 4.605386e-01, 4.578133e-01, 4.550835e-01, 4.523495e-01, 4.496113e-01, 4.468688e-01, 4.441221e-01, 4.413712e-01, 4.386162e-01, 4.358571e-01, 4.330938e-01, 4.303265e-01,
4.275551e-01, 4.247797e-01, 4.220002e-01, 4.192169e-01, 4.164295e-01, 4.136382e-01, 4.108431e-01, 4.080441e-01, 4.052413e-01, 4.024346e-01, 3.996241e-01, 3.968099e-01, 3.939919e-01, 3.911704e-01, 3.883450e-01, 3.855160e-01,
3.826834e-01, 3.798472e-01, 3.770074e-01, 3.741640e-01, 3.713171e-01, 3.684667e-01, 3.656130e-01, 3.627557e-01, 3.598950e-01, 3.570309e-01, 3.541634e-01, 3.512927e-01, 3.484186e-01, 3.455412e-01, 3.426607e-01, 3.397769e-01,
3.368897e-01, 3.339996e-01, 3.311063e-01, 3.282098e-01, 3.253102e-01, 3.224076e-01, 3.195020e-01, 3.165933e-01, 3.136817e-01, 3.107671e-01, 3.078495e-01, 3.049291e-01, 3.020059e-01, 2.990798e-01, 2.961508e-01, 2.932191e-01,
2.902846e-01, 2.873474e-01, 2.844075e-01, 2.814649e-01, 2.785196e-01, 2.755717e-01, 2.726213e-01, 2.696682e-01, 2.667127e-01, 2.637546e-01, 2.607940e-01, 2.578311e-01, 2.548656e-01, 2.518978e-01, 2.489276e-01, 2.459550e-01,
2.429801e-01, 2.400030e-01, 2.370236e-01, 2.340419e-01, 2.310580e-01, 2.280720e-01, 2.250838e-01, 2.220936e-01, 2.191012e-01, 2.161068e-01, 2.131102e-01, 2.101117e-01, 2.071114e-01, 2.041090e-01, 2.011045e-01, 1.980983e-01,
1.950903e-01, 1.920804e-01, 1.890686e-01, 1.860551e-01, 1.830398e-01, 1.800228e-01, 1.770042e-01, 1.739838e-01, 1.709619e-01, 1.679382e-01, 1.649131e-01, 1.618863e-01, 1.588581e-01, 1.558284e-01, 1.527971e-01, 1.497644e-01,
1.467304e-01, 1.436950e-01, 1.406581e-01, 1.376201e-01, 1.345806e-01, 1.315399e-01, 1.284981e-01, 1.254549e-01, 1.224107e-01, 1.193651e-01, 1.163186e-01, 1.132709e-01, 1.102221e-01, 1.071724e-01, 1.041216e-01, 1.010698e-01,
9.801710e-02, 9.496343e-02, 9.190893e-02, 8.885348e-02, 8.579731e-02, 8.274019e-02, 7.968235e-02, 7.662380e-02, 7.356453e-02, 7.050455e-02, 6.744385e-02, 6.438255e-02, 6.132066e-02, 5.825818e-02, 5.519521e-02, 5.213165e-02,
4.906762e-02, 4.600310e-02, 4.293823e-02, 3.987288e-02, 3.680718e-02, 3.374112e-02, 3.067470e-02, 2.760804e-02, 2.454114e-02, 2.147400e-02, 1.840663e-02, 1.533914e-02, 1.227152e-02, 9.203672e-03, 6.135821e-03, 3.067851e-03,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00
};
#endif // WAVETABLE_OPAL_6_H
| 58,845
|
C++
|
.h
| 263
| 217.874525
| 228
| 0.702066
|
RCameron93/FehlerFabrik
| 30
| 3
| 7
|
GPL-3.0
|
9/20/2024, 10:45:25 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,842
|
opal_7.h
|
RCameron93_FehlerFabrik/src/wavetables/opal_wavetable/opal_7.h
|
#ifndef WAVETABLE_OPAL_7_H
#define WAVETABLE_OPAL_7_H
#define WAVETABLE_OPAL_7_LENGTH 4096
static long opal_7_tableLength = 4096;
static float opal_7_waveTable[WAVETABLE_OPAL_7_LENGTH] = {
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01, 9.999999e-01,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00,
-1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00, -1.000000e+00
};
#endif // WAVETABLE_OPAL_7_H
| 60,893
|
C++
|
.h
| 263
| 225.661597
| 244
| 0.67835
|
RCameron93/FehlerFabrik
| 30
| 3
| 7
|
GPL-3.0
|
9/20/2024, 10:45:25 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,843
|
opal_3.h
|
RCameron93_FehlerFabrik/src/wavetables/opal_wavetable/opal_3.h
|
#ifndef WAVETABLE_OPAL_3_H
#define WAVETABLE_OPAL_3_H
#define WAVETABLE_OPAL_3_LENGTH 4096
static long opal_3_tableLength = 4096;
static float opal_3_waveTable[WAVETABLE_OPAL_3_LENGTH] = {
0.000000e+00, 1.533866e-03, 3.067851e-03, 4.601836e-03, 6.135821e-03, 7.669806e-03, 9.203672e-03, 1.073766e-02, 1.227152e-02, 1.380527e-02, 1.533914e-02, 1.687288e-02, 1.840663e-02, 1.994038e-02, 2.147400e-02, 2.300763e-02,
2.454114e-02, 2.607465e-02, 2.760804e-02, 2.914143e-02, 3.067470e-02, 3.220797e-02, 3.374112e-02, 3.527415e-02, 3.680718e-02, 3.834009e-02, 3.987288e-02, 4.140556e-02, 4.293823e-02, 4.447067e-02, 4.600310e-02, 4.753542e-02,
4.906762e-02, 5.059969e-02, 5.213165e-02, 5.366349e-02, 5.519521e-02, 5.672681e-02, 5.825818e-02, 5.978954e-02, 6.132066e-02, 6.285167e-02, 6.438255e-02, 6.591332e-02, 6.744385e-02, 6.897426e-02, 7.050455e-02, 7.203460e-02,
7.356453e-02, 7.509422e-02, 7.662380e-02, 7.815313e-02, 7.968235e-02, 8.121133e-02, 8.274019e-02, 8.426881e-02, 8.579731e-02, 8.732545e-02, 8.885348e-02, 9.038126e-02, 9.190893e-02, 9.343624e-02, 9.496343e-02, 9.649038e-02,
9.801710e-02, 9.954357e-02, 1.010698e-01, 1.025958e-01, 1.041216e-01, 1.056471e-01, 1.071724e-01, 1.086974e-01, 1.102221e-01, 1.117467e-01, 1.132709e-01, 1.147949e-01, 1.163186e-01, 1.178420e-01, 1.193651e-01, 1.208880e-01,
1.224107e-01, 1.239330e-01, 1.254549e-01, 1.269766e-01, 1.284981e-01, 1.300192e-01, 1.315399e-01, 1.330605e-01, 1.345806e-01, 1.361005e-01, 1.376201e-01, 1.391393e-01, 1.406581e-01, 1.421767e-01, 1.436950e-01, 1.452129e-01,
1.467304e-01, 1.482476e-01, 1.497644e-01, 1.512810e-01, 1.527971e-01, 1.543130e-01, 1.558284e-01, 1.573434e-01, 1.588581e-01, 1.603724e-01, 1.618863e-01, 1.633999e-01, 1.649131e-01, 1.664258e-01, 1.679382e-01, 1.694503e-01,
1.709619e-01, 1.724731e-01, 1.739838e-01, 1.754942e-01, 1.770042e-01, 1.785138e-01, 1.800228e-01, 1.815315e-01, 1.830398e-01, 1.845477e-01, 1.860551e-01, 1.875621e-01, 1.890686e-01, 1.905746e-01, 1.920804e-01, 1.935855e-01,
1.950903e-01, 1.965946e-01, 1.980983e-01, 1.996017e-01, 2.011045e-01, 2.026070e-01, 2.041090e-01, 2.056104e-01, 2.071114e-01, 2.086118e-01, 2.101117e-01, 2.116113e-01, 2.131102e-01, 2.146088e-01, 2.161068e-01, 2.176042e-01,
2.191012e-01, 2.205976e-01, 2.220936e-01, 2.235889e-01, 2.250838e-01, 2.265782e-01, 2.280720e-01, 2.295653e-01, 2.310580e-01, 2.325503e-01, 2.340419e-01, 2.355330e-01, 2.370236e-01, 2.385136e-01, 2.400030e-01, 2.414918e-01,
2.429801e-01, 2.444679e-01, 2.459550e-01, 2.474415e-01, 2.489276e-01, 2.504129e-01, 2.518978e-01, 2.533820e-01, 2.548656e-01, 2.563486e-01, 2.578311e-01, 2.593129e-01, 2.607940e-01, 2.622746e-01, 2.637546e-01, 2.652340e-01,
2.667127e-01, 2.681907e-01, 2.696682e-01, 2.711451e-01, 2.726213e-01, 2.740968e-01, 2.755717e-01, 2.770460e-01, 2.785196e-01, 2.799926e-01, 2.814649e-01, 2.829365e-01, 2.844075e-01, 2.858778e-01, 2.873474e-01, 2.888163e-01,
2.902846e-01, 2.917522e-01, 2.932191e-01, 2.946854e-01, 2.961508e-01, 2.976156e-01, 2.990798e-01, 3.005432e-01, 3.020059e-01, 3.034679e-01, 3.049291e-01, 3.063897e-01, 3.078495e-01, 3.093086e-01, 3.107671e-01, 3.122247e-01,
3.136817e-01, 3.151379e-01, 3.165933e-01, 3.180480e-01, 3.195020e-01, 3.209552e-01, 3.224076e-01, 3.238593e-01, 3.253102e-01, 3.267604e-01, 3.282098e-01, 3.296584e-01, 3.311063e-01, 3.325533e-01, 3.339996e-01, 3.354450e-01,
3.368897e-01, 3.383337e-01, 3.397769e-01, 3.412192e-01, 3.426607e-01, 3.441013e-01, 3.455412e-01, 3.469803e-01, 3.484186e-01, 3.498560e-01, 3.512927e-01, 3.527285e-01, 3.541634e-01, 3.555976e-01, 3.570309e-01, 3.584634e-01,
3.598950e-01, 3.613257e-01, 3.627557e-01, 3.641847e-01, 3.656130e-01, 3.670403e-01, 3.684667e-01, 3.698924e-01, 3.713171e-01, 3.727410e-01, 3.741640e-01, 3.755862e-01, 3.770074e-01, 3.784277e-01, 3.798472e-01, 3.812658e-01,
3.826834e-01, 3.841001e-01, 3.855160e-01, 3.869309e-01, 3.883450e-01, 3.897581e-01, 3.911704e-01, 3.925816e-01, 3.939919e-01, 3.954015e-01, 3.968099e-01, 3.982176e-01, 3.996241e-01, 4.010298e-01, 4.024346e-01, 4.038384e-01,
4.052413e-01, 4.066432e-01, 4.080441e-01, 4.094441e-01, 4.108431e-01, 4.122412e-01, 4.136382e-01, 4.150344e-01, 4.164295e-01, 4.178237e-01, 4.192169e-01, 4.206090e-01, 4.220002e-01, 4.233904e-01, 4.247797e-01, 4.261678e-01,
4.275551e-01, 4.289412e-01, 4.303265e-01, 4.317106e-01, 4.330938e-01, 4.344759e-01, 4.358571e-01, 4.372371e-01, 4.386162e-01, 4.399942e-01, 4.413712e-01, 4.427471e-01, 4.441221e-01, 4.454960e-01, 4.468688e-01, 4.482405e-01,
4.496113e-01, 4.509809e-01, 4.523495e-01, 4.537171e-01, 4.550835e-01, 4.564489e-01, 4.578133e-01, 4.591765e-01, 4.605386e-01, 4.618998e-01, 4.632597e-01, 4.646187e-01, 4.659765e-01, 4.673332e-01, 4.686887e-01, 4.700433e-01,
4.713967e-01, 4.727490e-01, 4.741001e-01, 4.754503e-01, 4.767991e-01, 4.781470e-01, 4.794937e-01, 4.808393e-01, 4.821837e-01, 4.835271e-01, 4.848692e-01, 4.862102e-01, 4.875501e-01, 4.888889e-01, 4.902264e-01, 4.915628e-01,
4.928981e-01, 4.942323e-01, 4.955652e-01, 4.968970e-01, 4.982276e-01, 4.995570e-01, 5.008854e-01, 5.022124e-01, 5.035384e-01, 5.048630e-01, 5.061866e-01, 5.075089e-01, 5.088301e-01, 5.101501e-01, 5.114688e-01, 5.127864e-01,
5.141027e-01, 5.154178e-01, 5.167317e-01, 5.180445e-01, 5.193559e-01, 5.206662e-01, 5.219753e-01, 5.232830e-01, 5.245897e-01, 5.258950e-01, 5.271990e-01, 5.285020e-01, 5.298035e-01, 5.311040e-01, 5.324031e-01, 5.337009e-01,
5.349976e-01, 5.362929e-01, 5.375870e-01, 5.388799e-01, 5.401714e-01, 5.414617e-01, 5.427507e-01, 5.440384e-01, 5.453249e-01, 5.466101e-01, 5.478940e-01, 5.491766e-01, 5.504580e-01, 5.517379e-01, 5.530167e-01, 5.542941e-01,
5.555701e-01, 5.568449e-01, 5.581185e-01, 5.593907e-01, 5.606616e-01, 5.619310e-01, 5.631993e-01, 5.644662e-01, 5.657318e-01, 5.669960e-01, 5.682589e-01, 5.695205e-01, 5.707806e-01, 5.720396e-01, 5.732971e-01, 5.745533e-01,
5.758082e-01, 5.770617e-01, 5.783137e-01, 5.795645e-01, 5.808139e-01, 5.820619e-01, 5.833086e-01, 5.845538e-01, 5.857978e-01, 5.870403e-01, 5.882815e-01, 5.895213e-01, 5.907596e-01, 5.919967e-01, 5.932323e-01, 5.944664e-01,
5.956992e-01, 5.969306e-01, 5.981606e-01, 5.993892e-01, 6.006165e-01, 6.018422e-01, 6.030666e-01, 6.042894e-01, 6.055110e-01, 6.067311e-01, 6.079497e-01, 6.091670e-01, 6.103828e-01, 6.115971e-01, 6.128100e-01, 6.140215e-01,
6.152315e-01, 6.164401e-01, 6.176473e-01, 6.188530e-01, 6.200571e-01, 6.212599e-01, 6.224612e-01, 6.236610e-01, 6.248595e-01, 6.260563e-01, 6.272517e-01, 6.284457e-01, 6.296382e-01, 6.308292e-01, 6.320187e-01, 6.332067e-01,
6.343932e-01, 6.355783e-01, 6.367618e-01, 6.379439e-01, 6.391244e-01, 6.403034e-01, 6.414809e-01, 6.426569e-01, 6.438315e-01, 6.450045e-01, 6.461760e-01, 6.473459e-01, 6.485144e-01, 6.496812e-01, 6.508466e-01, 6.520104e-01,
6.531727e-01, 6.543336e-01, 6.554928e-01, 6.566505e-01, 6.578066e-01, 6.589612e-01, 6.601143e-01, 6.612657e-01, 6.624157e-01, 6.635641e-01, 6.647109e-01, 6.658561e-01, 6.669998e-01, 6.681420e-01, 6.692826e-01, 6.704215e-01,
6.715589e-01, 6.726947e-01, 6.738290e-01, 6.749616e-01, 6.760926e-01, 6.772221e-01, 6.783500e-01, 6.794763e-01, 6.806009e-01, 6.817241e-01, 6.828455e-01, 6.839653e-01, 6.850836e-01, 6.862003e-01, 6.873152e-01, 6.884286e-01,
6.895405e-01, 6.906507e-01, 6.917592e-01, 6.928661e-01, 6.939714e-01, 6.950750e-01, 6.961771e-01, 6.972774e-01, 6.983762e-01, 6.994733e-01, 7.005687e-01, 7.016625e-01, 7.027547e-01, 7.038451e-01, 7.049340e-01, 7.060212e-01,
7.071067e-01, 7.081906e-01, 7.092727e-01, 7.103533e-01, 7.114321e-01, 7.125093e-01, 7.135848e-01, 7.146586e-01, 7.157308e-01, 7.168012e-01, 7.178700e-01, 7.189370e-01, 7.200024e-01, 7.210661e-01, 7.221282e-01, 7.231884e-01,
7.242470e-01, 7.253039e-01, 7.263591e-01, 7.274126e-01, 7.284644e-01, 7.295144e-01, 7.305627e-01, 7.316093e-01, 7.326542e-01, 7.336974e-01, 7.347388e-01, 7.357786e-01, 7.368165e-01, 7.378528e-01, 7.388873e-01, 7.399200e-01,
7.409511e-01, 7.419803e-01, 7.430079e-01, 7.440337e-01, 7.450577e-01, 7.460800e-01, 7.471006e-01, 7.481194e-01, 7.491363e-01, 7.501516e-01, 7.511650e-01, 7.521768e-01, 7.531867e-01, 7.541950e-01, 7.552013e-01, 7.562059e-01,
7.572088e-01, 7.582098e-01, 7.592092e-01, 7.602066e-01, 7.612023e-01, 7.621962e-01, 7.631884e-01, 7.641786e-01, 7.651672e-01, 7.661539e-01, 7.671388e-01, 7.681220e-01, 7.691033e-01, 7.700828e-01, 7.710605e-01, 7.720363e-01,
7.730104e-01, 7.739826e-01, 7.749530e-01, 7.759216e-01, 7.768884e-01, 7.778534e-01, 7.788165e-01, 7.797778e-01, 7.807372e-01, 7.816948e-01, 7.826506e-01, 7.836045e-01, 7.845565e-01, 7.855067e-01, 7.864552e-01, 7.874017e-01,
7.883464e-01, 7.892892e-01, 7.902302e-01, 7.911693e-01, 7.921065e-01, 7.930419e-01, 7.939755e-01, 7.949071e-01, 7.958368e-01, 7.967647e-01, 7.976907e-01, 7.986150e-01, 7.995372e-01, 8.004576e-01, 8.013761e-01, 8.022927e-01,
8.032075e-01, 8.041203e-01, 8.050313e-01, 8.059404e-01, 8.068475e-01, 8.077527e-01, 8.086561e-01, 8.095576e-01, 8.104571e-01, 8.113548e-01, 8.122505e-01, 8.131443e-01, 8.140363e-01, 8.149263e-01, 8.158144e-01, 8.167005e-01,
8.175848e-01, 8.184670e-01, 8.193475e-01, 8.202260e-01, 8.211025e-01, 8.219770e-01, 8.228498e-01, 8.237205e-01, 8.245893e-01, 8.254561e-01, 8.263210e-01, 8.271840e-01, 8.280450e-01, 8.289040e-01, 8.297611e-01, 8.306164e-01,
8.314695e-01, 8.323208e-01, 8.331701e-01, 8.340174e-01, 8.348628e-01, 8.357062e-01, 8.365476e-01, 8.373871e-01, 8.382246e-01, 8.390602e-01, 8.398937e-01, 8.407253e-01, 8.415549e-01, 8.423826e-01, 8.432082e-01, 8.440318e-01,
8.448535e-01, 8.456732e-01, 8.464909e-01, 8.473066e-01, 8.481203e-01, 8.489320e-01, 8.497417e-01, 8.505495e-01, 8.513551e-01, 8.521588e-01, 8.529606e-01, 8.537602e-01, 8.545579e-01, 8.553536e-01, 8.561473e-01, 8.569390e-01,
8.577286e-01, 8.585162e-01, 8.593018e-01, 8.600854e-01, 8.608669e-01, 8.616464e-01, 8.624239e-01, 8.631994e-01, 8.639728e-01, 8.647442e-01, 8.655136e-01, 8.662809e-01, 8.670462e-01, 8.678094e-01, 8.685707e-01, 8.693298e-01,
8.700869e-01, 8.708420e-01, 8.715950e-01, 8.723460e-01, 8.730949e-01, 8.738418e-01, 8.745866e-01, 8.753294e-01, 8.760700e-01, 8.768086e-01, 8.775452e-01, 8.782797e-01, 8.790121e-01, 8.797425e-01, 8.804709e-01, 8.811971e-01,
8.819212e-01, 8.826432e-01, 8.833632e-01, 8.840812e-01, 8.847971e-01, 8.855108e-01, 8.862225e-01, 8.869320e-01, 8.876395e-01, 8.883450e-01, 8.890483e-01, 8.897495e-01, 8.904487e-01, 8.911457e-01, 8.918407e-01, 8.925335e-01,
8.932242e-01, 8.939129e-01, 8.945994e-01, 8.952838e-01, 8.959662e-01, 8.966464e-01, 8.973246e-01, 8.980005e-01, 8.986744e-01, 8.993462e-01, 9.000158e-01, 9.006834e-01, 9.013488e-01, 9.020121e-01, 9.026732e-01, 9.033324e-01,
9.039892e-01, 9.046440e-01, 9.052967e-01, 9.059472e-01, 9.065956e-01, 9.072419e-01, 9.078860e-01, 9.085281e-01, 9.091679e-01, 9.098057e-01, 9.104413e-01, 9.110746e-01, 9.117060e-01, 9.123352e-01, 9.129621e-01, 9.135870e-01,
9.142097e-01, 9.148302e-01, 9.154487e-01, 9.160649e-01, 9.166790e-01, 9.172909e-01, 9.179007e-01, 9.185083e-01, 9.191138e-01, 9.197171e-01, 9.203182e-01, 9.209172e-01, 9.215140e-01, 9.221087e-01, 9.227011e-01, 9.232913e-01,
9.238795e-01, 9.244654e-01, 9.250492e-01, 9.256308e-01, 9.262102e-01, 9.267874e-01, 9.273624e-01, 9.279354e-01, 9.285060e-01, 9.290745e-01, 9.296409e-01, 9.302050e-01, 9.307669e-01, 9.313266e-01, 9.318842e-01, 9.324396e-01,
9.329927e-01, 9.335437e-01, 9.340925e-01, 9.346391e-01, 9.351834e-01, 9.357257e-01, 9.362656e-01, 9.368033e-01, 9.373389e-01, 9.378723e-01, 9.384035e-01, 9.389324e-01, 9.394592e-01, 9.399837e-01, 9.405060e-01, 9.410261e-01,
9.415441e-01, 9.420596e-01, 9.425732e-01, 9.430844e-01, 9.435934e-01, 9.441001e-01, 9.446048e-01, 9.451071e-01, 9.456073e-01, 9.461051e-01, 9.466008e-01, 9.470943e-01, 9.475856e-01, 9.480746e-01, 9.485613e-01, 9.490458e-01,
9.495281e-01, 9.500082e-01, 9.504861e-01, 9.509616e-01, 9.514350e-01, 9.519061e-01, 9.523749e-01, 9.528416e-01, 9.533060e-01, 9.537681e-01, 9.542280e-01, 9.546857e-01, 9.551411e-01, 9.555943e-01, 9.560452e-01, 9.564939e-01,
9.569403e-01, 9.573845e-01, 9.578264e-01, 9.582660e-01, 9.587034e-01, 9.591385e-01, 9.595715e-01, 9.600021e-01, 9.604305e-01, 9.608566e-01, 9.612805e-01, 9.617020e-01, 9.621214e-01, 9.625384e-01, 9.629532e-01, 9.633658e-01,
9.637760e-01, 9.641840e-01, 9.645897e-01, 9.649932e-01, 9.653944e-01, 9.657933e-01, 9.661900e-01, 9.665843e-01, 9.669764e-01, 9.673662e-01, 9.677538e-01, 9.681391e-01, 9.685221e-01, 9.689027e-01, 9.692812e-01, 9.696573e-01,
9.700311e-01, 9.704028e-01, 9.707720e-01, 9.711391e-01, 9.715039e-01, 9.718663e-01, 9.722264e-01, 9.725844e-01, 9.729398e-01, 9.732932e-01, 9.736441e-01, 9.739929e-01, 9.743394e-01, 9.746834e-01, 9.750253e-01, 9.753648e-01,
9.757020e-01, 9.760370e-01, 9.763696e-01, 9.767001e-01, 9.770281e-01, 9.773538e-01, 9.776773e-01, 9.779985e-01, 9.783173e-01, 9.786339e-01, 9.789481e-01, 9.792601e-01, 9.795697e-01, 9.798770e-01, 9.801821e-01, 9.804848e-01,
9.807853e-01, 9.810833e-01, 9.813792e-01, 9.816726e-01, 9.819638e-01, 9.822527e-01, 9.825393e-01, 9.828235e-01, 9.831054e-01, 9.833851e-01, 9.836624e-01, 9.839374e-01, 9.842100e-01, 9.844804e-01, 9.847485e-01, 9.850142e-01,
9.852775e-01, 9.855387e-01, 9.857974e-01, 9.860539e-01, 9.863080e-01, 9.865599e-01, 9.868094e-01, 9.870565e-01, 9.873013e-01, 9.875439e-01, 9.877840e-01, 9.880220e-01, 9.882575e-01, 9.884907e-01, 9.887216e-01, 9.889503e-01,
9.891764e-01, 9.894004e-01, 9.896220e-01, 9.898412e-01, 9.900582e-01, 9.902728e-01, 9.904851e-01, 9.906950e-01, 9.909025e-01, 9.911078e-01, 9.913108e-01, 9.915115e-01, 9.917097e-01, 9.919057e-01, 9.920993e-01, 9.922905e-01,
9.924794e-01, 9.926661e-01, 9.928503e-01, 9.930323e-01, 9.932119e-01, 9.933891e-01, 9.935641e-01, 9.937366e-01, 9.939069e-01, 9.940748e-01, 9.942404e-01, 9.944036e-01, 9.945645e-01, 9.947231e-01, 9.948792e-01, 9.950331e-01,
9.951847e-01, 9.953339e-01, 9.954807e-01, 9.956251e-01, 9.957674e-01, 9.959072e-01, 9.960446e-01, 9.961798e-01, 9.963125e-01, 9.964430e-01, 9.965711e-01, 9.966968e-01, 9.968202e-01, 9.969413e-01, 9.970601e-01, 9.971764e-01,
9.972904e-01, 9.974021e-01, 9.975114e-01, 9.976183e-01, 9.977230e-01, 9.978253e-01, 9.979253e-01, 9.980228e-01, 9.981180e-01, 9.982109e-01, 9.983015e-01, 9.983897e-01, 9.984756e-01, 9.985590e-01, 9.986402e-01, 9.987190e-01,
9.987954e-01, 9.988695e-01, 9.989412e-01, 9.990107e-01, 9.990777e-01, 9.991424e-01, 9.992048e-01, 9.992647e-01, 9.993223e-01, 9.993776e-01, 9.994305e-01, 9.994811e-01, 9.995294e-01, 9.995753e-01, 9.996188e-01, 9.996599e-01,
9.996988e-01, 9.997352e-01, 9.997693e-01, 9.998012e-01, 9.998305e-01, 9.998575e-01, 9.998823e-01, 9.999046e-01, 9.999247e-01, 9.999423e-01, 9.999576e-01, 9.999706e-01, 9.999812e-01, 9.999894e-01, 9.999952e-01, 9.999988e-01,
9.999999e-01, 9.999988e-01, 9.999952e-01, 9.999894e-01, 9.999812e-01, 9.999706e-01, 9.999576e-01, 9.999423e-01, 9.999247e-01, 9.999046e-01, 9.998823e-01, 9.998575e-01, 9.998305e-01, 9.998012e-01, 9.997693e-01, 9.997352e-01,
9.996988e-01, 9.996599e-01, 9.996188e-01, 9.995753e-01, 9.995294e-01, 9.994811e-01, 9.994305e-01, 9.993776e-01, 9.993223e-01, 9.992647e-01, 9.992048e-01, 9.991424e-01, 9.990777e-01, 9.990107e-01, 9.989412e-01, 9.988695e-01,
9.987954e-01, 9.987190e-01, 9.986402e-01, 9.985590e-01, 9.984756e-01, 9.983897e-01, 9.983015e-01, 9.982109e-01, 9.981180e-01, 9.980228e-01, 9.979253e-01, 9.978253e-01, 9.977230e-01, 9.976183e-01, 9.975114e-01, 9.974021e-01,
9.972904e-01, 9.971764e-01, 9.970601e-01, 9.969413e-01, 9.968202e-01, 9.966968e-01, 9.965711e-01, 9.964430e-01, 9.963125e-01, 9.961798e-01, 9.960446e-01, 9.959072e-01, 9.957674e-01, 9.956251e-01, 9.954807e-01, 9.953339e-01,
9.951847e-01, 9.950331e-01, 9.948792e-01, 9.947231e-01, 9.945645e-01, 9.944036e-01, 9.942404e-01, 9.940748e-01, 9.939069e-01, 9.937366e-01, 9.935641e-01, 9.933891e-01, 9.932119e-01, 9.930323e-01, 9.928503e-01, 9.926661e-01,
9.924794e-01, 9.922905e-01, 9.920993e-01, 9.919057e-01, 9.917097e-01, 9.915115e-01, 9.913108e-01, 9.911078e-01, 9.909025e-01, 9.906950e-01, 9.904851e-01, 9.902728e-01, 9.900582e-01, 9.898412e-01, 9.896220e-01, 9.894004e-01,
9.891764e-01, 9.889503e-01, 9.887216e-01, 9.884907e-01, 9.882575e-01, 9.880220e-01, 9.877840e-01, 9.875439e-01, 9.873013e-01, 9.870565e-01, 9.868094e-01, 9.865599e-01, 9.863080e-01, 9.860539e-01, 9.857974e-01, 9.855387e-01,
9.852775e-01, 9.850142e-01, 9.847485e-01, 9.844804e-01, 9.842100e-01, 9.839374e-01, 9.836624e-01, 9.833851e-01, 9.831054e-01, 9.828235e-01, 9.825393e-01, 9.822527e-01, 9.819638e-01, 9.816726e-01, 9.813792e-01, 9.810833e-01,
9.807853e-01, 9.804848e-01, 9.801821e-01, 9.798770e-01, 9.795697e-01, 9.792601e-01, 9.789481e-01, 9.786339e-01, 9.783173e-01, 9.779985e-01, 9.776773e-01, 9.773538e-01, 9.770281e-01, 9.767001e-01, 9.763696e-01, 9.760370e-01,
9.757020e-01, 9.753648e-01, 9.750253e-01, 9.746834e-01, 9.743394e-01, 9.739929e-01, 9.736441e-01, 9.732932e-01, 9.729398e-01, 9.725844e-01, 9.722264e-01, 9.718663e-01, 9.715039e-01, 9.711391e-01, 9.707720e-01, 9.704028e-01,
9.700311e-01, 9.696573e-01, 9.692812e-01, 9.689027e-01, 9.685221e-01, 9.681391e-01, 9.677538e-01, 9.673662e-01, 9.669764e-01, 9.665843e-01, 9.661900e-01, 9.657933e-01, 9.653944e-01, 9.649932e-01, 9.645897e-01, 9.641840e-01,
9.637760e-01, 9.633658e-01, 9.629532e-01, 9.625384e-01, 9.621214e-01, 9.617020e-01, 9.612805e-01, 9.608566e-01, 9.604305e-01, 9.600021e-01, 9.595715e-01, 9.591385e-01, 9.587034e-01, 9.582660e-01, 9.578264e-01, 9.573845e-01,
9.569403e-01, 9.564939e-01, 9.560452e-01, 9.555943e-01, 9.551411e-01, 9.546857e-01, 9.542280e-01, 9.537681e-01, 9.533060e-01, 9.528416e-01, 9.523749e-01, 9.519061e-01, 9.514350e-01, 9.509616e-01, 9.504861e-01, 9.500082e-01,
9.495281e-01, 9.490458e-01, 9.485613e-01, 9.480746e-01, 9.475856e-01, 9.470943e-01, 9.466008e-01, 9.461051e-01, 9.456073e-01, 9.451071e-01, 9.446048e-01, 9.441001e-01, 9.435934e-01, 9.430844e-01, 9.425732e-01, 9.420596e-01,
9.415441e-01, 9.410261e-01, 9.405060e-01, 9.399837e-01, 9.394592e-01, 9.389324e-01, 9.384035e-01, 9.378723e-01, 9.373389e-01, 9.368033e-01, 9.362656e-01, 9.357257e-01, 9.351834e-01, 9.346391e-01, 9.340925e-01, 9.335437e-01,
9.329927e-01, 9.324396e-01, 9.318842e-01, 9.313266e-01, 9.307669e-01, 9.302050e-01, 9.296409e-01, 9.290745e-01, 9.285060e-01, 9.279354e-01, 9.273624e-01, 9.267874e-01, 9.262102e-01, 9.256308e-01, 9.250492e-01, 9.244654e-01,
9.238795e-01, 9.232913e-01, 9.227011e-01, 9.221087e-01, 9.215140e-01, 9.209172e-01, 9.203182e-01, 9.197171e-01, 9.191138e-01, 9.185083e-01, 9.179007e-01, 9.172909e-01, 9.166790e-01, 9.160649e-01, 9.154487e-01, 9.148302e-01,
9.142097e-01, 9.135870e-01, 9.129621e-01, 9.123352e-01, 9.117060e-01, 9.110746e-01, 9.104413e-01, 9.098057e-01, 9.091679e-01, 9.085281e-01, 9.078860e-01, 9.072419e-01, 9.065956e-01, 9.059472e-01, 9.052967e-01, 9.046440e-01,
9.039892e-01, 9.033324e-01, 9.026732e-01, 9.020121e-01, 9.013488e-01, 9.006834e-01, 9.000158e-01, 8.993462e-01, 8.986744e-01, 8.980005e-01, 8.973246e-01, 8.966464e-01, 8.959662e-01, 8.952838e-01, 8.945994e-01, 8.939129e-01,
8.932242e-01, 8.925335e-01, 8.918407e-01, 8.911457e-01, 8.904487e-01, 8.897495e-01, 8.890483e-01, 8.883450e-01, 8.876395e-01, 8.869320e-01, 8.862225e-01, 8.855108e-01, 8.847971e-01, 8.840812e-01, 8.833632e-01, 8.826432e-01,
8.819212e-01, 8.811971e-01, 8.804709e-01, 8.797425e-01, 8.790121e-01, 8.782797e-01, 8.775452e-01, 8.768086e-01, 8.760700e-01, 8.753294e-01, 8.745866e-01, 8.738418e-01, 8.730949e-01, 8.723460e-01, 8.715950e-01, 8.708420e-01,
8.700869e-01, 8.693298e-01, 8.685707e-01, 8.678094e-01, 8.670462e-01, 8.662809e-01, 8.655136e-01, 8.647442e-01, 8.639728e-01, 8.631994e-01, 8.624239e-01, 8.616464e-01, 8.608669e-01, 8.600854e-01, 8.593018e-01, 8.585162e-01,
8.577286e-01, 8.569390e-01, 8.561473e-01, 8.553536e-01, 8.545579e-01, 8.537602e-01, 8.529606e-01, 8.521588e-01, 8.513551e-01, 8.505495e-01, 8.497417e-01, 8.489320e-01, 8.481203e-01, 8.473066e-01, 8.464909e-01, 8.456732e-01,
8.448535e-01, 8.440318e-01, 8.432082e-01, 8.423826e-01, 8.415549e-01, 8.407253e-01, 8.398937e-01, 8.390602e-01, 8.382246e-01, 8.373871e-01, 8.365476e-01, 8.357062e-01, 8.348628e-01, 8.340174e-01, 8.331701e-01, 8.323208e-01,
8.314695e-01, 8.306164e-01, 8.297611e-01, 8.289040e-01, 8.280450e-01, 8.271840e-01, 8.263210e-01, 8.254561e-01, 8.245893e-01, 8.237205e-01, 8.228498e-01, 8.219770e-01, 8.211025e-01, 8.202260e-01, 8.193475e-01, 8.184670e-01,
8.175848e-01, 8.167005e-01, 8.158144e-01, 8.149263e-01, 8.140363e-01, 8.131443e-01, 8.122505e-01, 8.113548e-01, 8.104571e-01, 8.095576e-01, 8.086561e-01, 8.077527e-01, 8.068475e-01, 8.059404e-01, 8.050313e-01, 8.041203e-01,
8.032075e-01, 8.022927e-01, 8.013761e-01, 8.004576e-01, 7.995372e-01, 7.986150e-01, 7.976907e-01, 7.967647e-01, 7.958368e-01, 7.949071e-01, 7.939755e-01, 7.930419e-01, 7.921065e-01, 7.911693e-01, 7.902302e-01, 7.892892e-01,
7.883464e-01, 7.874017e-01, 7.864552e-01, 7.855067e-01, 7.845565e-01, 7.836045e-01, 7.826506e-01, 7.816948e-01, 7.807372e-01, 7.797778e-01, 7.788165e-01, 7.778534e-01, 7.768884e-01, 7.759216e-01, 7.749530e-01, 7.739826e-01,
7.730104e-01, 7.720363e-01, 7.710605e-01, 7.700828e-01, 7.691033e-01, 7.681220e-01, 7.671388e-01, 7.661539e-01, 7.651672e-01, 7.641786e-01, 7.631884e-01, 7.621962e-01, 7.612023e-01, 7.602066e-01, 7.592092e-01, 7.582098e-01,
7.572088e-01, 7.562059e-01, 7.552013e-01, 7.541950e-01, 7.531867e-01, 7.521768e-01, 7.511650e-01, 7.501516e-01, 7.491363e-01, 7.481194e-01, 7.471006e-01, 7.460800e-01, 7.450577e-01, 7.440337e-01, 7.430079e-01, 7.419803e-01,
7.409511e-01, 7.399200e-01, 7.388873e-01, 7.378528e-01, 7.368165e-01, 7.357786e-01, 7.347388e-01, 7.336974e-01, 7.326542e-01, 7.316093e-01, 7.305627e-01, 7.295144e-01, 7.284644e-01, 7.274126e-01, 7.263591e-01, 7.253039e-01,
7.242470e-01, 7.231884e-01, 7.221282e-01, 7.210661e-01, 7.200024e-01, 7.189370e-01, 7.178700e-01, 7.168012e-01, 7.157308e-01, 7.146586e-01, 7.135848e-01, 7.125093e-01, 7.114321e-01, 7.103533e-01, 7.092727e-01, 7.081906e-01,
7.071067e-01, 7.060212e-01, 7.049340e-01, 7.038451e-01, 7.027547e-01, 7.016625e-01, 7.005687e-01, 6.994733e-01, 6.983762e-01, 6.972774e-01, 6.961771e-01, 6.950750e-01, 6.939714e-01, 6.928661e-01, 6.917592e-01, 6.906507e-01,
6.895405e-01, 6.884286e-01, 6.873152e-01, 6.862003e-01, 6.850836e-01, 6.839653e-01, 6.828455e-01, 6.817241e-01, 6.806009e-01, 6.794763e-01, 6.783500e-01, 6.772221e-01, 6.760926e-01, 6.749616e-01, 6.738290e-01, 6.726947e-01,
6.715589e-01, 6.704215e-01, 6.692826e-01, 6.681420e-01, 6.669998e-01, 6.658561e-01, 6.647109e-01, 6.635641e-01, 6.624157e-01, 6.612657e-01, 6.601143e-01, 6.589612e-01, 6.578066e-01, 6.566505e-01, 6.554928e-01, 6.543336e-01,
6.531727e-01, 6.520104e-01, 6.508466e-01, 6.496812e-01, 6.485144e-01, 6.473459e-01, 6.461760e-01, 6.450045e-01, 6.438315e-01, 6.426569e-01, 6.414809e-01, 6.403034e-01, 6.391244e-01, 6.379439e-01, 6.367618e-01, 6.355783e-01,
6.343932e-01, 6.332067e-01, 6.320187e-01, 6.308292e-01, 6.296382e-01, 6.284457e-01, 6.272517e-01, 6.260563e-01, 6.248595e-01, 6.236610e-01, 6.224612e-01, 6.212599e-01, 6.200571e-01, 6.188530e-01, 6.176473e-01, 6.164401e-01,
6.152315e-01, 6.140215e-01, 6.128100e-01, 6.115971e-01, 6.103828e-01, 6.091670e-01, 6.079497e-01, 6.067311e-01, 6.055110e-01, 6.042894e-01, 6.030666e-01, 6.018422e-01, 6.006165e-01, 5.993892e-01, 5.981606e-01, 5.969306e-01,
5.956992e-01, 5.944664e-01, 5.932323e-01, 5.919967e-01, 5.907596e-01, 5.895213e-01, 5.882815e-01, 5.870403e-01, 5.857978e-01, 5.845538e-01, 5.833086e-01, 5.820619e-01, 5.808139e-01, 5.795645e-01, 5.783137e-01, 5.770617e-01,
5.758082e-01, 5.745533e-01, 5.732971e-01, 5.720396e-01, 5.707806e-01, 5.695205e-01, 5.682589e-01, 5.669960e-01, 5.657318e-01, 5.644662e-01, 5.631993e-01, 5.619310e-01, 5.606616e-01, 5.593907e-01, 5.581185e-01, 5.568449e-01,
5.555701e-01, 5.542941e-01, 5.530167e-01, 5.517379e-01, 5.504580e-01, 5.491766e-01, 5.478940e-01, 5.466101e-01, 5.453249e-01, 5.440384e-01, 5.427507e-01, 5.414617e-01, 5.401714e-01, 5.388799e-01, 5.375870e-01, 5.362929e-01,
5.349976e-01, 5.337009e-01, 5.324031e-01, 5.311040e-01, 5.298035e-01, 5.285020e-01, 5.271990e-01, 5.258950e-01, 5.245897e-01, 5.232830e-01, 5.219753e-01, 5.206662e-01, 5.193559e-01, 5.180445e-01, 5.167317e-01, 5.154178e-01,
5.141027e-01, 5.127864e-01, 5.114688e-01, 5.101501e-01, 5.088301e-01, 5.075089e-01, 5.061866e-01, 5.048630e-01, 5.035384e-01, 5.022124e-01, 5.008854e-01, 4.995570e-01, 4.982276e-01, 4.968970e-01, 4.955652e-01, 4.942323e-01,
4.928981e-01, 4.915628e-01, 4.902264e-01, 4.888889e-01, 4.875501e-01, 4.862102e-01, 4.848692e-01, 4.835271e-01, 4.821837e-01, 4.808393e-01, 4.794937e-01, 4.781470e-01, 4.767991e-01, 4.754503e-01, 4.741001e-01, 4.727490e-01,
4.713967e-01, 4.700433e-01, 4.686887e-01, 4.673332e-01, 4.659765e-01, 4.646187e-01, 4.632597e-01, 4.618998e-01, 4.605386e-01, 4.591765e-01, 4.578133e-01, 4.564489e-01, 4.550835e-01, 4.537171e-01, 4.523495e-01, 4.509809e-01,
4.496113e-01, 4.482405e-01, 4.468688e-01, 4.454960e-01, 4.441221e-01, 4.427471e-01, 4.413712e-01, 4.399942e-01, 4.386162e-01, 4.372371e-01, 4.358571e-01, 4.344759e-01, 4.330938e-01, 4.317106e-01, 4.303265e-01, 4.289412e-01,
4.275551e-01, 4.261678e-01, 4.247797e-01, 4.233904e-01, 4.220002e-01, 4.206090e-01, 4.192169e-01, 4.178237e-01, 4.164295e-01, 4.150344e-01, 4.136382e-01, 4.122412e-01, 4.108431e-01, 4.094441e-01, 4.080441e-01, 4.066432e-01,
4.052413e-01, 4.038384e-01, 4.024346e-01, 4.010298e-01, 3.996241e-01, 3.982176e-01, 3.968099e-01, 3.954015e-01, 3.939919e-01, 3.925816e-01, 3.911704e-01, 3.897581e-01, 3.883450e-01, 3.869309e-01, 3.855160e-01, 3.841001e-01,
3.826834e-01, 3.812658e-01, 3.798472e-01, 3.784277e-01, 3.770074e-01, 3.755862e-01, 3.741640e-01, 3.727410e-01, 3.713171e-01, 3.698924e-01, 3.684667e-01, 3.670403e-01, 3.656130e-01, 3.641847e-01, 3.627557e-01, 3.613257e-01,
3.598950e-01, 3.584634e-01, 3.570309e-01, 3.555976e-01, 3.541634e-01, 3.527285e-01, 3.512927e-01, 3.498560e-01, 3.484186e-01, 3.469803e-01, 3.455412e-01, 3.441013e-01, 3.426607e-01, 3.412192e-01, 3.397769e-01, 3.383337e-01,
3.368897e-01, 3.354450e-01, 3.339996e-01, 3.325533e-01, 3.311063e-01, 3.296584e-01, 3.282098e-01, 3.267604e-01, 3.253102e-01, 3.238593e-01, 3.224076e-01, 3.209552e-01, 3.195020e-01, 3.180480e-01, 3.165933e-01, 3.151379e-01,
3.136817e-01, 3.122247e-01, 3.107671e-01, 3.093086e-01, 3.078495e-01, 3.063897e-01, 3.049291e-01, 3.034679e-01, 3.020059e-01, 3.005432e-01, 2.990798e-01, 2.976156e-01, 2.961508e-01, 2.946854e-01, 2.932191e-01, 2.917522e-01,
2.902846e-01, 2.888163e-01, 2.873474e-01, 2.858778e-01, 2.844075e-01, 2.829365e-01, 2.814649e-01, 2.799926e-01, 2.785196e-01, 2.770460e-01, 2.755717e-01, 2.740968e-01, 2.726213e-01, 2.711451e-01, 2.696682e-01, 2.681907e-01,
2.667127e-01, 2.652340e-01, 2.637546e-01, 2.622746e-01, 2.607940e-01, 2.593129e-01, 2.578311e-01, 2.563486e-01, 2.548656e-01, 2.533820e-01, 2.518978e-01, 2.504129e-01, 2.489276e-01, 2.474415e-01, 2.459550e-01, 2.444679e-01,
2.429801e-01, 2.414918e-01, 2.400030e-01, 2.385136e-01, 2.370236e-01, 2.355330e-01, 2.340419e-01, 2.325503e-01, 2.310580e-01, 2.295653e-01, 2.280720e-01, 2.265782e-01, 2.250838e-01, 2.235889e-01, 2.220936e-01, 2.205976e-01,
2.191012e-01, 2.176042e-01, 2.161068e-01, 2.146088e-01, 2.131102e-01, 2.116113e-01, 2.101117e-01, 2.086118e-01, 2.071114e-01, 2.056104e-01, 2.041090e-01, 2.026070e-01, 2.011045e-01, 1.996017e-01, 1.980983e-01, 1.965946e-01,
1.950903e-01, 1.935855e-01, 1.920804e-01, 1.905746e-01, 1.890686e-01, 1.875621e-01, 1.860551e-01, 1.845477e-01, 1.830398e-01, 1.815315e-01, 1.800228e-01, 1.785138e-01, 1.770042e-01, 1.754942e-01, 1.739838e-01, 1.724731e-01,
1.709619e-01, 1.694503e-01, 1.679382e-01, 1.664258e-01, 1.649131e-01, 1.633999e-01, 1.618863e-01, 1.603724e-01, 1.588581e-01, 1.573434e-01, 1.558284e-01, 1.543130e-01, 1.527971e-01, 1.512810e-01, 1.497644e-01, 1.482476e-01,
1.467304e-01, 1.452129e-01, 1.436950e-01, 1.421767e-01, 1.406581e-01, 1.391393e-01, 1.376201e-01, 1.361005e-01, 1.345806e-01, 1.330605e-01, 1.315399e-01, 1.300192e-01, 1.284981e-01, 1.269766e-01, 1.254549e-01, 1.239330e-01,
1.224107e-01, 1.208880e-01, 1.193651e-01, 1.178420e-01, 1.163186e-01, 1.147949e-01, 1.132709e-01, 1.117467e-01, 1.102221e-01, 1.086974e-01, 1.071724e-01, 1.056471e-01, 1.041216e-01, 1.025958e-01, 1.010698e-01, 9.954357e-02,
9.801710e-02, 9.649038e-02, 9.496343e-02, 9.343624e-02, 9.190893e-02, 9.038126e-02, 8.885348e-02, 8.732545e-02, 8.579731e-02, 8.426881e-02, 8.274019e-02, 8.121133e-02, 7.968235e-02, 7.815313e-02, 7.662380e-02, 7.509422e-02,
7.356453e-02, 7.203460e-02, 7.050455e-02, 6.897426e-02, 6.744385e-02, 6.591332e-02, 6.438255e-02, 6.285167e-02, 6.132066e-02, 5.978954e-02, 5.825818e-02, 5.672681e-02, 5.519521e-02, 5.366349e-02, 5.213165e-02, 5.059969e-02,
4.906762e-02, 4.753542e-02, 4.600310e-02, 4.447067e-02, 4.293823e-02, 4.140556e-02, 3.987288e-02, 3.834009e-02, 3.680718e-02, 3.527415e-02, 3.374112e-02, 3.220797e-02, 3.067470e-02, 2.914143e-02, 2.760804e-02, 2.607465e-02,
2.454114e-02, 2.300763e-02, 2.147400e-02, 1.994038e-02, 1.840663e-02, 1.687288e-02, 1.533914e-02, 1.380527e-02, 1.227152e-02, 1.073766e-02, 9.203672e-03, 7.669806e-03, 6.135821e-03, 4.601836e-03, 3.067851e-03, 1.533866e-03,
0.000000e+00, 1.533866e-03, 3.067851e-03, 4.601836e-03, 6.135821e-03, 7.669806e-03, 9.203672e-03, 1.073766e-02, 1.227152e-02, 1.380527e-02, 1.533914e-02, 1.687288e-02, 1.840663e-02, 1.994038e-02, 2.147400e-02, 2.300763e-02,
2.454114e-02, 2.607465e-02, 2.760804e-02, 2.914143e-02, 3.067470e-02, 3.220797e-02, 3.374112e-02, 3.527415e-02, 3.680718e-02, 3.834009e-02, 3.987288e-02, 4.140556e-02, 4.293823e-02, 4.447067e-02, 4.600310e-02, 4.753542e-02,
4.906762e-02, 5.059969e-02, 5.213165e-02, 5.366349e-02, 5.519521e-02, 5.672681e-02, 5.825818e-02, 5.978954e-02, 6.132066e-02, 6.285167e-02, 6.438255e-02, 6.591332e-02, 6.744385e-02, 6.897426e-02, 7.050455e-02, 7.203460e-02,
7.356453e-02, 7.509422e-02, 7.662380e-02, 7.815313e-02, 7.968235e-02, 8.121133e-02, 8.274019e-02, 8.426881e-02, 8.579731e-02, 8.732545e-02, 8.885348e-02, 9.038126e-02, 9.190893e-02, 9.343624e-02, 9.496343e-02, 9.649038e-02,
9.801710e-02, 9.954357e-02, 1.010698e-01, 1.025958e-01, 1.041216e-01, 1.056471e-01, 1.071724e-01, 1.086974e-01, 1.102221e-01, 1.117467e-01, 1.132709e-01, 1.147949e-01, 1.163186e-01, 1.178420e-01, 1.193651e-01, 1.208880e-01,
1.224107e-01, 1.239330e-01, 1.254549e-01, 1.269766e-01, 1.284981e-01, 1.300192e-01, 1.315399e-01, 1.330605e-01, 1.345806e-01, 1.361005e-01, 1.376201e-01, 1.391393e-01, 1.406581e-01, 1.421767e-01, 1.436950e-01, 1.452129e-01,
1.467304e-01, 1.482476e-01, 1.497644e-01, 1.512810e-01, 1.527971e-01, 1.543130e-01, 1.558284e-01, 1.573434e-01, 1.588581e-01, 1.603724e-01, 1.618863e-01, 1.633999e-01, 1.649131e-01, 1.664258e-01, 1.679382e-01, 1.694503e-01,
1.709619e-01, 1.724731e-01, 1.739838e-01, 1.754942e-01, 1.770042e-01, 1.785138e-01, 1.800228e-01, 1.815315e-01, 1.830398e-01, 1.845477e-01, 1.860551e-01, 1.875621e-01, 1.890686e-01, 1.905746e-01, 1.920804e-01, 1.935855e-01,
1.950903e-01, 1.965946e-01, 1.980983e-01, 1.996017e-01, 2.011045e-01, 2.026070e-01, 2.041090e-01, 2.056104e-01, 2.071114e-01, 2.086118e-01, 2.101117e-01, 2.116113e-01, 2.131102e-01, 2.146088e-01, 2.161068e-01, 2.176042e-01,
2.191012e-01, 2.205976e-01, 2.220936e-01, 2.235889e-01, 2.250838e-01, 2.265782e-01, 2.280720e-01, 2.295653e-01, 2.310580e-01, 2.325503e-01, 2.340419e-01, 2.355330e-01, 2.370236e-01, 2.385136e-01, 2.400030e-01, 2.414918e-01,
2.429801e-01, 2.444679e-01, 2.459550e-01, 2.474415e-01, 2.489276e-01, 2.504129e-01, 2.518978e-01, 2.533820e-01, 2.548656e-01, 2.563486e-01, 2.578311e-01, 2.593129e-01, 2.607940e-01, 2.622746e-01, 2.637546e-01, 2.652340e-01,
2.667127e-01, 2.681907e-01, 2.696682e-01, 2.711451e-01, 2.726213e-01, 2.740968e-01, 2.755717e-01, 2.770460e-01, 2.785196e-01, 2.799926e-01, 2.814649e-01, 2.829365e-01, 2.844075e-01, 2.858778e-01, 2.873474e-01, 2.888163e-01,
2.902846e-01, 2.917522e-01, 2.932191e-01, 2.946854e-01, 2.961508e-01, 2.976156e-01, 2.990798e-01, 3.005432e-01, 3.020059e-01, 3.034679e-01, 3.049291e-01, 3.063897e-01, 3.078495e-01, 3.093086e-01, 3.107671e-01, 3.122247e-01,
3.136817e-01, 3.151379e-01, 3.165933e-01, 3.180480e-01, 3.195020e-01, 3.209552e-01, 3.224076e-01, 3.238593e-01, 3.253102e-01, 3.267604e-01, 3.282098e-01, 3.296584e-01, 3.311063e-01, 3.325533e-01, 3.339996e-01, 3.354450e-01,
3.368897e-01, 3.383337e-01, 3.397769e-01, 3.412192e-01, 3.426607e-01, 3.441013e-01, 3.455412e-01, 3.469803e-01, 3.484186e-01, 3.498560e-01, 3.512927e-01, 3.527285e-01, 3.541634e-01, 3.555976e-01, 3.570309e-01, 3.584634e-01,
3.598950e-01, 3.613257e-01, 3.627557e-01, 3.641847e-01, 3.656130e-01, 3.670403e-01, 3.684667e-01, 3.698924e-01, 3.713171e-01, 3.727410e-01, 3.741640e-01, 3.755862e-01, 3.770074e-01, 3.784277e-01, 3.798472e-01, 3.812658e-01,
3.826834e-01, 3.841001e-01, 3.855160e-01, 3.869309e-01, 3.883450e-01, 3.897581e-01, 3.911704e-01, 3.925816e-01, 3.939919e-01, 3.954015e-01, 3.968099e-01, 3.982176e-01, 3.996241e-01, 4.010298e-01, 4.024346e-01, 4.038384e-01,
4.052413e-01, 4.066432e-01, 4.080441e-01, 4.094441e-01, 4.108431e-01, 4.122412e-01, 4.136382e-01, 4.150344e-01, 4.164295e-01, 4.178237e-01, 4.192169e-01, 4.206090e-01, 4.220002e-01, 4.233904e-01, 4.247797e-01, 4.261678e-01,
4.275551e-01, 4.289412e-01, 4.303265e-01, 4.317106e-01, 4.330938e-01, 4.344759e-01, 4.358571e-01, 4.372371e-01, 4.386162e-01, 4.399942e-01, 4.413712e-01, 4.427471e-01, 4.441221e-01, 4.454960e-01, 4.468688e-01, 4.482405e-01,
4.496113e-01, 4.509809e-01, 4.523495e-01, 4.537171e-01, 4.550835e-01, 4.564489e-01, 4.578133e-01, 4.591765e-01, 4.605386e-01, 4.618998e-01, 4.632597e-01, 4.646187e-01, 4.659765e-01, 4.673332e-01, 4.686887e-01, 4.700433e-01,
4.713967e-01, 4.727490e-01, 4.741001e-01, 4.754503e-01, 4.767991e-01, 4.781470e-01, 4.794937e-01, 4.808393e-01, 4.821837e-01, 4.835271e-01, 4.848692e-01, 4.862102e-01, 4.875501e-01, 4.888889e-01, 4.902264e-01, 4.915628e-01,
4.928981e-01, 4.942323e-01, 4.955652e-01, 4.968970e-01, 4.982276e-01, 4.995570e-01, 5.008854e-01, 5.022124e-01, 5.035384e-01, 5.048630e-01, 5.061866e-01, 5.075089e-01, 5.088301e-01, 5.101501e-01, 5.114688e-01, 5.127864e-01,
5.141027e-01, 5.154178e-01, 5.167317e-01, 5.180445e-01, 5.193559e-01, 5.206662e-01, 5.219753e-01, 5.232830e-01, 5.245897e-01, 5.258950e-01, 5.271990e-01, 5.285020e-01, 5.298035e-01, 5.311040e-01, 5.324031e-01, 5.337009e-01,
5.349976e-01, 5.362929e-01, 5.375870e-01, 5.388799e-01, 5.401714e-01, 5.414617e-01, 5.427507e-01, 5.440384e-01, 5.453249e-01, 5.466101e-01, 5.478940e-01, 5.491766e-01, 5.504580e-01, 5.517379e-01, 5.530167e-01, 5.542941e-01,
5.555701e-01, 5.568449e-01, 5.581185e-01, 5.593907e-01, 5.606616e-01, 5.619310e-01, 5.631993e-01, 5.644662e-01, 5.657318e-01, 5.669960e-01, 5.682589e-01, 5.695205e-01, 5.707806e-01, 5.720396e-01, 5.732971e-01, 5.745533e-01,
5.758082e-01, 5.770617e-01, 5.783137e-01, 5.795645e-01, 5.808139e-01, 5.820619e-01, 5.833086e-01, 5.845538e-01, 5.857978e-01, 5.870403e-01, 5.882815e-01, 5.895213e-01, 5.907596e-01, 5.919967e-01, 5.932323e-01, 5.944664e-01,
5.956992e-01, 5.969306e-01, 5.981606e-01, 5.993892e-01, 6.006165e-01, 6.018422e-01, 6.030666e-01, 6.042894e-01, 6.055110e-01, 6.067311e-01, 6.079497e-01, 6.091670e-01, 6.103828e-01, 6.115971e-01, 6.128100e-01, 6.140215e-01,
6.152315e-01, 6.164401e-01, 6.176473e-01, 6.188530e-01, 6.200571e-01, 6.212599e-01, 6.224612e-01, 6.236610e-01, 6.248595e-01, 6.260563e-01, 6.272517e-01, 6.284457e-01, 6.296382e-01, 6.308292e-01, 6.320187e-01, 6.332067e-01,
6.343932e-01, 6.355783e-01, 6.367618e-01, 6.379439e-01, 6.391244e-01, 6.403034e-01, 6.414809e-01, 6.426569e-01, 6.438315e-01, 6.450045e-01, 6.461760e-01, 6.473459e-01, 6.485144e-01, 6.496812e-01, 6.508466e-01, 6.520104e-01,
6.531727e-01, 6.543336e-01, 6.554928e-01, 6.566505e-01, 6.578066e-01, 6.589612e-01, 6.601143e-01, 6.612657e-01, 6.624157e-01, 6.635641e-01, 6.647109e-01, 6.658561e-01, 6.669998e-01, 6.681420e-01, 6.692826e-01, 6.704215e-01,
6.715589e-01, 6.726947e-01, 6.738290e-01, 6.749616e-01, 6.760926e-01, 6.772221e-01, 6.783500e-01, 6.794763e-01, 6.806009e-01, 6.817241e-01, 6.828455e-01, 6.839653e-01, 6.850836e-01, 6.862003e-01, 6.873152e-01, 6.884286e-01,
6.895405e-01, 6.906507e-01, 6.917592e-01, 6.928661e-01, 6.939714e-01, 6.950750e-01, 6.961771e-01, 6.972774e-01, 6.983762e-01, 6.994733e-01, 7.005687e-01, 7.016625e-01, 7.027547e-01, 7.038451e-01, 7.049340e-01, 7.060212e-01,
7.071067e-01, 7.081906e-01, 7.092727e-01, 7.103533e-01, 7.114321e-01, 7.125093e-01, 7.135848e-01, 7.146586e-01, 7.157308e-01, 7.168012e-01, 7.178700e-01, 7.189370e-01, 7.200024e-01, 7.210661e-01, 7.221282e-01, 7.231884e-01,
7.242470e-01, 7.253039e-01, 7.263591e-01, 7.274126e-01, 7.284644e-01, 7.295144e-01, 7.305627e-01, 7.316093e-01, 7.326542e-01, 7.336974e-01, 7.347388e-01, 7.357786e-01, 7.368165e-01, 7.378528e-01, 7.388873e-01, 7.399200e-01,
7.409511e-01, 7.419803e-01, 7.430079e-01, 7.440337e-01, 7.450577e-01, 7.460800e-01, 7.471006e-01, 7.481194e-01, 7.491363e-01, 7.501516e-01, 7.511650e-01, 7.521768e-01, 7.531867e-01, 7.541950e-01, 7.552013e-01, 7.562059e-01,
7.572088e-01, 7.582098e-01, 7.592092e-01, 7.602066e-01, 7.612023e-01, 7.621962e-01, 7.631884e-01, 7.641786e-01, 7.651672e-01, 7.661539e-01, 7.671388e-01, 7.681220e-01, 7.691033e-01, 7.700828e-01, 7.710605e-01, 7.720363e-01,
7.730104e-01, 7.739826e-01, 7.749530e-01, 7.759216e-01, 7.768884e-01, 7.778534e-01, 7.788165e-01, 7.797778e-01, 7.807372e-01, 7.816948e-01, 7.826506e-01, 7.836045e-01, 7.845565e-01, 7.855067e-01, 7.864552e-01, 7.874017e-01,
7.883464e-01, 7.892892e-01, 7.902302e-01, 7.911693e-01, 7.921065e-01, 7.930419e-01, 7.939755e-01, 7.949071e-01, 7.958368e-01, 7.967647e-01, 7.976907e-01, 7.986150e-01, 7.995372e-01, 8.004576e-01, 8.013761e-01, 8.022927e-01,
8.032075e-01, 8.041203e-01, 8.050313e-01, 8.059404e-01, 8.068475e-01, 8.077527e-01, 8.086561e-01, 8.095576e-01, 8.104571e-01, 8.113548e-01, 8.122505e-01, 8.131443e-01, 8.140363e-01, 8.149263e-01, 8.158144e-01, 8.167005e-01,
8.175848e-01, 8.184670e-01, 8.193475e-01, 8.202260e-01, 8.211025e-01, 8.219770e-01, 8.228498e-01, 8.237205e-01, 8.245893e-01, 8.254561e-01, 8.263210e-01, 8.271840e-01, 8.280450e-01, 8.289040e-01, 8.297611e-01, 8.306164e-01,
8.314695e-01, 8.323208e-01, 8.331701e-01, 8.340174e-01, 8.348628e-01, 8.357062e-01, 8.365476e-01, 8.373871e-01, 8.382246e-01, 8.390602e-01, 8.398937e-01, 8.407253e-01, 8.415549e-01, 8.423826e-01, 8.432082e-01, 8.440318e-01,
8.448535e-01, 8.456732e-01, 8.464909e-01, 8.473066e-01, 8.481203e-01, 8.489320e-01, 8.497417e-01, 8.505495e-01, 8.513551e-01, 8.521588e-01, 8.529606e-01, 8.537602e-01, 8.545579e-01, 8.553536e-01, 8.561473e-01, 8.569390e-01,
8.577286e-01, 8.585162e-01, 8.593018e-01, 8.600854e-01, 8.608669e-01, 8.616464e-01, 8.624239e-01, 8.631994e-01, 8.639728e-01, 8.647442e-01, 8.655136e-01, 8.662809e-01, 8.670462e-01, 8.678094e-01, 8.685707e-01, 8.693298e-01,
8.700869e-01, 8.708420e-01, 8.715950e-01, 8.723460e-01, 8.730949e-01, 8.738418e-01, 8.745866e-01, 8.753294e-01, 8.760700e-01, 8.768086e-01, 8.775452e-01, 8.782797e-01, 8.790121e-01, 8.797425e-01, 8.804709e-01, 8.811971e-01,
8.819212e-01, 8.826432e-01, 8.833632e-01, 8.840812e-01, 8.847971e-01, 8.855108e-01, 8.862225e-01, 8.869320e-01, 8.876395e-01, 8.883450e-01, 8.890483e-01, 8.897495e-01, 8.904487e-01, 8.911457e-01, 8.918407e-01, 8.925335e-01,
8.932242e-01, 8.939129e-01, 8.945994e-01, 8.952838e-01, 8.959662e-01, 8.966464e-01, 8.973246e-01, 8.980005e-01, 8.986744e-01, 8.993462e-01, 9.000158e-01, 9.006834e-01, 9.013488e-01, 9.020121e-01, 9.026732e-01, 9.033324e-01,
9.039892e-01, 9.046440e-01, 9.052967e-01, 9.059472e-01, 9.065956e-01, 9.072419e-01, 9.078860e-01, 9.085281e-01, 9.091679e-01, 9.098057e-01, 9.104413e-01, 9.110746e-01, 9.117060e-01, 9.123352e-01, 9.129621e-01, 9.135870e-01,
9.142097e-01, 9.148302e-01, 9.154487e-01, 9.160649e-01, 9.166790e-01, 9.172909e-01, 9.179007e-01, 9.185083e-01, 9.191138e-01, 9.197171e-01, 9.203182e-01, 9.209172e-01, 9.215140e-01, 9.221087e-01, 9.227011e-01, 9.232913e-01,
9.238795e-01, 9.244654e-01, 9.250492e-01, 9.256308e-01, 9.262102e-01, 9.267874e-01, 9.273624e-01, 9.279354e-01, 9.285060e-01, 9.290745e-01, 9.296409e-01, 9.302050e-01, 9.307669e-01, 9.313266e-01, 9.318842e-01, 9.324396e-01,
9.329927e-01, 9.335437e-01, 9.340925e-01, 9.346391e-01, 9.351834e-01, 9.357257e-01, 9.362656e-01, 9.368033e-01, 9.373389e-01, 9.378723e-01, 9.384035e-01, 9.389324e-01, 9.394592e-01, 9.399837e-01, 9.405060e-01, 9.410261e-01,
9.415441e-01, 9.420596e-01, 9.425732e-01, 9.430844e-01, 9.435934e-01, 9.441001e-01, 9.446048e-01, 9.451071e-01, 9.456073e-01, 9.461051e-01, 9.466008e-01, 9.470943e-01, 9.475856e-01, 9.480746e-01, 9.485613e-01, 9.490458e-01,
9.495281e-01, 9.500082e-01, 9.504861e-01, 9.509616e-01, 9.514350e-01, 9.519061e-01, 9.523749e-01, 9.528416e-01, 9.533060e-01, 9.537681e-01, 9.542280e-01, 9.546857e-01, 9.551411e-01, 9.555943e-01, 9.560452e-01, 9.564939e-01,
9.569403e-01, 9.573845e-01, 9.578264e-01, 9.582660e-01, 9.587034e-01, 9.591385e-01, 9.595715e-01, 9.600021e-01, 9.604305e-01, 9.608566e-01, 9.612805e-01, 9.617020e-01, 9.621214e-01, 9.625384e-01, 9.629532e-01, 9.633658e-01,
9.637760e-01, 9.641840e-01, 9.645897e-01, 9.649932e-01, 9.653944e-01, 9.657933e-01, 9.661900e-01, 9.665843e-01, 9.669764e-01, 9.673662e-01, 9.677538e-01, 9.681391e-01, 9.685221e-01, 9.689027e-01, 9.692812e-01, 9.696573e-01,
9.700311e-01, 9.704028e-01, 9.707720e-01, 9.711391e-01, 9.715039e-01, 9.718663e-01, 9.722264e-01, 9.725844e-01, 9.729398e-01, 9.732932e-01, 9.736441e-01, 9.739929e-01, 9.743394e-01, 9.746834e-01, 9.750253e-01, 9.753648e-01,
9.757020e-01, 9.760370e-01, 9.763696e-01, 9.767001e-01, 9.770281e-01, 9.773538e-01, 9.776773e-01, 9.779985e-01, 9.783173e-01, 9.786339e-01, 9.789481e-01, 9.792601e-01, 9.795697e-01, 9.798770e-01, 9.801821e-01, 9.804848e-01,
9.807853e-01, 9.810833e-01, 9.813792e-01, 9.816726e-01, 9.819638e-01, 9.822527e-01, 9.825393e-01, 9.828235e-01, 9.831054e-01, 9.833851e-01, 9.836624e-01, 9.839374e-01, 9.842100e-01, 9.844804e-01, 9.847485e-01, 9.850142e-01,
9.852775e-01, 9.855387e-01, 9.857974e-01, 9.860539e-01, 9.863080e-01, 9.865599e-01, 9.868094e-01, 9.870565e-01, 9.873013e-01, 9.875439e-01, 9.877840e-01, 9.880220e-01, 9.882575e-01, 9.884907e-01, 9.887216e-01, 9.889503e-01,
9.891764e-01, 9.894004e-01, 9.896220e-01, 9.898412e-01, 9.900582e-01, 9.902728e-01, 9.904851e-01, 9.906950e-01, 9.909025e-01, 9.911078e-01, 9.913108e-01, 9.915115e-01, 9.917097e-01, 9.919057e-01, 9.920993e-01, 9.922905e-01,
9.924794e-01, 9.926661e-01, 9.928503e-01, 9.930323e-01, 9.932119e-01, 9.933891e-01, 9.935641e-01, 9.937366e-01, 9.939069e-01, 9.940748e-01, 9.942404e-01, 9.944036e-01, 9.945645e-01, 9.947231e-01, 9.948792e-01, 9.950331e-01,
9.951847e-01, 9.953339e-01, 9.954807e-01, 9.956251e-01, 9.957674e-01, 9.959072e-01, 9.960446e-01, 9.961798e-01, 9.963125e-01, 9.964430e-01, 9.965711e-01, 9.966968e-01, 9.968202e-01, 9.969413e-01, 9.970601e-01, 9.971764e-01,
9.972904e-01, 9.974021e-01, 9.975114e-01, 9.976183e-01, 9.977230e-01, 9.978253e-01, 9.979253e-01, 9.980228e-01, 9.981180e-01, 9.982109e-01, 9.983015e-01, 9.983897e-01, 9.984756e-01, 9.985590e-01, 9.986402e-01, 9.987190e-01,
9.987954e-01, 9.988695e-01, 9.989412e-01, 9.990107e-01, 9.990777e-01, 9.991424e-01, 9.992048e-01, 9.992647e-01, 9.993223e-01, 9.993776e-01, 9.994305e-01, 9.994811e-01, 9.995294e-01, 9.995753e-01, 9.996188e-01, 9.996599e-01,
9.996988e-01, 9.997352e-01, 9.997693e-01, 9.998012e-01, 9.998305e-01, 9.998575e-01, 9.998823e-01, 9.999046e-01, 9.999247e-01, 9.999423e-01, 9.999576e-01, 9.999706e-01, 9.999812e-01, 9.999894e-01, 9.999952e-01, 9.999988e-01,
9.999999e-01, 9.999988e-01, 9.999952e-01, 9.999894e-01, 9.999812e-01, 9.999706e-01, 9.999576e-01, 9.999423e-01, 9.999247e-01, 9.999046e-01, 9.998823e-01, 9.998575e-01, 9.998305e-01, 9.998012e-01, 9.997693e-01, 9.997352e-01,
9.996988e-01, 9.996599e-01, 9.996188e-01, 9.995753e-01, 9.995294e-01, 9.994811e-01, 9.994305e-01, 9.993776e-01, 9.993223e-01, 9.992647e-01, 9.992048e-01, 9.991424e-01, 9.990777e-01, 9.990107e-01, 9.989412e-01, 9.988695e-01,
9.987954e-01, 9.987190e-01, 9.986402e-01, 9.985590e-01, 9.984756e-01, 9.983897e-01, 9.983015e-01, 9.982109e-01, 9.981180e-01, 9.980228e-01, 9.979253e-01, 9.978253e-01, 9.977230e-01, 9.976183e-01, 9.975114e-01, 9.974021e-01,
9.972904e-01, 9.971764e-01, 9.970601e-01, 9.969413e-01, 9.968202e-01, 9.966968e-01, 9.965711e-01, 9.964430e-01, 9.963125e-01, 9.961798e-01, 9.960446e-01, 9.959072e-01, 9.957674e-01, 9.956251e-01, 9.954807e-01, 9.953339e-01,
9.951847e-01, 9.950331e-01, 9.948792e-01, 9.947231e-01, 9.945645e-01, 9.944036e-01, 9.942404e-01, 9.940748e-01, 9.939069e-01, 9.937366e-01, 9.935641e-01, 9.933891e-01, 9.932119e-01, 9.930323e-01, 9.928503e-01, 9.926661e-01,
9.924794e-01, 9.922905e-01, 9.920993e-01, 9.919057e-01, 9.917097e-01, 9.915115e-01, 9.913108e-01, 9.911078e-01, 9.909025e-01, 9.906950e-01, 9.904851e-01, 9.902728e-01, 9.900582e-01, 9.898412e-01, 9.896220e-01, 9.894004e-01,
9.891764e-01, 9.889503e-01, 9.887216e-01, 9.884907e-01, 9.882575e-01, 9.880220e-01, 9.877840e-01, 9.875439e-01, 9.873013e-01, 9.870565e-01, 9.868094e-01, 9.865599e-01, 9.863080e-01, 9.860539e-01, 9.857974e-01, 9.855387e-01,
9.852775e-01, 9.850142e-01, 9.847485e-01, 9.844804e-01, 9.842100e-01, 9.839374e-01, 9.836624e-01, 9.833851e-01, 9.831054e-01, 9.828235e-01, 9.825393e-01, 9.822527e-01, 9.819638e-01, 9.816726e-01, 9.813792e-01, 9.810833e-01,
9.807853e-01, 9.804848e-01, 9.801821e-01, 9.798770e-01, 9.795697e-01, 9.792601e-01, 9.789481e-01, 9.786339e-01, 9.783173e-01, 9.779985e-01, 9.776773e-01, 9.773538e-01, 9.770281e-01, 9.767001e-01, 9.763696e-01, 9.760370e-01,
9.757020e-01, 9.753648e-01, 9.750253e-01, 9.746834e-01, 9.743394e-01, 9.739929e-01, 9.736441e-01, 9.732932e-01, 9.729398e-01, 9.725844e-01, 9.722264e-01, 9.718663e-01, 9.715039e-01, 9.711391e-01, 9.707720e-01, 9.704028e-01,
9.700311e-01, 9.696573e-01, 9.692812e-01, 9.689027e-01, 9.685221e-01, 9.681391e-01, 9.677538e-01, 9.673662e-01, 9.669764e-01, 9.665843e-01, 9.661900e-01, 9.657933e-01, 9.653944e-01, 9.649932e-01, 9.645897e-01, 9.641840e-01,
9.637760e-01, 9.633658e-01, 9.629532e-01, 9.625384e-01, 9.621214e-01, 9.617020e-01, 9.612805e-01, 9.608566e-01, 9.604305e-01, 9.600021e-01, 9.595715e-01, 9.591385e-01, 9.587034e-01, 9.582660e-01, 9.578264e-01, 9.573845e-01,
9.569403e-01, 9.564939e-01, 9.560452e-01, 9.555943e-01, 9.551411e-01, 9.546857e-01, 9.542280e-01, 9.537681e-01, 9.533060e-01, 9.528416e-01, 9.523749e-01, 9.519061e-01, 9.514350e-01, 9.509616e-01, 9.504861e-01, 9.500082e-01,
9.495281e-01, 9.490458e-01, 9.485613e-01, 9.480746e-01, 9.475856e-01, 9.470943e-01, 9.466008e-01, 9.461051e-01, 9.456073e-01, 9.451071e-01, 9.446048e-01, 9.441001e-01, 9.435934e-01, 9.430844e-01, 9.425732e-01, 9.420596e-01,
9.415441e-01, 9.410261e-01, 9.405060e-01, 9.399837e-01, 9.394592e-01, 9.389324e-01, 9.384035e-01, 9.378723e-01, 9.373389e-01, 9.368033e-01, 9.362656e-01, 9.357257e-01, 9.351834e-01, 9.346391e-01, 9.340925e-01, 9.335437e-01,
9.329927e-01, 9.324396e-01, 9.318842e-01, 9.313266e-01, 9.307669e-01, 9.302050e-01, 9.296409e-01, 9.290745e-01, 9.285060e-01, 9.279354e-01, 9.273624e-01, 9.267874e-01, 9.262102e-01, 9.256308e-01, 9.250492e-01, 9.244654e-01,
9.238795e-01, 9.232913e-01, 9.227011e-01, 9.221087e-01, 9.215140e-01, 9.209172e-01, 9.203182e-01, 9.197171e-01, 9.191138e-01, 9.185083e-01, 9.179007e-01, 9.172909e-01, 9.166790e-01, 9.160649e-01, 9.154487e-01, 9.148302e-01,
9.142097e-01, 9.135870e-01, 9.129621e-01, 9.123352e-01, 9.117060e-01, 9.110746e-01, 9.104413e-01, 9.098057e-01, 9.091679e-01, 9.085281e-01, 9.078860e-01, 9.072419e-01, 9.065956e-01, 9.059472e-01, 9.052967e-01, 9.046440e-01,
9.039892e-01, 9.033324e-01, 9.026732e-01, 9.020121e-01, 9.013488e-01, 9.006834e-01, 9.000158e-01, 8.993462e-01, 8.986744e-01, 8.980005e-01, 8.973246e-01, 8.966464e-01, 8.959662e-01, 8.952838e-01, 8.945994e-01, 8.939129e-01,
8.932242e-01, 8.925335e-01, 8.918407e-01, 8.911457e-01, 8.904487e-01, 8.897495e-01, 8.890483e-01, 8.883450e-01, 8.876395e-01, 8.869320e-01, 8.862225e-01, 8.855108e-01, 8.847971e-01, 8.840812e-01, 8.833632e-01, 8.826432e-01,
8.819212e-01, 8.811971e-01, 8.804709e-01, 8.797425e-01, 8.790121e-01, 8.782797e-01, 8.775452e-01, 8.768086e-01, 8.760700e-01, 8.753294e-01, 8.745866e-01, 8.738418e-01, 8.730949e-01, 8.723460e-01, 8.715950e-01, 8.708420e-01,
8.700869e-01, 8.693298e-01, 8.685707e-01, 8.678094e-01, 8.670462e-01, 8.662809e-01, 8.655136e-01, 8.647442e-01, 8.639728e-01, 8.631994e-01, 8.624239e-01, 8.616464e-01, 8.608669e-01, 8.600854e-01, 8.593018e-01, 8.585162e-01,
8.577286e-01, 8.569390e-01, 8.561473e-01, 8.553536e-01, 8.545579e-01, 8.537602e-01, 8.529606e-01, 8.521588e-01, 8.513551e-01, 8.505495e-01, 8.497417e-01, 8.489320e-01, 8.481203e-01, 8.473066e-01, 8.464909e-01, 8.456732e-01,
8.448535e-01, 8.440318e-01, 8.432082e-01, 8.423826e-01, 8.415549e-01, 8.407253e-01, 8.398937e-01, 8.390602e-01, 8.382246e-01, 8.373871e-01, 8.365476e-01, 8.357062e-01, 8.348628e-01, 8.340174e-01, 8.331701e-01, 8.323208e-01,
8.314695e-01, 8.306164e-01, 8.297611e-01, 8.289040e-01, 8.280450e-01, 8.271840e-01, 8.263210e-01, 8.254561e-01, 8.245893e-01, 8.237205e-01, 8.228498e-01, 8.219770e-01, 8.211025e-01, 8.202260e-01, 8.193475e-01, 8.184670e-01,
8.175848e-01, 8.167005e-01, 8.158144e-01, 8.149263e-01, 8.140363e-01, 8.131443e-01, 8.122505e-01, 8.113548e-01, 8.104571e-01, 8.095576e-01, 8.086561e-01, 8.077527e-01, 8.068475e-01, 8.059404e-01, 8.050313e-01, 8.041203e-01,
8.032075e-01, 8.022927e-01, 8.013761e-01, 8.004576e-01, 7.995372e-01, 7.986150e-01, 7.976907e-01, 7.967647e-01, 7.958368e-01, 7.949071e-01, 7.939755e-01, 7.930419e-01, 7.921065e-01, 7.911693e-01, 7.902302e-01, 7.892892e-01,
7.883464e-01, 7.874017e-01, 7.864552e-01, 7.855067e-01, 7.845565e-01, 7.836045e-01, 7.826506e-01, 7.816948e-01, 7.807372e-01, 7.797778e-01, 7.788165e-01, 7.778534e-01, 7.768884e-01, 7.759216e-01, 7.749530e-01, 7.739826e-01,
7.730104e-01, 7.720363e-01, 7.710605e-01, 7.700828e-01, 7.691033e-01, 7.681220e-01, 7.671388e-01, 7.661539e-01, 7.651672e-01, 7.641786e-01, 7.631884e-01, 7.621962e-01, 7.612023e-01, 7.602066e-01, 7.592092e-01, 7.582098e-01,
7.572088e-01, 7.562059e-01, 7.552013e-01, 7.541950e-01, 7.531867e-01, 7.521768e-01, 7.511650e-01, 7.501516e-01, 7.491363e-01, 7.481194e-01, 7.471006e-01, 7.460800e-01, 7.450577e-01, 7.440337e-01, 7.430079e-01, 7.419803e-01,
7.409511e-01, 7.399200e-01, 7.388873e-01, 7.378528e-01, 7.368165e-01, 7.357786e-01, 7.347388e-01, 7.336974e-01, 7.326542e-01, 7.316093e-01, 7.305627e-01, 7.295144e-01, 7.284644e-01, 7.274126e-01, 7.263591e-01, 7.253039e-01,
7.242470e-01, 7.231884e-01, 7.221282e-01, 7.210661e-01, 7.200024e-01, 7.189370e-01, 7.178700e-01, 7.168012e-01, 7.157308e-01, 7.146586e-01, 7.135848e-01, 7.125093e-01, 7.114321e-01, 7.103533e-01, 7.092727e-01, 7.081906e-01,
7.071067e-01, 7.060212e-01, 7.049340e-01, 7.038451e-01, 7.027547e-01, 7.016625e-01, 7.005687e-01, 6.994733e-01, 6.983762e-01, 6.972774e-01, 6.961771e-01, 6.950750e-01, 6.939714e-01, 6.928661e-01, 6.917592e-01, 6.906507e-01,
6.895405e-01, 6.884286e-01, 6.873152e-01, 6.862003e-01, 6.850836e-01, 6.839653e-01, 6.828455e-01, 6.817241e-01, 6.806009e-01, 6.794763e-01, 6.783500e-01, 6.772221e-01, 6.760926e-01, 6.749616e-01, 6.738290e-01, 6.726947e-01,
6.715589e-01, 6.704215e-01, 6.692826e-01, 6.681420e-01, 6.669998e-01, 6.658561e-01, 6.647109e-01, 6.635641e-01, 6.624157e-01, 6.612657e-01, 6.601143e-01, 6.589612e-01, 6.578066e-01, 6.566505e-01, 6.554928e-01, 6.543336e-01,
6.531727e-01, 6.520104e-01, 6.508466e-01, 6.496812e-01, 6.485144e-01, 6.473459e-01, 6.461760e-01, 6.450045e-01, 6.438315e-01, 6.426569e-01, 6.414809e-01, 6.403034e-01, 6.391244e-01, 6.379439e-01, 6.367618e-01, 6.355783e-01,
6.343932e-01, 6.332067e-01, 6.320187e-01, 6.308292e-01, 6.296382e-01, 6.284457e-01, 6.272517e-01, 6.260563e-01, 6.248595e-01, 6.236610e-01, 6.224612e-01, 6.212599e-01, 6.200571e-01, 6.188530e-01, 6.176473e-01, 6.164401e-01,
6.152315e-01, 6.140215e-01, 6.128100e-01, 6.115971e-01, 6.103828e-01, 6.091670e-01, 6.079497e-01, 6.067311e-01, 6.055110e-01, 6.042894e-01, 6.030666e-01, 6.018422e-01, 6.006165e-01, 5.993892e-01, 5.981606e-01, 5.969306e-01,
5.956992e-01, 5.944664e-01, 5.932323e-01, 5.919967e-01, 5.907596e-01, 5.895213e-01, 5.882815e-01, 5.870403e-01, 5.857978e-01, 5.845538e-01, 5.833086e-01, 5.820619e-01, 5.808139e-01, 5.795645e-01, 5.783137e-01, 5.770617e-01,
5.758082e-01, 5.745533e-01, 5.732971e-01, 5.720396e-01, 5.707806e-01, 5.695205e-01, 5.682589e-01, 5.669960e-01, 5.657318e-01, 5.644662e-01, 5.631993e-01, 5.619310e-01, 5.606616e-01, 5.593907e-01, 5.581185e-01, 5.568449e-01,
5.555701e-01, 5.542941e-01, 5.530167e-01, 5.517379e-01, 5.504580e-01, 5.491766e-01, 5.478940e-01, 5.466101e-01, 5.453249e-01, 5.440384e-01, 5.427507e-01, 5.414617e-01, 5.401714e-01, 5.388799e-01, 5.375870e-01, 5.362929e-01,
5.349976e-01, 5.337009e-01, 5.324031e-01, 5.311040e-01, 5.298035e-01, 5.285020e-01, 5.271990e-01, 5.258950e-01, 5.245897e-01, 5.232830e-01, 5.219753e-01, 5.206662e-01, 5.193559e-01, 5.180445e-01, 5.167317e-01, 5.154178e-01,
5.141027e-01, 5.127864e-01, 5.114688e-01, 5.101501e-01, 5.088301e-01, 5.075089e-01, 5.061866e-01, 5.048630e-01, 5.035384e-01, 5.022124e-01, 5.008854e-01, 4.995570e-01, 4.982276e-01, 4.968970e-01, 4.955652e-01, 4.942323e-01,
4.928981e-01, 4.915628e-01, 4.902264e-01, 4.888889e-01, 4.875501e-01, 4.862102e-01, 4.848692e-01, 4.835271e-01, 4.821837e-01, 4.808393e-01, 4.794937e-01, 4.781470e-01, 4.767991e-01, 4.754503e-01, 4.741001e-01, 4.727490e-01,
4.713967e-01, 4.700433e-01, 4.686887e-01, 4.673332e-01, 4.659765e-01, 4.646187e-01, 4.632597e-01, 4.618998e-01, 4.605386e-01, 4.591765e-01, 4.578133e-01, 4.564489e-01, 4.550835e-01, 4.537171e-01, 4.523495e-01, 4.509809e-01,
4.496113e-01, 4.482405e-01, 4.468688e-01, 4.454960e-01, 4.441221e-01, 4.427471e-01, 4.413712e-01, 4.399942e-01, 4.386162e-01, 4.372371e-01, 4.358571e-01, 4.344759e-01, 4.330938e-01, 4.317106e-01, 4.303265e-01, 4.289412e-01,
4.275551e-01, 4.261678e-01, 4.247797e-01, 4.233904e-01, 4.220002e-01, 4.206090e-01, 4.192169e-01, 4.178237e-01, 4.164295e-01, 4.150344e-01, 4.136382e-01, 4.122412e-01, 4.108431e-01, 4.094441e-01, 4.080441e-01, 4.066432e-01,
4.052413e-01, 4.038384e-01, 4.024346e-01, 4.010298e-01, 3.996241e-01, 3.982176e-01, 3.968099e-01, 3.954015e-01, 3.939919e-01, 3.925816e-01, 3.911704e-01, 3.897581e-01, 3.883450e-01, 3.869309e-01, 3.855160e-01, 3.841001e-01,
3.826834e-01, 3.812658e-01, 3.798472e-01, 3.784277e-01, 3.770074e-01, 3.755862e-01, 3.741640e-01, 3.727410e-01, 3.713171e-01, 3.698924e-01, 3.684667e-01, 3.670403e-01, 3.656130e-01, 3.641847e-01, 3.627557e-01, 3.613257e-01,
3.598950e-01, 3.584634e-01, 3.570309e-01, 3.555976e-01, 3.541634e-01, 3.527285e-01, 3.512927e-01, 3.498560e-01, 3.484186e-01, 3.469803e-01, 3.455412e-01, 3.441013e-01, 3.426607e-01, 3.412192e-01, 3.397769e-01, 3.383337e-01,
3.368897e-01, 3.354450e-01, 3.339996e-01, 3.325533e-01, 3.311063e-01, 3.296584e-01, 3.282098e-01, 3.267604e-01, 3.253102e-01, 3.238593e-01, 3.224076e-01, 3.209552e-01, 3.195020e-01, 3.180480e-01, 3.165933e-01, 3.151379e-01,
3.136817e-01, 3.122247e-01, 3.107671e-01, 3.093086e-01, 3.078495e-01, 3.063897e-01, 3.049291e-01, 3.034679e-01, 3.020059e-01, 3.005432e-01, 2.990798e-01, 2.976156e-01, 2.961508e-01, 2.946854e-01, 2.932191e-01, 2.917522e-01,
2.902846e-01, 2.888163e-01, 2.873474e-01, 2.858778e-01, 2.844075e-01, 2.829365e-01, 2.814649e-01, 2.799926e-01, 2.785196e-01, 2.770460e-01, 2.755717e-01, 2.740968e-01, 2.726213e-01, 2.711451e-01, 2.696682e-01, 2.681907e-01,
2.667127e-01, 2.652340e-01, 2.637546e-01, 2.622746e-01, 2.607940e-01, 2.593129e-01, 2.578311e-01, 2.563486e-01, 2.548656e-01, 2.533820e-01, 2.518978e-01, 2.504129e-01, 2.489276e-01, 2.474415e-01, 2.459550e-01, 2.444679e-01,
2.429801e-01, 2.414918e-01, 2.400030e-01, 2.385136e-01, 2.370236e-01, 2.355330e-01, 2.340419e-01, 2.325503e-01, 2.310580e-01, 2.295653e-01, 2.280720e-01, 2.265782e-01, 2.250838e-01, 2.235889e-01, 2.220936e-01, 2.205976e-01,
2.191012e-01, 2.176042e-01, 2.161068e-01, 2.146088e-01, 2.131102e-01, 2.116113e-01, 2.101117e-01, 2.086118e-01, 2.071114e-01, 2.056104e-01, 2.041090e-01, 2.026070e-01, 2.011045e-01, 1.996017e-01, 1.980983e-01, 1.965946e-01,
1.950903e-01, 1.935855e-01, 1.920804e-01, 1.905746e-01, 1.890686e-01, 1.875621e-01, 1.860551e-01, 1.845477e-01, 1.830398e-01, 1.815315e-01, 1.800228e-01, 1.785138e-01, 1.770042e-01, 1.754942e-01, 1.739838e-01, 1.724731e-01,
1.709619e-01, 1.694503e-01, 1.679382e-01, 1.664258e-01, 1.649131e-01, 1.633999e-01, 1.618863e-01, 1.603724e-01, 1.588581e-01, 1.573434e-01, 1.558284e-01, 1.543130e-01, 1.527971e-01, 1.512810e-01, 1.497644e-01, 1.482476e-01,
1.467304e-01, 1.452129e-01, 1.436950e-01, 1.421767e-01, 1.406581e-01, 1.391393e-01, 1.376201e-01, 1.361005e-01, 1.345806e-01, 1.330605e-01, 1.315399e-01, 1.300192e-01, 1.284981e-01, 1.269766e-01, 1.254549e-01, 1.239330e-01,
1.224107e-01, 1.208880e-01, 1.193651e-01, 1.178420e-01, 1.163186e-01, 1.147949e-01, 1.132709e-01, 1.117467e-01, 1.102221e-01, 1.086974e-01, 1.071724e-01, 1.056471e-01, 1.041216e-01, 1.025958e-01, 1.010698e-01, 9.954357e-02,
9.801710e-02, 9.649038e-02, 9.496343e-02, 9.343624e-02, 9.190893e-02, 9.038126e-02, 8.885348e-02, 8.732545e-02, 8.579731e-02, 8.426881e-02, 8.274019e-02, 8.121133e-02, 7.968235e-02, 7.815313e-02, 7.662380e-02, 7.509422e-02,
7.356453e-02, 7.203460e-02, 7.050455e-02, 6.897426e-02, 6.744385e-02, 6.591332e-02, 6.438255e-02, 6.285167e-02, 6.132066e-02, 5.978954e-02, 5.825818e-02, 5.672681e-02, 5.519521e-02, 5.366349e-02, 5.213165e-02, 5.059969e-02,
4.906762e-02, 4.753542e-02, 4.600310e-02, 4.447067e-02, 4.293823e-02, 4.140556e-02, 3.987288e-02, 3.834009e-02, 3.680718e-02, 3.527415e-02, 3.374112e-02, 3.220797e-02, 3.067470e-02, 2.914143e-02, 2.760804e-02, 2.607465e-02,
2.454114e-02, 2.300763e-02, 2.147400e-02, 1.994038e-02, 1.840663e-02, 1.687288e-02, 1.533914e-02, 1.380527e-02, 1.227152e-02, 1.073766e-02, 9.203672e-03, 7.669806e-03, 6.135821e-03, 4.601836e-03, 3.067851e-03, 1.533866e-03
};
#endif // WAVETABLE_OPAL_3_H
| 58,845
|
C++
|
.h
| 263
| 217.874525
| 228
| 0.702066
|
RCameron93/FehlerFabrik
| 30
| 3
| 7
|
GPL-3.0
|
9/20/2024, 10:45:25 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,844
|
opal_8.h
|
RCameron93_FehlerFabrik/src/wavetables/opal_wavetable/opal_8.h
|
#ifndef WAVETABLE_OPAL_8_H
#define WAVETABLE_OPAL_8_H
#define WAVETABLE_OPAL_8_LENGTH 4096
static long opal_8_tableLength = 4096;
static float opal_8_waveTable[WAVETABLE_OPAL_8_LENGTH] = {
9.999999e-01, 9.990234e-01, 9.980474e-01, 9.970717e-01, 9.960966e-01, 9.951220e-01, 9.941478e-01, 9.931741e-01, 9.922009e-01, 9.912281e-01, 9.902558e-01, 9.892840e-01, 9.883127e-01, 9.873419e-01, 9.863715e-01, 9.854016e-01,
9.844322e-01, 9.834633e-01, 9.824948e-01, 9.815269e-01, 9.805593e-01, 9.795923e-01, 9.786258e-01, 9.776597e-01, 9.766941e-01, 9.757290e-01, 9.747643e-01, 9.738002e-01, 9.728365e-01, 9.718733e-01, 9.709105e-01, 9.699483e-01,
9.689865e-01, 9.680253e-01, 9.670645e-01, 9.661041e-01, 9.651443e-01, 9.641849e-01, 9.632260e-01, 9.622675e-01, 9.613096e-01, 9.603521e-01, 9.593951e-01, 9.584385e-01, 9.574825e-01, 9.565269e-01, 9.555719e-01, 9.546173e-01,
9.536631e-01, 9.527094e-01, 9.517562e-01, 9.508035e-01, 9.498513e-01, 9.488995e-01, 9.479482e-01, 9.469974e-01, 9.460472e-01, 9.450973e-01, 9.441479e-01, 9.431990e-01, 9.422506e-01, 9.413027e-01, 9.403552e-01, 9.394082e-01,
9.384617e-01, 9.375157e-01, 9.365702e-01, 9.356251e-01, 9.346805e-01, 9.337363e-01, 9.327927e-01, 9.318495e-01, 9.309069e-01, 9.299647e-01, 9.290229e-01, 9.280816e-01, 9.271408e-01, 9.262005e-01, 9.252607e-01, 9.243214e-01,
9.233825e-01, 9.224441e-01, 9.215062e-01, 9.205687e-01, 9.196317e-01, 9.186953e-01, 9.177593e-01, 9.168237e-01, 9.158887e-01, 9.149541e-01, 9.140199e-01, 9.130864e-01, 9.121532e-01, 9.112206e-01, 9.102883e-01, 9.093566e-01,
9.084253e-01, 9.074947e-01, 9.065644e-01, 9.056345e-01, 9.047052e-01, 9.037763e-01, 9.028480e-01, 9.019201e-01, 9.009926e-01, 9.000657e-01, 8.991392e-01, 8.982133e-01, 8.972877e-01, 8.963627e-01, 8.954381e-01, 8.945140e-01,
8.935905e-01, 8.926673e-01, 8.917446e-01, 8.908224e-01, 8.899008e-01, 8.889796e-01, 8.880588e-01, 8.871385e-01, 8.862188e-01, 8.852994e-01, 8.843806e-01, 8.834622e-01, 8.825443e-01, 8.816270e-01, 8.807100e-01, 8.797935e-01,
8.788775e-01, 8.779621e-01, 8.770471e-01, 8.761325e-01, 8.752184e-01, 8.743049e-01, 8.733917e-01, 8.724791e-01, 8.715670e-01, 8.706553e-01, 8.697441e-01, 8.688333e-01, 8.679231e-01, 8.670133e-01, 8.661040e-01, 8.651952e-01,
8.642869e-01, 8.633790e-01, 8.624716e-01, 8.615648e-01, 8.606583e-01, 8.597523e-01, 8.588468e-01, 8.579419e-01, 8.570373e-01, 8.561332e-01, 8.552297e-01, 8.543266e-01, 8.534240e-01, 8.525219e-01, 8.516202e-01, 8.507190e-01,
8.498182e-01, 8.489181e-01, 8.480183e-01, 8.471190e-01, 8.462203e-01, 8.453219e-01, 8.444240e-01, 8.435267e-01, 8.426298e-01, 8.417333e-01, 8.408375e-01, 8.399420e-01, 8.390470e-01, 8.381525e-01, 8.372585e-01, 8.363649e-01,
8.354719e-01, 8.345792e-01, 8.336871e-01, 8.327955e-01, 8.319043e-01, 8.310136e-01, 8.301234e-01, 8.292336e-01, 8.283443e-01, 8.274556e-01, 8.265673e-01, 8.256795e-01, 8.247921e-01, 8.239052e-01, 8.230189e-01, 8.221329e-01,
8.212475e-01, 8.203626e-01, 8.194780e-01, 8.185941e-01, 8.177105e-01, 8.168274e-01, 8.159449e-01, 8.150628e-01, 8.141811e-01, 8.133000e-01, 8.124193e-01, 8.115392e-01, 8.106594e-01, 8.097801e-01, 8.089014e-01, 8.080231e-01,
8.071454e-01, 8.062680e-01, 8.053911e-01, 8.045148e-01, 8.036388e-01, 8.027635e-01, 8.018885e-01, 8.010141e-01, 8.001400e-01, 7.992665e-01, 7.983935e-01, 7.975209e-01, 7.966489e-01, 7.957772e-01, 7.949061e-01, 7.940354e-01,
7.931652e-01, 7.922956e-01, 7.914263e-01, 7.905576e-01, 7.896893e-01, 7.888216e-01, 7.879542e-01, 7.870874e-01, 7.862210e-01, 7.853551e-01, 7.844898e-01, 7.836248e-01, 7.827604e-01, 7.818964e-01, 7.810329e-01, 7.801698e-01,
7.793074e-01, 7.784452e-01, 7.775837e-01, 7.767226e-01, 7.758620e-01, 7.750018e-01, 7.741421e-01, 7.732829e-01, 7.724241e-01, 7.715659e-01, 7.707081e-01, 7.698509e-01, 7.689940e-01, 7.681377e-01, 7.672818e-01, 7.664264e-01,
7.655715e-01, 7.647171e-01, 7.638631e-01, 7.630097e-01, 7.621566e-01, 7.613041e-01, 7.604520e-01, 7.596005e-01, 7.587494e-01, 7.578988e-01, 7.570486e-01, 7.561990e-01, 7.553499e-01, 7.545011e-01, 7.536529e-01, 7.528051e-01,
7.519579e-01, 7.511110e-01, 7.502648e-01, 7.494189e-01, 7.485735e-01, 7.477286e-01, 7.468842e-01, 7.460402e-01, 7.451968e-01, 7.443539e-01, 7.435113e-01, 7.426693e-01, 7.418277e-01, 7.409867e-01, 7.401460e-01, 7.393060e-01,
7.384663e-01, 7.376271e-01, 7.367885e-01, 7.359502e-01, 7.351125e-01, 7.342752e-01, 7.334385e-01, 7.326021e-01, 7.317663e-01, 7.309310e-01, 7.300961e-01, 7.292618e-01, 7.284278e-01, 7.275944e-01, 7.267613e-01, 7.259289e-01,
7.250969e-01, 7.242653e-01, 7.234343e-01, 7.226037e-01, 7.217736e-01, 7.209440e-01, 7.201148e-01, 7.192862e-01, 7.184579e-01, 7.176303e-01, 7.168031e-01, 7.159762e-01, 7.151500e-01, 7.143242e-01, 7.134988e-01, 7.126740e-01,
7.118496e-01, 7.110257e-01, 7.102023e-01, 7.093793e-01, 7.085569e-01, 7.077349e-01, 7.069134e-01, 7.060924e-01, 7.052717e-01, 7.044517e-01, 7.036321e-01, 7.028129e-01, 7.019943e-01, 7.011762e-01, 7.003584e-01, 6.995412e-01,
6.987245e-01, 6.979082e-01, 6.970924e-01, 6.962771e-01, 6.954622e-01, 6.946479e-01, 6.938341e-01, 6.930206e-01, 6.922077e-01, 6.913953e-01, 6.905832e-01, 6.897718e-01, 6.889608e-01, 6.881502e-01, 6.873401e-01, 6.865306e-01,
6.857214e-01, 6.849128e-01, 6.841047e-01, 6.832969e-01, 6.824898e-01, 6.816831e-01, 6.808769e-01, 6.800710e-01, 6.792657e-01, 6.784610e-01, 6.776565e-01, 6.768527e-01, 6.760494e-01, 6.752464e-01, 6.744440e-01, 6.736420e-01,
6.728406e-01, 6.720395e-01, 6.712390e-01, 6.704390e-01, 6.696395e-01, 6.688403e-01, 6.680417e-01, 6.672436e-01, 6.664459e-01, 6.656487e-01, 6.648520e-01, 6.640558e-01, 6.632600e-01, 6.624647e-01, 6.616700e-01, 6.608757e-01,
6.600817e-01, 6.592884e-01, 6.584955e-01, 6.577032e-01, 6.569111e-01, 6.561197e-01, 6.553288e-01, 6.545383e-01, 6.537482e-01, 6.529586e-01, 6.521696e-01, 6.513810e-01, 6.505929e-01, 6.498052e-01, 6.490180e-01, 6.482314e-01,
6.474452e-01, 6.466594e-01, 6.458741e-01, 6.450894e-01, 6.443051e-01, 6.435213e-01, 6.427379e-01, 6.419550e-01, 6.411726e-01, 6.403908e-01, 6.396093e-01, 6.388283e-01, 6.380478e-01, 6.372678e-01, 6.364883e-01, 6.357093e-01,
6.349306e-01, 6.341525e-01, 6.333749e-01, 6.325978e-01, 6.318212e-01, 6.310449e-01, 6.302692e-01, 6.294940e-01, 6.287192e-01, 6.279449e-01, 6.271712e-01, 6.263977e-01, 6.256249e-01, 6.248525e-01, 6.240807e-01, 6.233093e-01,
6.225383e-01, 6.217678e-01, 6.209978e-01, 6.202283e-01, 6.194593e-01, 6.186907e-01, 6.179227e-01, 6.171551e-01, 6.163878e-01, 6.156212e-01, 6.148551e-01, 6.140894e-01, 6.133242e-01, 6.125594e-01, 6.117952e-01, 6.110313e-01,
6.102680e-01, 6.095052e-01, 6.087428e-01, 6.079810e-01, 6.072196e-01, 6.064587e-01, 6.056982e-01, 6.049383e-01, 6.041787e-01, 6.034197e-01, 6.026611e-01, 6.019031e-01, 6.011455e-01, 6.003884e-01, 5.996318e-01, 5.988756e-01,
5.981200e-01, 5.973648e-01, 5.966100e-01, 5.958557e-01, 5.951020e-01, 5.943487e-01, 5.935959e-01, 5.928435e-01, 5.920917e-01, 5.913403e-01, 5.905894e-01, 5.898390e-01, 5.890890e-01, 5.883396e-01, 5.875905e-01, 5.868419e-01,
5.860939e-01, 5.853463e-01, 5.845993e-01, 5.838526e-01, 5.831065e-01, 5.823609e-01, 5.816157e-01, 5.808710e-01, 5.801268e-01, 5.793830e-01, 5.786397e-01, 5.778970e-01, 5.771546e-01, 5.764128e-01, 5.756714e-01, 5.749305e-01,
5.741901e-01, 5.734502e-01, 5.727108e-01, 5.719718e-01, 5.712332e-01, 5.704951e-01, 5.697576e-01, 5.690205e-01, 5.682839e-01, 5.675478e-01, 5.668122e-01, 5.660770e-01, 5.653423e-01, 5.646081e-01, 5.638744e-01, 5.631411e-01,
5.624083e-01, 5.616760e-01, 5.609442e-01, 5.602129e-01, 5.594820e-01, 5.587516e-01, 5.580217e-01, 5.572922e-01, 5.565633e-01, 5.558348e-01, 5.551068e-01, 5.543792e-01, 5.536522e-01, 5.529257e-01, 5.521996e-01, 5.514740e-01,
5.507488e-01, 5.500242e-01, 5.493000e-01, 5.485762e-01, 5.478530e-01, 5.471302e-01, 5.464079e-01, 5.456861e-01, 5.449648e-01, 5.442439e-01, 5.435236e-01, 5.428036e-01, 5.420842e-01, 5.413653e-01, 5.406468e-01, 5.399288e-01,
5.392113e-01, 5.384942e-01, 5.377777e-01, 5.370617e-01, 5.363461e-01, 5.356309e-01, 5.349163e-01, 5.342021e-01, 5.334884e-01, 5.327752e-01, 5.320624e-01, 5.313501e-01, 5.306383e-01, 5.299270e-01, 5.292162e-01, 5.285058e-01,
5.277960e-01, 5.270866e-01, 5.263777e-01, 5.256692e-01, 5.249612e-01, 5.242537e-01, 5.235467e-01, 5.228401e-01, 5.221341e-01, 5.214286e-01, 5.207235e-01, 5.200188e-01, 5.193146e-01, 5.186110e-01, 5.179077e-01, 5.172050e-01,
5.165027e-01, 5.158010e-01, 5.150998e-01, 5.143989e-01, 5.136986e-01, 5.129987e-01, 5.122993e-01, 5.116004e-01, 5.109019e-01, 5.102041e-01, 5.095066e-01, 5.088096e-01, 5.081130e-01, 5.074170e-01, 5.067214e-01, 5.060263e-01,
5.053318e-01, 5.046376e-01, 5.039439e-01, 5.032507e-01, 5.025580e-01, 5.018657e-01, 5.011741e-01, 5.004828e-01, 4.997920e-01, 4.991016e-01, 4.984118e-01, 4.977224e-01, 4.970336e-01, 4.963452e-01, 4.956572e-01, 4.949697e-01,
4.942827e-01, 4.935963e-01, 4.929103e-01, 4.922247e-01, 4.915396e-01, 4.908550e-01, 4.901708e-01, 4.894873e-01, 4.888041e-01, 4.881214e-01, 4.874392e-01, 4.867575e-01, 4.860762e-01, 4.853954e-01, 4.847151e-01, 4.840353e-01,
4.833560e-01, 4.826771e-01, 4.819987e-01, 4.813207e-01, 4.806433e-01, 4.799664e-01, 4.792899e-01, 4.786139e-01, 4.779383e-01, 4.772633e-01, 4.765887e-01, 4.759146e-01, 4.752409e-01, 4.745679e-01, 4.738952e-01, 4.732230e-01,
4.725512e-01, 4.718801e-01, 4.712093e-01, 4.705390e-01, 4.698691e-01, 4.691999e-01, 4.685310e-01, 4.678626e-01, 4.671947e-01, 4.665273e-01, 4.658604e-01, 4.651939e-01, 4.645278e-01, 4.638624e-01, 4.631974e-01, 4.625328e-01,
4.618688e-01, 4.612051e-01, 4.605420e-01, 4.598793e-01, 4.592172e-01, 4.585555e-01, 4.578942e-01, 4.572335e-01, 4.565732e-01, 4.559134e-01, 4.552541e-01, 4.545953e-01, 4.539369e-01, 4.532790e-01, 4.526217e-01, 4.519647e-01,
4.513083e-01, 4.506524e-01, 4.499968e-01, 4.493418e-01, 4.486873e-01, 4.480332e-01, 4.473796e-01, 4.467266e-01, 4.460739e-01, 4.454217e-01, 4.447701e-01, 4.441189e-01, 4.434681e-01, 4.428179e-01, 4.421681e-01, 4.415188e-01,
4.408700e-01, 4.402217e-01, 4.395738e-01, 4.389265e-01, 4.382795e-01, 4.376330e-01, 4.369872e-01, 4.363416e-01, 4.356966e-01, 4.350522e-01, 4.344081e-01, 4.337645e-01, 4.331214e-01, 4.324788e-01, 4.318367e-01, 4.311950e-01,
4.305538e-01, 4.299132e-01, 4.292729e-01, 4.286331e-01, 4.279939e-01, 4.273551e-01, 4.267168e-01, 4.260789e-01, 4.254415e-01, 4.248047e-01, 4.241682e-01, 4.235324e-01, 4.228969e-01, 4.222618e-01, 4.216274e-01, 4.209933e-01,
4.203598e-01, 4.197267e-01, 4.190941e-01, 4.184620e-01, 4.178303e-01, 4.171993e-01, 4.165685e-01, 4.159383e-01, 4.153086e-01, 4.146793e-01, 4.140506e-01, 4.134222e-01, 4.127945e-01, 4.121671e-01, 4.115402e-01, 4.109138e-01,
4.102879e-01, 4.096625e-01, 4.090375e-01, 4.084131e-01, 4.077890e-01, 4.071655e-01, 4.065424e-01, 4.059198e-01, 4.052978e-01, 4.046761e-01, 4.040550e-01, 4.034343e-01, 4.028141e-01, 4.021944e-01, 4.015752e-01, 4.009564e-01,
4.003382e-01, 3.997203e-01, 3.991030e-01, 3.984861e-01, 3.978697e-01, 3.972539e-01, 3.966384e-01, 3.960235e-01, 3.954090e-01, 3.947951e-01, 3.941815e-01, 3.935685e-01, 3.929559e-01, 3.923439e-01, 3.917322e-01, 3.911211e-01,
3.905104e-01, 3.899003e-01, 3.892906e-01, 3.886814e-01, 3.880726e-01, 3.874644e-01, 3.868566e-01, 3.862493e-01, 3.856424e-01, 3.850361e-01, 3.844302e-01, 3.838248e-01, 3.832198e-01, 3.826154e-01, 3.820115e-01, 3.814080e-01,
3.808050e-01, 3.802024e-01, 3.796004e-01, 3.789988e-01, 3.783977e-01, 3.777970e-01, 3.771969e-01, 3.765972e-01, 3.759980e-01, 3.753992e-01, 3.748010e-01, 3.742033e-01, 3.736060e-01, 3.730092e-01, 3.724128e-01, 3.718170e-01,
3.712215e-01, 3.706267e-01, 3.700322e-01, 3.694383e-01, 3.688449e-01, 3.682518e-01, 3.676593e-01, 3.670672e-01, 3.664757e-01, 3.658845e-01, 3.652940e-01, 3.647039e-01, 3.641142e-01, 3.635250e-01, 3.629363e-01, 3.623481e-01,
3.617604e-01, 3.611730e-01, 3.605863e-01, 3.599999e-01, 3.594141e-01, 3.588288e-01, 3.582438e-01, 3.576595e-01, 3.570755e-01, 3.564920e-01, 3.559091e-01, 3.553265e-01, 3.547446e-01, 3.541629e-01, 3.535819e-01, 3.530014e-01,
3.524212e-01, 3.518416e-01, 3.512625e-01, 3.506837e-01, 3.501055e-01, 3.495277e-01, 3.489505e-01, 3.483738e-01, 3.477974e-01, 3.472216e-01, 3.466463e-01, 3.460714e-01, 3.454970e-01, 3.449231e-01, 3.443496e-01, 3.437767e-01,
3.432043e-01, 3.426322e-01, 3.420607e-01, 3.414897e-01, 3.409190e-01, 3.403490e-01, 3.397794e-01, 3.392102e-01, 3.386415e-01, 3.380734e-01, 3.375056e-01, 3.369384e-01, 3.363717e-01, 3.358053e-01, 3.352395e-01, 3.346742e-01,
3.341093e-01, 3.335450e-01, 3.329811e-01, 3.324176e-01, 3.318547e-01, 3.312923e-01, 3.307303e-01, 3.301687e-01, 3.296077e-01, 3.290472e-01, 3.284870e-01, 3.279275e-01, 3.273684e-01, 3.268096e-01, 3.262515e-01, 3.256938e-01,
3.251367e-01, 3.245798e-01, 3.240236e-01, 3.234679e-01, 3.229125e-01, 3.223577e-01, 3.218033e-01, 3.212495e-01, 3.206960e-01, 3.201431e-01, 3.195907e-01, 3.190387e-01, 3.184872e-01, 3.179362e-01, 3.173857e-01, 3.168356e-01,
3.162860e-01, 3.157369e-01, 3.151883e-01, 3.146402e-01, 3.140924e-01, 3.135452e-01, 3.129985e-01, 3.124523e-01, 3.119065e-01, 3.113612e-01, 3.108164e-01, 3.102721e-01, 3.097281e-01, 3.091848e-01, 3.086419e-01, 3.080995e-01,
3.075576e-01, 3.070160e-01, 3.064750e-01, 3.059345e-01, 3.053945e-01, 3.048550e-01, 3.043158e-01, 3.037772e-01, 3.032391e-01, 3.027015e-01, 3.021643e-01, 3.016275e-01, 3.010913e-01, 3.005556e-01, 3.000203e-01, 2.994856e-01,
2.989511e-01, 2.984173e-01, 2.978840e-01, 2.973511e-01, 2.968187e-01, 2.962867e-01, 2.957553e-01, 2.952243e-01, 2.946938e-01, 2.941638e-01, 2.936343e-01, 2.931051e-01, 2.925766e-01, 2.920485e-01, 2.915208e-01, 2.909937e-01,
2.904670e-01, 2.899407e-01, 2.894150e-01, 2.888898e-01, 2.883650e-01, 2.878407e-01, 2.873169e-01, 2.867936e-01, 2.862706e-01, 2.857482e-01, 2.852263e-01, 2.847049e-01, 2.841840e-01, 2.836635e-01, 2.831435e-01, 2.826239e-01,
2.821048e-01, 2.815863e-01, 2.810682e-01, 2.805506e-01, 2.800335e-01, 2.795168e-01, 2.790006e-01, 2.784849e-01, 2.779696e-01, 2.774549e-01, 2.769406e-01, 2.764268e-01, 2.759135e-01, 2.754006e-01, 2.748883e-01, 2.743764e-01,
2.738650e-01, 2.733541e-01, 2.728435e-01, 2.723335e-01, 2.718240e-01, 2.713150e-01, 2.708064e-01, 2.702984e-01, 2.697908e-01, 2.692837e-01, 2.687770e-01, 2.682709e-01, 2.677652e-01, 2.672600e-01, 2.667551e-01, 2.662508e-01,
2.657471e-01, 2.652438e-01, 2.647409e-01, 2.642386e-01, 2.637367e-01, 2.632353e-01, 2.627344e-01, 2.622340e-01, 2.617340e-01, 2.612345e-01, 2.607355e-01, 2.602370e-01, 2.597389e-01, 2.592413e-01, 2.587442e-01, 2.582476e-01,
2.577515e-01, 2.572558e-01, 2.567606e-01, 2.562659e-01, 2.557716e-01, 2.552778e-01, 2.547845e-01, 2.542917e-01, 2.537993e-01, 2.533075e-01, 2.528161e-01, 2.523252e-01, 2.518348e-01, 2.513448e-01, 2.508553e-01, 2.503663e-01,
2.498778e-01, 2.493898e-01, 2.489022e-01, 2.484151e-01, 2.479285e-01, 2.474424e-01, 2.469567e-01, 2.464715e-01, 2.459868e-01, 2.455026e-01, 2.450188e-01, 2.445356e-01, 2.440529e-01, 2.435706e-01, 2.430887e-01, 2.426074e-01,
2.421265e-01, 2.416461e-01, 2.411661e-01, 2.406867e-01, 2.402077e-01, 2.397292e-01, 2.392511e-01, 2.387736e-01, 2.382965e-01, 2.378199e-01, 2.373438e-01, 2.368681e-01, 2.363930e-01, 2.359183e-01, 2.354441e-01, 2.349703e-01,
2.344971e-01, 2.340243e-01, 2.335521e-01, 2.330803e-01, 2.326089e-01, 2.321380e-01, 2.316676e-01, 2.311977e-01, 2.307283e-01, 2.302593e-01, 2.297908e-01, 2.293228e-01, 2.288553e-01, 2.283882e-01, 2.279216e-01, 2.274556e-01,
2.269900e-01, 2.265248e-01, 2.260602e-01, 2.255960e-01, 2.251322e-01, 2.246690e-01, 2.242062e-01, 2.237439e-01, 2.232821e-01, 2.228209e-01, 2.223600e-01, 2.218996e-01, 2.214397e-01, 2.209803e-01, 2.205213e-01, 2.200629e-01,
2.196048e-01, 2.191474e-01, 2.186904e-01, 2.182338e-01, 2.177777e-01, 2.173221e-01, 2.168670e-01, 2.164123e-01, 2.159581e-01, 2.155045e-01, 2.150513e-01, 2.145985e-01, 2.141463e-01, 2.136945e-01, 2.132431e-01, 2.127923e-01,
2.123420e-01, 2.118921e-01, 2.114427e-01, 2.109938e-01, 2.105453e-01, 2.100973e-01, 2.096499e-01, 2.092029e-01, 2.087563e-01, 2.083102e-01, 2.078646e-01, 2.074195e-01, 2.069750e-01, 2.065308e-01, 2.060871e-01, 2.056439e-01,
2.052011e-01, 2.047590e-01, 2.043172e-01, 2.038759e-01, 2.034351e-01, 2.029947e-01, 2.025549e-01, 2.021155e-01, 2.016766e-01, 2.012382e-01, 2.008002e-01, 2.003628e-01, 1.999258e-01, 1.994892e-01, 1.990532e-01, 1.986176e-01,
1.981826e-01, 1.977479e-01, 1.973138e-01, 1.968801e-01, 1.964470e-01, 1.960143e-01, 1.955820e-01, 1.951503e-01, 1.947190e-01, 1.942883e-01, 1.938579e-01, 1.934280e-01, 1.929986e-01, 1.925699e-01, 1.921414e-01, 1.917135e-01,
1.912860e-01, 1.908591e-01, 1.904325e-01, 1.900065e-01, 1.895809e-01, 1.891559e-01, 1.887313e-01, 1.883072e-01, 1.878835e-01, 1.874604e-01, 1.870377e-01, 1.866155e-01, 1.861938e-01, 1.857725e-01, 1.853517e-01, 1.849314e-01,
1.845117e-01, 1.840923e-01, 1.836734e-01, 1.832551e-01, 1.828371e-01, 1.824197e-01, 1.820027e-01, 1.815863e-01, 1.811702e-01, 1.807547e-01, 1.803397e-01, 1.799251e-01, 1.795110e-01, 1.790973e-01, 1.786842e-01, 1.782715e-01,
1.778593e-01, 1.774477e-01, 1.770364e-01, 1.766256e-01, 1.762154e-01, 1.758056e-01, 1.753962e-01, 1.749874e-01, 1.745790e-01, 1.741711e-01, 1.737638e-01, 1.733568e-01, 1.729503e-01, 1.725444e-01, 1.721388e-01, 1.717337e-01,
1.713293e-01, 1.709251e-01, 1.705215e-01, 1.701185e-01, 1.697158e-01, 1.693135e-01, 1.689119e-01, 1.685107e-01, 1.681099e-01, 1.677097e-01, 1.673099e-01, 1.669106e-01, 1.665118e-01, 1.661134e-01, 1.657156e-01, 1.653181e-01,
1.649212e-01, 1.645248e-01, 1.641288e-01, 1.637334e-01, 1.633383e-01, 1.629437e-01, 1.625497e-01, 1.621561e-01, 1.617631e-01, 1.613704e-01, 1.609782e-01, 1.605866e-01, 1.601954e-01, 1.598046e-01, 1.594144e-01, 1.590246e-01,
1.586354e-01, 1.582465e-01, 1.578583e-01, 1.574703e-01, 1.570829e-01, 1.566961e-01, 1.563096e-01, 1.559237e-01, 1.555382e-01, 1.551532e-01, 1.547687e-01, 1.543846e-01, 1.540011e-01, 1.536180e-01, 1.532354e-01, 1.528533e-01,
1.524715e-01, 1.520904e-01, 1.517097e-01, 1.513295e-01, 1.509497e-01, 1.505705e-01, 1.501917e-01, 1.498134e-01, 1.494355e-01, 1.490581e-01, 1.486813e-01, 1.483048e-01, 1.479290e-01, 1.475534e-01, 1.471785e-01, 1.468040e-01,
1.464300e-01, 1.460564e-01, 1.456834e-01, 1.453108e-01, 1.449387e-01, 1.445670e-01, 1.441959e-01, 1.438252e-01, 1.434550e-01, 1.430852e-01, 1.427159e-01, 1.423472e-01, 1.419789e-01, 1.416111e-01, 1.412437e-01, 1.408769e-01,
1.405104e-01, 1.401446e-01, 1.397791e-01, 1.394142e-01, 1.390496e-01, 1.386857e-01, 1.383222e-01, 1.379591e-01, 1.375966e-01, 1.372344e-01, 1.368729e-01, 1.365117e-01, 1.361511e-01, 1.357908e-01, 1.354312e-01, 1.350719e-01,
1.347132e-01, 1.343548e-01, 1.339971e-01, 1.336397e-01, 1.332829e-01, 1.329265e-01, 1.325706e-01, 1.322151e-01, 1.318603e-01, 1.315058e-01, 1.311518e-01, 1.307983e-01, 1.304452e-01, 1.300927e-01, 1.297406e-01, 1.293890e-01,
1.290379e-01, 1.286873e-01, 1.283371e-01, 1.279874e-01, 1.276382e-01, 1.272894e-01, 1.269412e-01, 1.265934e-01, 1.262461e-01, 1.258993e-01, 1.255529e-01, 1.252071e-01, 1.248616e-01, 1.245167e-01, 1.241723e-01, 1.238283e-01,
1.234848e-01, 1.231418e-01, 1.227993e-01, 1.224573e-01, 1.221156e-01, 1.217746e-01, 1.214339e-01, 1.210938e-01, 1.207541e-01, 1.204149e-01, 1.200762e-01, 1.197379e-01, 1.194001e-01, 1.190629e-01, 1.187260e-01, 1.183897e-01,
1.180538e-01, 1.177185e-01, 1.173836e-01, 1.170491e-01, 1.167152e-01, 1.163818e-01, 1.160487e-01, 1.157162e-01, 1.153842e-01, 1.150526e-01, 1.147215e-01, 1.143909e-01, 1.140608e-01, 1.137311e-01, 1.134019e-01, 1.130732e-01,
1.127450e-01, 1.124172e-01, 1.120900e-01, 1.117632e-01, 1.114368e-01, 1.111110e-01, 1.107857e-01, 1.104608e-01, 1.101364e-01, 1.098125e-01, 1.094890e-01, 1.091660e-01, 1.088436e-01, 1.085215e-01, 1.082000e-01, 1.078789e-01,
1.075584e-01, 1.072382e-01, 1.069186e-01, 1.065995e-01, 1.062807e-01, 1.059625e-01, 1.056448e-01, 1.053275e-01, 1.050107e-01, 1.046945e-01, 1.043786e-01, 1.040633e-01, 1.037484e-01, 1.034341e-01, 1.031201e-01, 1.028067e-01,
1.024938e-01, 1.021812e-01, 1.018692e-01, 1.015577e-01, 1.012467e-01, 1.009361e-01, 1.006260e-01, 1.003164e-01, 1.000073e-01, 9.969854e-02, 9.939039e-02, 9.908271e-02, 9.877551e-02, 9.846866e-02, 9.816241e-02, 9.785664e-02,
9.755135e-02, 9.724641e-02, 9.694207e-02, 9.663820e-02, 9.633482e-02, 9.603179e-02, 9.572935e-02, 9.542739e-02, 9.512591e-02, 9.482479e-02, 9.452426e-02, 9.422421e-02, 9.392464e-02, 9.362543e-02, 9.332681e-02, 9.302866e-02,
9.273100e-02, 9.243381e-02, 9.213698e-02, 9.184074e-02, 9.154499e-02, 9.124970e-02, 9.095490e-02, 9.066045e-02, 9.036660e-02, 9.007323e-02, 8.978033e-02, 8.948779e-02, 8.919585e-02, 8.890438e-02, 8.861339e-02, 8.832288e-02,
8.803284e-02, 8.774316e-02, 8.745408e-02, 8.716547e-02, 8.687735e-02, 8.658969e-02, 8.630240e-02, 8.601570e-02, 8.572948e-02, 8.544374e-02, 8.515847e-02, 8.487368e-02, 8.458924e-02, 8.430541e-02, 8.402205e-02, 8.373916e-02,
8.345675e-02, 8.317482e-02, 8.289325e-02, 8.261228e-02, 8.233178e-02, 8.205175e-02, 8.177221e-02, 8.149314e-02, 8.121455e-02, 8.093631e-02, 8.065867e-02, 8.038151e-02, 8.010483e-02, 7.982862e-02, 7.955289e-02, 7.927763e-02,
7.900286e-02, 7.872844e-02, 7.845461e-02, 7.818127e-02, 7.790840e-02, 7.763600e-02, 7.736409e-02, 7.709265e-02, 7.682168e-02, 7.655120e-02, 7.628107e-02, 7.601154e-02, 7.574248e-02, 7.547390e-02, 7.520580e-02, 7.493818e-02,
7.467103e-02, 7.440436e-02, 7.413816e-02, 7.387245e-02, 7.360709e-02, 7.334232e-02, 7.307804e-02, 7.281423e-02, 7.255089e-02, 7.228804e-02, 7.202566e-02, 7.176375e-02, 7.150233e-02, 7.124138e-02, 7.098091e-02, 7.072091e-02,
7.046139e-02, 7.020235e-02, 6.994367e-02, 6.968558e-02, 6.942797e-02, 6.917083e-02, 6.891418e-02, 6.865799e-02, 6.840229e-02, 6.814706e-02, 6.789231e-02, 6.763804e-02, 6.738424e-02, 6.713092e-02, 6.687808e-02, 6.662571e-02,
6.637383e-02, 6.612241e-02, 6.587148e-02, 6.562102e-02, 6.537104e-02, 6.512153e-02, 6.487250e-02, 6.462395e-02, 6.437588e-02, 6.412828e-02, 6.388116e-02, 6.363451e-02, 6.338835e-02, 6.314266e-02, 6.289744e-02, 6.265271e-02,
6.240845e-02, 6.216466e-02, 6.192136e-02, 6.167853e-02, 6.143618e-02, 6.119430e-02, 6.095290e-02, 6.071198e-02, 6.047153e-02, 6.023157e-02, 5.999207e-02, 5.975306e-02, 5.951452e-02, 5.927646e-02, 5.903888e-02, 5.880177e-02,
5.856514e-02, 5.832899e-02, 5.809331e-02, 5.785811e-02, 5.762339e-02, 5.738914e-02, 5.715537e-02, 5.692208e-02, 5.668926e-02, 5.645692e-02, 5.622506e-02, 5.599368e-02, 5.576277e-02, 5.553234e-02, 5.530238e-02, 5.507302e-02,
5.484402e-02, 5.461550e-02, 5.438745e-02, 5.415988e-02, 5.393279e-02, 5.370617e-02, 5.348003e-02, 5.325437e-02, 5.302918e-02, 5.280447e-02, 5.258024e-02, 5.235648e-02, 5.213332e-02, 5.191052e-02, 5.168819e-02, 5.146635e-02,
5.124497e-02, 5.102408e-02, 5.080366e-02, 5.058372e-02, 5.036426e-02, 5.014527e-02, 4.992676e-02, 4.970884e-02, 4.949129e-02, 4.927421e-02, 4.905760e-02, 4.884148e-02, 4.862583e-02, 4.841065e-02, 4.819596e-02, 4.798186e-02,
4.776812e-02, 4.755485e-02, 4.734206e-02, 4.712975e-02, 4.691792e-02, 4.670656e-02, 4.649568e-02, 4.628539e-02, 4.607546e-02, 4.586601e-02, 4.565704e-02, 4.544854e-02, 4.524052e-02, 4.503298e-02, 4.482603e-02, 4.461944e-02,
4.441333e-02, 4.420769e-02, 4.400253e-02, 4.379785e-02, 4.359376e-02, 4.339004e-02, 4.318678e-02, 4.298401e-02, 4.278171e-02, 4.257989e-02, 4.237866e-02, 4.217780e-02, 4.197741e-02, 4.177749e-02, 4.157805e-02, 4.137909e-02,
4.118073e-02, 4.098272e-02, 4.078519e-02, 4.058814e-02, 4.039156e-02, 4.019558e-02, 3.999996e-02, 3.980482e-02, 3.961015e-02, 3.941596e-02, 3.922236e-02, 3.902912e-02, 3.883636e-02, 3.864408e-02, 3.845227e-02, 3.826106e-02,
3.807020e-02, 3.787982e-02, 3.768992e-02, 3.750062e-02, 3.731167e-02, 3.712320e-02, 3.693521e-02, 3.674781e-02, 3.656077e-02, 3.637421e-02, 3.618813e-02, 3.600252e-02, 3.581750e-02, 3.563285e-02, 3.544867e-02, 3.526497e-02,
3.508186e-02, 3.489912e-02, 3.471684e-02, 3.453505e-02, 3.435385e-02, 3.417301e-02, 3.399265e-02, 3.381276e-02, 3.363347e-02, 3.345454e-02, 3.327608e-02, 3.309822e-02, 3.292072e-02, 3.274369e-02, 3.256714e-02, 3.239119e-02,
3.221560e-02, 3.204048e-02, 3.186595e-02, 3.169179e-02, 3.151810e-02, 3.134489e-02, 3.117228e-02, 3.100002e-02, 3.082824e-02, 3.065705e-02, 3.048623e-02, 3.031588e-02, 3.014600e-02, 2.997673e-02, 2.980781e-02, 2.963936e-02,
2.947152e-02, 2.930403e-02, 2.913702e-02, 2.897060e-02, 2.880454e-02, 2.863896e-02, 2.847397e-02, 2.830935e-02, 2.814519e-02, 2.798164e-02, 2.781844e-02, 2.765572e-02, 2.749360e-02, 2.733183e-02, 2.717054e-02, 2.700984e-02,
2.684951e-02, 2.668965e-02, 2.653039e-02, 2.637148e-02, 2.621305e-02, 2.605522e-02, 2.589774e-02, 2.574074e-02, 2.558434e-02, 2.542830e-02, 2.527285e-02, 2.511775e-02, 2.496314e-02, 2.480912e-02, 2.465546e-02, 2.450228e-02,
2.434969e-02, 2.419746e-02, 2.404571e-02, 2.389455e-02, 2.374375e-02, 2.359354e-02, 2.344370e-02, 2.329433e-02, 2.314556e-02, 2.299714e-02, 2.284932e-02, 2.270186e-02, 2.255487e-02, 2.240849e-02, 2.226245e-02, 2.211702e-02,
2.197194e-02, 2.182734e-02, 2.168334e-02, 2.153969e-02, 2.139664e-02, 2.125394e-02, 2.111173e-02, 2.097011e-02, 2.082884e-02, 2.068818e-02, 2.054787e-02, 2.040815e-02, 2.026880e-02, 2.012992e-02, 1.999164e-02, 1.985371e-02,
1.971638e-02, 1.957941e-02, 1.944304e-02, 1.930702e-02, 1.917160e-02, 1.903653e-02, 1.890194e-02, 1.876795e-02, 1.863432e-02, 1.850128e-02, 1.836860e-02, 1.823652e-02, 1.810479e-02, 1.797366e-02, 1.784289e-02, 1.771271e-02,
1.758289e-02, 1.745355e-02, 1.732481e-02, 1.719642e-02, 1.706862e-02, 1.694119e-02, 1.681435e-02, 1.668787e-02, 1.656199e-02, 1.643646e-02, 1.631153e-02, 1.618695e-02, 1.606297e-02, 1.593935e-02, 1.581633e-02, 1.569366e-02,
1.557159e-02, 1.544988e-02, 1.532876e-02, 1.520801e-02, 1.508784e-02, 1.496804e-02, 1.484883e-02, 1.472998e-02, 1.461172e-02, 1.449382e-02, 1.437652e-02, 1.425958e-02, 1.414323e-02, 1.402724e-02, 1.391184e-02, 1.379693e-02,
1.368237e-02, 1.356840e-02, 1.345479e-02, 1.334178e-02, 1.322913e-02, 1.311707e-02, 1.300538e-02, 1.289427e-02, 1.278353e-02, 1.267338e-02, 1.256359e-02, 1.245439e-02, 1.234567e-02, 1.223731e-02, 1.212955e-02, 1.202214e-02,
1.191533e-02, 1.180887e-02, 1.170301e-02, 1.159763e-02, 1.149261e-02, 1.138818e-02, 1.128411e-02, 1.118064e-02, 1.107752e-02, 1.097500e-02, 1.087296e-02, 1.077127e-02, 1.067019e-02, 1.056945e-02, 1.046932e-02, 1.036954e-02,
1.027036e-02, 1.017165e-02, 1.007330e-02, 9.975553e-03, 9.878159e-03, 9.781361e-03, 9.685040e-03, 9.589076e-03, 9.493709e-03, 9.398699e-03, 9.304285e-03, 9.210348e-03, 9.116769e-03, 9.023786e-03, 8.931279e-03, 8.839130e-03,
8.747578e-03, 8.656383e-03, 8.565784e-03, 8.475661e-03, 8.385897e-03, 8.296728e-03, 8.208036e-03, 8.119702e-03, 8.031964e-03, 7.944703e-03, 7.857800e-03, 7.771492e-03, 7.685542e-03, 7.600188e-03, 7.515311e-03, 7.430792e-03,
7.346869e-03, 7.263422e-03, 7.180333e-03, 7.097840e-03, 7.015824e-03, 6.934166e-03, 6.853104e-03, 6.772518e-03, 6.692290e-03, 6.612659e-03, 6.533504e-03, 6.454706e-03, 6.376505e-03, 6.298780e-03, 6.221414e-03, 6.144643e-03,
6.068349e-03, 5.992532e-03, 5.917072e-03, 5.842209e-03, 5.767822e-03, 5.693793e-03, 5.620360e-03, 5.547404e-03, 5.474806e-03, 5.402803e-03, 5.331278e-03, 5.260229e-03, 5.189538e-03, 5.119443e-03, 5.049825e-03, 4.980564e-03,
4.911900e-03, 4.843712e-03, 4.776001e-03, 4.708648e-03, 4.641891e-03, 4.575610e-03, 4.509687e-03, 4.444361e-03, 4.379511e-03, 4.315138e-03, 4.251122e-03, 4.187703e-03, 4.124761e-03, 4.062295e-03, 4.000187e-03, 3.938675e-03,
3.877640e-03, 3.817081e-03, 3.756881e-03, 3.697276e-03, 3.638148e-03, 3.579497e-03, 3.521204e-03, 3.463507e-03, 3.406286e-03, 3.349543e-03, 3.293157e-03, 3.237367e-03, 3.182054e-03, 3.127217e-03, 3.072858e-03, 3.018856e-03,
2.965450e-03, 2.912521e-03, 2.860069e-03, 2.808094e-03, 2.756476e-03, 2.705455e-03, 2.654910e-03, 2.604842e-03, 2.555132e-03, 2.506018e-03, 2.457380e-03, 2.409220e-03, 2.361536e-03, 2.314210e-03, 2.267480e-03, 2.221227e-03,
2.175450e-03, 2.130151e-03, 2.085328e-03, 2.040863e-03, 1.996994e-03, 1.953602e-03, 1.910686e-03, 1.868248e-03, 1.826167e-03, 1.784682e-03, 1.743674e-03, 1.703143e-03, 1.663089e-03, 1.623511e-03, 1.584291e-03, 1.545668e-03,
1.507521e-03, 1.469851e-03, 1.432657e-03, 1.395941e-03, 1.359701e-03, 1.323819e-03, 1.288533e-03, 1.253724e-03, 1.219392e-03, 1.185536e-03, 1.152158e-03, 1.119256e-03, 1.086712e-03, 1.054764e-03, 1.023293e-03, 9.922981e-04,
9.617805e-04, 9.317398e-04, 9.021759e-04, 8.730888e-04, 8.443594e-04, 8.162260e-04, 7.885695e-04, 7.613897e-04, 7.346869e-04, 7.084608e-04, 6.827116e-04, 6.574392e-04, 6.326437e-04, 6.082058e-04, 5.843639e-04, 5.609989e-04,
5.381107e-04, 5.156994e-04, 4.937649e-04, 4.723072e-04, 4.513264e-04, 4.308224e-04, 4.107952e-04, 3.912449e-04, 3.721714e-04, 3.534555e-04, 3.353357e-04, 3.176928e-04, 3.005266e-04, 2.838373e-04, 2.676249e-04, 2.518892e-04,
2.366304e-04, 2.218485e-04, 2.075434e-04, 1.937151e-04, 1.803637e-04, 1.674891e-04, 1.550913e-04, 1.431704e-04, 1.317263e-04, 1.206398e-04, 1.101494e-04, 1.001358e-04, 9.059906e-05, 8.153915e-05, 7.295609e-05, 6.484985e-05,
5.722046e-05, 5.006790e-05, 4.339218e-05, 3.719330e-05, 3.147125e-05, 2.622604e-05, 2.145767e-05, 1.716614e-05, 1.335144e-05, 1.001358e-05, 7.152557e-06, 4.768372e-06, 2.861023e-06, 1.430511e-06, 4.768372e-07, 0.000000e+00,
-1.192093e-07, -5.960464e-07, -1.549721e-06, -2.980232e-06, -4.887581e-06, -7.271767e-06, -1.013279e-05, -1.347065e-05, -1.728535e-05, -2.157688e-05, -2.634525e-05, -3.159046e-05, -3.731251e-05, -4.351139e-05, -5.018711e-05, -5.733967e-05,
-6.496906e-05, -7.307529e-05, -8.165836e-05, -9.071827e-05, -1.002550e-04, -1.102686e-04, -1.207590e-04, -1.318455e-04, -1.432896e-04, -1.552105e-04, -1.676083e-04, -1.804829e-04, -1.938343e-04, -2.076626e-04, -2.219677e-04, -2.367496e-04,
-2.520084e-04, -2.677441e-04, -2.839565e-04, -3.006458e-04, -3.178120e-04, -3.354549e-04, -3.535748e-04, -3.722906e-04, -3.913641e-04, -4.109144e-04, -4.309416e-04, -4.514456e-04, -4.724264e-04, -4.938841e-04, -5.158186e-04, -5.382299e-04,
-5.611181e-04, -5.844831e-04, -6.083250e-04, -6.327629e-04, -6.575584e-04, -6.828308e-04, -7.085800e-04, -7.348061e-04, -7.615089e-04, -7.886887e-04, -8.163452e-04, -8.444786e-04, -8.732080e-04, -9.022951e-04, -9.318590e-04, -9.618998e-04,
-9.924173e-04, -1.023412e-03, -1.054883e-03, -1.086831e-03, -1.119375e-03, -1.152277e-03, -1.185656e-03, -1.219511e-03, -1.253843e-03, -1.288652e-03, -1.323938e-03, -1.359820e-03, -1.396060e-03, -1.432776e-03, -1.469970e-03, -1.507640e-03,
-1.545787e-03, -1.584411e-03, -1.623631e-03, -1.663208e-03, -1.703262e-03, -1.743793e-03, -1.784801e-03, -1.826286e-03, -1.868367e-03, -1.910806e-03, -1.953721e-03, -1.997113e-03, -2.040982e-03, -2.085447e-03, -2.130270e-03, -2.175570e-03,
-2.221346e-03, -2.267599e-03, -2.314329e-03, -2.361655e-03, -2.409339e-03, -2.457500e-03, -2.506137e-03, -2.555251e-03, -2.604961e-03, -2.655029e-03, -2.705574e-03, -2.756596e-03, -2.808094e-03, -2.860188e-03, -2.912641e-03, -2.965569e-03,
-3.018975e-03, -3.072977e-03, -3.127337e-03, -3.182173e-03, -3.237486e-03, -3.293276e-03, -3.349662e-03, -3.406405e-03, -3.463626e-03, -3.521323e-03, -3.579617e-03, -3.638268e-03, -3.697395e-03, -3.757000e-03, -3.817201e-03, -3.877759e-03,
-3.938794e-03, -4.000306e-03, -4.062414e-03, -4.124880e-03, -4.187822e-03, -4.251242e-03, -4.315257e-03, -4.379630e-03, -4.444480e-03, -4.509807e-03, -4.575729e-03, -4.642010e-03, -4.708767e-03, -4.776120e-03, -4.843831e-03, -4.912019e-03,
-4.980683e-03, -5.049944e-03, -5.119562e-03, -5.189657e-03, -5.260348e-03, -5.331397e-03, -5.402923e-03, -5.474925e-03, -5.547523e-03, -5.620480e-03, -5.693913e-03, -5.767941e-03, -5.842328e-03, -5.917192e-03, -5.992651e-03, -6.068468e-03,
-6.144762e-03, -6.221533e-03, -6.298900e-03, -6.376624e-03, -6.454825e-03, -6.533623e-03, -6.612778e-03, -6.692410e-03, -6.772637e-03, -6.853223e-03, -6.934285e-03, -7.015944e-03, -7.097960e-03, -7.180452e-03, -7.263541e-03, -7.346988e-03,
-7.430911e-03, -7.515430e-03, -7.600307e-03, -7.685661e-03, -7.771611e-03, -7.857919e-03, -7.944822e-03, -8.032084e-03, -8.119822e-03, -8.208156e-03, -8.296847e-03, -8.386016e-03, -8.475780e-03, -8.565903e-03, -8.656502e-03, -8.747697e-03,
-8.839250e-03, -8.931398e-03, -9.023905e-03, -9.116888e-03, -9.210467e-03, -9.304404e-03, -9.398818e-03, -9.493828e-03, -9.589195e-03, -9.685159e-03, -9.781480e-03, -9.878278e-03, -9.975672e-03, -1.007342e-02, -1.017177e-02, -1.027048e-02,
-1.036966e-02, -1.046944e-02, -1.056957e-02, -1.067030e-02, -1.077139e-02, -1.087308e-02, -1.097512e-02, -1.107764e-02, -1.118076e-02, -1.128423e-02, -1.138830e-02, -1.149273e-02, -1.159763e-02, -1.170313e-02, -1.180899e-02, -1.191545e-02,
-1.202226e-02, -1.212966e-02, -1.223743e-02, -1.234579e-02, -1.245451e-02, -1.256371e-02, -1.267350e-02, -1.278365e-02, -1.289439e-02, -1.300550e-02, -1.311719e-02, -1.322925e-02, -1.334190e-02, -1.345491e-02, -1.356852e-02, -1.368248e-02,
-1.379704e-02, -1.391196e-02, -1.402736e-02, -1.414335e-02, -1.425970e-02, -1.437664e-02, -1.449394e-02, -1.461184e-02, -1.473010e-02, -1.484895e-02, -1.496816e-02, -1.508796e-02, -1.520813e-02, -1.532888e-02, -1.545000e-02, -1.557171e-02,
-1.569378e-02, -1.581645e-02, -1.593947e-02, -1.606309e-02, -1.618707e-02, -1.631165e-02, -1.643658e-02, -1.656210e-02, -1.668799e-02, -1.681447e-02, -1.694131e-02, -1.706874e-02, -1.719654e-02, -1.732492e-02, -1.745367e-02, -1.758301e-02,
-1.771283e-02, -1.784301e-02, -1.797378e-02, -1.810491e-02, -1.823664e-02, -1.836872e-02, -1.850140e-02, -1.863444e-02, -1.876807e-02, -1.890206e-02, -1.903665e-02, -1.917171e-02, -1.930714e-02, -1.944315e-02, -1.957953e-02, -1.971650e-02,
-1.985383e-02, -1.999176e-02, -2.013004e-02, -2.026892e-02, -2.040827e-02, -2.054799e-02, -2.068830e-02, -2.082896e-02, -2.097023e-02, -2.111185e-02, -2.125406e-02, -2.139676e-02, -2.153981e-02, -2.168345e-02, -2.182746e-02, -2.197206e-02,
-2.211714e-02, -2.226257e-02, -2.240860e-02, -2.255499e-02, -2.270198e-02, -2.284944e-02, -2.299726e-02, -2.314568e-02, -2.329445e-02, -2.344382e-02, -2.359366e-02, -2.374387e-02, -2.389467e-02, -2.404583e-02, -2.419758e-02, -2.434981e-02,
-2.450240e-02, -2.465558e-02, -2.480924e-02, -2.496326e-02, -2.511787e-02, -2.527297e-02, -2.542841e-02, -2.558446e-02, -2.574086e-02, -2.589786e-02, -2.605534e-02, -2.621317e-02, -2.637160e-02, -2.653050e-02, -2.668977e-02, -2.684963e-02,
-2.700996e-02, -2.717066e-02, -2.733195e-02, -2.749372e-02, -2.765584e-02, -2.781856e-02, -2.798176e-02, -2.814531e-02, -2.830946e-02, -2.847409e-02, -2.863908e-02, -2.880466e-02, -2.897072e-02, -2.913713e-02, -2.930415e-02, -2.947164e-02,
-2.963948e-02, -2.980793e-02, -2.997684e-02, -3.014612e-02, -3.031600e-02, -3.048635e-02, -3.065717e-02, -3.082836e-02, -3.100014e-02, -3.117239e-02, -3.134501e-02, -3.151822e-02, -3.169191e-02, -3.186607e-02, -3.204060e-02, -3.221571e-02,
-3.239131e-02, -3.256726e-02, -3.274381e-02, -3.292084e-02, -3.309834e-02, -3.327620e-02, -3.345466e-02, -3.363359e-02, -3.381288e-02, -3.399277e-02, -3.417313e-02, -3.435397e-02, -3.453517e-02, -3.471696e-02, -3.489923e-02, -3.508198e-02,
-3.526509e-02, -3.544879e-02, -3.563297e-02, -3.581762e-02, -3.600264e-02, -3.618824e-02, -3.637433e-02, -3.656089e-02, -3.674781e-02, -3.693533e-02, -3.712332e-02, -3.731179e-02, -3.750074e-02, -3.769004e-02, -3.787994e-02, -3.807032e-02,
-3.826118e-02, -3.845239e-02, -3.864419e-02, -3.883648e-02, -3.902924e-02, -3.922248e-02, -3.941607e-02, -3.961027e-02, -3.980494e-02, -4.000008e-02, -4.019570e-02, -4.039168e-02, -4.058826e-02, -4.078531e-02, -4.098284e-02, -4.118085e-02,
-4.137921e-02, -4.157817e-02, -4.177761e-02, -4.197752e-02, -4.217792e-02, -4.237878e-02, -4.258001e-02, -4.278183e-02, -4.298413e-02, -4.318690e-02, -4.339015e-02, -4.359388e-02, -4.379797e-02, -4.400265e-02, -4.420781e-02, -4.441345e-02,
-4.461956e-02, -4.482615e-02, -4.503310e-02, -4.524064e-02, -4.544866e-02, -4.565716e-02, -4.586613e-02, -4.607558e-02, -4.628551e-02, -4.649580e-02, -4.670668e-02, -4.691803e-02, -4.712987e-02, -4.734218e-02, -4.755497e-02, -4.776824e-02,
-4.798198e-02, -4.819608e-02, -4.841077e-02, -4.862595e-02, -4.884160e-02, -4.905772e-02, -4.927433e-02, -4.949141e-02, -4.970896e-02, -4.992688e-02, -5.014539e-02, -5.036438e-02, -5.058384e-02, -5.080378e-02, -5.102420e-02, -5.124509e-02,
-5.146646e-02, -5.168831e-02, -5.191064e-02, -5.213344e-02, -5.235660e-02, -5.258036e-02, -5.280459e-02, -5.302930e-02, -5.325449e-02, -5.348015e-02, -5.370629e-02, -5.393291e-02, -5.416000e-02, -5.438757e-02, -5.461562e-02, -5.484414e-02,
-5.507314e-02, -5.530250e-02, -5.553246e-02, -5.576289e-02, -5.599380e-02, -5.622518e-02, -5.645704e-02, -5.668938e-02, -5.692220e-02, -5.715549e-02, -5.738926e-02, -5.762351e-02, -5.785823e-02, -5.809343e-02, -5.832911e-02, -5.856526e-02,
-5.880189e-02, -5.903900e-02, -5.927658e-02, -5.951464e-02, -5.975318e-02, -5.999219e-02, -6.023169e-02, -6.047165e-02, -6.071210e-02, -6.095302e-02, -6.119442e-02, -6.143630e-02, -6.167865e-02, -6.192148e-02, -6.216478e-02, -6.240857e-02,
-6.265283e-02, -6.289756e-02, -6.314278e-02, -6.338847e-02, -6.363463e-02, -6.388128e-02, -6.412840e-02, -6.437600e-02, -6.462407e-02, -6.487262e-02, -6.512165e-02, -6.537116e-02, -6.562114e-02, -6.587160e-02, -6.612253e-02, -6.637394e-02,
-6.662583e-02, -6.687820e-02, -6.713104e-02, -6.738436e-02, -6.763816e-02, -6.789243e-02, -6.814718e-02, -6.840241e-02, -6.865811e-02, -6.891429e-02, -6.917095e-02, -6.942809e-02, -6.968570e-02, -6.994379e-02, -7.020247e-02, -7.046151e-02,
-7.072103e-02, -7.098103e-02, -7.124150e-02, -7.150245e-02, -7.176387e-02, -7.202578e-02, -7.228816e-02, -7.255101e-02, -7.281435e-02, -7.307816e-02, -7.334244e-02, -7.360721e-02, -7.387257e-02, -7.413828e-02, -7.440448e-02, -7.467115e-02,
-7.493830e-02, -7.520592e-02, -7.547402e-02, -7.574260e-02, -7.601166e-02, -7.628119e-02, -7.655132e-02, -7.682180e-02, -7.709277e-02, -7.736421e-02, -7.763612e-02, -7.790852e-02, -7.818139e-02, -7.845473e-02, -7.872856e-02, -7.900298e-02,
-7.927775e-02, -7.955301e-02, -7.982874e-02, -8.010495e-02, -8.038163e-02, -8.065879e-02, -8.093643e-02, -8.121467e-02, -8.149326e-02, -8.177233e-02, -8.205187e-02, -8.233190e-02, -8.261240e-02, -8.289337e-02, -8.317494e-02, -8.345687e-02,
-8.373928e-02, -8.402216e-02, -8.430552e-02, -8.458936e-02, -8.487380e-02, -8.515859e-02, -8.544385e-02, -8.572960e-02, -8.601582e-02, -8.630252e-02, -8.658981e-02, -8.687747e-02, -8.716559e-02, -8.745420e-02, -8.774328e-02, -8.803296e-02,
-8.832300e-02, -8.861351e-02, -8.890450e-02, -8.919597e-02, -8.948791e-02, -8.978045e-02, -9.007335e-02, -9.036672e-02, -9.066057e-02, -9.095502e-02, -9.124982e-02, -9.154510e-02, -9.184086e-02, -9.213710e-02, -9.243393e-02, -9.273112e-02,
-9.302878e-02, -9.332693e-02, -9.362555e-02, -9.392476e-02, -9.422433e-02, -9.452438e-02, -9.482491e-02, -9.512603e-02, -9.542751e-02, -9.572947e-02, -9.603190e-02, -9.633493e-02, -9.663832e-02, -9.694219e-02, -9.724653e-02, -9.755147e-02,
-9.785676e-02, -9.816253e-02, -9.846878e-02, -9.877563e-02, -9.908283e-02, -9.939051e-02, -9.969866e-02, -1.000074e-01, -1.003165e-01, -1.006261e-01, -1.009362e-01, -1.012468e-01, -1.015579e-01, -1.018693e-01, -1.021813e-01, -1.024939e-01,
-1.028068e-01, -1.031202e-01, -1.034342e-01, -1.037486e-01, -1.040634e-01, -1.043787e-01, -1.046946e-01, -1.050109e-01, -1.053276e-01, -1.056449e-01, -1.059626e-01, -1.062808e-01, -1.065996e-01, -1.069187e-01, -1.072383e-01, -1.075585e-01,
-1.078790e-01, -1.082001e-01, -1.085216e-01, -1.088437e-01, -1.091661e-01, -1.094891e-01, -1.098126e-01, -1.101365e-01, -1.104609e-01, -1.107858e-01, -1.111112e-01, -1.114370e-01, -1.117634e-01, -1.120901e-01, -1.124173e-01, -1.127452e-01,
-1.130733e-01, -1.134020e-01, -1.137313e-01, -1.140609e-01, -1.143910e-01, -1.147217e-01, -1.150527e-01, -1.153843e-01, -1.157163e-01, -1.160488e-01, -1.163819e-01, -1.167153e-01, -1.170492e-01, -1.173837e-01, -1.177186e-01, -1.180539e-01,
-1.183898e-01, -1.187261e-01, -1.190630e-01, -1.194003e-01, -1.197380e-01, -1.200763e-01, -1.204150e-01, -1.207542e-01, -1.210939e-01, -1.214340e-01, -1.217747e-01, -1.221157e-01, -1.224574e-01, -1.227994e-01, -1.231419e-01, -1.234850e-01,
-1.238284e-01, -1.241724e-01, -1.245168e-01, -1.248617e-01, -1.252072e-01, -1.255530e-01, -1.258994e-01, -1.262462e-01, -1.265935e-01, -1.269413e-01, -1.272895e-01, -1.276383e-01, -1.279875e-01, -1.283373e-01, -1.286874e-01, -1.290380e-01,
-1.293892e-01, -1.297407e-01, -1.300929e-01, -1.304454e-01, -1.307985e-01, -1.311519e-01, -1.315060e-01, -1.318604e-01, -1.322153e-01, -1.325707e-01, -1.329266e-01, -1.332830e-01, -1.336398e-01, -1.339972e-01, -1.343549e-01, -1.347133e-01,
-1.350720e-01, -1.354313e-01, -1.357909e-01, -1.361512e-01, -1.365118e-01, -1.368730e-01, -1.372346e-01, -1.375967e-01, -1.379592e-01, -1.383222e-01, -1.386858e-01, -1.390498e-01, -1.394143e-01, -1.397792e-01, -1.401447e-01, -1.405106e-01,
-1.408770e-01, -1.412438e-01, -1.416112e-01, -1.419790e-01, -1.423473e-01, -1.427161e-01, -1.430854e-01, -1.434551e-01, -1.438253e-01, -1.441960e-01, -1.445671e-01, -1.449388e-01, -1.453109e-01, -1.456835e-01, -1.460565e-01, -1.464301e-01,
-1.468041e-01, -1.471786e-01, -1.475536e-01, -1.479291e-01, -1.483049e-01, -1.486814e-01, -1.490582e-01, -1.494356e-01, -1.498135e-01, -1.501918e-01, -1.505706e-01, -1.509498e-01, -1.513296e-01, -1.517098e-01, -1.520905e-01, -1.524717e-01,
-1.528534e-01, -1.532356e-01, -1.536181e-01, -1.540012e-01, -1.543847e-01, -1.547688e-01, -1.551533e-01, -1.555383e-01, -1.559238e-01, -1.563097e-01, -1.566962e-01, -1.570830e-01, -1.574705e-01, -1.578584e-01, -1.582466e-01, -1.586355e-01,
-1.590247e-01, -1.594145e-01, -1.598047e-01, -1.601955e-01, -1.605867e-01, -1.609783e-01, -1.613705e-01, -1.617631e-01, -1.621562e-01, -1.625499e-01, -1.629438e-01, -1.633384e-01, -1.637335e-01, -1.641289e-01, -1.645249e-01, -1.649213e-01,
-1.653183e-01, -1.657157e-01, -1.661135e-01, -1.665119e-01, -1.669108e-01, -1.673100e-01, -1.677098e-01, -1.681100e-01, -1.685108e-01, -1.689121e-01, -1.693137e-01, -1.697159e-01, -1.701186e-01, -1.705216e-01, -1.709253e-01, -1.713294e-01,
-1.717339e-01, -1.721389e-01, -1.725445e-01, -1.729504e-01, -1.733569e-01, -1.737639e-01, -1.741712e-01, -1.745791e-01, -1.749876e-01, -1.753963e-01, -1.758057e-01, -1.762155e-01, -1.766257e-01, -1.770365e-01, -1.774478e-01, -1.778594e-01,
-1.782717e-01, -1.786844e-01, -1.790974e-01, -1.795111e-01, -1.799252e-01, -1.803398e-01, -1.807548e-01, -1.811703e-01, -1.815864e-01, -1.820028e-01, -1.824198e-01, -1.828372e-01, -1.832552e-01, -1.836735e-01, -1.840924e-01, -1.845118e-01,
-1.849315e-01, -1.853518e-01, -1.857727e-01, -1.861939e-01, -1.866156e-01, -1.870378e-01, -1.874605e-01, -1.878836e-01, -1.883073e-01, -1.887314e-01, -1.891561e-01, -1.895810e-01, -1.900066e-01, -1.904327e-01, -1.908592e-01, -1.912861e-01,
-1.917136e-01, -1.921415e-01, -1.925700e-01, -1.929988e-01, -1.934282e-01, -1.938580e-01, -1.942884e-01, -1.947191e-01, -1.951504e-01, -1.955822e-01, -1.960144e-01, -1.964471e-01, -1.968802e-01, -1.973139e-01, -1.977481e-01, -1.981827e-01,
-1.986177e-01, -1.990533e-01, -1.994894e-01, -1.999259e-01, -2.003629e-01, -2.008003e-01, -2.012383e-01, -2.016767e-01, -2.021157e-01, -2.025551e-01, -2.029948e-01, -2.034352e-01, -2.038760e-01, -2.043173e-01, -2.047591e-01, -2.052013e-01,
-2.056440e-01, -2.060872e-01, -2.065309e-01, -2.069751e-01, -2.074196e-01, -2.078648e-01, -2.083104e-01, -2.087564e-01, -2.092030e-01, -2.096500e-01, -2.100974e-01, -2.105454e-01, -2.109939e-01, -2.114428e-01, -2.118922e-01, -2.123421e-01,
-2.127924e-01, -2.132432e-01, -2.136946e-01, -2.141464e-01, -2.145987e-01, -2.150514e-01, -2.155046e-01, -2.159582e-01, -2.164124e-01, -2.168671e-01, -2.173222e-01, -2.177778e-01, -2.182339e-01, -2.186905e-01, -2.191476e-01, -2.196050e-01,
-2.200630e-01, -2.205215e-01, -2.209804e-01, -2.214398e-01, -2.218997e-01, -2.223601e-01, -2.228210e-01, -2.232822e-01, -2.237440e-01, -2.242063e-01, -2.246691e-01, -2.251323e-01, -2.255961e-01, -2.260603e-01, -2.265249e-01, -2.269901e-01,
-2.274557e-01, -2.279217e-01, -2.283883e-01, -2.288554e-01, -2.293229e-01, -2.297909e-01, -2.302594e-01, -2.307284e-01, -2.311978e-01, -2.316678e-01, -2.321382e-01, -2.326090e-01, -2.330804e-01, -2.335522e-01, -2.340244e-01, -2.344972e-01,
-2.349705e-01, -2.354442e-01, -2.359184e-01, -2.363931e-01, -2.368683e-01, -2.373439e-01, -2.378200e-01, -2.382966e-01, -2.387737e-01, -2.392513e-01, -2.397293e-01, -2.402078e-01, -2.406868e-01, -2.411662e-01, -2.416462e-01, -2.421266e-01,
-2.426075e-01, -2.430888e-01, -2.435707e-01, -2.440530e-01, -2.445357e-01, -2.450190e-01, -2.455027e-01, -2.459869e-01, -2.464716e-01, -2.469568e-01, -2.474425e-01, -2.479286e-01, -2.484152e-01, -2.489023e-01, -2.493899e-01, -2.498779e-01,
-2.503664e-01, -2.508554e-01, -2.513449e-01, -2.518349e-01, -2.523253e-01, -2.528162e-01, -2.533076e-01, -2.537994e-01, -2.542918e-01, -2.547846e-01, -2.552779e-01, -2.557718e-01, -2.562660e-01, -2.567607e-01, -2.572559e-01, -2.577516e-01,
-2.582477e-01, -2.587444e-01, -2.592415e-01, -2.597390e-01, -2.602371e-01, -2.607356e-01, -2.612346e-01, -2.617341e-01, -2.622341e-01, -2.627345e-01, -2.632354e-01, -2.637368e-01, -2.642387e-01, -2.647411e-01, -2.652439e-01, -2.657472e-01,
-2.662510e-01, -2.667552e-01, -2.672601e-01, -2.677653e-01, -2.682710e-01, -2.687771e-01, -2.692838e-01, -2.697909e-01, -2.702985e-01, -2.708066e-01, -2.713151e-01, -2.718241e-01, -2.723336e-01, -2.728436e-01, -2.733542e-01, -2.738651e-01,
-2.743765e-01, -2.748884e-01, -2.754008e-01, -2.759136e-01, -2.764269e-01, -2.769407e-01, -2.774550e-01, -2.779697e-01, -2.784851e-01, -2.790008e-01, -2.795169e-01, -2.800336e-01, -2.805507e-01, -2.810683e-01, -2.815864e-01, -2.821050e-01,
-2.826240e-01, -2.831436e-01, -2.836636e-01, -2.841841e-01, -2.847050e-01, -2.852265e-01, -2.857484e-01, -2.862707e-01, -2.867937e-01, -2.873170e-01, -2.878408e-01, -2.883651e-01, -2.888899e-01, -2.894151e-01, -2.899408e-01, -2.904671e-01,
-2.909938e-01, -2.915210e-01, -2.920486e-01, -2.925767e-01, -2.931052e-01, -2.936344e-01, -2.941639e-01, -2.946939e-01, -2.952244e-01, -2.957554e-01, -2.962868e-01, -2.968189e-01, -2.973512e-01, -2.978841e-01, -2.984174e-01, -2.989513e-01,
-2.994857e-01, -3.000205e-01, -3.005557e-01, -3.010914e-01, -3.016276e-01, -3.021644e-01, -3.027016e-01, -3.032392e-01, -3.037773e-01, -3.043159e-01, -3.048551e-01, -3.053946e-01, -3.059347e-01, -3.064752e-01, -3.070161e-01, -3.075577e-01,
-3.080996e-01, -3.086420e-01, -3.091849e-01, -3.097283e-01, -3.102722e-01, -3.108165e-01, -3.113613e-01, -3.119066e-01, -3.124524e-01, -3.129987e-01, -3.135453e-01, -3.140925e-01, -3.146403e-01, -3.151884e-01, -3.157370e-01, -3.162861e-01,
-3.168358e-01, -3.173858e-01, -3.179363e-01, -3.184873e-01, -3.190389e-01, -3.195908e-01, -3.201432e-01, -3.206961e-01, -3.212496e-01, -3.218035e-01, -3.223578e-01, -3.229126e-01, -3.234680e-01, -3.240237e-01, -3.245800e-01, -3.251368e-01,
-3.256940e-01, -3.262516e-01, -3.268098e-01, -3.273685e-01, -3.279276e-01, -3.284872e-01, -3.290473e-01, -3.296078e-01, -3.301688e-01, -3.307304e-01, -3.312924e-01, -3.318548e-01, -3.324177e-01, -3.329812e-01, -3.335451e-01, -3.341094e-01,
-3.346744e-01, -3.352396e-01, -3.358054e-01, -3.363718e-01, -3.369385e-01, -3.375057e-01, -3.380735e-01, -3.386416e-01, -3.392103e-01, -3.397795e-01, -3.403491e-01, -3.409191e-01, -3.414898e-01, -3.420608e-01, -3.426323e-01, -3.432044e-01,
-3.437768e-01, -3.443497e-01, -3.449233e-01, -3.454971e-01, -3.460715e-01, -3.466464e-01, -3.472217e-01, -3.477975e-01, -3.483739e-01, -3.489506e-01, -3.495278e-01, -3.501056e-01, -3.506838e-01, -3.512626e-01, -3.518417e-01, -3.524213e-01,
-3.530015e-01, -3.535820e-01, -3.541631e-01, -3.547447e-01, -3.553267e-01, -3.559092e-01, -3.564922e-01, -3.570756e-01, -3.576596e-01, -3.582439e-01, -3.588289e-01, -3.594142e-01, -3.600000e-01, -3.605864e-01, -3.611732e-01, -3.617605e-01,
-3.623482e-01, -3.629364e-01, -3.635252e-01, -3.641143e-01, -3.647040e-01, -3.652941e-01, -3.658847e-01, -3.664758e-01, -3.670673e-01, -3.676594e-01, -3.682519e-01, -3.688450e-01, -3.694384e-01, -3.700323e-01, -3.706268e-01, -3.712217e-01,
-3.718171e-01, -3.724129e-01, -3.730093e-01, -3.736061e-01, -3.742034e-01, -3.748012e-01, -3.753994e-01, -3.759981e-01, -3.765973e-01, -3.771970e-01, -3.777971e-01, -3.783978e-01, -3.789989e-01, -3.796005e-01, -3.802025e-01, -3.808051e-01,
-3.814081e-01, -3.820117e-01, -3.826156e-01, -3.832200e-01, -3.838249e-01, -3.844303e-01, -3.850362e-01, -3.856425e-01, -3.862494e-01, -3.868567e-01, -3.874645e-01, -3.880727e-01, -3.886815e-01, -3.892907e-01, -3.899004e-01, -3.905106e-01,
-3.911213e-01, -3.917323e-01, -3.923440e-01, -3.929560e-01, -3.935686e-01, -3.941816e-01, -3.947952e-01, -3.954091e-01, -3.960236e-01, -3.966385e-01, -3.972540e-01, -3.978698e-01, -3.984863e-01, -3.991032e-01, -3.997204e-01, -4.003383e-01,
-4.009565e-01, -4.015753e-01, -4.021945e-01, -4.028143e-01, -4.034344e-01, -4.040551e-01, -4.046762e-01, -4.052979e-01, -4.059199e-01, -4.065425e-01, -4.071656e-01, -4.077891e-01, -4.084132e-01, -4.090376e-01, -4.096626e-01, -4.102880e-01,
-4.109139e-01, -4.115403e-01, -4.121672e-01, -4.127946e-01, -4.134223e-01, -4.140507e-01, -4.146794e-01, -4.153087e-01, -4.159384e-01, -4.165686e-01, -4.171994e-01, -4.178305e-01, -4.184622e-01, -4.190942e-01, -4.197268e-01, -4.203600e-01,
-4.209934e-01, -4.216275e-01, -4.222620e-01, -4.228970e-01, -4.235325e-01, -4.241683e-01, -4.248048e-01, -4.254416e-01, -4.260790e-01, -4.267169e-01, -4.273552e-01, -4.279940e-01, -4.286332e-01, -4.292730e-01, -4.299133e-01, -4.305539e-01,
-4.311951e-01, -4.318368e-01, -4.324789e-01, -4.331216e-01, -4.337646e-01, -4.344082e-01, -4.350523e-01, -4.356967e-01, -4.363418e-01, -4.369873e-01, -4.376332e-01, -4.382796e-01, -4.389266e-01, -4.395739e-01, -4.402218e-01, -4.408702e-01,
-4.415189e-01, -4.421682e-01, -4.428180e-01, -4.434682e-01, -4.441190e-01, -4.447702e-01, -4.454218e-01, -4.460740e-01, -4.467267e-01, -4.473797e-01, -4.480333e-01, -4.486874e-01, -4.493419e-01, -4.499969e-01, -4.506525e-01, -4.513084e-01,
-4.519649e-01, -4.526218e-01, -4.532791e-01, -4.539371e-01, -4.545954e-01, -4.552542e-01, -4.559135e-01, -4.565734e-01, -4.572337e-01, -4.578943e-01, -4.585556e-01, -4.592173e-01, -4.598794e-01, -4.605421e-01, -4.612052e-01, -4.618689e-01,
-4.625329e-01, -4.631975e-01, -4.638625e-01, -4.645280e-01, -4.651940e-01, -4.658605e-01, -4.665275e-01, -4.671948e-01, -4.678627e-01, -4.685311e-01, -4.692000e-01, -4.698693e-01, -4.705391e-01, -4.712094e-01, -4.718802e-01, -4.725513e-01,
-4.732231e-01, -4.738953e-01, -4.745680e-01, -4.752411e-01, -4.759147e-01, -4.765888e-01, -4.772635e-01, -4.779384e-01, -4.786140e-01, -4.792900e-01, -4.799665e-01, -4.806434e-01, -4.813209e-01, -4.819988e-01, -4.826772e-01, -4.833561e-01,
-4.840354e-01, -4.847152e-01, -4.853956e-01, -4.860764e-01, -4.867576e-01, -4.874393e-01, -4.881215e-01, -4.888042e-01, -4.894874e-01, -4.901710e-01, -4.908551e-01, -4.915397e-01, -4.922248e-01, -4.929104e-01, -4.935964e-01, -4.942828e-01,
-4.949698e-01, -4.956573e-01, -4.963453e-01, -4.970337e-01, -4.977225e-01, -4.984119e-01, -4.991018e-01, -4.997921e-01, -5.004829e-01, -5.011742e-01, -5.018659e-01, -5.025581e-01, -5.032508e-01, -5.039440e-01, -5.046377e-01, -5.053319e-01,
-5.060264e-01, -5.067215e-01, -5.074171e-01, -5.081131e-01, -5.088097e-01, -5.095067e-01, -5.102042e-01, -5.109020e-01, -5.116005e-01, -5.122994e-01, -5.129988e-01, -5.136987e-01, -5.143991e-01, -5.150999e-01, -5.158011e-01, -5.165029e-01,
-5.172051e-01, -5.179079e-01, -5.186111e-01, -5.193148e-01, -5.200189e-01, -5.207236e-01, -5.214287e-01, -5.221342e-01, -5.228403e-01, -5.235468e-01, -5.242538e-01, -5.249614e-01, -5.256693e-01, -5.263778e-01, -5.270867e-01, -5.277961e-01,
-5.285059e-01, -5.292163e-01, -5.299271e-01, -5.306385e-01, -5.313503e-01, -5.320625e-01, -5.327753e-01, -5.334885e-01, -5.342022e-01, -5.349164e-01, -5.356311e-01, -5.363462e-01, -5.370618e-01, -5.377778e-01, -5.384943e-01, -5.392114e-01,
-5.399289e-01, -5.406469e-01, -5.413654e-01, -5.420843e-01, -5.428038e-01, -5.435237e-01, -5.442441e-01, -5.449649e-01, -5.456862e-01, -5.464081e-01, -5.471303e-01, -5.478531e-01, -5.485764e-01, -5.493001e-01, -5.500243e-01, -5.507489e-01,
-5.514741e-01, -5.521997e-01, -5.529258e-01, -5.536523e-01, -5.543793e-01, -5.551069e-01, -5.558349e-01, -5.565634e-01, -5.572923e-01, -5.580218e-01, -5.587517e-01, -5.594821e-01, -5.602130e-01, -5.609443e-01, -5.616761e-01, -5.624084e-01,
-5.631412e-01, -5.638745e-01, -5.646082e-01, -5.653424e-01, -5.660771e-01, -5.668123e-01, -5.675479e-01, -5.682840e-01, -5.690206e-01, -5.697577e-01, -5.704952e-01, -5.712333e-01, -5.719719e-01, -5.727109e-01, -5.734503e-01, -5.741903e-01,
-5.749307e-01, -5.756716e-01, -5.764129e-01, -5.771548e-01, -5.778971e-01, -5.786399e-01, -5.793831e-01, -5.801269e-01, -5.808711e-01, -5.816158e-01, -5.823610e-01, -5.831066e-01, -5.838528e-01, -5.845994e-01, -5.853465e-01, -5.860940e-01,
-5.868421e-01, -5.875906e-01, -5.883397e-01, -5.890892e-01, -5.898391e-01, -5.905895e-01, -5.913404e-01, -5.920918e-01, -5.928437e-01, -5.935960e-01, -5.943488e-01, -5.951021e-01, -5.958558e-01, -5.966101e-01, -5.973649e-01, -5.981201e-01,
-5.988758e-01, -5.996319e-01, -6.003885e-01, -6.011456e-01, -6.019032e-01, -6.026613e-01, -6.034198e-01, -6.041788e-01, -6.049384e-01, -6.056983e-01, -6.064588e-01, -6.072197e-01, -6.079811e-01, -6.087430e-01, -6.095053e-01, -6.102681e-01,
-6.110314e-01, -6.117953e-01, -6.125596e-01, -6.133243e-01, -6.140895e-01, -6.148552e-01, -6.156213e-01, -6.163880e-01, -6.171552e-01, -6.179228e-01, -6.186908e-01, -6.194594e-01, -6.202284e-01, -6.209979e-01, -6.217679e-01, -6.225384e-01,
-6.233094e-01, -6.240808e-01, -6.248527e-01, -6.256250e-01, -6.263978e-01, -6.271713e-01, -6.279451e-01, -6.287193e-01, -6.294941e-01, -6.302693e-01, -6.310450e-01, -6.318213e-01, -6.325979e-01, -6.333750e-01, -6.341527e-01, -6.349307e-01,
-6.357094e-01, -6.364884e-01, -6.372679e-01, -6.380479e-01, -6.388284e-01, -6.396095e-01, -6.403909e-01, -6.411728e-01, -6.419551e-01, -6.427380e-01, -6.435214e-01, -6.443052e-01, -6.450895e-01, -6.458743e-01, -6.466595e-01, -6.474453e-01,
-6.482315e-01, -6.490182e-01, -6.498053e-01, -6.505930e-01, -6.513811e-01, -6.521697e-01, -6.529588e-01, -6.537483e-01, -6.545384e-01, -6.553289e-01, -6.561198e-01, -6.569113e-01, -6.577033e-01, -6.584957e-01, -6.592885e-01, -6.600819e-01,
-6.608758e-01, -6.616701e-01, -6.624649e-01, -6.632601e-01, -6.640559e-01, -6.648521e-01, -6.656488e-01, -6.664460e-01, -6.672437e-01, -6.680418e-01, -6.688404e-01, -6.696396e-01, -6.704391e-01, -6.712391e-01, -6.720396e-01, -6.728407e-01,
-6.736422e-01, -6.744441e-01, -6.752465e-01, -6.760495e-01, -6.768528e-01, -6.776567e-01, -6.784611e-01, -6.792659e-01, -6.800711e-01, -6.808770e-01, -6.816832e-01, -6.824899e-01, -6.832970e-01, -6.841048e-01, -6.849129e-01, -6.857215e-01,
-6.865307e-01, -6.873403e-01, -6.881503e-01, -6.889609e-01, -6.897719e-01, -6.905833e-01, -6.913954e-01, -6.922078e-01, -6.930207e-01, -6.938342e-01, -6.946480e-01, -6.954623e-01, -6.962773e-01, -6.970925e-01, -6.979083e-01, -6.987246e-01,
-6.995413e-01, -7.003585e-01, -7.011763e-01, -7.019944e-01, -7.028130e-01, -7.036322e-01, -7.044518e-01, -7.052718e-01, -7.060925e-01, -7.069135e-01, -7.077351e-01, -7.085570e-01, -7.093794e-01, -7.102025e-01, -7.110258e-01, -7.118497e-01,
-7.126741e-01, -7.134990e-01, -7.143244e-01, -7.151501e-01, -7.159764e-01, -7.168032e-01, -7.176304e-01, -7.184581e-01, -7.192863e-01, -7.201149e-01, -7.209442e-01, -7.217737e-01, -7.226038e-01, -7.234344e-01, -7.242655e-01, -7.250971e-01,
-7.259290e-01, -7.267615e-01, -7.275945e-01, -7.284279e-01, -7.292619e-01, -7.300962e-01, -7.309312e-01, -7.317665e-01, -7.326022e-01, -7.334386e-01, -7.342753e-01, -7.351127e-01, -7.359504e-01, -7.367886e-01, -7.376273e-01, -7.384664e-01,
-7.393061e-01, -7.401462e-01, -7.409868e-01, -7.418278e-01, -7.426695e-01, -7.435114e-01, -7.443539e-01, -7.451969e-01, -7.460403e-01, -7.468843e-01, -7.477287e-01, -7.485737e-01, -7.494190e-01, -7.502649e-01, -7.511111e-01, -7.519580e-01,
-7.528052e-01, -7.536530e-01, -7.545012e-01, -7.553500e-01, -7.561991e-01, -7.570487e-01, -7.578989e-01, -7.587495e-01, -7.596006e-01, -7.604522e-01, -7.613043e-01, -7.621567e-01, -7.630098e-01, -7.638632e-01, -7.647172e-01, -7.655716e-01,
-7.664266e-01, -7.672819e-01, -7.681378e-01, -7.689941e-01, -7.698510e-01, -7.707082e-01, -7.715660e-01, -7.724242e-01, -7.732830e-01, -7.741421e-01, -7.750019e-01, -7.758621e-01, -7.767227e-01, -7.775838e-01, -7.784454e-01, -7.793075e-01,
-7.801700e-01, -7.810330e-01, -7.818965e-01, -7.827605e-01, -7.836249e-01, -7.844899e-01, -7.853552e-01, -7.862211e-01, -7.870876e-01, -7.879543e-01, -7.888217e-01, -7.896894e-01, -7.905577e-01, -7.914264e-01, -7.922957e-01, -7.931653e-01,
-7.940356e-01, -7.949063e-01, -7.957773e-01, -7.966490e-01, -7.975210e-01, -7.983936e-01, -7.992666e-01, -8.001401e-01, -8.010142e-01, -8.018886e-01, -8.027636e-01, -8.036389e-01, -8.045149e-01, -8.053912e-01, -8.062681e-01, -8.071455e-01,
-8.080232e-01, -8.089015e-01, -8.097802e-01, -8.106595e-01, -8.115393e-01, -8.124194e-01, -8.133001e-01, -8.141812e-01, -8.150629e-01, -8.159450e-01, -8.168275e-01, -8.177106e-01, -8.185942e-01, -8.194782e-01, -8.203627e-01, -8.212476e-01,
-8.221331e-01, -8.230190e-01, -8.239053e-01, -8.247923e-01, -8.256797e-01, -8.265674e-01, -8.274558e-01, -8.283445e-01, -8.292338e-01, -8.301235e-01, -8.310137e-01, -8.319044e-01, -8.327956e-01, -8.336872e-01, -8.345793e-01, -8.354720e-01,
-8.363650e-01, -8.372586e-01, -8.381526e-01, -8.390471e-01, -8.399421e-01, -8.408376e-01, -8.417335e-01, -8.426299e-01, -8.435268e-01, -8.444241e-01, -8.453220e-01, -8.462204e-01, -8.471191e-01, -8.480184e-01, -8.489182e-01, -8.498183e-01,
-8.507191e-01, -8.516203e-01, -8.525220e-01, -8.534241e-01, -8.543267e-01, -8.552299e-01, -8.561333e-01, -8.570374e-01, -8.579420e-01, -8.588469e-01, -8.597524e-01, -8.606584e-01, -8.615649e-01, -8.624717e-01, -8.633791e-01, -8.642870e-01,
-8.651953e-01, -8.661041e-01, -8.670135e-01, -8.679233e-01, -8.688334e-01, -8.697442e-01, -8.706554e-01, -8.715671e-01, -8.724792e-01, -8.733919e-01, -8.743050e-01, -8.752185e-01, -8.761326e-01, -8.770472e-01, -8.779622e-01, -8.788776e-01,
-8.797936e-01, -8.807101e-01, -8.816271e-01, -8.825444e-01, -8.834623e-01, -8.843807e-01, -8.852996e-01, -8.862189e-01, -8.871386e-01, -8.880589e-01, -8.889797e-01, -8.899009e-01, -8.908225e-01, -8.917447e-01, -8.926674e-01, -8.935906e-01,
-8.945141e-01, -8.954382e-01, -8.963628e-01, -8.972878e-01, -8.982134e-01, -8.991393e-01, -9.000658e-01, -9.009928e-01, -9.019202e-01, -9.028481e-01, -9.037764e-01, -9.047053e-01, -9.056346e-01, -9.065645e-01, -9.074948e-01, -9.084255e-01,
-9.093567e-01, -9.102885e-01, -9.112207e-01, -9.121534e-01, -9.130865e-01, -9.140201e-01, -9.149542e-01, -9.158888e-01, -9.168239e-01, -9.177594e-01, -9.186954e-01, -9.196318e-01, -9.205688e-01, -9.215063e-01, -9.224442e-01, -9.233826e-01,
-9.243215e-01, -9.252608e-01, -9.262006e-01, -9.271410e-01, -9.280818e-01, -9.290230e-01, -9.299648e-01, -9.309070e-01, -9.318496e-01, -9.327928e-01, -9.337364e-01, -9.346806e-01, -9.356252e-01, -9.365703e-01, -9.375159e-01, -9.384618e-01,
-9.394083e-01, -9.403553e-01, -9.413028e-01, -9.422507e-01, -9.431992e-01, -9.441481e-01, -9.450974e-01, -9.460473e-01, -9.469975e-01, -9.479483e-01, -9.488996e-01, -9.498514e-01, -9.508036e-01, -9.517564e-01, -9.527096e-01, -9.536632e-01,
-9.546174e-01, -9.555720e-01, -9.565270e-01, -9.574826e-01, -9.584386e-01, -9.593952e-01, -9.603522e-01, -9.613097e-01, -9.622676e-01, -9.632261e-01, -9.641850e-01, -9.651444e-01, -9.661043e-01, -9.670646e-01, -9.680254e-01, -9.689866e-01,
-9.699484e-01, -9.709107e-01, -9.718734e-01, -9.728366e-01, -9.738003e-01, -9.747645e-01, -9.757291e-01, -9.766942e-01, -9.776598e-01, -9.786259e-01, -9.795924e-01, -9.805595e-01, -9.815270e-01, -9.824950e-01, -9.834634e-01, -9.844323e-01,
-9.854017e-01, -9.863716e-01, -9.873420e-01, -9.883128e-01, -9.892842e-01, -9.902560e-01, -9.912282e-01, -9.922010e-01, -9.931742e-01, -9.941479e-01, -9.951221e-01, -9.960967e-01, -9.970719e-01, -9.980475e-01, -9.990234e-01, -1.000000e+00
};
#endif // WAVETABLE_OPAL_8_H
| 60,893
|
C++
|
.h
| 263
| 225.661597
| 244
| 0.67835
|
RCameron93/FehlerFabrik
| 30
| 3
| 7
|
GPL-3.0
|
9/20/2024, 10:45:25 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,845
|
opal_4.h
|
RCameron93_FehlerFabrik/src/wavetables/opal_wavetable/opal_4.h
|
#ifndef WAVETABLE_OPAL_4_H
#define WAVETABLE_OPAL_4_H
#define WAVETABLE_OPAL_4_LENGTH 4096
static long opal_4_tableLength = 4096;
static float opal_4_waveTable[WAVETABLE_OPAL_4_LENGTH] = {
0.000000e+00, 1.533866e-03, 3.067851e-03, 4.601836e-03, 6.135821e-03, 7.669806e-03, 9.203672e-03, 1.073766e-02, 1.227152e-02, 1.380527e-02, 1.533914e-02, 1.687288e-02, 1.840663e-02, 1.994038e-02, 2.147400e-02, 2.300763e-02,
2.454114e-02, 2.607465e-02, 2.760804e-02, 2.914143e-02, 3.067470e-02, 3.220797e-02, 3.374112e-02, 3.527415e-02, 3.680718e-02, 3.834009e-02, 3.987288e-02, 4.140556e-02, 4.293823e-02, 4.447067e-02, 4.600310e-02, 4.753542e-02,
4.906762e-02, 5.059969e-02, 5.213165e-02, 5.366349e-02, 5.519521e-02, 5.672681e-02, 5.825818e-02, 5.978954e-02, 6.132066e-02, 6.285167e-02, 6.438255e-02, 6.591332e-02, 6.744385e-02, 6.897426e-02, 7.050455e-02, 7.203460e-02,
7.356453e-02, 7.509422e-02, 7.662380e-02, 7.815313e-02, 7.968235e-02, 8.121133e-02, 8.274019e-02, 8.426881e-02, 8.579731e-02, 8.732545e-02, 8.885348e-02, 9.038126e-02, 9.190893e-02, 9.343624e-02, 9.496343e-02, 9.649038e-02,
9.801710e-02, 9.954357e-02, 1.010698e-01, 1.025958e-01, 1.041216e-01, 1.056471e-01, 1.071724e-01, 1.086974e-01, 1.102221e-01, 1.117467e-01, 1.132709e-01, 1.147949e-01, 1.163186e-01, 1.178420e-01, 1.193651e-01, 1.208880e-01,
1.224107e-01, 1.239330e-01, 1.254549e-01, 1.269766e-01, 1.284981e-01, 1.300192e-01, 1.315399e-01, 1.330605e-01, 1.345806e-01, 1.361005e-01, 1.376201e-01, 1.391393e-01, 1.406581e-01, 1.421767e-01, 1.436950e-01, 1.452129e-01,
1.467304e-01, 1.482476e-01, 1.497644e-01, 1.512810e-01, 1.527971e-01, 1.543130e-01, 1.558284e-01, 1.573434e-01, 1.588581e-01, 1.603724e-01, 1.618863e-01, 1.633999e-01, 1.649131e-01, 1.664258e-01, 1.679382e-01, 1.694503e-01,
1.709619e-01, 1.724731e-01, 1.739838e-01, 1.754942e-01, 1.770042e-01, 1.785138e-01, 1.800228e-01, 1.815315e-01, 1.830398e-01, 1.845477e-01, 1.860551e-01, 1.875621e-01, 1.890686e-01, 1.905746e-01, 1.920804e-01, 1.935855e-01,
1.950903e-01, 1.965946e-01, 1.980983e-01, 1.996017e-01, 2.011045e-01, 2.026070e-01, 2.041090e-01, 2.056104e-01, 2.071114e-01, 2.086118e-01, 2.101117e-01, 2.116113e-01, 2.131102e-01, 2.146088e-01, 2.161068e-01, 2.176042e-01,
2.191012e-01, 2.205976e-01, 2.220936e-01, 2.235889e-01, 2.250838e-01, 2.265782e-01, 2.280720e-01, 2.295653e-01, 2.310580e-01, 2.325503e-01, 2.340419e-01, 2.355330e-01, 2.370236e-01, 2.385136e-01, 2.400030e-01, 2.414918e-01,
2.429801e-01, 2.444679e-01, 2.459550e-01, 2.474415e-01, 2.489276e-01, 2.504129e-01, 2.518978e-01, 2.533820e-01, 2.548656e-01, 2.563486e-01, 2.578311e-01, 2.593129e-01, 2.607940e-01, 2.622746e-01, 2.637546e-01, 2.652340e-01,
2.667127e-01, 2.681907e-01, 2.696682e-01, 2.711451e-01, 2.726213e-01, 2.740968e-01, 2.755717e-01, 2.770460e-01, 2.785196e-01, 2.799926e-01, 2.814649e-01, 2.829365e-01, 2.844075e-01, 2.858778e-01, 2.873474e-01, 2.888163e-01,
2.902846e-01, 2.917522e-01, 2.932191e-01, 2.946854e-01, 2.961508e-01, 2.976156e-01, 2.990798e-01, 3.005432e-01, 3.020059e-01, 3.034679e-01, 3.049291e-01, 3.063897e-01, 3.078495e-01, 3.093086e-01, 3.107671e-01, 3.122247e-01,
3.136817e-01, 3.151379e-01, 3.165933e-01, 3.180480e-01, 3.195020e-01, 3.209552e-01, 3.224076e-01, 3.238593e-01, 3.253102e-01, 3.267604e-01, 3.282098e-01, 3.296584e-01, 3.311063e-01, 3.325533e-01, 3.339996e-01, 3.354450e-01,
3.368897e-01, 3.383337e-01, 3.397769e-01, 3.412192e-01, 3.426607e-01, 3.441013e-01, 3.455412e-01, 3.469803e-01, 3.484186e-01, 3.498560e-01, 3.512927e-01, 3.527285e-01, 3.541634e-01, 3.555976e-01, 3.570309e-01, 3.584634e-01,
3.598950e-01, 3.613257e-01, 3.627557e-01, 3.641847e-01, 3.656130e-01, 3.670403e-01, 3.684667e-01, 3.698924e-01, 3.713171e-01, 3.727410e-01, 3.741640e-01, 3.755862e-01, 3.770074e-01, 3.784277e-01, 3.798472e-01, 3.812658e-01,
3.826834e-01, 3.841001e-01, 3.855160e-01, 3.869309e-01, 3.883450e-01, 3.897581e-01, 3.911704e-01, 3.925816e-01, 3.939919e-01, 3.954015e-01, 3.968099e-01, 3.982176e-01, 3.996241e-01, 4.010298e-01, 4.024346e-01, 4.038384e-01,
4.052413e-01, 4.066432e-01, 4.080441e-01, 4.094441e-01, 4.108431e-01, 4.122412e-01, 4.136382e-01, 4.150344e-01, 4.164295e-01, 4.178237e-01, 4.192169e-01, 4.206090e-01, 4.220002e-01, 4.233904e-01, 4.247797e-01, 4.261678e-01,
4.275551e-01, 4.289412e-01, 4.303265e-01, 4.317106e-01, 4.330938e-01, 4.344759e-01, 4.358571e-01, 4.372371e-01, 4.386162e-01, 4.399942e-01, 4.413712e-01, 4.427471e-01, 4.441221e-01, 4.454960e-01, 4.468688e-01, 4.482405e-01,
4.496113e-01, 4.509809e-01, 4.523495e-01, 4.537171e-01, 4.550835e-01, 4.564489e-01, 4.578133e-01, 4.591765e-01, 4.605386e-01, 4.618998e-01, 4.632597e-01, 4.646187e-01, 4.659765e-01, 4.673332e-01, 4.686887e-01, 4.700433e-01,
4.713967e-01, 4.727490e-01, 4.741001e-01, 4.754503e-01, 4.767991e-01, 4.781470e-01, 4.794937e-01, 4.808393e-01, 4.821837e-01, 4.835271e-01, 4.848692e-01, 4.862102e-01, 4.875501e-01, 4.888889e-01, 4.902264e-01, 4.915628e-01,
4.928981e-01, 4.942323e-01, 4.955652e-01, 4.968970e-01, 4.982276e-01, 4.995570e-01, 5.008854e-01, 5.022124e-01, 5.035384e-01, 5.048630e-01, 5.061866e-01, 5.075089e-01, 5.088301e-01, 5.101501e-01, 5.114688e-01, 5.127864e-01,
5.141027e-01, 5.154178e-01, 5.167317e-01, 5.180445e-01, 5.193559e-01, 5.206662e-01, 5.219753e-01, 5.232830e-01, 5.245897e-01, 5.258950e-01, 5.271990e-01, 5.285020e-01, 5.298035e-01, 5.311040e-01, 5.324031e-01, 5.337009e-01,
5.349976e-01, 5.362929e-01, 5.375870e-01, 5.388799e-01, 5.401714e-01, 5.414617e-01, 5.427507e-01, 5.440384e-01, 5.453249e-01, 5.466101e-01, 5.478940e-01, 5.491766e-01, 5.504580e-01, 5.517379e-01, 5.530167e-01, 5.542941e-01,
5.555701e-01, 5.568449e-01, 5.581185e-01, 5.593907e-01, 5.606616e-01, 5.619310e-01, 5.631993e-01, 5.644662e-01, 5.657318e-01, 5.669960e-01, 5.682589e-01, 5.695205e-01, 5.707806e-01, 5.720396e-01, 5.732971e-01, 5.745533e-01,
5.758082e-01, 5.770617e-01, 5.783137e-01, 5.795645e-01, 5.808139e-01, 5.820619e-01, 5.833086e-01, 5.845538e-01, 5.857978e-01, 5.870403e-01, 5.882815e-01, 5.895213e-01, 5.907596e-01, 5.919967e-01, 5.932323e-01, 5.944664e-01,
5.956992e-01, 5.969306e-01, 5.981606e-01, 5.993892e-01, 6.006165e-01, 6.018422e-01, 6.030666e-01, 6.042894e-01, 6.055110e-01, 6.067311e-01, 6.079497e-01, 6.091670e-01, 6.103828e-01, 6.115971e-01, 6.128100e-01, 6.140215e-01,
6.152315e-01, 6.164401e-01, 6.176473e-01, 6.188530e-01, 6.200571e-01, 6.212599e-01, 6.224612e-01, 6.236610e-01, 6.248595e-01, 6.260563e-01, 6.272517e-01, 6.284457e-01, 6.296382e-01, 6.308292e-01, 6.320187e-01, 6.332067e-01,
6.343932e-01, 6.355783e-01, 6.367618e-01, 6.379439e-01, 6.391244e-01, 6.403034e-01, 6.414809e-01, 6.426569e-01, 6.438315e-01, 6.450045e-01, 6.461760e-01, 6.473459e-01, 6.485144e-01, 6.496812e-01, 6.508466e-01, 6.520104e-01,
6.531727e-01, 6.543336e-01, 6.554928e-01, 6.566505e-01, 6.578066e-01, 6.589612e-01, 6.601143e-01, 6.612657e-01, 6.624157e-01, 6.635641e-01, 6.647109e-01, 6.658561e-01, 6.669998e-01, 6.681420e-01, 6.692826e-01, 6.704215e-01,
6.715589e-01, 6.726947e-01, 6.738290e-01, 6.749616e-01, 6.760926e-01, 6.772221e-01, 6.783500e-01, 6.794763e-01, 6.806009e-01, 6.817241e-01, 6.828455e-01, 6.839653e-01, 6.850836e-01, 6.862003e-01, 6.873152e-01, 6.884286e-01,
6.895405e-01, 6.906507e-01, 6.917592e-01, 6.928661e-01, 6.939714e-01, 6.950750e-01, 6.961771e-01, 6.972774e-01, 6.983762e-01, 6.994733e-01, 7.005687e-01, 7.016625e-01, 7.027547e-01, 7.038451e-01, 7.049340e-01, 7.060212e-01,
7.071067e-01, 7.081906e-01, 7.092727e-01, 7.103533e-01, 7.114321e-01, 7.125093e-01, 7.135848e-01, 7.146586e-01, 7.157308e-01, 7.168012e-01, 7.178700e-01, 7.189370e-01, 7.200024e-01, 7.210661e-01, 7.221282e-01, 7.231884e-01,
7.242470e-01, 7.253039e-01, 7.263591e-01, 7.274126e-01, 7.284644e-01, 7.295144e-01, 7.305627e-01, 7.316093e-01, 7.326542e-01, 7.336974e-01, 7.347388e-01, 7.357786e-01, 7.368165e-01, 7.378528e-01, 7.388873e-01, 7.399200e-01,
7.409511e-01, 7.419803e-01, 7.430079e-01, 7.440337e-01, 7.450577e-01, 7.460800e-01, 7.471006e-01, 7.481194e-01, 7.491363e-01, 7.501516e-01, 7.511650e-01, 7.521768e-01, 7.531867e-01, 7.541950e-01, 7.552013e-01, 7.562059e-01,
7.572088e-01, 7.582098e-01, 7.592092e-01, 7.602066e-01, 7.612023e-01, 7.621962e-01, 7.631884e-01, 7.641786e-01, 7.651672e-01, 7.661539e-01, 7.671388e-01, 7.681220e-01, 7.691033e-01, 7.700828e-01, 7.710605e-01, 7.720363e-01,
7.730104e-01, 7.739826e-01, 7.749530e-01, 7.759216e-01, 7.768884e-01, 7.778534e-01, 7.788165e-01, 7.797778e-01, 7.807372e-01, 7.816948e-01, 7.826506e-01, 7.836045e-01, 7.845565e-01, 7.855067e-01, 7.864552e-01, 7.874017e-01,
7.883464e-01, 7.892892e-01, 7.902302e-01, 7.911693e-01, 7.921065e-01, 7.930419e-01, 7.939755e-01, 7.949071e-01, 7.958368e-01, 7.967647e-01, 7.976907e-01, 7.986150e-01, 7.995372e-01, 8.004576e-01, 8.013761e-01, 8.022927e-01,
8.032075e-01, 8.041203e-01, 8.050313e-01, 8.059404e-01, 8.068475e-01, 8.077527e-01, 8.086561e-01, 8.095576e-01, 8.104571e-01, 8.113548e-01, 8.122505e-01, 8.131443e-01, 8.140363e-01, 8.149263e-01, 8.158144e-01, 8.167005e-01,
8.175848e-01, 8.184670e-01, 8.193475e-01, 8.202260e-01, 8.211025e-01, 8.219770e-01, 8.228498e-01, 8.237205e-01, 8.245893e-01, 8.254561e-01, 8.263210e-01, 8.271840e-01, 8.280450e-01, 8.289040e-01, 8.297611e-01, 8.306164e-01,
8.314695e-01, 8.323208e-01, 8.331701e-01, 8.340174e-01, 8.348628e-01, 8.357062e-01, 8.365476e-01, 8.373871e-01, 8.382246e-01, 8.390602e-01, 8.398937e-01, 8.407253e-01, 8.415549e-01, 8.423826e-01, 8.432082e-01, 8.440318e-01,
8.448535e-01, 8.456732e-01, 8.464909e-01, 8.473066e-01, 8.481203e-01, 8.489320e-01, 8.497417e-01, 8.505495e-01, 8.513551e-01, 8.521588e-01, 8.529606e-01, 8.537602e-01, 8.545579e-01, 8.553536e-01, 8.561473e-01, 8.569390e-01,
8.577286e-01, 8.585162e-01, 8.593018e-01, 8.600854e-01, 8.608669e-01, 8.616464e-01, 8.624239e-01, 8.631994e-01, 8.639728e-01, 8.647442e-01, 8.655136e-01, 8.662809e-01, 8.670462e-01, 8.678094e-01, 8.685707e-01, 8.693298e-01,
8.700869e-01, 8.708420e-01, 8.715950e-01, 8.723460e-01, 8.730949e-01, 8.738418e-01, 8.745866e-01, 8.753294e-01, 8.760700e-01, 8.768086e-01, 8.775452e-01, 8.782797e-01, 8.790121e-01, 8.797425e-01, 8.804709e-01, 8.811971e-01,
8.819212e-01, 8.826432e-01, 8.833632e-01, 8.840812e-01, 8.847971e-01, 8.855108e-01, 8.862225e-01, 8.869320e-01, 8.876395e-01, 8.883450e-01, 8.890483e-01, 8.897495e-01, 8.904487e-01, 8.911457e-01, 8.918407e-01, 8.925335e-01,
8.932242e-01, 8.939129e-01, 8.945994e-01, 8.952838e-01, 8.959662e-01, 8.966464e-01, 8.973246e-01, 8.980005e-01, 8.986744e-01, 8.993462e-01, 9.000158e-01, 9.006834e-01, 9.013488e-01, 9.020121e-01, 9.026732e-01, 9.033324e-01,
9.039892e-01, 9.046440e-01, 9.052967e-01, 9.059472e-01, 9.065956e-01, 9.072419e-01, 9.078860e-01, 9.085281e-01, 9.091679e-01, 9.098057e-01, 9.104413e-01, 9.110746e-01, 9.117060e-01, 9.123352e-01, 9.129621e-01, 9.135870e-01,
9.142097e-01, 9.148302e-01, 9.154487e-01, 9.160649e-01, 9.166790e-01, 9.172909e-01, 9.179007e-01, 9.185083e-01, 9.191138e-01, 9.197171e-01, 9.203182e-01, 9.209172e-01, 9.215140e-01, 9.221087e-01, 9.227011e-01, 9.232913e-01,
9.238795e-01, 9.244654e-01, 9.250492e-01, 9.256308e-01, 9.262102e-01, 9.267874e-01, 9.273624e-01, 9.279354e-01, 9.285060e-01, 9.290745e-01, 9.296409e-01, 9.302050e-01, 9.307669e-01, 9.313266e-01, 9.318842e-01, 9.324396e-01,
9.329927e-01, 9.335437e-01, 9.340925e-01, 9.346391e-01, 9.351834e-01, 9.357257e-01, 9.362656e-01, 9.368033e-01, 9.373389e-01, 9.378723e-01, 9.384035e-01, 9.389324e-01, 9.394592e-01, 9.399837e-01, 9.405060e-01, 9.410261e-01,
9.415441e-01, 9.420596e-01, 9.425732e-01, 9.430844e-01, 9.435934e-01, 9.441001e-01, 9.446048e-01, 9.451071e-01, 9.456073e-01, 9.461051e-01, 9.466008e-01, 9.470943e-01, 9.475856e-01, 9.480746e-01, 9.485613e-01, 9.490458e-01,
9.495281e-01, 9.500082e-01, 9.504861e-01, 9.509616e-01, 9.514350e-01, 9.519061e-01, 9.523749e-01, 9.528416e-01, 9.533060e-01, 9.537681e-01, 9.542280e-01, 9.546857e-01, 9.551411e-01, 9.555943e-01, 9.560452e-01, 9.564939e-01,
9.569403e-01, 9.573845e-01, 9.578264e-01, 9.582660e-01, 9.587034e-01, 9.591385e-01, 9.595715e-01, 9.600021e-01, 9.604305e-01, 9.608566e-01, 9.612805e-01, 9.617020e-01, 9.621214e-01, 9.625384e-01, 9.629532e-01, 9.633658e-01,
9.637760e-01, 9.641840e-01, 9.645897e-01, 9.649932e-01, 9.653944e-01, 9.657933e-01, 9.661900e-01, 9.665843e-01, 9.669764e-01, 9.673662e-01, 9.677538e-01, 9.681391e-01, 9.685221e-01, 9.689027e-01, 9.692812e-01, 9.696573e-01,
9.700311e-01, 9.704028e-01, 9.707720e-01, 9.711391e-01, 9.715039e-01, 9.718663e-01, 9.722264e-01, 9.725844e-01, 9.729398e-01, 9.732932e-01, 9.736441e-01, 9.739929e-01, 9.743394e-01, 9.746834e-01, 9.750253e-01, 9.753648e-01,
9.757020e-01, 9.760370e-01, 9.763696e-01, 9.767001e-01, 9.770281e-01, 9.773538e-01, 9.776773e-01, 9.779985e-01, 9.783173e-01, 9.786339e-01, 9.789481e-01, 9.792601e-01, 9.795697e-01, 9.798770e-01, 9.801821e-01, 9.804848e-01,
9.807853e-01, 9.810833e-01, 9.813792e-01, 9.816726e-01, 9.819638e-01, 9.822527e-01, 9.825393e-01, 9.828235e-01, 9.831054e-01, 9.833851e-01, 9.836624e-01, 9.839374e-01, 9.842100e-01, 9.844804e-01, 9.847485e-01, 9.850142e-01,
9.852775e-01, 9.855387e-01, 9.857974e-01, 9.860539e-01, 9.863080e-01, 9.865599e-01, 9.868094e-01, 9.870565e-01, 9.873013e-01, 9.875439e-01, 9.877840e-01, 9.880220e-01, 9.882575e-01, 9.884907e-01, 9.887216e-01, 9.889503e-01,
9.891764e-01, 9.894004e-01, 9.896220e-01, 9.898412e-01, 9.900582e-01, 9.902728e-01, 9.904851e-01, 9.906950e-01, 9.909025e-01, 9.911078e-01, 9.913108e-01, 9.915115e-01, 9.917097e-01, 9.919057e-01, 9.920993e-01, 9.922905e-01,
9.924794e-01, 9.926661e-01, 9.928503e-01, 9.930323e-01, 9.932119e-01, 9.933891e-01, 9.935641e-01, 9.937366e-01, 9.939069e-01, 9.940748e-01, 9.942404e-01, 9.944036e-01, 9.945645e-01, 9.947231e-01, 9.948792e-01, 9.950331e-01,
9.951847e-01, 9.953339e-01, 9.954807e-01, 9.956251e-01, 9.957674e-01, 9.959072e-01, 9.960446e-01, 9.961798e-01, 9.963125e-01, 9.964430e-01, 9.965711e-01, 9.966968e-01, 9.968202e-01, 9.969413e-01, 9.970601e-01, 9.971764e-01,
9.972904e-01, 9.974021e-01, 9.975114e-01, 9.976183e-01, 9.977230e-01, 9.978253e-01, 9.979253e-01, 9.980228e-01, 9.981180e-01, 9.982109e-01, 9.983015e-01, 9.983897e-01, 9.984756e-01, 9.985590e-01, 9.986402e-01, 9.987190e-01,
9.987954e-01, 9.988695e-01, 9.989412e-01, 9.990107e-01, 9.990777e-01, 9.991424e-01, 9.992048e-01, 9.992647e-01, 9.993223e-01, 9.993776e-01, 9.994305e-01, 9.994811e-01, 9.995294e-01, 9.995753e-01, 9.996188e-01, 9.996599e-01,
9.996988e-01, 9.997352e-01, 9.997693e-01, 9.998012e-01, 9.998305e-01, 9.998575e-01, 9.998823e-01, 9.999046e-01, 9.999247e-01, 9.999423e-01, 9.999576e-01, 9.999706e-01, 9.999812e-01, 9.999894e-01, 9.999952e-01, 9.999988e-01,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 1.533866e-03, 3.067851e-03, 4.601836e-03, 6.135821e-03, 7.669806e-03, 9.203672e-03, 1.073766e-02, 1.227152e-02, 1.380527e-02, 1.533914e-02, 1.687288e-02, 1.840663e-02, 1.994038e-02, 2.147400e-02, 2.300763e-02,
2.454114e-02, 2.607465e-02, 2.760804e-02, 2.914143e-02, 3.067470e-02, 3.220797e-02, 3.374112e-02, 3.527415e-02, 3.680718e-02, 3.834009e-02, 3.987288e-02, 4.140556e-02, 4.293823e-02, 4.447067e-02, 4.600310e-02, 4.753542e-02,
4.906762e-02, 5.059969e-02, 5.213165e-02, 5.366349e-02, 5.519521e-02, 5.672681e-02, 5.825818e-02, 5.978954e-02, 6.132066e-02, 6.285167e-02, 6.438255e-02, 6.591332e-02, 6.744385e-02, 6.897426e-02, 7.050455e-02, 7.203460e-02,
7.356453e-02, 7.509422e-02, 7.662380e-02, 7.815313e-02, 7.968235e-02, 8.121133e-02, 8.274019e-02, 8.426881e-02, 8.579731e-02, 8.732545e-02, 8.885348e-02, 9.038126e-02, 9.190893e-02, 9.343624e-02, 9.496343e-02, 9.649038e-02,
9.801710e-02, 9.954357e-02, 1.010698e-01, 1.025958e-01, 1.041216e-01, 1.056471e-01, 1.071724e-01, 1.086974e-01, 1.102221e-01, 1.117467e-01, 1.132709e-01, 1.147949e-01, 1.163186e-01, 1.178420e-01, 1.193651e-01, 1.208880e-01,
1.224107e-01, 1.239330e-01, 1.254549e-01, 1.269766e-01, 1.284981e-01, 1.300192e-01, 1.315399e-01, 1.330605e-01, 1.345806e-01, 1.361005e-01, 1.376201e-01, 1.391393e-01, 1.406581e-01, 1.421767e-01, 1.436950e-01, 1.452129e-01,
1.467304e-01, 1.482476e-01, 1.497644e-01, 1.512810e-01, 1.527971e-01, 1.543130e-01, 1.558284e-01, 1.573434e-01, 1.588581e-01, 1.603724e-01, 1.618863e-01, 1.633999e-01, 1.649131e-01, 1.664258e-01, 1.679382e-01, 1.694503e-01,
1.709619e-01, 1.724731e-01, 1.739838e-01, 1.754942e-01, 1.770042e-01, 1.785138e-01, 1.800228e-01, 1.815315e-01, 1.830398e-01, 1.845477e-01, 1.860551e-01, 1.875621e-01, 1.890686e-01, 1.905746e-01, 1.920804e-01, 1.935855e-01,
1.950903e-01, 1.965946e-01, 1.980983e-01, 1.996017e-01, 2.011045e-01, 2.026070e-01, 2.041090e-01, 2.056104e-01, 2.071114e-01, 2.086118e-01, 2.101117e-01, 2.116113e-01, 2.131102e-01, 2.146088e-01, 2.161068e-01, 2.176042e-01,
2.191012e-01, 2.205976e-01, 2.220936e-01, 2.235889e-01, 2.250838e-01, 2.265782e-01, 2.280720e-01, 2.295653e-01, 2.310580e-01, 2.325503e-01, 2.340419e-01, 2.355330e-01, 2.370236e-01, 2.385136e-01, 2.400030e-01, 2.414918e-01,
2.429801e-01, 2.444679e-01, 2.459550e-01, 2.474415e-01, 2.489276e-01, 2.504129e-01, 2.518978e-01, 2.533820e-01, 2.548656e-01, 2.563486e-01, 2.578311e-01, 2.593129e-01, 2.607940e-01, 2.622746e-01, 2.637546e-01, 2.652340e-01,
2.667127e-01, 2.681907e-01, 2.696682e-01, 2.711451e-01, 2.726213e-01, 2.740968e-01, 2.755717e-01, 2.770460e-01, 2.785196e-01, 2.799926e-01, 2.814649e-01, 2.829365e-01, 2.844075e-01, 2.858778e-01, 2.873474e-01, 2.888163e-01,
2.902846e-01, 2.917522e-01, 2.932191e-01, 2.946854e-01, 2.961508e-01, 2.976156e-01, 2.990798e-01, 3.005432e-01, 3.020059e-01, 3.034679e-01, 3.049291e-01, 3.063897e-01, 3.078495e-01, 3.093086e-01, 3.107671e-01, 3.122247e-01,
3.136817e-01, 3.151379e-01, 3.165933e-01, 3.180480e-01, 3.195020e-01, 3.209552e-01, 3.224076e-01, 3.238593e-01, 3.253102e-01, 3.267604e-01, 3.282098e-01, 3.296584e-01, 3.311063e-01, 3.325533e-01, 3.339996e-01, 3.354450e-01,
3.368897e-01, 3.383337e-01, 3.397769e-01, 3.412192e-01, 3.426607e-01, 3.441013e-01, 3.455412e-01, 3.469803e-01, 3.484186e-01, 3.498560e-01, 3.512927e-01, 3.527285e-01, 3.541634e-01, 3.555976e-01, 3.570309e-01, 3.584634e-01,
3.598950e-01, 3.613257e-01, 3.627557e-01, 3.641847e-01, 3.656130e-01, 3.670403e-01, 3.684667e-01, 3.698924e-01, 3.713171e-01, 3.727410e-01, 3.741640e-01, 3.755862e-01, 3.770074e-01, 3.784277e-01, 3.798472e-01, 3.812658e-01,
3.826834e-01, 3.841001e-01, 3.855160e-01, 3.869309e-01, 3.883450e-01, 3.897581e-01, 3.911704e-01, 3.925816e-01, 3.939919e-01, 3.954015e-01, 3.968099e-01, 3.982176e-01, 3.996241e-01, 4.010298e-01, 4.024346e-01, 4.038384e-01,
4.052413e-01, 4.066432e-01, 4.080441e-01, 4.094441e-01, 4.108431e-01, 4.122412e-01, 4.136382e-01, 4.150344e-01, 4.164295e-01, 4.178237e-01, 4.192169e-01, 4.206090e-01, 4.220002e-01, 4.233904e-01, 4.247797e-01, 4.261678e-01,
4.275551e-01, 4.289412e-01, 4.303265e-01, 4.317106e-01, 4.330938e-01, 4.344759e-01, 4.358571e-01, 4.372371e-01, 4.386162e-01, 4.399942e-01, 4.413712e-01, 4.427471e-01, 4.441221e-01, 4.454960e-01, 4.468688e-01, 4.482405e-01,
4.496113e-01, 4.509809e-01, 4.523495e-01, 4.537171e-01, 4.550835e-01, 4.564489e-01, 4.578133e-01, 4.591765e-01, 4.605386e-01, 4.618998e-01, 4.632597e-01, 4.646187e-01, 4.659765e-01, 4.673332e-01, 4.686887e-01, 4.700433e-01,
4.713967e-01, 4.727490e-01, 4.741001e-01, 4.754503e-01, 4.767991e-01, 4.781470e-01, 4.794937e-01, 4.808393e-01, 4.821837e-01, 4.835271e-01, 4.848692e-01, 4.862102e-01, 4.875501e-01, 4.888889e-01, 4.902264e-01, 4.915628e-01,
4.928981e-01, 4.942323e-01, 4.955652e-01, 4.968970e-01, 4.982276e-01, 4.995570e-01, 5.008854e-01, 5.022124e-01, 5.035384e-01, 5.048630e-01, 5.061866e-01, 5.075089e-01, 5.088301e-01, 5.101501e-01, 5.114688e-01, 5.127864e-01,
5.141027e-01, 5.154178e-01, 5.167317e-01, 5.180445e-01, 5.193559e-01, 5.206662e-01, 5.219753e-01, 5.232830e-01, 5.245897e-01, 5.258950e-01, 5.271990e-01, 5.285020e-01, 5.298035e-01, 5.311040e-01, 5.324031e-01, 5.337009e-01,
5.349976e-01, 5.362929e-01, 5.375870e-01, 5.388799e-01, 5.401714e-01, 5.414617e-01, 5.427507e-01, 5.440384e-01, 5.453249e-01, 5.466101e-01, 5.478940e-01, 5.491766e-01, 5.504580e-01, 5.517379e-01, 5.530167e-01, 5.542941e-01,
5.555701e-01, 5.568449e-01, 5.581185e-01, 5.593907e-01, 5.606616e-01, 5.619310e-01, 5.631993e-01, 5.644662e-01, 5.657318e-01, 5.669960e-01, 5.682589e-01, 5.695205e-01, 5.707806e-01, 5.720396e-01, 5.732971e-01, 5.745533e-01,
5.758082e-01, 5.770617e-01, 5.783137e-01, 5.795645e-01, 5.808139e-01, 5.820619e-01, 5.833086e-01, 5.845538e-01, 5.857978e-01, 5.870403e-01, 5.882815e-01, 5.895213e-01, 5.907596e-01, 5.919967e-01, 5.932323e-01, 5.944664e-01,
5.956992e-01, 5.969306e-01, 5.981606e-01, 5.993892e-01, 6.006165e-01, 6.018422e-01, 6.030666e-01, 6.042894e-01, 6.055110e-01, 6.067311e-01, 6.079497e-01, 6.091670e-01, 6.103828e-01, 6.115971e-01, 6.128100e-01, 6.140215e-01,
6.152315e-01, 6.164401e-01, 6.176473e-01, 6.188530e-01, 6.200571e-01, 6.212599e-01, 6.224612e-01, 6.236610e-01, 6.248595e-01, 6.260563e-01, 6.272517e-01, 6.284457e-01, 6.296382e-01, 6.308292e-01, 6.320187e-01, 6.332067e-01,
6.343932e-01, 6.355783e-01, 6.367618e-01, 6.379439e-01, 6.391244e-01, 6.403034e-01, 6.414809e-01, 6.426569e-01, 6.438315e-01, 6.450045e-01, 6.461760e-01, 6.473459e-01, 6.485144e-01, 6.496812e-01, 6.508466e-01, 6.520104e-01,
6.531727e-01, 6.543336e-01, 6.554928e-01, 6.566505e-01, 6.578066e-01, 6.589612e-01, 6.601143e-01, 6.612657e-01, 6.624157e-01, 6.635641e-01, 6.647109e-01, 6.658561e-01, 6.669998e-01, 6.681420e-01, 6.692826e-01, 6.704215e-01,
6.715589e-01, 6.726947e-01, 6.738290e-01, 6.749616e-01, 6.760926e-01, 6.772221e-01, 6.783500e-01, 6.794763e-01, 6.806009e-01, 6.817241e-01, 6.828455e-01, 6.839653e-01, 6.850836e-01, 6.862003e-01, 6.873152e-01, 6.884286e-01,
6.895405e-01, 6.906507e-01, 6.917592e-01, 6.928661e-01, 6.939714e-01, 6.950750e-01, 6.961771e-01, 6.972774e-01, 6.983762e-01, 6.994733e-01, 7.005687e-01, 7.016625e-01, 7.027547e-01, 7.038451e-01, 7.049340e-01, 7.060212e-01,
7.071067e-01, 7.081906e-01, 7.092727e-01, 7.103533e-01, 7.114321e-01, 7.125093e-01, 7.135848e-01, 7.146586e-01, 7.157308e-01, 7.168012e-01, 7.178700e-01, 7.189370e-01, 7.200024e-01, 7.210661e-01, 7.221282e-01, 7.231884e-01,
7.242470e-01, 7.253039e-01, 7.263591e-01, 7.274126e-01, 7.284644e-01, 7.295144e-01, 7.305627e-01, 7.316093e-01, 7.326542e-01, 7.336974e-01, 7.347388e-01, 7.357786e-01, 7.368165e-01, 7.378528e-01, 7.388873e-01, 7.399200e-01,
7.409511e-01, 7.419803e-01, 7.430079e-01, 7.440337e-01, 7.450577e-01, 7.460800e-01, 7.471006e-01, 7.481194e-01, 7.491363e-01, 7.501516e-01, 7.511650e-01, 7.521768e-01, 7.531867e-01, 7.541950e-01, 7.552013e-01, 7.562059e-01,
7.572088e-01, 7.582098e-01, 7.592092e-01, 7.602066e-01, 7.612023e-01, 7.621962e-01, 7.631884e-01, 7.641786e-01, 7.651672e-01, 7.661539e-01, 7.671388e-01, 7.681220e-01, 7.691033e-01, 7.700828e-01, 7.710605e-01, 7.720363e-01,
7.730104e-01, 7.739826e-01, 7.749530e-01, 7.759216e-01, 7.768884e-01, 7.778534e-01, 7.788165e-01, 7.797778e-01, 7.807372e-01, 7.816948e-01, 7.826506e-01, 7.836045e-01, 7.845565e-01, 7.855067e-01, 7.864552e-01, 7.874017e-01,
7.883464e-01, 7.892892e-01, 7.902302e-01, 7.911693e-01, 7.921065e-01, 7.930419e-01, 7.939755e-01, 7.949071e-01, 7.958368e-01, 7.967647e-01, 7.976907e-01, 7.986150e-01, 7.995372e-01, 8.004576e-01, 8.013761e-01, 8.022927e-01,
8.032075e-01, 8.041203e-01, 8.050313e-01, 8.059404e-01, 8.068475e-01, 8.077527e-01, 8.086561e-01, 8.095576e-01, 8.104571e-01, 8.113548e-01, 8.122505e-01, 8.131443e-01, 8.140363e-01, 8.149263e-01, 8.158144e-01, 8.167005e-01,
8.175848e-01, 8.184670e-01, 8.193475e-01, 8.202260e-01, 8.211025e-01, 8.219770e-01, 8.228498e-01, 8.237205e-01, 8.245893e-01, 8.254561e-01, 8.263210e-01, 8.271840e-01, 8.280450e-01, 8.289040e-01, 8.297611e-01, 8.306164e-01,
8.314695e-01, 8.323208e-01, 8.331701e-01, 8.340174e-01, 8.348628e-01, 8.357062e-01, 8.365476e-01, 8.373871e-01, 8.382246e-01, 8.390602e-01, 8.398937e-01, 8.407253e-01, 8.415549e-01, 8.423826e-01, 8.432082e-01, 8.440318e-01,
8.448535e-01, 8.456732e-01, 8.464909e-01, 8.473066e-01, 8.481203e-01, 8.489320e-01, 8.497417e-01, 8.505495e-01, 8.513551e-01, 8.521588e-01, 8.529606e-01, 8.537602e-01, 8.545579e-01, 8.553536e-01, 8.561473e-01, 8.569390e-01,
8.577286e-01, 8.585162e-01, 8.593018e-01, 8.600854e-01, 8.608669e-01, 8.616464e-01, 8.624239e-01, 8.631994e-01, 8.639728e-01, 8.647442e-01, 8.655136e-01, 8.662809e-01, 8.670462e-01, 8.678094e-01, 8.685707e-01, 8.693298e-01,
8.700869e-01, 8.708420e-01, 8.715950e-01, 8.723460e-01, 8.730949e-01, 8.738418e-01, 8.745866e-01, 8.753294e-01, 8.760700e-01, 8.768086e-01, 8.775452e-01, 8.782797e-01, 8.790121e-01, 8.797425e-01, 8.804709e-01, 8.811971e-01,
8.819212e-01, 8.826432e-01, 8.833632e-01, 8.840812e-01, 8.847971e-01, 8.855108e-01, 8.862225e-01, 8.869320e-01, 8.876395e-01, 8.883450e-01, 8.890483e-01, 8.897495e-01, 8.904487e-01, 8.911457e-01, 8.918407e-01, 8.925335e-01,
8.932242e-01, 8.939129e-01, 8.945994e-01, 8.952838e-01, 8.959662e-01, 8.966464e-01, 8.973246e-01, 8.980005e-01, 8.986744e-01, 8.993462e-01, 9.000158e-01, 9.006834e-01, 9.013488e-01, 9.020121e-01, 9.026732e-01, 9.033324e-01,
9.039892e-01, 9.046440e-01, 9.052967e-01, 9.059472e-01, 9.065956e-01, 9.072419e-01, 9.078860e-01, 9.085281e-01, 9.091679e-01, 9.098057e-01, 9.104413e-01, 9.110746e-01, 9.117060e-01, 9.123352e-01, 9.129621e-01, 9.135870e-01,
9.142097e-01, 9.148302e-01, 9.154487e-01, 9.160649e-01, 9.166790e-01, 9.172909e-01, 9.179007e-01, 9.185083e-01, 9.191138e-01, 9.197171e-01, 9.203182e-01, 9.209172e-01, 9.215140e-01, 9.221087e-01, 9.227011e-01, 9.232913e-01,
9.238795e-01, 9.244654e-01, 9.250492e-01, 9.256308e-01, 9.262102e-01, 9.267874e-01, 9.273624e-01, 9.279354e-01, 9.285060e-01, 9.290745e-01, 9.296409e-01, 9.302050e-01, 9.307669e-01, 9.313266e-01, 9.318842e-01, 9.324396e-01,
9.329927e-01, 9.335437e-01, 9.340925e-01, 9.346391e-01, 9.351834e-01, 9.357257e-01, 9.362656e-01, 9.368033e-01, 9.373389e-01, 9.378723e-01, 9.384035e-01, 9.389324e-01, 9.394592e-01, 9.399837e-01, 9.405060e-01, 9.410261e-01,
9.415441e-01, 9.420596e-01, 9.425732e-01, 9.430844e-01, 9.435934e-01, 9.441001e-01, 9.446048e-01, 9.451071e-01, 9.456073e-01, 9.461051e-01, 9.466008e-01, 9.470943e-01, 9.475856e-01, 9.480746e-01, 9.485613e-01, 9.490458e-01,
9.495281e-01, 9.500082e-01, 9.504861e-01, 9.509616e-01, 9.514350e-01, 9.519061e-01, 9.523749e-01, 9.528416e-01, 9.533060e-01, 9.537681e-01, 9.542280e-01, 9.546857e-01, 9.551411e-01, 9.555943e-01, 9.560452e-01, 9.564939e-01,
9.569403e-01, 9.573845e-01, 9.578264e-01, 9.582660e-01, 9.587034e-01, 9.591385e-01, 9.595715e-01, 9.600021e-01, 9.604305e-01, 9.608566e-01, 9.612805e-01, 9.617020e-01, 9.621214e-01, 9.625384e-01, 9.629532e-01, 9.633658e-01,
9.637760e-01, 9.641840e-01, 9.645897e-01, 9.649932e-01, 9.653944e-01, 9.657933e-01, 9.661900e-01, 9.665843e-01, 9.669764e-01, 9.673662e-01, 9.677538e-01, 9.681391e-01, 9.685221e-01, 9.689027e-01, 9.692812e-01, 9.696573e-01,
9.700311e-01, 9.704028e-01, 9.707720e-01, 9.711391e-01, 9.715039e-01, 9.718663e-01, 9.722264e-01, 9.725844e-01, 9.729398e-01, 9.732932e-01, 9.736441e-01, 9.739929e-01, 9.743394e-01, 9.746834e-01, 9.750253e-01, 9.753648e-01,
9.757020e-01, 9.760370e-01, 9.763696e-01, 9.767001e-01, 9.770281e-01, 9.773538e-01, 9.776773e-01, 9.779985e-01, 9.783173e-01, 9.786339e-01, 9.789481e-01, 9.792601e-01, 9.795697e-01, 9.798770e-01, 9.801821e-01, 9.804848e-01,
9.807853e-01, 9.810833e-01, 9.813792e-01, 9.816726e-01, 9.819638e-01, 9.822527e-01, 9.825393e-01, 9.828235e-01, 9.831054e-01, 9.833851e-01, 9.836624e-01, 9.839374e-01, 9.842100e-01, 9.844804e-01, 9.847485e-01, 9.850142e-01,
9.852775e-01, 9.855387e-01, 9.857974e-01, 9.860539e-01, 9.863080e-01, 9.865599e-01, 9.868094e-01, 9.870565e-01, 9.873013e-01, 9.875439e-01, 9.877840e-01, 9.880220e-01, 9.882575e-01, 9.884907e-01, 9.887216e-01, 9.889503e-01,
9.891764e-01, 9.894004e-01, 9.896220e-01, 9.898412e-01, 9.900582e-01, 9.902728e-01, 9.904851e-01, 9.906950e-01, 9.909025e-01, 9.911078e-01, 9.913108e-01, 9.915115e-01, 9.917097e-01, 9.919057e-01, 9.920993e-01, 9.922905e-01,
9.924794e-01, 9.926661e-01, 9.928503e-01, 9.930323e-01, 9.932119e-01, 9.933891e-01, 9.935641e-01, 9.937366e-01, 9.939069e-01, 9.940748e-01, 9.942404e-01, 9.944036e-01, 9.945645e-01, 9.947231e-01, 9.948792e-01, 9.950331e-01,
9.951847e-01, 9.953339e-01, 9.954807e-01, 9.956251e-01, 9.957674e-01, 9.959072e-01, 9.960446e-01, 9.961798e-01, 9.963125e-01, 9.964430e-01, 9.965711e-01, 9.966968e-01, 9.968202e-01, 9.969413e-01, 9.970601e-01, 9.971764e-01,
9.972904e-01, 9.974021e-01, 9.975114e-01, 9.976183e-01, 9.977230e-01, 9.978253e-01, 9.979253e-01, 9.980228e-01, 9.981180e-01, 9.982109e-01, 9.983015e-01, 9.983897e-01, 9.984756e-01, 9.985590e-01, 9.986402e-01, 9.987190e-01,
9.987954e-01, 9.988695e-01, 9.989412e-01, 9.990107e-01, 9.990777e-01, 9.991424e-01, 9.992048e-01, 9.992647e-01, 9.993223e-01, 9.993776e-01, 9.994305e-01, 9.994811e-01, 9.995294e-01, 9.995753e-01, 9.996188e-01, 9.996599e-01,
9.996988e-01, 9.997352e-01, 9.997693e-01, 9.998012e-01, 9.998305e-01, 9.998575e-01, 9.998823e-01, 9.999046e-01, 9.999247e-01, 9.999423e-01, 9.999576e-01, 9.999706e-01, 9.999812e-01, 9.999894e-01, 9.999952e-01, 9.999988e-01,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00,
0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00, 0.000000e+00
};
#endif // WAVETABLE_OPAL_4_H
| 58,845
|
C++
|
.h
| 263
| 217.874525
| 228
| 0.702066
|
RCameron93/FehlerFabrik
| 30
| 3
| 7
|
GPL-3.0
|
9/20/2024, 10:45:25 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,846
|
opal_1.h
|
RCameron93_FehlerFabrik/src/wavetables/opal_wavetable/opal_1.h
|
#ifndef WAVETABLE_OPAL_1_H
#define WAVETABLE_OPAL_1_H
#define WAVETABLE_OPAL_1_LENGTH 4096
static long opal_1_tableLength = 4096;
static float opal_1_waveTable[WAVETABLE_OPAL_1_LENGTH] = {
0.000000e+00, 1.533866e-03, 3.067851e-03, 4.601836e-03, 6.135821e-03, 7.669806e-03, 9.203672e-03, 1.073766e-02, 1.227152e-02, 1.380527e-02, 1.533914e-02, 1.687288e-02, 1.840663e-02, 1.994038e-02, 2.147400e-02, 2.300763e-02,
2.454114e-02, 2.607465e-02, 2.760804e-02, 2.914143e-02, 3.067470e-02, 3.220797e-02, 3.374112e-02, 3.527415e-02, 3.680718e-02, 3.834009e-02, 3.987288e-02, 4.140556e-02, 4.293823e-02, 4.447067e-02, 4.600310e-02, 4.753542e-02,
4.906762e-02, 5.059969e-02, 5.213165e-02, 5.366349e-02, 5.519521e-02, 5.672681e-02, 5.825818e-02, 5.978954e-02, 6.132066e-02, 6.285167e-02, 6.438255e-02, 6.591332e-02, 6.744385e-02, 6.897426e-02, 7.050455e-02, 7.203460e-02,
7.356453e-02, 7.509422e-02, 7.662380e-02, 7.815313e-02, 7.968235e-02, 8.121133e-02, 8.274019e-02, 8.426881e-02, 8.579731e-02, 8.732545e-02, 8.885348e-02, 9.038126e-02, 9.190893e-02, 9.343624e-02, 9.496343e-02, 9.649038e-02,
9.801710e-02, 9.954357e-02, 1.010698e-01, 1.025958e-01, 1.041216e-01, 1.056471e-01, 1.071724e-01, 1.086974e-01, 1.102221e-01, 1.117467e-01, 1.132709e-01, 1.147949e-01, 1.163186e-01, 1.178420e-01, 1.193651e-01, 1.208880e-01,
1.224107e-01, 1.239330e-01, 1.254549e-01, 1.269766e-01, 1.284981e-01, 1.300192e-01, 1.315399e-01, 1.330605e-01, 1.345806e-01, 1.361005e-01, 1.376201e-01, 1.391393e-01, 1.406581e-01, 1.421767e-01, 1.436950e-01, 1.452129e-01,
1.467304e-01, 1.482476e-01, 1.497644e-01, 1.512810e-01, 1.527971e-01, 1.543130e-01, 1.558284e-01, 1.573434e-01, 1.588581e-01, 1.603724e-01, 1.618863e-01, 1.633999e-01, 1.649131e-01, 1.664258e-01, 1.679382e-01, 1.694503e-01,
1.709619e-01, 1.724731e-01, 1.739838e-01, 1.754942e-01, 1.770042e-01, 1.785138e-01, 1.800228e-01, 1.815315e-01, 1.830398e-01, 1.845477e-01, 1.860551e-01, 1.875621e-01, 1.890686e-01, 1.905746e-01, 1.920804e-01, 1.935855e-01,
1.950903e-01, 1.965946e-01, 1.980983e-01, 1.996017e-01, 2.011045e-01, 2.026070e-01, 2.041090e-01, 2.056104e-01, 2.071114e-01, 2.086118e-01, 2.101117e-01, 2.116113e-01, 2.131102e-01, 2.146088e-01, 2.161068e-01, 2.176042e-01,
2.191012e-01, 2.205976e-01, 2.220936e-01, 2.235889e-01, 2.250838e-01, 2.265782e-01, 2.280720e-01, 2.295653e-01, 2.310580e-01, 2.325503e-01, 2.340419e-01, 2.355330e-01, 2.370236e-01, 2.385136e-01, 2.400030e-01, 2.414918e-01,
2.429801e-01, 2.444679e-01, 2.459550e-01, 2.474415e-01, 2.489276e-01, 2.504129e-01, 2.518978e-01, 2.533820e-01, 2.548656e-01, 2.563486e-01, 2.578311e-01, 2.593129e-01, 2.607940e-01, 2.622746e-01, 2.637546e-01, 2.652340e-01,
2.667127e-01, 2.681907e-01, 2.696682e-01, 2.711451e-01, 2.726213e-01, 2.740968e-01, 2.755717e-01, 2.770460e-01, 2.785196e-01, 2.799926e-01, 2.814649e-01, 2.829365e-01, 2.844075e-01, 2.858778e-01, 2.873474e-01, 2.888163e-01,
2.902846e-01, 2.917522e-01, 2.932191e-01, 2.946854e-01, 2.961508e-01, 2.976156e-01, 2.990798e-01, 3.005432e-01, 3.020059e-01, 3.034679e-01, 3.049291e-01, 3.063897e-01, 3.078495e-01, 3.093086e-01, 3.107671e-01, 3.122247e-01,
3.136817e-01, 3.151379e-01, 3.165933e-01, 3.180480e-01, 3.195020e-01, 3.209552e-01, 3.224076e-01, 3.238593e-01, 3.253102e-01, 3.267604e-01, 3.282098e-01, 3.296584e-01, 3.311063e-01, 3.325533e-01, 3.339996e-01, 3.354450e-01,
3.368897e-01, 3.383337e-01, 3.397769e-01, 3.412192e-01, 3.426607e-01, 3.441013e-01, 3.455412e-01, 3.469803e-01, 3.484186e-01, 3.498560e-01, 3.512927e-01, 3.527285e-01, 3.541634e-01, 3.555976e-01, 3.570309e-01, 3.584634e-01,
3.598950e-01, 3.613257e-01, 3.627557e-01, 3.641847e-01, 3.656130e-01, 3.670403e-01, 3.684667e-01, 3.698924e-01, 3.713171e-01, 3.727410e-01, 3.741640e-01, 3.755862e-01, 3.770074e-01, 3.784277e-01, 3.798472e-01, 3.812658e-01,
3.826834e-01, 3.841001e-01, 3.855160e-01, 3.869309e-01, 3.883450e-01, 3.897581e-01, 3.911704e-01, 3.925816e-01, 3.939919e-01, 3.954015e-01, 3.968099e-01, 3.982176e-01, 3.996241e-01, 4.010298e-01, 4.024346e-01, 4.038384e-01,
4.052413e-01, 4.066432e-01, 4.080441e-01, 4.094441e-01, 4.108431e-01, 4.122412e-01, 4.136382e-01, 4.150344e-01, 4.164295e-01, 4.178237e-01, 4.192169e-01, 4.206090e-01, 4.220002e-01, 4.233904e-01, 4.247797e-01, 4.261678e-01,
4.275551e-01, 4.289412e-01, 4.303265e-01, 4.317106e-01, 4.330938e-01, 4.344759e-01, 4.358571e-01, 4.372371e-01, 4.386162e-01, 4.399942e-01, 4.413712e-01, 4.427471e-01, 4.441221e-01, 4.454960e-01, 4.468688e-01, 4.482405e-01,
4.496113e-01, 4.509809e-01, 4.523495e-01, 4.537171e-01, 4.550835e-01, 4.564489e-01, 4.578133e-01, 4.591765e-01, 4.605386e-01, 4.618998e-01, 4.632597e-01, 4.646187e-01, 4.659765e-01, 4.673332e-01, 4.686887e-01, 4.700433e-01,
4.713967e-01, 4.727490e-01, 4.741001e-01, 4.754503e-01, 4.767991e-01, 4.781470e-01, 4.794937e-01, 4.808393e-01, 4.821837e-01, 4.835271e-01, 4.848692e-01, 4.862102e-01, 4.875501e-01, 4.888889e-01, 4.902264e-01, 4.915628e-01,
4.928981e-01, 4.942323e-01, 4.955652e-01, 4.968970e-01, 4.982276e-01, 4.995570e-01, 5.008854e-01, 5.022124e-01, 5.035384e-01, 5.048630e-01, 5.061866e-01, 5.075089e-01, 5.088301e-01, 5.101501e-01, 5.114688e-01, 5.127864e-01,
5.141027e-01, 5.154178e-01, 5.167317e-01, 5.180445e-01, 5.193559e-01, 5.206662e-01, 5.219753e-01, 5.232830e-01, 5.245897e-01, 5.258950e-01, 5.271990e-01, 5.285020e-01, 5.298035e-01, 5.311040e-01, 5.324031e-01, 5.337009e-01,
5.349976e-01, 5.362929e-01, 5.375870e-01, 5.388799e-01, 5.401714e-01, 5.414617e-01, 5.427507e-01, 5.440384e-01, 5.453249e-01, 5.466101e-01, 5.478940e-01, 5.491766e-01, 5.504580e-01, 5.517379e-01, 5.530167e-01, 5.542941e-01,
5.555701e-01, 5.568449e-01, 5.581185e-01, 5.593907e-01, 5.606616e-01, 5.619310e-01, 5.631993e-01, 5.644662e-01, 5.657318e-01, 5.669960e-01, 5.682589e-01, 5.695205e-01, 5.707806e-01, 5.720396e-01, 5.732971e-01, 5.745533e-01,
5.758082e-01, 5.770617e-01, 5.783137e-01, 5.795645e-01, 5.808139e-01, 5.820619e-01, 5.833086e-01, 5.845538e-01, 5.857978e-01, 5.870403e-01, 5.882815e-01, 5.895213e-01, 5.907596e-01, 5.919967e-01, 5.932323e-01, 5.944664e-01,
5.956992e-01, 5.969306e-01, 5.981606e-01, 5.993892e-01, 6.006165e-01, 6.018422e-01, 6.030666e-01, 6.042894e-01, 6.055110e-01, 6.067311e-01, 6.079497e-01, 6.091670e-01, 6.103828e-01, 6.115971e-01, 6.128100e-01, 6.140215e-01,
6.152315e-01, 6.164401e-01, 6.176473e-01, 6.188530e-01, 6.200571e-01, 6.212599e-01, 6.224612e-01, 6.236610e-01, 6.248595e-01, 6.260563e-01, 6.272517e-01, 6.284457e-01, 6.296382e-01, 6.308292e-01, 6.320187e-01, 6.332067e-01,
6.343932e-01, 6.355783e-01, 6.367618e-01, 6.379439e-01, 6.391244e-01, 6.403034e-01, 6.414809e-01, 6.426569e-01, 6.438315e-01, 6.450045e-01, 6.461760e-01, 6.473459e-01, 6.485144e-01, 6.496812e-01, 6.508466e-01, 6.520104e-01,
6.531727e-01, 6.543336e-01, 6.554928e-01, 6.566505e-01, 6.578066e-01, 6.589612e-01, 6.601143e-01, 6.612657e-01, 6.624157e-01, 6.635641e-01, 6.647109e-01, 6.658561e-01, 6.669998e-01, 6.681420e-01, 6.692826e-01, 6.704215e-01,
6.715589e-01, 6.726947e-01, 6.738290e-01, 6.749616e-01, 6.760926e-01, 6.772221e-01, 6.783500e-01, 6.794763e-01, 6.806009e-01, 6.817241e-01, 6.828455e-01, 6.839653e-01, 6.850836e-01, 6.862003e-01, 6.873152e-01, 6.884286e-01,
6.895405e-01, 6.906507e-01, 6.917592e-01, 6.928661e-01, 6.939714e-01, 6.950750e-01, 6.961771e-01, 6.972774e-01, 6.983762e-01, 6.994733e-01, 7.005687e-01, 7.016625e-01, 7.027547e-01, 7.038451e-01, 7.049340e-01, 7.060212e-01,
7.071067e-01, 7.081906e-01, 7.092727e-01, 7.103533e-01, 7.114321e-01, 7.125093e-01, 7.135848e-01, 7.146586e-01, 7.157308e-01, 7.168012e-01, 7.178700e-01, 7.189370e-01, 7.200024e-01, 7.210661e-01, 7.221282e-01, 7.231884e-01,
7.242470e-01, 7.253039e-01, 7.263591e-01, 7.274126e-01, 7.284644e-01, 7.295144e-01, 7.305627e-01, 7.316093e-01, 7.326542e-01, 7.336974e-01, 7.347388e-01, 7.357786e-01, 7.368165e-01, 7.378528e-01, 7.388873e-01, 7.399200e-01,
7.409511e-01, 7.419803e-01, 7.430079e-01, 7.440337e-01, 7.450577e-01, 7.460800e-01, 7.471006e-01, 7.481194e-01, 7.491363e-01, 7.501516e-01, 7.511650e-01, 7.521768e-01, 7.531867e-01, 7.541950e-01, 7.552013e-01, 7.562059e-01,
7.572088e-01, 7.582098e-01, 7.592092e-01, 7.602066e-01, 7.612023e-01, 7.621962e-01, 7.631884e-01, 7.641786e-01, 7.651672e-01, 7.661539e-01, 7.671388e-01, 7.681220e-01, 7.691033e-01, 7.700828e-01, 7.710605e-01, 7.720363e-01,
7.730104e-01, 7.739826e-01, 7.749530e-01, 7.759216e-01, 7.768884e-01, 7.778534e-01, 7.788165e-01, 7.797778e-01, 7.807372e-01, 7.816948e-01, 7.826506e-01, 7.836045e-01, 7.845565e-01, 7.855067e-01, 7.864552e-01, 7.874017e-01,
7.883464e-01, 7.892892e-01, 7.902302e-01, 7.911693e-01, 7.921065e-01, 7.930419e-01, 7.939755e-01, 7.949071e-01, 7.958368e-01, 7.967647e-01, 7.976907e-01, 7.986150e-01, 7.995372e-01, 8.004576e-01, 8.013761e-01, 8.022927e-01,
8.032075e-01, 8.041203e-01, 8.050313e-01, 8.059404e-01, 8.068475e-01, 8.077527e-01, 8.086561e-01, 8.095576e-01, 8.104571e-01, 8.113548e-01, 8.122505e-01, 8.131443e-01, 8.140363e-01, 8.149263e-01, 8.158144e-01, 8.167005e-01,
8.175848e-01, 8.184670e-01, 8.193475e-01, 8.202260e-01, 8.211025e-01, 8.219770e-01, 8.228498e-01, 8.237205e-01, 8.245893e-01, 8.254561e-01, 8.263210e-01, 8.271840e-01, 8.280450e-01, 8.289040e-01, 8.297611e-01, 8.306164e-01,
8.314695e-01, 8.323208e-01, 8.331701e-01, 8.340174e-01, 8.348628e-01, 8.357062e-01, 8.365476e-01, 8.373871e-01, 8.382246e-01, 8.390602e-01, 8.398937e-01, 8.407253e-01, 8.415549e-01, 8.423826e-01, 8.432082e-01, 8.440318e-01,
8.448535e-01, 8.456732e-01, 8.464909e-01, 8.473066e-01, 8.481203e-01, 8.489320e-01, 8.497417e-01, 8.505495e-01, 8.513551e-01, 8.521588e-01, 8.529606e-01, 8.537602e-01, 8.545579e-01, 8.553536e-01, 8.561473e-01, 8.569390e-01,
8.577286e-01, 8.585162e-01, 8.593018e-01, 8.600854e-01, 8.608669e-01, 8.616464e-01, 8.624239e-01, 8.631994e-01, 8.639728e-01, 8.647442e-01, 8.655136e-01, 8.662809e-01, 8.670462e-01, 8.678094e-01, 8.685707e-01, 8.693298e-01,
8.700869e-01, 8.708420e-01, 8.715950e-01, 8.723460e-01, 8.730949e-01, 8.738418e-01, 8.745866e-01, 8.753294e-01, 8.760700e-01, 8.768086e-01, 8.775452e-01, 8.782797e-01, 8.790121e-01, 8.797425e-01, 8.804709e-01, 8.811971e-01,
8.819212e-01, 8.826432e-01, 8.833632e-01, 8.840812e-01, 8.847971e-01, 8.855108e-01, 8.862225e-01, 8.869320e-01, 8.876395e-01, 8.883450e-01, 8.890483e-01, 8.897495e-01, 8.904487e-01, 8.911457e-01, 8.918407e-01, 8.925335e-01,
8.932242e-01, 8.939129e-01, 8.945994e-01, 8.952838e-01, 8.959662e-01, 8.966464e-01, 8.973246e-01, 8.980005e-01, 8.986744e-01, 8.993462e-01, 9.000158e-01, 9.006834e-01, 9.013488e-01, 9.020121e-01, 9.026732e-01, 9.033324e-01,
9.039892e-01, 9.046440e-01, 9.052967e-01, 9.059472e-01, 9.065956e-01, 9.072419e-01, 9.078860e-01, 9.085281e-01, 9.091679e-01, 9.098057e-01, 9.104413e-01, 9.110746e-01, 9.117060e-01, 9.123352e-01, 9.129621e-01, 9.135870e-01,
9.142097e-01, 9.148302e-01, 9.154487e-01, 9.160649e-01, 9.166790e-01, 9.172909e-01, 9.179007e-01, 9.185083e-01, 9.191138e-01, 9.197171e-01, 9.203182e-01, 9.209172e-01, 9.215140e-01, 9.221087e-01, 9.227011e-01, 9.232913e-01,
9.238795e-01, 9.244654e-01, 9.250492e-01, 9.256308e-01, 9.262102e-01, 9.267874e-01, 9.273624e-01, 9.279354e-01, 9.285060e-01, 9.290745e-01, 9.296409e-01, 9.302050e-01, 9.307669e-01, 9.313266e-01, 9.318842e-01, 9.324396e-01,
9.329927e-01, 9.335437e-01, 9.340925e-01, 9.346391e-01, 9.351834e-01, 9.357257e-01, 9.362656e-01, 9.368033e-01, 9.373389e-01, 9.378723e-01, 9.384035e-01, 9.389324e-01, 9.394592e-01, 9.399837e-01, 9.405060e-01, 9.410261e-01,
9.415441e-01, 9.420596e-01, 9.425732e-01, 9.430844e-01, 9.435934e-01, 9.441001e-01, 9.446048e-01, 9.451071e-01, 9.456073e-01, 9.461051e-01, 9.466008e-01, 9.470943e-01, 9.475856e-01, 9.480746e-01, 9.485613e-01, 9.490458e-01,
9.495281e-01, 9.500082e-01, 9.504861e-01, 9.509616e-01, 9.514350e-01, 9.519061e-01, 9.523749e-01, 9.528416e-01, 9.533060e-01, 9.537681e-01, 9.542280e-01, 9.546857e-01, 9.551411e-01, 9.555943e-01, 9.560452e-01, 9.564939e-01,
9.569403e-01, 9.573845e-01, 9.578264e-01, 9.582660e-01, 9.587034e-01, 9.591385e-01, 9.595715e-01, 9.600021e-01, 9.604305e-01, 9.608566e-01, 9.612805e-01, 9.617020e-01, 9.621214e-01, 9.625384e-01, 9.629532e-01, 9.633658e-01,
9.637760e-01, 9.641840e-01, 9.645897e-01, 9.649932e-01, 9.653944e-01, 9.657933e-01, 9.661900e-01, 9.665843e-01, 9.669764e-01, 9.673662e-01, 9.677538e-01, 9.681391e-01, 9.685221e-01, 9.689027e-01, 9.692812e-01, 9.696573e-01,
9.700311e-01, 9.704028e-01, 9.707720e-01, 9.711391e-01, 9.715039e-01, 9.718663e-01, 9.722264e-01, 9.725844e-01, 9.729398e-01, 9.732932e-01, 9.736441e-01, 9.739929e-01, 9.743394e-01, 9.746834e-01, 9.750253e-01, 9.753648e-01,
9.757020e-01, 9.760370e-01, 9.763696e-01, 9.767001e-01, 9.770281e-01, 9.773538e-01, 9.776773e-01, 9.779985e-01, 9.783173e-01, 9.786339e-01, 9.789481e-01, 9.792601e-01, 9.795697e-01, 9.798770e-01, 9.801821e-01, 9.804848e-01,
9.807853e-01, 9.810833e-01, 9.813792e-01, 9.816726e-01, 9.819638e-01, 9.822527e-01, 9.825393e-01, 9.828235e-01, 9.831054e-01, 9.833851e-01, 9.836624e-01, 9.839374e-01, 9.842100e-01, 9.844804e-01, 9.847485e-01, 9.850142e-01,
9.852775e-01, 9.855387e-01, 9.857974e-01, 9.860539e-01, 9.863080e-01, 9.865599e-01, 9.868094e-01, 9.870565e-01, 9.873013e-01, 9.875439e-01, 9.877840e-01, 9.880220e-01, 9.882575e-01, 9.884907e-01, 9.887216e-01, 9.889503e-01,
9.891764e-01, 9.894004e-01, 9.896220e-01, 9.898412e-01, 9.900582e-01, 9.902728e-01, 9.904851e-01, 9.906950e-01, 9.909025e-01, 9.911078e-01, 9.913108e-01, 9.915115e-01, 9.917097e-01, 9.919057e-01, 9.920993e-01, 9.922905e-01,
9.924794e-01, 9.926661e-01, 9.928503e-01, 9.930323e-01, 9.932119e-01, 9.933891e-01, 9.935641e-01, 9.937366e-01, 9.939069e-01, 9.940748e-01, 9.942404e-01, 9.944036e-01, 9.945645e-01, 9.947231e-01, 9.948792e-01, 9.950331e-01,
9.951847e-01, 9.953339e-01, 9.954807e-01, 9.956251e-01, 9.957674e-01, 9.959072e-01, 9.960446e-01, 9.961798e-01, 9.963125e-01, 9.964430e-01, 9.965711e-01, 9.966968e-01, 9.968202e-01, 9.969413e-01, 9.970601e-01, 9.971764e-01,
9.972904e-01, 9.974021e-01, 9.975114e-01, 9.976183e-01, 9.977230e-01, 9.978253e-01, 9.979253e-01, 9.980228e-01, 9.981180e-01, 9.982109e-01, 9.983015e-01, 9.983897e-01, 9.984756e-01, 9.985590e-01, 9.986402e-01, 9.987190e-01,
9.987954e-01, 9.988695e-01, 9.989412e-01, 9.990107e-01, 9.990777e-01, 9.991424e-01, 9.992048e-01, 9.992647e-01, 9.993223e-01, 9.993776e-01, 9.994305e-01, 9.994811e-01, 9.995294e-01, 9.995753e-01, 9.996188e-01, 9.996599e-01,
9.996988e-01, 9.997352e-01, 9.997693e-01, 9.998012e-01, 9.998305e-01, 9.998575e-01, 9.998823e-01, 9.999046e-01, 9.999247e-01, 9.999423e-01, 9.999576e-01, 9.999706e-01, 9.999812e-01, 9.999894e-01, 9.999952e-01, 9.999988e-01,
9.999999e-01, 9.999988e-01, 9.999952e-01, 9.999894e-01, 9.999812e-01, 9.999706e-01, 9.999576e-01, 9.999423e-01, 9.999247e-01, 9.999046e-01, 9.998823e-01, 9.998575e-01, 9.998305e-01, 9.998012e-01, 9.997693e-01, 9.997352e-01,
9.996988e-01, 9.996599e-01, 9.996188e-01, 9.995753e-01, 9.995294e-01, 9.994811e-01, 9.994305e-01, 9.993776e-01, 9.993223e-01, 9.992647e-01, 9.992048e-01, 9.991424e-01, 9.990777e-01, 9.990107e-01, 9.989412e-01, 9.988695e-01,
9.987954e-01, 9.987190e-01, 9.986402e-01, 9.985590e-01, 9.984756e-01, 9.983897e-01, 9.983015e-01, 9.982109e-01, 9.981180e-01, 9.980228e-01, 9.979253e-01, 9.978253e-01, 9.977230e-01, 9.976183e-01, 9.975114e-01, 9.974021e-01,
9.972904e-01, 9.971764e-01, 9.970601e-01, 9.969413e-01, 9.968202e-01, 9.966968e-01, 9.965711e-01, 9.964430e-01, 9.963125e-01, 9.961798e-01, 9.960446e-01, 9.959072e-01, 9.957674e-01, 9.956251e-01, 9.954807e-01, 9.953339e-01,
9.951847e-01, 9.950331e-01, 9.948792e-01, 9.947231e-01, 9.945645e-01, 9.944036e-01, 9.942404e-01, 9.940748e-01, 9.939069e-01, 9.937366e-01, 9.935641e-01, 9.933891e-01, 9.932119e-01, 9.930323e-01, 9.928503e-01, 9.926661e-01,
9.924794e-01, 9.922905e-01, 9.920993e-01, 9.919057e-01, 9.917097e-01, 9.915115e-01, 9.913108e-01, 9.911078e-01, 9.909025e-01, 9.906950e-01, 9.904851e-01, 9.902728e-01, 9.900582e-01, 9.898412e-01, 9.896220e-01, 9.894004e-01,
9.891764e-01, 9.889503e-01, 9.887216e-01, 9.884907e-01, 9.882575e-01, 9.880220e-01, 9.877840e-01, 9.875439e-01, 9.873013e-01, 9.870565e-01, 9.868094e-01, 9.865599e-01, 9.863080e-01, 9.860539e-01, 9.857974e-01, 9.855387e-01,
9.852775e-01, 9.850142e-01, 9.847485e-01, 9.844804e-01, 9.842100e-01, 9.839374e-01, 9.836624e-01, 9.833851e-01, 9.831054e-01, 9.828235e-01, 9.825393e-01, 9.822527e-01, 9.819638e-01, 9.816726e-01, 9.813792e-01, 9.810833e-01,
9.807853e-01, 9.804848e-01, 9.801821e-01, 9.798770e-01, 9.795697e-01, 9.792601e-01, 9.789481e-01, 9.786339e-01, 9.783173e-01, 9.779985e-01, 9.776773e-01, 9.773538e-01, 9.770281e-01, 9.767001e-01, 9.763696e-01, 9.760370e-01,
9.757020e-01, 9.753648e-01, 9.750253e-01, 9.746834e-01, 9.743394e-01, 9.739929e-01, 9.736441e-01, 9.732932e-01, 9.729398e-01, 9.725844e-01, 9.722264e-01, 9.718663e-01, 9.715039e-01, 9.711391e-01, 9.707720e-01, 9.704028e-01,
9.700311e-01, 9.696573e-01, 9.692812e-01, 9.689027e-01, 9.685221e-01, 9.681391e-01, 9.677538e-01, 9.673662e-01, 9.669764e-01, 9.665843e-01, 9.661900e-01, 9.657933e-01, 9.653944e-01, 9.649932e-01, 9.645897e-01, 9.641840e-01,
9.637760e-01, 9.633658e-01, 9.629532e-01, 9.625384e-01, 9.621214e-01, 9.617020e-01, 9.612805e-01, 9.608566e-01, 9.604305e-01, 9.600021e-01, 9.595715e-01, 9.591385e-01, 9.587034e-01, 9.582660e-01, 9.578264e-01, 9.573845e-01,
9.569403e-01, 9.564939e-01, 9.560452e-01, 9.555943e-01, 9.551411e-01, 9.546857e-01, 9.542280e-01, 9.537681e-01, 9.533060e-01, 9.528416e-01, 9.523749e-01, 9.519061e-01, 9.514350e-01, 9.509616e-01, 9.504861e-01, 9.500082e-01,
9.495281e-01, 9.490458e-01, 9.485613e-01, 9.480746e-01, 9.475856e-01, 9.470943e-01, 9.466008e-01, 9.461051e-01, 9.456073e-01, 9.451071e-01, 9.446048e-01, 9.441001e-01, 9.435934e-01, 9.430844e-01, 9.425732e-01, 9.420596e-01,
9.415441e-01, 9.410261e-01, 9.405060e-01, 9.399837e-01, 9.394592e-01, 9.389324e-01, 9.384035e-01, 9.378723e-01, 9.373389e-01, 9.368033e-01, 9.362656e-01, 9.357257e-01, 9.351834e-01, 9.346391e-01, 9.340925e-01, 9.335437e-01,
9.329927e-01, 9.324396e-01, 9.318842e-01, 9.313266e-01, 9.307669e-01, 9.302050e-01, 9.296409e-01, 9.290745e-01, 9.285060e-01, 9.279354e-01, 9.273624e-01, 9.267874e-01, 9.262102e-01, 9.256308e-01, 9.250492e-01, 9.244654e-01,
9.238795e-01, 9.232913e-01, 9.227011e-01, 9.221087e-01, 9.215140e-01, 9.209172e-01, 9.203182e-01, 9.197171e-01, 9.191138e-01, 9.185083e-01, 9.179007e-01, 9.172909e-01, 9.166790e-01, 9.160649e-01, 9.154487e-01, 9.148302e-01,
9.142097e-01, 9.135870e-01, 9.129621e-01, 9.123352e-01, 9.117060e-01, 9.110746e-01, 9.104413e-01, 9.098057e-01, 9.091679e-01, 9.085281e-01, 9.078860e-01, 9.072419e-01, 9.065956e-01, 9.059472e-01, 9.052967e-01, 9.046440e-01,
9.039892e-01, 9.033324e-01, 9.026732e-01, 9.020121e-01, 9.013488e-01, 9.006834e-01, 9.000158e-01, 8.993462e-01, 8.986744e-01, 8.980005e-01, 8.973246e-01, 8.966464e-01, 8.959662e-01, 8.952838e-01, 8.945994e-01, 8.939129e-01,
8.932242e-01, 8.925335e-01, 8.918407e-01, 8.911457e-01, 8.904487e-01, 8.897495e-01, 8.890483e-01, 8.883450e-01, 8.876395e-01, 8.869320e-01, 8.862225e-01, 8.855108e-01, 8.847971e-01, 8.840812e-01, 8.833632e-01, 8.826432e-01,
8.819212e-01, 8.811971e-01, 8.804709e-01, 8.797425e-01, 8.790121e-01, 8.782797e-01, 8.775452e-01, 8.768086e-01, 8.760700e-01, 8.753294e-01, 8.745866e-01, 8.738418e-01, 8.730949e-01, 8.723460e-01, 8.715950e-01, 8.708420e-01,
8.700869e-01, 8.693298e-01, 8.685707e-01, 8.678094e-01, 8.670462e-01, 8.662809e-01, 8.655136e-01, 8.647442e-01, 8.639728e-01, 8.631994e-01, 8.624239e-01, 8.616464e-01, 8.608669e-01, 8.600854e-01, 8.593018e-01, 8.585162e-01,
8.577286e-01, 8.569390e-01, 8.561473e-01, 8.553536e-01, 8.545579e-01, 8.537602e-01, 8.529606e-01, 8.521588e-01, 8.513551e-01, 8.505495e-01, 8.497417e-01, 8.489320e-01, 8.481203e-01, 8.473066e-01, 8.464909e-01, 8.456732e-01,
8.448535e-01, 8.440318e-01, 8.432082e-01, 8.423826e-01, 8.415549e-01, 8.407253e-01, 8.398937e-01, 8.390602e-01, 8.382246e-01, 8.373871e-01, 8.365476e-01, 8.357062e-01, 8.348628e-01, 8.340174e-01, 8.331701e-01, 8.323208e-01,
8.314695e-01, 8.306164e-01, 8.297611e-01, 8.289040e-01, 8.280450e-01, 8.271840e-01, 8.263210e-01, 8.254561e-01, 8.245893e-01, 8.237205e-01, 8.228498e-01, 8.219770e-01, 8.211025e-01, 8.202260e-01, 8.193475e-01, 8.184670e-01,
8.175848e-01, 8.167005e-01, 8.158144e-01, 8.149263e-01, 8.140363e-01, 8.131443e-01, 8.122505e-01, 8.113548e-01, 8.104571e-01, 8.095576e-01, 8.086561e-01, 8.077527e-01, 8.068475e-01, 8.059404e-01, 8.050313e-01, 8.041203e-01,
8.032075e-01, 8.022927e-01, 8.013761e-01, 8.004576e-01, 7.995372e-01, 7.986150e-01, 7.976907e-01, 7.967647e-01, 7.958368e-01, 7.949071e-01, 7.939755e-01, 7.930419e-01, 7.921065e-01, 7.911693e-01, 7.902302e-01, 7.892892e-01,
7.883464e-01, 7.874017e-01, 7.864552e-01, 7.855067e-01, 7.845565e-01, 7.836045e-01, 7.826506e-01, 7.816948e-01, 7.807372e-01, 7.797778e-01, 7.788165e-01, 7.778534e-01, 7.768884e-01, 7.759216e-01, 7.749530e-01, 7.739826e-01,
7.730104e-01, 7.720363e-01, 7.710605e-01, 7.700828e-01, 7.691033e-01, 7.681220e-01, 7.671388e-01, 7.661539e-01, 7.651672e-01, 7.641786e-01, 7.631884e-01, 7.621962e-01, 7.612023e-01, 7.602066e-01, 7.592092e-01, 7.582098e-01,
7.572088e-01, 7.562059e-01, 7.552013e-01, 7.541950e-01, 7.531867e-01, 7.521768e-01, 7.511650e-01, 7.501516e-01, 7.491363e-01, 7.481194e-01, 7.471006e-01, 7.460800e-01, 7.450577e-01, 7.440337e-01, 7.430079e-01, 7.419803e-01,
7.409511e-01, 7.399200e-01, 7.388873e-01, 7.378528e-01, 7.368165e-01, 7.357786e-01, 7.347388e-01, 7.336974e-01, 7.326542e-01, 7.316093e-01, 7.305627e-01, 7.295144e-01, 7.284644e-01, 7.274126e-01, 7.263591e-01, 7.253039e-01,
7.242470e-01, 7.231884e-01, 7.221282e-01, 7.210661e-01, 7.200024e-01, 7.189370e-01, 7.178700e-01, 7.168012e-01, 7.157308e-01, 7.146586e-01, 7.135848e-01, 7.125093e-01, 7.114321e-01, 7.103533e-01, 7.092727e-01, 7.081906e-01,
7.071067e-01, 7.060212e-01, 7.049340e-01, 7.038451e-01, 7.027547e-01, 7.016625e-01, 7.005687e-01, 6.994733e-01, 6.983762e-01, 6.972774e-01, 6.961771e-01, 6.950750e-01, 6.939714e-01, 6.928661e-01, 6.917592e-01, 6.906507e-01,
6.895405e-01, 6.884286e-01, 6.873152e-01, 6.862003e-01, 6.850836e-01, 6.839653e-01, 6.828455e-01, 6.817241e-01, 6.806009e-01, 6.794763e-01, 6.783500e-01, 6.772221e-01, 6.760926e-01, 6.749616e-01, 6.738290e-01, 6.726947e-01,
6.715589e-01, 6.704215e-01, 6.692826e-01, 6.681420e-01, 6.669998e-01, 6.658561e-01, 6.647109e-01, 6.635641e-01, 6.624157e-01, 6.612657e-01, 6.601143e-01, 6.589612e-01, 6.578066e-01, 6.566505e-01, 6.554928e-01, 6.543336e-01,
6.531727e-01, 6.520104e-01, 6.508466e-01, 6.496812e-01, 6.485144e-01, 6.473459e-01, 6.461760e-01, 6.450045e-01, 6.438315e-01, 6.426569e-01, 6.414809e-01, 6.403034e-01, 6.391244e-01, 6.379439e-01, 6.367618e-01, 6.355783e-01,
6.343932e-01, 6.332067e-01, 6.320187e-01, 6.308292e-01, 6.296382e-01, 6.284457e-01, 6.272517e-01, 6.260563e-01, 6.248595e-01, 6.236610e-01, 6.224612e-01, 6.212599e-01, 6.200571e-01, 6.188530e-01, 6.176473e-01, 6.164401e-01,
6.152315e-01, 6.140215e-01, 6.128100e-01, 6.115971e-01, 6.103828e-01, 6.091670e-01, 6.079497e-01, 6.067311e-01, 6.055110e-01, 6.042894e-01, 6.030666e-01, 6.018422e-01, 6.006165e-01, 5.993892e-01, 5.981606e-01, 5.969306e-01,
5.956992e-01, 5.944664e-01, 5.932323e-01, 5.919967e-01, 5.907596e-01, 5.895213e-01, 5.882815e-01, 5.870403e-01, 5.857978e-01, 5.845538e-01, 5.833086e-01, 5.820619e-01, 5.808139e-01, 5.795645e-01, 5.783137e-01, 5.770617e-01,
5.758082e-01, 5.745533e-01, 5.732971e-01, 5.720396e-01, 5.707806e-01, 5.695205e-01, 5.682589e-01, 5.669960e-01, 5.657318e-01, 5.644662e-01, 5.631993e-01, 5.619310e-01, 5.606616e-01, 5.593907e-01, 5.581185e-01, 5.568449e-01,
5.555701e-01, 5.542941e-01, 5.530167e-01, 5.517379e-01, 5.504580e-01, 5.491766e-01, 5.478940e-01, 5.466101e-01, 5.453249e-01, 5.440384e-01, 5.427507e-01, 5.414617e-01, 5.401714e-01, 5.388799e-01, 5.375870e-01, 5.362929e-01,
5.349976e-01, 5.337009e-01, 5.324031e-01, 5.311040e-01, 5.298035e-01, 5.285020e-01, 5.271990e-01, 5.258950e-01, 5.245897e-01, 5.232830e-01, 5.219753e-01, 5.206662e-01, 5.193559e-01, 5.180445e-01, 5.167317e-01, 5.154178e-01,
5.141027e-01, 5.127864e-01, 5.114688e-01, 5.101501e-01, 5.088301e-01, 5.075089e-01, 5.061866e-01, 5.048630e-01, 5.035384e-01, 5.022124e-01, 5.008854e-01, 4.995570e-01, 4.982276e-01, 4.968970e-01, 4.955652e-01, 4.942323e-01,
4.928981e-01, 4.915628e-01, 4.902264e-01, 4.888889e-01, 4.875501e-01, 4.862102e-01, 4.848692e-01, 4.835271e-01, 4.821837e-01, 4.808393e-01, 4.794937e-01, 4.781470e-01, 4.767991e-01, 4.754503e-01, 4.741001e-01, 4.727490e-01,
4.713967e-01, 4.700433e-01, 4.686887e-01, 4.673332e-01, 4.659765e-01, 4.646187e-01, 4.632597e-01, 4.618998e-01, 4.605386e-01, 4.591765e-01, 4.578133e-01, 4.564489e-01, 4.550835e-01, 4.537171e-01, 4.523495e-01, 4.509809e-01,
4.496113e-01, 4.482405e-01, 4.468688e-01, 4.454960e-01, 4.441221e-01, 4.427471e-01, 4.413712e-01, 4.399942e-01, 4.386162e-01, 4.372371e-01, 4.358571e-01, 4.344759e-01, 4.330938e-01, 4.317106e-01, 4.303265e-01, 4.289412e-01,
4.275551e-01, 4.261678e-01, 4.247797e-01, 4.233904e-01, 4.220002e-01, 4.206090e-01, 4.192169e-01, 4.178237e-01, 4.164295e-01, 4.150344e-01, 4.136382e-01, 4.122412e-01, 4.108431e-01, 4.094441e-01, 4.080441e-01, 4.066432e-01,
4.052413e-01, 4.038384e-01, 4.024346e-01, 4.010298e-01, 3.996241e-01, 3.982176e-01, 3.968099e-01, 3.954015e-01, 3.939919e-01, 3.925816e-01, 3.911704e-01, 3.897581e-01, 3.883450e-01, 3.869309e-01, 3.855160e-01, 3.841001e-01,
3.826834e-01, 3.812658e-01, 3.798472e-01, 3.784277e-01, 3.770074e-01, 3.755862e-01, 3.741640e-01, 3.727410e-01, 3.713171e-01, 3.698924e-01, 3.684667e-01, 3.670403e-01, 3.656130e-01, 3.641847e-01, 3.627557e-01, 3.613257e-01,
3.598950e-01, 3.584634e-01, 3.570309e-01, 3.555976e-01, 3.541634e-01, 3.527285e-01, 3.512927e-01, 3.498560e-01, 3.484186e-01, 3.469803e-01, 3.455412e-01, 3.441013e-01, 3.426607e-01, 3.412192e-01, 3.397769e-01, 3.383337e-01,
3.368897e-01, 3.354450e-01, 3.339996e-01, 3.325533e-01, 3.311063e-01, 3.296584e-01, 3.282098e-01, 3.267604e-01, 3.253102e-01, 3.238593e-01, 3.224076e-01, 3.209552e-01, 3.195020e-01, 3.180480e-01, 3.165933e-01, 3.151379e-01,
3.136817e-01, 3.122247e-01, 3.107671e-01, 3.093086e-01, 3.078495e-01, 3.063897e-01, 3.049291e-01, 3.034679e-01, 3.020059e-01, 3.005432e-01, 2.990798e-01, 2.976156e-01, 2.961508e-01, 2.946854e-01, 2.932191e-01, 2.917522e-01,
2.902846e-01, 2.888163e-01, 2.873474e-01, 2.858778e-01, 2.844075e-01, 2.829365e-01, 2.814649e-01, 2.799926e-01, 2.785196e-01, 2.770460e-01, 2.755717e-01, 2.740968e-01, 2.726213e-01, 2.711451e-01, 2.696682e-01, 2.681907e-01,
2.667127e-01, 2.652340e-01, 2.637546e-01, 2.622746e-01, 2.607940e-01, 2.593129e-01, 2.578311e-01, 2.563486e-01, 2.548656e-01, 2.533820e-01, 2.518978e-01, 2.504129e-01, 2.489276e-01, 2.474415e-01, 2.459550e-01, 2.444679e-01,
2.429801e-01, 2.414918e-01, 2.400030e-01, 2.385136e-01, 2.370236e-01, 2.355330e-01, 2.340419e-01, 2.325503e-01, 2.310580e-01, 2.295653e-01, 2.280720e-01, 2.265782e-01, 2.250838e-01, 2.235889e-01, 2.220936e-01, 2.205976e-01,
2.191012e-01, 2.176042e-01, 2.161068e-01, 2.146088e-01, 2.131102e-01, 2.116113e-01, 2.101117e-01, 2.086118e-01, 2.071114e-01, 2.056104e-01, 2.041090e-01, 2.026070e-01, 2.011045e-01, 1.996017e-01, 1.980983e-01, 1.965946e-01,
1.950903e-01, 1.935855e-01, 1.920804e-01, 1.905746e-01, 1.890686e-01, 1.875621e-01, 1.860551e-01, 1.845477e-01, 1.830398e-01, 1.815315e-01, 1.800228e-01, 1.785138e-01, 1.770042e-01, 1.754942e-01, 1.739838e-01, 1.724731e-01,
1.709619e-01, 1.694503e-01, 1.679382e-01, 1.664258e-01, 1.649131e-01, 1.633999e-01, 1.618863e-01, 1.603724e-01, 1.588581e-01, 1.573434e-01, 1.558284e-01, 1.543130e-01, 1.527971e-01, 1.512810e-01, 1.497644e-01, 1.482476e-01,
1.467304e-01, 1.452129e-01, 1.436950e-01, 1.421767e-01, 1.406581e-01, 1.391393e-01, 1.376201e-01, 1.361005e-01, 1.345806e-01, 1.330605e-01, 1.315399e-01, 1.300192e-01, 1.284981e-01, 1.269766e-01, 1.254549e-01, 1.239330e-01,
1.224107e-01, 1.208880e-01, 1.193651e-01, 1.178420e-01, 1.163186e-01, 1.147949e-01, 1.132709e-01, 1.117467e-01, 1.102221e-01, 1.086974e-01, 1.071724e-01, 1.056471e-01, 1.041216e-01, 1.025958e-01, 1.010698e-01, 9.954357e-02,
9.801710e-02, 9.649038e-02, 9.496343e-02, 9.343624e-02, 9.190893e-02, 9.038126e-02, 8.885348e-02, 8.732545e-02, 8.579731e-02, 8.426881e-02, 8.274019e-02, 8.121133e-02, 7.968235e-02, 7.815313e-02, 7.662380e-02, 7.509422e-02,
7.356453e-02, 7.203460e-02, 7.050455e-02, 6.897426e-02, 6.744385e-02, 6.591332e-02, 6.438255e-02, 6.285167e-02, 6.132066e-02, 5.978954e-02, 5.825818e-02, 5.672681e-02, 5.519521e-02, 5.366349e-02, 5.213165e-02, 5.059969e-02,
4.906762e-02, 4.753542e-02, 4.600310e-02, 4.447067e-02, 4.293823e-02, 4.140556e-02, 3.987288e-02, 3.834009e-02, 3.680718e-02, 3.527415e-02, 3.374112e-02, 3.220797e-02, 3.067470e-02, 2.914143e-02, 2.760804e-02, 2.607465e-02,
2.454114e-02, 2.300763e-02, 2.147400e-02, 1.994038e-02, 1.840663e-02, 1.687288e-02, 1.533914e-02, 1.380527e-02, 1.227152e-02, 1.073766e-02, 9.203672e-03, 7.669806e-03, 6.135821e-03, 4.601836e-03, 3.067851e-03, 1.533866e-03,
0.000000e+00, -1.533985e-03, -3.067970e-03, -4.601955e-03, -6.135941e-03, -7.669926e-03, -9.203792e-03, -1.073778e-02, -1.227164e-02, -1.380539e-02, -1.533926e-02, -1.687300e-02, -1.840675e-02, -1.994050e-02, -2.147412e-02, -2.300775e-02,
-2.454126e-02, -2.607477e-02, -2.760816e-02, -2.914155e-02, -3.067482e-02, -3.220809e-02, -3.374124e-02, -3.527427e-02, -3.680730e-02, -3.834021e-02, -3.987300e-02, -4.140568e-02, -4.293835e-02, -4.447079e-02, -4.600322e-02, -4.753554e-02,
-4.906774e-02, -5.059981e-02, -5.213177e-02, -5.366361e-02, -5.519533e-02, -5.672693e-02, -5.825830e-02, -5.978966e-02, -6.132078e-02, -6.285179e-02, -6.438267e-02, -6.591344e-02, -6.744397e-02, -6.897438e-02, -7.050467e-02, -7.203472e-02,
-7.356465e-02, -7.509434e-02, -7.662392e-02, -7.815325e-02, -7.968247e-02, -8.121145e-02, -8.274031e-02, -8.426893e-02, -8.579743e-02, -8.732557e-02, -8.885360e-02, -9.038138e-02, -9.190905e-02, -9.343636e-02, -9.496355e-02, -9.649050e-02,
-9.801722e-02, -9.954369e-02, -1.010699e-01, -1.025959e-01, -1.041217e-01, -1.056472e-01, -1.071725e-01, -1.086975e-01, -1.102222e-01, -1.117468e-01, -1.132710e-01, -1.147950e-01, -1.163187e-01, -1.178421e-01, -1.193652e-01, -1.208881e-01,
-1.224108e-01, -1.239331e-01, -1.254550e-01, -1.269767e-01, -1.284982e-01, -1.300193e-01, -1.315401e-01, -1.330606e-01, -1.345807e-01, -1.361006e-01, -1.376202e-01, -1.391394e-01, -1.406583e-01, -1.421769e-01, -1.436951e-01, -1.452130e-01,
-1.467305e-01, -1.482477e-01, -1.497645e-01, -1.512811e-01, -1.527972e-01, -1.543131e-01, -1.558285e-01, -1.573435e-01, -1.588582e-01, -1.603725e-01, -1.618865e-01, -1.634001e-01, -1.649132e-01, -1.664259e-01, -1.679384e-01, -1.694504e-01,
-1.709620e-01, -1.724732e-01, -1.739839e-01, -1.754943e-01, -1.770043e-01, -1.785139e-01, -1.800230e-01, -1.815317e-01, -1.830399e-01, -1.845478e-01, -1.860552e-01, -1.875622e-01, -1.890687e-01, -1.905748e-01, -1.920805e-01, -1.935856e-01,
-1.950904e-01, -1.965947e-01, -1.980984e-01, -1.996018e-01, -2.011046e-01, -2.026072e-01, -2.041091e-01, -2.056105e-01, -2.071115e-01, -2.086120e-01, -2.101119e-01, -2.116114e-01, -2.131103e-01, -2.146089e-01, -2.161069e-01, -2.176043e-01,
-2.191013e-01, -2.205977e-01, -2.220937e-01, -2.235891e-01, -2.250839e-01, -2.265784e-01, -2.280722e-01, -2.295654e-01, -2.310581e-01, -2.325504e-01, -2.340420e-01, -2.355331e-01, -2.370237e-01, -2.385137e-01, -2.400031e-01, -2.414919e-01,
-2.429802e-01, -2.444680e-01, -2.459551e-01, -2.474416e-01, -2.489277e-01, -2.504131e-01, -2.518979e-01, -2.533821e-01, -2.548658e-01, -2.563487e-01, -2.578312e-01, -2.593130e-01, -2.607942e-01, -2.622747e-01, -2.637547e-01, -2.652341e-01,
-2.667128e-01, -2.681909e-01, -2.696683e-01, -2.711452e-01, -2.726214e-01, -2.740970e-01, -2.755718e-01, -2.770461e-01, -2.785197e-01, -2.799927e-01, -2.814651e-01, -2.829366e-01, -2.844076e-01, -2.858779e-01, -2.873476e-01, -2.888165e-01,
-2.902848e-01, -2.917523e-01, -2.932192e-01, -2.946855e-01, -2.961509e-01, -2.976158e-01, -2.990799e-01, -3.005433e-01, -3.020060e-01, -3.034680e-01, -3.049293e-01, -3.063898e-01, -3.078496e-01, -3.093088e-01, -3.107672e-01, -3.122249e-01,
-3.136818e-01, -3.151380e-01, -3.165934e-01, -3.180481e-01, -3.195021e-01, -3.209553e-01, -3.224077e-01, -3.238595e-01, -3.253103e-01, -3.267605e-01, -3.282099e-01, -3.296585e-01, -3.311064e-01, -3.325534e-01, -3.339998e-01, -3.354452e-01,
-3.368899e-01, -3.383338e-01, -3.397770e-01, -3.412193e-01, -3.426608e-01, -3.441014e-01, -3.455414e-01, -3.469805e-01, -3.484187e-01, -3.498561e-01, -3.512928e-01, -3.527286e-01, -3.541635e-01, -3.555977e-01, -3.570310e-01, -3.584635e-01,
-3.598951e-01, -3.613259e-01, -3.627558e-01, -3.641849e-01, -3.656131e-01, -3.670404e-01, -3.684669e-01, -3.698925e-01, -3.713173e-01, -3.727411e-01, -3.741641e-01, -3.755863e-01, -3.770075e-01, -3.784279e-01, -3.798473e-01, -3.812659e-01,
-3.826835e-01, -3.841002e-01, -3.855162e-01, -3.869311e-01, -3.883451e-01, -3.897582e-01, -3.911705e-01, -3.925817e-01, -3.939921e-01, -3.954016e-01, -3.968101e-01, -3.982177e-01, -3.996242e-01, -4.010299e-01, -4.024347e-01, -4.038385e-01,
-4.052414e-01, -4.066433e-01, -4.080442e-01, -4.094442e-01, -4.108433e-01, -4.122413e-01, -4.136384e-01, -4.150345e-01, -4.164296e-01, -4.178238e-01, -4.192170e-01, -4.206091e-01, -4.220003e-01, -4.233905e-01, -4.247798e-01, -4.261680e-01,
-4.275552e-01, -4.289414e-01, -4.303266e-01, -4.317107e-01, -4.330939e-01, -4.344760e-01, -4.358572e-01, -4.372373e-01, -4.386163e-01, -4.399943e-01, -4.413713e-01, -4.427472e-01, -4.441222e-01, -4.454961e-01, -4.468689e-01, -4.482406e-01,
-4.496114e-01, -4.509810e-01, -4.523497e-01, -4.537172e-01, -4.550836e-01, -4.564490e-01, -4.578134e-01, -4.591767e-01, -4.605387e-01, -4.618999e-01, -4.632598e-01, -4.646188e-01, -4.659766e-01, -4.673333e-01, -4.686888e-01, -4.700434e-01,
-4.713968e-01, -4.727491e-01, -4.741002e-01, -4.754504e-01, -4.767992e-01, -4.781471e-01, -4.794939e-01, -4.808394e-01, -4.821838e-01, -4.835272e-01, -4.848694e-01, -4.862103e-01, -4.875503e-01, -4.888890e-01, -4.902265e-01, -4.915630e-01,
-4.928982e-01, -4.942324e-01, -4.955653e-01, -4.968971e-01, -4.982277e-01, -4.995571e-01, -5.008855e-01, -5.022125e-01, -5.035385e-01, -5.048631e-01, -5.061867e-01, -5.075090e-01, -5.088302e-01, -5.101502e-01, -5.114689e-01, -5.127865e-01,
-5.141028e-01, -5.154179e-01, -5.167319e-01, -5.180446e-01, -5.193560e-01, -5.206664e-01, -5.219754e-01, -5.232831e-01, -5.245898e-01, -5.258951e-01, -5.271991e-01, -5.285021e-01, -5.298036e-01, -5.311041e-01, -5.324032e-01, -5.337011e-01,
-5.349977e-01, -5.362930e-01, -5.375872e-01, -5.388800e-01, -5.401715e-01, -5.414618e-01, -5.427508e-01, -5.440385e-01, -5.453250e-01, -5.466102e-01, -5.478941e-01, -5.491767e-01, -5.504581e-01, -5.517380e-01, -5.530168e-01, -5.542942e-01,
-5.555702e-01, -5.568451e-01, -5.581186e-01, -5.593908e-01, -5.606617e-01, -5.619311e-01, -5.631994e-01, -5.644664e-01, -5.657319e-01, -5.669961e-01, -5.682590e-01, -5.695206e-01, -5.707808e-01, -5.720397e-01, -5.732973e-01, -5.745534e-01,
-5.758083e-01, -5.770618e-01, -5.783138e-01, -5.795646e-01, -5.808140e-01, -5.820620e-01, -5.833087e-01, -5.845540e-01, -5.857979e-01, -5.870404e-01, -5.882816e-01, -5.895214e-01, -5.907598e-01, -5.919968e-01, -5.932324e-01, -5.944666e-01,
-5.956993e-01, -5.969307e-01, -5.981607e-01, -5.993893e-01, -6.006166e-01, -6.018423e-01, -6.030667e-01, -6.042895e-01, -6.055111e-01, -6.067312e-01, -6.079499e-01, -6.091671e-01, -6.103829e-01, -6.115972e-01, -6.128101e-01, -6.140217e-01,
-6.152316e-01, -6.164402e-01, -6.176474e-01, -6.188531e-01, -6.200572e-01, -6.212600e-01, -6.224613e-01, -6.236612e-01, -6.248596e-01, -6.260564e-01, -6.272519e-01, -6.284459e-01, -6.296383e-01, -6.308293e-01, -6.320188e-01, -6.332068e-01,
-6.343933e-01, -6.355784e-01, -6.367619e-01, -6.379440e-01, -6.391245e-01, -6.403035e-01, -6.414810e-01, -6.426570e-01, -6.438316e-01, -6.450046e-01, -6.461761e-01, -6.473460e-01, -6.485145e-01, -6.496813e-01, -6.508467e-01, -6.520106e-01,
-6.531729e-01, -6.543337e-01, -6.554929e-01, -6.566507e-01, -6.578068e-01, -6.589613e-01, -6.601144e-01, -6.612659e-01, -6.624159e-01, -6.635642e-01, -6.647110e-01, -6.658562e-01, -6.669999e-01, -6.681421e-01, -6.692827e-01, -6.704216e-01,
-6.715590e-01, -6.726948e-01, -6.738291e-01, -6.749617e-01, -6.760927e-01, -6.772223e-01, -6.783501e-01, -6.794764e-01, -6.806010e-01, -6.817242e-01, -6.828456e-01, -6.839654e-01, -6.850837e-01, -6.862004e-01, -6.873153e-01, -6.884288e-01,
-6.895406e-01, -6.906508e-01, -6.917593e-01, -6.928662e-01, -6.939715e-01, -6.950752e-01, -6.961772e-01, -6.972775e-01, -6.983763e-01, -6.994734e-01, -7.005688e-01, -7.016627e-01, -7.027549e-01, -7.038453e-01, -7.049341e-01, -7.060213e-01,
-7.071068e-01, -7.081907e-01, -7.092729e-01, -7.103534e-01, -7.114322e-01, -7.125094e-01, -7.135849e-01, -7.146587e-01, -7.157309e-01, -7.168013e-01, -7.178701e-01, -7.189372e-01, -7.200025e-01, -7.210662e-01, -7.221283e-01, -7.231885e-01,
-7.242471e-01, -7.253040e-01, -7.263592e-01, -7.274127e-01, -7.284645e-01, -7.295145e-01, -7.305628e-01, -7.316095e-01, -7.326543e-01, -7.336975e-01, -7.347389e-01, -7.357787e-01, -7.368166e-01, -7.378529e-01, -7.388874e-01, -7.399201e-01,
-7.409512e-01, -7.419804e-01, -7.430080e-01, -7.440338e-01, -7.450578e-01, -7.460802e-01, -7.471007e-01, -7.481195e-01, -7.491364e-01, -7.501518e-01, -7.511652e-01, -7.521769e-01, -7.531868e-01, -7.541951e-01, -7.552015e-01, -7.562060e-01,
-7.572089e-01, -7.582099e-01, -7.592093e-01, -7.602067e-01, -7.612025e-01, -7.621963e-01, -7.631885e-01, -7.641788e-01, -7.651674e-01, -7.661541e-01, -7.671390e-01, -7.681221e-01, -7.691034e-01, -7.700830e-01, -7.710606e-01, -7.720364e-01,
-7.730105e-01, -7.739828e-01, -7.749531e-01, -7.759217e-01, -7.768885e-01, -7.778535e-01, -7.788166e-01, -7.797779e-01, -7.807373e-01, -7.816949e-01, -7.826507e-01, -7.836046e-01, -7.845566e-01, -7.855068e-01, -7.864553e-01, -7.874018e-01,
-7.883465e-01, -7.892894e-01, -7.902303e-01, -7.911694e-01, -7.921066e-01, -7.930421e-01, -7.939756e-01, -7.949072e-01, -7.958369e-01, -7.967649e-01, -7.976909e-01, -7.986151e-01, -7.995373e-01, -8.004577e-01, -8.013762e-01, -8.022928e-01,
-8.032076e-01, -8.041204e-01, -8.050314e-01, -8.059405e-01, -8.068476e-01, -8.077528e-01, -8.086562e-01, -8.095577e-01, -8.104572e-01, -8.113549e-01, -8.122506e-01, -8.131444e-01, -8.140364e-01, -8.149264e-01, -8.158145e-01, -8.167006e-01,
-8.175849e-01, -8.184671e-01, -8.193476e-01, -8.202261e-01, -8.211026e-01, -8.219771e-01, -8.228499e-01, -8.237206e-01, -8.245894e-01, -8.254563e-01, -8.263211e-01, -8.271841e-01, -8.280451e-01, -8.289042e-01, -8.297613e-01, -8.306165e-01,
-8.314697e-01, -8.323209e-01, -8.331702e-01, -8.340175e-01, -8.348629e-01, -8.357064e-01, -8.365477e-01, -8.373872e-01, -8.382248e-01, -8.390603e-01, -8.398938e-01, -8.407254e-01, -8.415550e-01, -8.423827e-01, -8.432083e-01, -8.440319e-01,
-8.448536e-01, -8.456733e-01, -8.464910e-01, -8.473067e-01, -8.481205e-01, -8.489321e-01, -8.497418e-01, -8.505496e-01, -8.513552e-01, -8.521589e-01, -8.529607e-01, -8.537604e-01, -8.545580e-01, -8.553537e-01, -8.561474e-01, -8.569391e-01,
-8.577287e-01, -8.585163e-01, -8.593019e-01, -8.600855e-01, -8.608670e-01, -8.616465e-01, -8.624240e-01, -8.631995e-01, -8.639729e-01, -8.647443e-01, -8.655137e-01, -8.662810e-01, -8.670464e-01, -8.678095e-01, -8.685708e-01, -8.693299e-01,
-8.700870e-01, -8.708421e-01, -8.715951e-01, -8.723462e-01, -8.730950e-01, -8.738419e-01, -8.745867e-01, -8.753295e-01, -8.760701e-01, -8.768088e-01, -8.775454e-01, -8.782798e-01, -8.790122e-01, -8.797426e-01, -8.804710e-01, -8.811972e-01,
-8.819213e-01, -8.826433e-01, -8.833634e-01, -8.840814e-01, -8.847972e-01, -8.855109e-01, -8.862226e-01, -8.869321e-01, -8.876396e-01, -8.883451e-01, -8.890485e-01, -8.897496e-01, -8.904488e-01, -8.911458e-01, -8.918408e-01, -8.925337e-01,
-8.932244e-01, -8.939130e-01, -8.945996e-01, -8.952839e-01, -8.959663e-01, -8.966465e-01, -8.973247e-01, -8.980006e-01, -8.986745e-01, -8.993464e-01, -9.000160e-01, -9.006835e-01, -9.013489e-01, -9.020122e-01, -9.026734e-01, -9.033325e-01,
-9.039893e-01, -9.046441e-01, -9.052968e-01, -9.059473e-01, -9.065957e-01, -9.072421e-01, -9.078861e-01, -9.085282e-01, -9.091680e-01, -9.098058e-01, -9.104414e-01, -9.110748e-01, -9.117061e-01, -9.123353e-01, -9.129622e-01, -9.135871e-01,
-9.142098e-01, -9.148303e-01, -9.154488e-01, -9.160650e-01, -9.166791e-01, -9.172910e-01, -9.179008e-01, -9.185084e-01, -9.191139e-01, -9.197172e-01, -9.203184e-01, -9.209173e-01, -9.215142e-01, -9.221088e-01, -9.227012e-01, -9.232914e-01,
-9.238796e-01, -9.244655e-01, -9.250493e-01, -9.256309e-01, -9.262103e-01, -9.267875e-01, -9.273626e-01, -9.279355e-01, -9.285061e-01, -9.290746e-01, -9.296410e-01, -9.302051e-01, -9.307671e-01, -9.313267e-01, -9.318843e-01, -9.324397e-01,
-9.329928e-01, -9.335438e-01, -9.340926e-01, -9.346392e-01, -9.351835e-01, -9.357258e-01, -9.362657e-01, -9.368035e-01, -9.373391e-01, -9.378724e-01, -9.384036e-01, -9.389325e-01, -9.394593e-01, -9.399838e-01, -9.405061e-01, -9.410262e-01,
-9.415442e-01, -9.420598e-01, -9.425733e-01, -9.430845e-01, -9.435935e-01, -9.441003e-01, -9.446049e-01, -9.451072e-01, -9.456074e-01, -9.461052e-01, -9.466009e-01, -9.470944e-01, -9.475857e-01, -9.480747e-01, -9.485614e-01, -9.490459e-01,
-9.495282e-01, -9.500083e-01, -9.504862e-01, -9.509617e-01, -9.514351e-01, -9.519062e-01, -9.523751e-01, -9.528418e-01, -9.533061e-01, -9.537683e-01, -9.542282e-01, -9.546858e-01, -9.551412e-01, -9.555944e-01, -9.560453e-01, -9.564940e-01,
-9.569404e-01, -9.573846e-01, -9.578265e-01, -9.582661e-01, -9.587035e-01, -9.591386e-01, -9.595716e-01, -9.600022e-01, -9.604306e-01, -9.608567e-01, -9.612806e-01, -9.617021e-01, -9.621215e-01, -9.625385e-01, -9.629533e-01, -9.633659e-01,
-9.637761e-01, -9.641842e-01, -9.645898e-01, -9.649934e-01, -9.653945e-01, -9.657934e-01, -9.661901e-01, -9.665844e-01, -9.669765e-01, -9.673663e-01, -9.677539e-01, -9.681392e-01, -9.685222e-01, -9.689028e-01, -9.692813e-01, -9.696574e-01,
-9.700313e-01, -9.704030e-01, -9.707721e-01, -9.711392e-01, -9.715040e-01, -9.718664e-01, -9.722265e-01, -9.725845e-01, -9.729400e-01, -9.732933e-01, -9.736443e-01, -9.739931e-01, -9.743395e-01, -9.746835e-01, -9.750254e-01, -9.753649e-01,
-9.757022e-01, -9.760371e-01, -9.763697e-01, -9.767002e-01, -9.770283e-01, -9.773539e-01, -9.776775e-01, -9.779986e-01, -9.783174e-01, -9.786340e-01, -9.789482e-01, -9.792602e-01, -9.795698e-01, -9.798771e-01, -9.801822e-01, -9.804850e-01,
-9.807854e-01, -9.810834e-01, -9.813793e-01, -9.816728e-01, -9.819639e-01, -9.822528e-01, -9.825394e-01, -9.828236e-01, -9.831055e-01, -9.833852e-01, -9.836625e-01, -9.839375e-01, -9.842101e-01, -9.844805e-01, -9.847486e-01, -9.850143e-01,
-9.852777e-01, -9.855388e-01, -9.857975e-01, -9.860541e-01, -9.863081e-01, -9.865600e-01, -9.868095e-01, -9.870566e-01, -9.873015e-01, -9.875441e-01, -9.877841e-01, -9.880221e-01, -9.882576e-01, -9.884908e-01, -9.887217e-01, -9.889504e-01,
-9.891765e-01, -9.894005e-01, -9.896221e-01, -9.898413e-01, -9.900583e-01, -9.902729e-01, -9.904852e-01, -9.906951e-01, -9.909027e-01, -9.911079e-01, -9.913110e-01, -9.915116e-01, -9.917098e-01, -9.919058e-01, -9.920994e-01, -9.922906e-01,
-9.924796e-01, -9.926662e-01, -9.928504e-01, -9.930325e-01, -9.932120e-01, -9.933892e-01, -9.935642e-01, -9.937367e-01, -9.939070e-01, -9.940749e-01, -9.942405e-01, -9.944037e-01, -9.945647e-01, -9.947232e-01, -9.948794e-01, -9.950333e-01,
-9.951848e-01, -9.953340e-01, -9.954808e-01, -9.956253e-01, -9.957675e-01, -9.959073e-01, -9.960448e-01, -9.961799e-01, -9.963126e-01, -9.964432e-01, -9.965712e-01, -9.966969e-01, -9.968203e-01, -9.969414e-01, -9.970602e-01, -9.971765e-01,
-9.972905e-01, -9.974022e-01, -9.975115e-01, -9.976184e-01, -9.977231e-01, -9.978254e-01, -9.979254e-01, -9.980229e-01, -9.981182e-01, -9.982110e-01, -9.983016e-01, -9.983898e-01, -9.984757e-01, -9.985591e-01, -9.986403e-01, -9.987191e-01,
-9.987955e-01, -9.988697e-01, -9.989413e-01, -9.990108e-01, -9.990778e-01, -9.991425e-01, -9.992049e-01, -9.992648e-01, -9.993224e-01, -9.993777e-01, -9.994307e-01, -9.994812e-01, -9.995295e-01, -9.995754e-01, -9.996189e-01, -9.996600e-01,
-9.996989e-01, -9.997354e-01, -9.997694e-01, -9.998013e-01, -9.998306e-01, -9.998577e-01, -9.998825e-01, -9.999048e-01, -9.999248e-01, -9.999424e-01, -9.999577e-01, -9.999707e-01, -9.999813e-01, -9.999895e-01, -9.999954e-01, -9.999989e-01,
-1.000000e+00, -9.999989e-01, -9.999954e-01, -9.999895e-01, -9.999813e-01, -9.999707e-01, -9.999577e-01, -9.999424e-01, -9.999248e-01, -9.999048e-01, -9.998825e-01, -9.998577e-01, -9.998306e-01, -9.998013e-01, -9.997694e-01, -9.997354e-01,
-9.996989e-01, -9.996600e-01, -9.996189e-01, -9.995754e-01, -9.995295e-01, -9.994812e-01, -9.994307e-01, -9.993777e-01, -9.993224e-01, -9.992648e-01, -9.992049e-01, -9.991425e-01, -9.990778e-01, -9.990108e-01, -9.989413e-01, -9.988697e-01,
-9.987955e-01, -9.987191e-01, -9.986403e-01, -9.985591e-01, -9.984757e-01, -9.983898e-01, -9.983016e-01, -9.982110e-01, -9.981182e-01, -9.980229e-01, -9.979254e-01, -9.978254e-01, -9.977231e-01, -9.976184e-01, -9.975115e-01, -9.974022e-01,
-9.972905e-01, -9.971765e-01, -9.970602e-01, -9.969414e-01, -9.968203e-01, -9.966969e-01, -9.965712e-01, -9.964432e-01, -9.963126e-01, -9.961799e-01, -9.960448e-01, -9.959073e-01, -9.957675e-01, -9.956253e-01, -9.954808e-01, -9.953340e-01,
-9.951848e-01, -9.950333e-01, -9.948794e-01, -9.947232e-01, -9.945647e-01, -9.944037e-01, -9.942405e-01, -9.940749e-01, -9.939070e-01, -9.937367e-01, -9.935642e-01, -9.933892e-01, -9.932120e-01, -9.930325e-01, -9.928504e-01, -9.926662e-01,
-9.924796e-01, -9.922906e-01, -9.920994e-01, -9.919058e-01, -9.917098e-01, -9.915116e-01, -9.913110e-01, -9.911079e-01, -9.909027e-01, -9.906951e-01, -9.904852e-01, -9.902729e-01, -9.900583e-01, -9.898413e-01, -9.896221e-01, -9.894005e-01,
-9.891765e-01, -9.889504e-01, -9.887217e-01, -9.884908e-01, -9.882576e-01, -9.880221e-01, -9.877841e-01, -9.875441e-01, -9.873015e-01, -9.870566e-01, -9.868095e-01, -9.865600e-01, -9.863081e-01, -9.860541e-01, -9.857975e-01, -9.855388e-01,
-9.852777e-01, -9.850143e-01, -9.847486e-01, -9.844805e-01, -9.842101e-01, -9.839375e-01, -9.836625e-01, -9.833852e-01, -9.831055e-01, -9.828236e-01, -9.825394e-01, -9.822528e-01, -9.819639e-01, -9.816728e-01, -9.813793e-01, -9.810834e-01,
-9.807854e-01, -9.804850e-01, -9.801822e-01, -9.798771e-01, -9.795698e-01, -9.792602e-01, -9.789482e-01, -9.786340e-01, -9.783174e-01, -9.779986e-01, -9.776775e-01, -9.773539e-01, -9.770283e-01, -9.767002e-01, -9.763697e-01, -9.760371e-01,
-9.757022e-01, -9.753649e-01, -9.750254e-01, -9.746835e-01, -9.743395e-01, -9.739931e-01, -9.736443e-01, -9.732933e-01, -9.729400e-01, -9.725845e-01, -9.722265e-01, -9.718664e-01, -9.715040e-01, -9.711392e-01, -9.707721e-01, -9.704030e-01,
-9.700313e-01, -9.696574e-01, -9.692813e-01, -9.689028e-01, -9.685222e-01, -9.681392e-01, -9.677539e-01, -9.673663e-01, -9.669765e-01, -9.665844e-01, -9.661901e-01, -9.657934e-01, -9.653945e-01, -9.649934e-01, -9.645898e-01, -9.641842e-01,
-9.637761e-01, -9.633659e-01, -9.629533e-01, -9.625385e-01, -9.621215e-01, -9.617021e-01, -9.612806e-01, -9.608567e-01, -9.604306e-01, -9.600022e-01, -9.595716e-01, -9.591386e-01, -9.587035e-01, -9.582661e-01, -9.578265e-01, -9.573846e-01,
-9.569404e-01, -9.564940e-01, -9.560453e-01, -9.555944e-01, -9.551412e-01, -9.546858e-01, -9.542282e-01, -9.537683e-01, -9.533061e-01, -9.528418e-01, -9.523751e-01, -9.519062e-01, -9.514351e-01, -9.509617e-01, -9.504862e-01, -9.500083e-01,
-9.495282e-01, -9.490459e-01, -9.485614e-01, -9.480747e-01, -9.475857e-01, -9.470944e-01, -9.466009e-01, -9.461052e-01, -9.456074e-01, -9.451072e-01, -9.446049e-01, -9.441003e-01, -9.435935e-01, -9.430845e-01, -9.425733e-01, -9.420598e-01,
-9.415442e-01, -9.410262e-01, -9.405061e-01, -9.399838e-01, -9.394593e-01, -9.389325e-01, -9.384036e-01, -9.378724e-01, -9.373391e-01, -9.368035e-01, -9.362657e-01, -9.357258e-01, -9.351835e-01, -9.346392e-01, -9.340926e-01, -9.335438e-01,
-9.329928e-01, -9.324397e-01, -9.318843e-01, -9.313267e-01, -9.307671e-01, -9.302051e-01, -9.296410e-01, -9.290746e-01, -9.285061e-01, -9.279355e-01, -9.273626e-01, -9.267875e-01, -9.262103e-01, -9.256309e-01, -9.250493e-01, -9.244655e-01,
-9.238796e-01, -9.232914e-01, -9.227012e-01, -9.221088e-01, -9.215142e-01, -9.209173e-01, -9.203184e-01, -9.197172e-01, -9.191139e-01, -9.185084e-01, -9.179008e-01, -9.172910e-01, -9.166791e-01, -9.160650e-01, -9.154488e-01, -9.148303e-01,
-9.142098e-01, -9.135871e-01, -9.129622e-01, -9.123353e-01, -9.117061e-01, -9.110748e-01, -9.104414e-01, -9.098058e-01, -9.091680e-01, -9.085282e-01, -9.078861e-01, -9.072421e-01, -9.065957e-01, -9.059473e-01, -9.052968e-01, -9.046441e-01,
-9.039893e-01, -9.033325e-01, -9.026734e-01, -9.020122e-01, -9.013489e-01, -9.006835e-01, -9.000160e-01, -8.993464e-01, -8.986745e-01, -8.980006e-01, -8.973247e-01, -8.966465e-01, -8.959663e-01, -8.952839e-01, -8.945996e-01, -8.939130e-01,
-8.932244e-01, -8.925337e-01, -8.918408e-01, -8.911458e-01, -8.904488e-01, -8.897496e-01, -8.890485e-01, -8.883451e-01, -8.876396e-01, -8.869321e-01, -8.862226e-01, -8.855109e-01, -8.847972e-01, -8.840814e-01, -8.833634e-01, -8.826433e-01,
-8.819213e-01, -8.811972e-01, -8.804710e-01, -8.797426e-01, -8.790122e-01, -8.782798e-01, -8.775454e-01, -8.768088e-01, -8.760701e-01, -8.753295e-01, -8.745867e-01, -8.738419e-01, -8.730950e-01, -8.723462e-01, -8.715951e-01, -8.708421e-01,
-8.700870e-01, -8.693299e-01, -8.685708e-01, -8.678095e-01, -8.670464e-01, -8.662810e-01, -8.655137e-01, -8.647443e-01, -8.639729e-01, -8.631995e-01, -8.624240e-01, -8.616465e-01, -8.608670e-01, -8.600855e-01, -8.593019e-01, -8.585163e-01,
-8.577287e-01, -8.569391e-01, -8.561474e-01, -8.553537e-01, -8.545580e-01, -8.537604e-01, -8.529607e-01, -8.521589e-01, -8.513552e-01, -8.505496e-01, -8.497418e-01, -8.489321e-01, -8.481205e-01, -8.473067e-01, -8.464910e-01, -8.456733e-01,
-8.448536e-01, -8.440319e-01, -8.432083e-01, -8.423827e-01, -8.415550e-01, -8.407254e-01, -8.398938e-01, -8.390603e-01, -8.382248e-01, -8.373872e-01, -8.365477e-01, -8.357064e-01, -8.348629e-01, -8.340175e-01, -8.331702e-01, -8.323209e-01,
-8.314697e-01, -8.306165e-01, -8.297613e-01, -8.289042e-01, -8.280451e-01, -8.271841e-01, -8.263211e-01, -8.254563e-01, -8.245894e-01, -8.237206e-01, -8.228499e-01, -8.219771e-01, -8.211026e-01, -8.202261e-01, -8.193476e-01, -8.184671e-01,
-8.175849e-01, -8.167006e-01, -8.158145e-01, -8.149264e-01, -8.140364e-01, -8.131444e-01, -8.122506e-01, -8.113549e-01, -8.104572e-01, -8.095577e-01, -8.086562e-01, -8.077528e-01, -8.068476e-01, -8.059405e-01, -8.050314e-01, -8.041204e-01,
-8.032076e-01, -8.022928e-01, -8.013762e-01, -8.004577e-01, -7.995373e-01, -7.986151e-01, -7.976909e-01, -7.967649e-01, -7.958369e-01, -7.949072e-01, -7.939756e-01, -7.930421e-01, -7.921066e-01, -7.911694e-01, -7.902303e-01, -7.892894e-01,
-7.883465e-01, -7.874018e-01, -7.864553e-01, -7.855068e-01, -7.845566e-01, -7.836046e-01, -7.826507e-01, -7.816949e-01, -7.807373e-01, -7.797779e-01, -7.788166e-01, -7.778535e-01, -7.768885e-01, -7.759217e-01, -7.749531e-01, -7.739828e-01,
-7.730105e-01, -7.720364e-01, -7.710606e-01, -7.700830e-01, -7.691034e-01, -7.681221e-01, -7.671390e-01, -7.661541e-01, -7.651674e-01, -7.641788e-01, -7.631885e-01, -7.621963e-01, -7.612025e-01, -7.602067e-01, -7.592093e-01, -7.582099e-01,
-7.572089e-01, -7.562060e-01, -7.552015e-01, -7.541951e-01, -7.531868e-01, -7.521769e-01, -7.511652e-01, -7.501518e-01, -7.491364e-01, -7.481195e-01, -7.471007e-01, -7.460802e-01, -7.450578e-01, -7.440338e-01, -7.430080e-01, -7.419804e-01,
-7.409512e-01, -7.399201e-01, -7.388874e-01, -7.378529e-01, -7.368166e-01, -7.357787e-01, -7.347389e-01, -7.336975e-01, -7.326543e-01, -7.316095e-01, -7.305628e-01, -7.295145e-01, -7.284645e-01, -7.274127e-01, -7.263592e-01, -7.253040e-01,
-7.242471e-01, -7.231885e-01, -7.221283e-01, -7.210662e-01, -7.200025e-01, -7.189372e-01, -7.178701e-01, -7.168013e-01, -7.157309e-01, -7.146587e-01, -7.135849e-01, -7.125094e-01, -7.114322e-01, -7.103534e-01, -7.092729e-01, -7.081907e-01,
-7.071068e-01, -7.060213e-01, -7.049341e-01, -7.038453e-01, -7.027549e-01, -7.016627e-01, -7.005688e-01, -6.994734e-01, -6.983763e-01, -6.972775e-01, -6.961772e-01, -6.950752e-01, -6.939715e-01, -6.928662e-01, -6.917593e-01, -6.906508e-01,
-6.895406e-01, -6.884288e-01, -6.873153e-01, -6.862004e-01, -6.850837e-01, -6.839654e-01, -6.828456e-01, -6.817242e-01, -6.806010e-01, -6.794764e-01, -6.783501e-01, -6.772223e-01, -6.760927e-01, -6.749617e-01, -6.738291e-01, -6.726948e-01,
-6.715590e-01, -6.704216e-01, -6.692827e-01, -6.681421e-01, -6.669999e-01, -6.658562e-01, -6.647110e-01, -6.635642e-01, -6.624159e-01, -6.612659e-01, -6.601144e-01, -6.589613e-01, -6.578068e-01, -6.566507e-01, -6.554929e-01, -6.543337e-01,
-6.531729e-01, -6.520106e-01, -6.508467e-01, -6.496813e-01, -6.485145e-01, -6.473460e-01, -6.461761e-01, -6.450046e-01, -6.438316e-01, -6.426570e-01, -6.414810e-01, -6.403035e-01, -6.391245e-01, -6.379440e-01, -6.367619e-01, -6.355784e-01,
-6.343933e-01, -6.332068e-01, -6.320188e-01, -6.308293e-01, -6.296383e-01, -6.284459e-01, -6.272519e-01, -6.260564e-01, -6.248596e-01, -6.236612e-01, -6.224613e-01, -6.212600e-01, -6.200572e-01, -6.188531e-01, -6.176474e-01, -6.164402e-01,
-6.152316e-01, -6.140217e-01, -6.128101e-01, -6.115972e-01, -6.103829e-01, -6.091671e-01, -6.079499e-01, -6.067312e-01, -6.055111e-01, -6.042895e-01, -6.030667e-01, -6.018423e-01, -6.006166e-01, -5.993893e-01, -5.981607e-01, -5.969307e-01,
-5.956993e-01, -5.944666e-01, -5.932324e-01, -5.919968e-01, -5.907598e-01, -5.895214e-01, -5.882816e-01, -5.870404e-01, -5.857979e-01, -5.845540e-01, -5.833087e-01, -5.820620e-01, -5.808140e-01, -5.795646e-01, -5.783138e-01, -5.770618e-01,
-5.758083e-01, -5.745534e-01, -5.732973e-01, -5.720397e-01, -5.707808e-01, -5.695206e-01, -5.682590e-01, -5.669961e-01, -5.657319e-01, -5.644664e-01, -5.631994e-01, -5.619311e-01, -5.606617e-01, -5.593908e-01, -5.581186e-01, -5.568451e-01,
-5.555702e-01, -5.542942e-01, -5.530168e-01, -5.517380e-01, -5.504581e-01, -5.491767e-01, -5.478941e-01, -5.466102e-01, -5.453250e-01, -5.440385e-01, -5.427508e-01, -5.414618e-01, -5.401715e-01, -5.388800e-01, -5.375872e-01, -5.362930e-01,
-5.349977e-01, -5.337011e-01, -5.324032e-01, -5.311041e-01, -5.298036e-01, -5.285021e-01, -5.271991e-01, -5.258951e-01, -5.245898e-01, -5.232831e-01, -5.219754e-01, -5.206664e-01, -5.193560e-01, -5.180446e-01, -5.167319e-01, -5.154179e-01,
-5.141028e-01, -5.127865e-01, -5.114689e-01, -5.101502e-01, -5.088302e-01, -5.075090e-01, -5.061867e-01, -5.048631e-01, -5.035385e-01, -5.022125e-01, -5.008855e-01, -4.995571e-01, -4.982277e-01, -4.968971e-01, -4.955653e-01, -4.942324e-01,
-4.928982e-01, -4.915630e-01, -4.902265e-01, -4.888890e-01, -4.875503e-01, -4.862103e-01, -4.848694e-01, -4.835272e-01, -4.821838e-01, -4.808394e-01, -4.794939e-01, -4.781471e-01, -4.767992e-01, -4.754504e-01, -4.741002e-01, -4.727491e-01,
-4.713968e-01, -4.700434e-01, -4.686888e-01, -4.673333e-01, -4.659766e-01, -4.646188e-01, -4.632598e-01, -4.618999e-01, -4.605387e-01, -4.591767e-01, -4.578134e-01, -4.564490e-01, -4.550836e-01, -4.537172e-01, -4.523497e-01, -4.509810e-01,
-4.496114e-01, -4.482406e-01, -4.468689e-01, -4.454961e-01, -4.441222e-01, -4.427472e-01, -4.413713e-01, -4.399943e-01, -4.386163e-01, -4.372373e-01, -4.358572e-01, -4.344760e-01, -4.330939e-01, -4.317107e-01, -4.303266e-01, -4.289414e-01,
-4.275552e-01, -4.261680e-01, -4.247798e-01, -4.233905e-01, -4.220003e-01, -4.206091e-01, -4.192170e-01, -4.178238e-01, -4.164296e-01, -4.150345e-01, -4.136384e-01, -4.122413e-01, -4.108433e-01, -4.094442e-01, -4.080442e-01, -4.066433e-01,
-4.052414e-01, -4.038385e-01, -4.024347e-01, -4.010299e-01, -3.996242e-01, -3.982177e-01, -3.968101e-01, -3.954016e-01, -3.939921e-01, -3.925817e-01, -3.911705e-01, -3.897582e-01, -3.883451e-01, -3.869311e-01, -3.855162e-01, -3.841002e-01,
-3.826835e-01, -3.812659e-01, -3.798473e-01, -3.784279e-01, -3.770075e-01, -3.755863e-01, -3.741641e-01, -3.727411e-01, -3.713173e-01, -3.698925e-01, -3.684669e-01, -3.670404e-01, -3.656131e-01, -3.641849e-01, -3.627558e-01, -3.613259e-01,
-3.598951e-01, -3.584635e-01, -3.570310e-01, -3.555977e-01, -3.541635e-01, -3.527286e-01, -3.512928e-01, -3.498561e-01, -3.484187e-01, -3.469805e-01, -3.455414e-01, -3.441014e-01, -3.426608e-01, -3.412193e-01, -3.397770e-01, -3.383338e-01,
-3.368899e-01, -3.354452e-01, -3.339998e-01, -3.325534e-01, -3.311064e-01, -3.296585e-01, -3.282099e-01, -3.267605e-01, -3.253103e-01, -3.238595e-01, -3.224077e-01, -3.209553e-01, -3.195021e-01, -3.180481e-01, -3.165934e-01, -3.151380e-01,
-3.136818e-01, -3.122249e-01, -3.107672e-01, -3.093088e-01, -3.078496e-01, -3.063898e-01, -3.049293e-01, -3.034680e-01, -3.020060e-01, -3.005433e-01, -2.990799e-01, -2.976158e-01, -2.961509e-01, -2.946855e-01, -2.932192e-01, -2.917523e-01,
-2.902848e-01, -2.888165e-01, -2.873476e-01, -2.858779e-01, -2.844076e-01, -2.829366e-01, -2.814651e-01, -2.799927e-01, -2.785197e-01, -2.770461e-01, -2.755718e-01, -2.740970e-01, -2.726214e-01, -2.711452e-01, -2.696683e-01, -2.681909e-01,
-2.667128e-01, -2.652341e-01, -2.637547e-01, -2.622747e-01, -2.607942e-01, -2.593130e-01, -2.578312e-01, -2.563487e-01, -2.548658e-01, -2.533821e-01, -2.518979e-01, -2.504131e-01, -2.489277e-01, -2.474416e-01, -2.459551e-01, -2.444680e-01,
-2.429802e-01, -2.414919e-01, -2.400031e-01, -2.385137e-01, -2.370237e-01, -2.355331e-01, -2.340420e-01, -2.325504e-01, -2.310581e-01, -2.295654e-01, -2.280722e-01, -2.265784e-01, -2.250839e-01, -2.235891e-01, -2.220937e-01, -2.205977e-01,
-2.191013e-01, -2.176043e-01, -2.161069e-01, -2.146089e-01, -2.131103e-01, -2.116114e-01, -2.101119e-01, -2.086120e-01, -2.071115e-01, -2.056105e-01, -2.041091e-01, -2.026072e-01, -2.011046e-01, -1.996018e-01, -1.980984e-01, -1.965947e-01,
-1.950904e-01, -1.935856e-01, -1.920805e-01, -1.905748e-01, -1.890687e-01, -1.875622e-01, -1.860552e-01, -1.845478e-01, -1.830399e-01, -1.815317e-01, -1.800230e-01, -1.785139e-01, -1.770043e-01, -1.754943e-01, -1.739839e-01, -1.724732e-01,
-1.709620e-01, -1.694504e-01, -1.679384e-01, -1.664259e-01, -1.649132e-01, -1.634001e-01, -1.618865e-01, -1.603725e-01, -1.588582e-01, -1.573435e-01, -1.558285e-01, -1.543131e-01, -1.527972e-01, -1.512811e-01, -1.497645e-01, -1.482477e-01,
-1.467305e-01, -1.452130e-01, -1.436951e-01, -1.421769e-01, -1.406583e-01, -1.391394e-01, -1.376202e-01, -1.361006e-01, -1.345807e-01, -1.330606e-01, -1.315401e-01, -1.300193e-01, -1.284982e-01, -1.269767e-01, -1.254550e-01, -1.239331e-01,
-1.224108e-01, -1.208881e-01, -1.193652e-01, -1.178421e-01, -1.163187e-01, -1.147950e-01, -1.132710e-01, -1.117468e-01, -1.102222e-01, -1.086975e-01, -1.071725e-01, -1.056472e-01, -1.041217e-01, -1.025959e-01, -1.010699e-01, -9.954369e-02,
-9.801722e-02, -9.649050e-02, -9.496355e-02, -9.343636e-02, -9.190905e-02, -9.038138e-02, -8.885360e-02, -8.732557e-02, -8.579743e-02, -8.426893e-02, -8.274031e-02, -8.121145e-02, -7.968247e-02, -7.815325e-02, -7.662392e-02, -7.509434e-02,
-7.356465e-02, -7.203472e-02, -7.050467e-02, -6.897438e-02, -6.744397e-02, -6.591344e-02, -6.438267e-02, -6.285179e-02, -6.132078e-02, -5.978966e-02, -5.825830e-02, -5.672693e-02, -5.519533e-02, -5.366361e-02, -5.213177e-02, -5.059981e-02,
-4.906774e-02, -4.753554e-02, -4.600322e-02, -4.447079e-02, -4.293835e-02, -4.140568e-02, -3.987300e-02, -3.834021e-02, -3.680730e-02, -3.527427e-02, -3.374124e-02, -3.220809e-02, -3.067482e-02, -2.914155e-02, -2.760816e-02, -2.607477e-02,
-2.454126e-02, -2.300775e-02, -2.147412e-02, -1.994050e-02, -1.840675e-02, -1.687300e-02, -1.533926e-02, -1.380539e-02, -1.227164e-02, -1.073778e-02, -9.203792e-03, -7.669926e-03, -6.135941e-03, -4.601955e-03, -3.067970e-03, -1.533985e-03
};
#endif // WAVETABLE_OPAL_1_H
| 60,892
|
C++
|
.h
| 263
| 225.657795
| 244
| 0.678361
|
RCameron93/FehlerFabrik
| 30
| 3
| 7
|
GPL-3.0
|
9/20/2024, 10:45:25 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,847
|
config.cpp
|
nzh63_syc/src/config.cpp
|
/*
* syc, a compiler for SysY
* Copyright (C) 2020-2021 nzh63, skywf21
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#include "config.h"
extern int yydebug;
namespace syc::config {
int optimize_level = 0;
FILE* input = stdin;
std::ostream* output = &std::cout;
bool print_ast = false;
bool print_ir = false;
bool print_log = false;
bool enable_dwarf2 = false;
std::string input_filename = "<stdin>";
void parse_arg(int argc, char** argv) {
yydebug = 0;
optimize_level = 0;
input = stdin;
output = &std::cout;
print_ast = false;
print_ir = false;
print_log = false;
enable_dwarf2 = false;
input_filename = "stdin";
int s = 0;
for (int i = 1; i < argc; i++) {
if (argv[i][0] == '-') {
if (std::string("-o") == argv[i])
s = 1;
else if (std::string("-O0") == argv[i])
optimize_level = 0;
else if (std::string("-O1") == argv[i])
optimize_level = 1;
else if (std::string("-O2") == argv[i])
optimize_level = 2;
else if (std::string("-yydebug") == argv[i])
yydebug = 1;
else if (std::string("-print_ast") == argv[i])
print_ast = true;
else if (std::string("-print_ir") == argv[i])
print_ir = true;
else if (std::string("-print_log") == argv[i])
print_log = true;
else if (std::string("-g") == argv[i])
enable_dwarf2 = true;
} else {
if (s == 1) {
if (std::string("-") == argv[i])
output = &std::cout;
else
output = new std::ofstream(argv[i], std::ofstream::out);
} else if (s == 0) {
if (std::string("-") == argv[i]) {
input = stdin;
input_filename = "<stdin>";
} else {
input = fopen(argv[i], "r");
input_filename = argv[i];
}
}
s = 0;
}
}
}
} // namespace syc::config
| 2,463
|
C++
|
.cpp
| 79
| 26.316456
| 73
| 0.594288
|
nzh63/syc
| 39
| 13
| 0
|
GPL-3.0
|
9/20/2024, 10:45:34 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,848
|
main.cpp
|
nzh63_syc/src/main.cpp
|
/*
* syc, a compiler for SysY
* Copyright (C) 2020-2021 nzh63, skywf21
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#include <iostream>
#include <sstream>
#include "assembly/generate/generate.h"
#include "assembly/optimize/optimize.h"
#include "ast/generate/generate.h"
#include "config.h"
#include "ir/generate/generate.h"
#include "ir/optimize/optimize.h"
int main(int argc, char** argv) {
using namespace syc;
config::parse_arg(argc, argv);
auto* root = syc::ast::generate(config::input);
if (config::print_ast) root->print();
auto ir = syc::ir::generate(root);
if (config::optimize_level > 0) {
syc::ir::optimize(ir);
}
if (config::print_ir)
for (auto& i : ir) i.print(std::cerr, true);
std::stringstream buffer;
if (config::print_log) {
syc::assembly::generate(ir, buffer, buffer);
} else {
syc::assembly::generate(ir, buffer);
}
if (config::optimize_level > 0) {
syc::assembly::optimize(buffer, *config::output);
} else {
*config::output << buffer.str();
}
if (config::output != &std::cout) delete config::output;
};
| 1,697
|
C++
|
.cpp
| 49
| 32.040816
| 73
| 0.710719
|
nzh63/syc
| 39
| 13
| 0
|
GPL-3.0
|
9/20/2024, 10:45:34 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,849
|
optimize.cpp
|
nzh63_syc/src/assembly/optimize/optimize.cpp
|
/*
* syc, a compiler for SysY
* Copyright (C) 2020-2021 nzh63, skywf21
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#include "assembly/optimize/optimize.h"
#include <istream>
#include <ostream>
#include <sstream>
#include "assembly/optimize/passes.h"
using namespace std;
namespace {
void _optimize(istream& in, ostream& out) {
using namespace syc::assembly::passes;
std::stringstream buffer;
peephole(in, buffer);
reorder(buffer, out);
}
} // namespace
namespace syc::assembly {
void optimize(istream& in, ostream& out) {
constexpr auto N = 3;
std::stringstream buffer[N];
_optimize(in, buffer[0]);
for (int i = 0; i < N - 1; i++) {
_optimize(buffer[i], buffer[i + 1]);
}
_optimize(buffer[N - 1], out);
}
} // namespace syc::assembly
| 1,378
|
C++
|
.cpp
| 42
| 30.738095
| 73
| 0.728024
|
nzh63/syc
| 39
| 13
| 0
|
GPL-3.0
|
9/20/2024, 10:45:34 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,850
|
peephole.cpp
|
nzh63_syc/src/assembly/optimize/passes/peephole.cpp
|
/*
* syc, a compiler for SysY
* Copyright (C) 2020-2021 nzh63, skywf21
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#include "assembly/optimize/passes/peephole.h"
#include <istream>
#include <ostream>
#include <sstream>
#include <string>
#include <vector>
#include "config.h"
using namespace std;
namespace {
std::string opt_asm1(std::string line1) {
std::vector<string> temp1;
std::string tar_line;
stringstream s0(line1);
string token;
while (s0 >> token) {
if (token[token.length() - 1] == ',') token.pop_back();
temp1.emplace_back(token);
}
// ADD R0,R1,#0 => MOV R0,R1
if (temp1[0] == "ADD" && temp1[3].compare("#0") == 0) {
tar_line.append(" MOV ");
tar_line.append(temp1[1]);
tar_line.append(", ");
tar_line.append(temp1[2]);
// out << "tar_line is "<< tar_line <<std::endl;
return tar_line;
}
// MOV r0, r0 => <empty-string>
if (temp1[0] == "MOV" && temp1[1] == temp1[2]) {
return "";
}
return line1;
}
/*
传入的Line1,line2 产出tar_line,若匹配成功,返回优化后结果,并置length=0
若匹配失败,则按兵不动
*/
bool opt_asm2(std::string line1, std::string line2, std::string& tar_line,
int& length) {
// out<< "--------------调用函数" <<std::endl;
// out<< "line1:"<<line1 <<std::endl;
// out<< "line2:"<<line2 <<std::endl;
// out<< "--------------" <<std::endl;
std::vector<string> temp1;
std::vector<string> temp2;
stringstream s0(line1);
stringstream s1(line2);
string token;
while (s0 >> token) {
if (token[token.length() - 1] == ',')
token = token.substr(0, token.length() - 1);
temp1.emplace_back(token);
}
while (s1 >> token) {
if (token[token.length() - 1] == ',')
token = token.substr(0, token.length() - 1);
temp2.emplace_back(token);
}
// case1 ld r0,a / st a,r0 => ld r0,a
if (temp1[0].compare("LDR") == 0 && (temp2[0].compare("STR") == 0) &&
(temp1[1].compare(temp2[1]) == 0) && (temp1[2].compare(temp2[2]) == 0)) {
length = 0;
tar_line = line1;
return true;
}
// case2 STR R0,[SP,#0] , LDR R1,[SP,#0] => STR R0,[SP,#0], MOV R1,R0
else if (temp1[0].compare("STR") == 0 && (temp2[0].compare("LDR") == 0) &&
(temp1[2].compare(temp2[2]) == 0)) {
length = 0;
tar_line = line1;
tar_line.append("\n MOV ");
tar_line.append(temp2[1]);
tar_line.append(", ");
tar_line.append(temp1[1]);
return true;
}
return false;
}
} // namespace
namespace syc::assembly::passes {
void peephole(std::istream& in, std::ostream& out) {
string line1;
string line1_orin;
string line0;
string line_target;
bool isfirst = true;
int length = 0;
while (getline(in, line1)) {
//如果是注释,直接输出
stringstream ss(line1);
string token;
if (ss >> token) {
if (token[0] == ('#')) {
out << line1 << std::endl;
continue;
} else {
//先窗口为1优化下
line1 = opt_asm1(line1);
if (line1.empty()) continue;
// out << line1 << std::endl;
//然后是窗口2
if (length == 0) {
length++;
line0 = line1;
continue;
} else {
if (opt_asm2(line0, line1, line_target, length)) {
out << line_target << std::endl;
continue;
} else {
out << line0 << std::endl;
line0 = line1;
}
}
}
}
}
if (length == 1) {
length = 0;
out << line0 << std::endl;
}
}
} // namespace syc::assembly::passes
| 4,192
|
C++
|
.cpp
| 140
| 24.65
| 79
| 0.589495
|
nzh63/syc
| 39
| 13
| 0
|
GPL-3.0
|
9/20/2024, 10:45:34 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,851
|
reorder.cpp
|
nzh63_syc/src/assembly/optimize/passes/reorder.cpp
|
/*
* syc, a compiler for SysY
* Copyright (C) 2020-2021 nzh63, skywf21
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#include "assembly/optimize/passes/reorder.h"
#include <cassert>
#include <cstring>
#include <istream>
#include <list>
#include <ostream>
#include <sstream>
#include <string>
#include <vector>
#include "config.h"
using namespace std;
namespace {
class AsmOpName {
protected:
enum Type {
Var, // 寄存器变量,例如r0
MemVar, // 内存变量,例如[sp,#48]
Imm, // 立即数,例如#0
Null, // 啥都没有
};
Type type;
public:
std::string name;
int value;
std::string offset_reg;
int offset_imm;
AsmOpName();
AsmOpName(std::string name);
AsmOpName(int value);
// 产生内存变量
AsmOpName(std::string name, int offset);
AsmOpName(std::string name, std::string offset);
bool operator==(AsmOpName const& p1) {
if (this->name == p1.name)
return true;
else
return false;
}
bool is_var() const { return this->type == AsmOpName::Type::Var; }
bool is_mem_var() const { return this->type == AsmOpName::Type::MemVar; }
bool is_stack_var() const {
return this->is_mem_var() && this->name == "sp" && this->offset_reg.empty();
}
bool is_imm() const { return this->type == AsmOpName::Type::Imm; }
bool is_null() const { return this->type == AsmOpName::Type::Null; }
};
class AsmInst {
public:
bool isjump; // 是否为跳转指令,默认不是
std::string op_code;
std::string label;
AsmOpName op1, op2, op3, dest;
AsmInst(std::string op_code, AsmOpName dest, AsmOpName op1, AsmOpName op2,
AsmOpName op3, std::string label = "", bool isjump = false);
AsmInst(std::string op_code, AsmOpName dest, AsmOpName op1, AsmOpName op2,
std::string label = "", bool isjump = false);
AsmInst(std::string op_code, AsmOpName dest, AsmOpName op1,
std::string label = "", bool isjump = false);
AsmInst(std::string op_code, AsmOpName dest, std::string label = "",
bool isjump = false);
AsmInst(std::string op_code, std::string label = "", bool isjump = false);
bool use(const AsmOpName& op) const {
assert(op.is_var() || op.is_mem_var());
#define F(op1) \
if (this->op1.is_var()) { \
if (this->op1.name == op.name) { \
return true; \
} \
} else if (this->op1.is_mem_var()) { \
if (this->op1.name.find(op.name) != string::npos) { \
return true; \
} \
if (this->op1.offset_reg.find(op.name) != string::npos) { \
return true; \
} \
}
F(op1);
F(op2);
F(op3);
#undef F
if (this->dest.offset_reg.find(op.name) != string::npos) {
return true;
}
return false;
}
};
// 我们的想法其实很简单,就是类似于
// c = c+d;
// e = c+d;
// 对应汇编是
// ADD r0, r11, r4
// ADD r0, r0, r4
// 这两句肯定数据相关了,如果后面可以的话,我们就把第二句话往后移动一点
// 这里有个问题,如果遇到跳转指令怎么办? => 返回的AsmInst中带有特殊值,外面
// 接收到了就对当前指令矩阵进行重排,然后输出前面的指令,再输出本条指令
AsmOpName::AsmOpName() : type(AsmOpName::Type::Null) {}
AsmOpName::AsmOpName(std::string name)
: type(AsmOpName::Type::Var), name(name) {}
AsmOpName::AsmOpName(int value) : type(AsmOpName::Type::Imm), value(value) {}
AsmOpName::AsmOpName(std::string name, int offset)
: type(AsmOpName::Type::MemVar), name(name), offset_imm(offset) {}
AsmOpName::AsmOpName(std::string name, std::string offset)
: type(AsmOpName::Type::MemVar), name(name), offset_reg(offset) {}
AsmInst::AsmInst(std::string op_code, AsmOpName dest, AsmOpName op1,
AsmOpName op2, AsmOpName op3, std::string label, bool isjump)
: op_code(op_code),
dest(dest),
op1(op1),
op2(op2),
op3(op3),
isjump(isjump),
label(label) {}
AsmInst::AsmInst(std::string op_code, AsmOpName dest, AsmOpName op1,
AsmOpName op2, std::string label, bool isjump)
: op_code(op_code),
dest(dest),
op1(op1),
op2(op2),
op3(AsmOpName()),
isjump(isjump),
label(label) {}
AsmInst::AsmInst(std::string op_code, AsmOpName dest, AsmOpName op1,
std::string label, bool isjump)
: op_code(op_code),
dest(dest),
op1(op1),
op2(AsmOpName()),
op3(AsmOpName()),
isjump(isjump),
label(label) {}
AsmInst::AsmInst(std::string op_code, AsmOpName dest, std::string label,
bool isjump)
: op_code(op_code),
dest(dest),
op1(AsmOpName()),
op2(AsmOpName()),
op3(AsmOpName()),
isjump(isjump),
label(label) {}
AsmInst::AsmInst(std::string op_code, std::string label, bool isjump)
: op_code(op_code),
dest(AsmOpName()),
op1(AsmOpName()),
op2(AsmOpName()),
op3(AsmOpName()),
isjump(isjump),
label(label) {}
AsmInst Create_AsmInst(std::string line1) {
stringstream ss(line1);
std::string token;
std::vector<AsmOpName> cisu;
int isop = 1;
int count = 0;
bool isbreak = false;
bool isstr = false;
std::string opcode;
while (ss >> token) {
// out << token << "\t";
// 第一步,先把最后面那个逗号去了
// 请注意,这里没有处理 smull
// (因为两个dest不好搞定,正好有4个op所以够用,放在模板里搞)
if (token[token.size() - 1] == ',')
token = token.substr(0, token.size() - 1);
if (isop) { // 如果是操作符
if (token.starts_with("B") || token == "SMULL") {
// 如果是跳转
isbreak = true;
opcode = token;
isop = 0;
} else if (token == "STR") {
// 如果是STR
isstr = true;
opcode = token;
isop = 0;
} else {
// 如果不是跳转
opcode = token;
isop = 0;
}
} else { // 不是操作符
if (token[0] == '[') { // 内存变量
if (token.find(',') == token.npos) {
token.pop_back();
token.append(",#0]");
}
// [sp,#1] => sp,#1
// [sp,r1] => sp,r1
auto comma = token.find(',');
auto square = token.find(']');
auto offset = token.substr(comma + 1);
offset.pop_back();
if (offset.front() == '#') {
cisu.emplace_back(token.substr(1, comma - 1), stoi(offset.substr(1)));
} else {
cisu.emplace_back(token.substr(1, comma - 1), offset);
}
} else if (token[0] == '#') { // 立即数
token = token.substr(1, token.length() - 1);
istringstream is(token);
int i;
is >> i;
cisu.emplace_back(i);
} else { // 正常寄存器
cisu.emplace_back(token);
}
}
count++; // 包括操作符一共几个操作数
}
// 构造AsmInst
if (isbreak) { // 如果是跳转语句,token应该是标号
return AsmInst(opcode, token, true);
} else if (isstr) { // 如果是str 则第一个是op1,第二个是dest
return AsmInst(opcode, cisu[1], cisu[0]);
} else if (opcode.starts_with("#")) { // 注释
return AsmInst(opcode, AsmOpName());
} else {
switch (count) {
case 2:
return AsmInst(opcode, cisu[0]);
break;
case 3:
return AsmInst(opcode, cisu[0], cisu[1]);
break;
case 4:
return AsmInst(opcode, cisu[0], cisu[1], cisu[2]);
break;
case 5:
return AsmInst(opcode, cisu[0], cisu[1], cisu[2], cisu[3]);
break;
default:
throw std::runtime_error("too many argument");
break;
}
}
}
// 输出两个指令的相关性,如果不相关输出-1
int Calcu_Correlation(AsmInst inst1, AsmInst inst2) {
// 写后读相关
if ((inst1.dest.is_mem_var() || inst1.dest.is_var()) &&
inst2.use(inst1.dest)) {
// 相关情况1.2:写后读相关(1.3合并成功)
// LDR r1, [r2,#4]
// ADD r0, r0, r1
// 相关情况1.3:写后读相关
// LDR r1, [r2,#4]
// MOV r0, r1
if (inst1.op_code.starts_with("LDR")) {
return 4;
}
// 相关情况1.1:写后读相关
// ADD r0, r11, r4
// ADD r0, r0, r4
// z=这种情况要写回,2个周期以后才行
// 相关情况1.4:写后读相关
// ADD r12, r11, r12
// LDR r6, [r12] => xxx r6,[r12,#12]
// 相关情况1.5:写后读相关
// ADD r6, r11, r12 (不一定是ADD,其他的也有可能)
// CMP r6, r12
else if (inst1.op_code == "ADD" || inst1.op_code == "SUB") {
return 1;
} else if (inst1.op_code == "MUL") {
return 1;
}
// 相关情况9.9:写后读相关
// 这是最后一个,相当于最长前缀匹配
// MOV r12, r0
// ADD r12, r11, r12 (实际上这里不只是ADD,所有操作都是这样)
// 只要指令2的源寄存器和指令1的目的寄存器一样,就会有至少为0的间隔
// 或者指令2的目的寄存器和指令1的源寄存器一样
return 0;
}
// 读后写相关
// 指令2写寄存器之前指令1必须完成读操作
if ((inst2.dest.is_var() || inst2.dest.is_mem_var()) &&
inst1.use(inst2.dest)) {
return 0;
}
// 写后写相关
if ((inst1.dest.is_var() || inst1.dest.is_mem_var()) &&
(inst2.dest.is_var() || inst2.dest.is_mem_var()) &&
inst1.dest.name == inst2.dest.name) {
return 0;
}
// 访存相同指针
auto maybe_same = [](AsmOpName a, AsmOpName b) {
if (a.is_stack_var() && b.is_stack_var()) {
return a.offset_imm == b.offset_imm;
}
return true;
};
if (inst1.op_code.starts_with("STR") && inst2.op_code.starts_with("STR")) {
assert(inst1.dest.is_mem_var());
assert(inst2.dest.is_mem_var());
if (maybe_same(inst1.dest, inst2.dest)) {
return 0;
}
}
if (inst1.op_code.starts_with("LDR") && inst2.op_code.starts_with("STR")) {
assert(inst1.op1.is_mem_var());
assert(inst2.dest.is_mem_var());
if (maybe_same(inst1.op1, inst2.dest)) {
return 0;
}
}
if (inst1.op_code.starts_with("STR") && inst2.op_code.starts_with("LDR")) {
assert(inst1.dest.is_mem_var());
assert(inst2.op1.is_mem_var());
if (maybe_same(inst1.op1, inst2.op1)) {
return 0;
}
}
// CMP会影响标志位
if (inst1.op_code == "CMP" || inst2.op_code == "CMP") {
return 0;
}
return -1;
}
// 显示链表内容
void print_list(std::list<int> l0) {
std::list<int>::iterator itList;
for (itList = l0.begin(); itList != l0.end();) {
// std::cout<< *itList <<std::endl;
printf("%d->", *itList);
itList++;
}
}
// 将指令Im插入到指令In之后
void insert_list(std::list<int>& l0, int m, int n) {
std::list<int>::iterator itList;
for (itList = l0.begin(); itList != l0.end();) {
if (*itList == m) {
itList = l0.erase(itList);
break;
} else
itList++;
}
// 找出val=m的节点,删除它
for (itList = l0.begin(); itList != l0.end();) {
if (*itList == n) {
itList++;
itList = l0.insert(itList, m);
break;
} else
itList++;
}
// 找出val=n的节点,将val=m的节点插入至它之后
}
std::list<int> Initial_list(int list_size) {
std::list<int>::iterator itList;
std::list<int> l0;
int i = 0;
for (itList = l0.begin(); i < list_size;) {
l0.insert(itList, i);
i++;
}
return l0;
// 初始化链表 链表结构为head->0->1->2->3->.....->NULL
}
int** makearray(int m) {
int** p = new int*[m]; // 开辟行
int* array = new int[m * m];
for (int i = 0; i < m; i++) {
p[i] = array + i * m; // 开辟列
}
return p;
}
void freearray(int** array) {
delete[] array[0];
delete[] array;
}
// 输出stl等中间数组
void testarray(int* array, int array_size) {
for (int i = 0; i < array_size; i++) {
printf("%d ", array[i]);
}
printf("\n");
}
// 计算临时变量t表 t(n,k)表示第n条指令最多被第k条阻碍的时钟周期长度
// 它每行实际上是步长为1递增的
int** tcal(int** array, int array_size) {
int** t = NULL;
t = makearray(array_size);
int n, k;
for (n = 0; n < array_size; n++) {
for (k = 0; k < array_size; k++) {
t[n][k] = array[n][k] - (n - k - 1);
}
}
return t;
}
// 找到array中最大元素的下标
void max_lift2right(int* array, int array_size, int* max_tabel) {
int i;
int max = array[0];
int tabel = 0;
for (i = 0; i < array_size; i++) {
if (max < array[i]) {
tabel = i;
max = array[i];
}
}
*max_tabel = tabel;
return;
}
// 计算ceil表 其第n项表示能最大阻碍第n条指令的指令的下标
void ceilcal(int** array, int array_size, int** t, int* ceil) {
int n, k;
int max_in_t;
ceil[0] = -1;
for (n = 1; n < array_size; n++) {
max_lift2right(t[n], n, &max_in_t);
if (t[n][max_in_t] >= 0) {
ceil[n] = max_in_t;
} else {
ceil[n] = -1;
}
}
return;
}
// 计算stl表 其第n项表示第n条指令最多被其他指令阻碍多少个时间周期
void stlcal(int** array, int array_size, int** t, int* stl) {
int n, k;
int max_in_t;
stl[0] = 0;
for (n = 1; n < array_size; n++) {
max_lift2right(t[n], n, &max_in_t);
if (t[n][max_in_t] >= 0) {
stl[n] = t[n][max_in_t];
} else {
stl[n] = 0;
}
}
return;
}
// 计算cyl表 第n项表明从块开始到执行完第n条指令用的时钟周期
void cylcal(int** array, int array_size, int* stl, int* cyl) {
int n = 0;
cyl[0] = 1;
for (n = 1; n < array_size; n++) {
cyl[n] = cyl[n - 1] + stl[n] + 1;
}
return;
}
// 计算up表 第n项为第n条指令能合法上移的距离
void upcal(int** array, int array_size, int** t, int* up) {
int n = 0;
int i;
for (n = 0; n < array_size; n++) {
for (i = n - 1; i >= 0; i--) {
if (array[n][i] >= 0) {
up[n] = i;
break;
}
}
if (i == -1) {
up[n] = -1;
}
}
return;
}
// 计算down表 第n项为第n条指令能合法下移的距离
void downcal(int** array, int array_size, int** t, int* down) {
int n = 0;
int i;
for (n = 0; n < array_size; n++) {
for (i = n + 1; i < array_size; i++) {
if (array[i][n] >= 0) {
down[n] = i;
break;
}
}
if (i == array_size) {
down[n] = array_size;
}
}
return;
}
// 计算block表 它有aray_size*2项 其相邻两项表示一个关联指令子集
void creat_block_tabel(int* stl, int* ceil, int* block, int array_size) {
memset(block, -1, sizeof(int) * 2 * array_size);
int n;
int test;
int i = 0;
for (n = 0; n < array_size; n++) {
test = stl[n];
if (stl[n] > 0) {
block[2 * i] = ceil[n];
block[2 * i + 1] = n;
i++;
}
}
}
// 判断指令Im是否在任何一个关联指令子集内
bool im_in_block(int im, int* block, int array_size) {
int i;
for (i = 0; i < array_size; i++) {
if ((im >= block[2 * i]) && (im <= block[2 * i + 1])) {
return true;
}
}
return false;
}
void asm_swap_node(int* stl, int* ceil, int* down, int* up, int* block,
int array_size, std::list<int>& l0) {
int n, m;
int t;
auto* move = new bool[array_size];
memset(move, 0, array_size * sizeof(bool));
for (n = 0; n < array_size; n++) {
// 遍历stl,找到大于0的才处理
if (stl[n] <= 0) {
continue;
}
// 找到了In,它有优化的可能
// 移动过多条指令后,In就与其他指令没有相关性了,也没有必要再移动了
t = stl[n];
// 从与In关联的指令开始向上找
for (m = ceil[n] - 1; (m >= 0) && (t > 0); m--) {
// 如果Im在任何一个关联指令子集中就说明所有在其之上的指令不能调整,否则可能引起冲突
if (im_in_block(m, block, array_size)) {
break;
}
// 已经移动过的指令不用考虑
if (move[m] != false) {
continue;
}
// 满足移动条件
if (down[m] > ceil[n]) {
assert(m < array_size);
assert(ceil[n] < array_size);
insert_list(l0, m, ceil[n]);
// printf("now(%d,%d):", m, ceil[n]);
// print_list(l0);
// printf("\n");
// 实际上要减去Im的时钟周期,这里认为它是1
t = t - 1;
// Im已经被移动
move[m] = true;
}
}
}
// 从In开始向下找
for (m = n + 1; (m < array_size) && (t > 0); m++) {
if (im_in_block(m, block, array_size)) {
break;
}
if (move[m] != false) {
continue;
}
if (up[m] < n) {
assert(m < array_size);
assert(n - 1 < array_size);
insert_list(l0, m, n - 1);
// printf("now(%d,%d):", m, n - 1);
// print_list(l0);
// printf("\n");
t = t - 1;
move[m] = true;
}
}
delete[] move;
}
// 判断某个块是否全是-1,也就是所有指令都没有相关性,如果是的话,不优化了
bool IfBlockAllNR(int** array, int length) {
bool flag = true;
for (int i = 0; i < length; i++) {
for (int j = 0; j < length; j++) {
if (array[i][j] != -1) {
return false;
}
}
}
return true;
}
// 根据二维数组和指令的字符串集,输出优化以后的指令集
// 2个问题:
// 1. 还有没有没有提到的跳转块?除了下面这群B开头的
// 2. 还有哪些可能的相关
void Opt_Asm_blk_print(int** array, int block_size,
std::vector<std::string> InstBlk, ostream& out) {
bool debug_print = false;
int count = 0;
int tttt = 0;
int* stl = new int[block_size];
int* cyl = new int[block_size];
int* ceil = new int[block_size];
int* up = new int[block_size];
int* down = new int[block_size];
int* block = new int[2 * block_size];
// start
int** t = tcal(array, block_size);
ceilcal(array, block_size, t, ceil);
stlcal(array, block_size, t, stl);
cylcal(array, block_size, stl, cyl);
upcal(array, block_size, t, up);
downcal(array, block_size, t, down);
creat_block_tabel(stl, ceil, block, block_size);
if (debug_print) {
testarray(ceil, block_size);
testarray(stl, block_size);
testarray(cyl, block_size);
testarray(up, block_size);
testarray(down, block_size);
testarray(block, block_size * 2);
}
std::list<int> l0 = Initial_list(block_size);
// print_list(head);
asm_swap_node(stl, ceil, down, up, block, block_size, l0);
if (debug_print) print_list(l0);
std::list<int>::iterator itList;
for (itList = l0.begin(); itList != l0.end();) {
out << InstBlk[*itList] << endl;
*itList++;
}
// 打印
delete[] stl;
delete[] cyl;
delete[] ceil;
delete[] up;
delete[] down;
delete[] block;
freearray(t);
}
} // namespace
namespace syc::assembly::passes {
void reorder(std::istream& in, std::ostream& out) {
string line1;
string line1_orin;
std::stringstream in2;
bool isfirst = true;
std::vector<int> blk_linenum;
// optblk_linenum用于表示潜在代码可重排的界限(3,8,15,26,......)
std::vector<int> optblk_linenum;
// 存储AsmInst
std::vector<AsmInst> AsmBlock;
// 用于储存潜在可优化代码块的原本字符串,方便后续输出,以免重新根据AsmInst去构造
std::vector<std::string> LineBlock;
int length = 0;
int linenum = 0;
while (getline(in, line1)) {
in2 << line1 << endl;
// 第一遍扫描,直接记录块的号数
stringstream ss(line1);
string token;
if (ss >> token) {
if (token.ends_with(":") ||
(token.starts_with(".") || !token.starts_with(".loc")) ||
token.starts_with("B") || token == "SMULL" ||
(token == "MOV" && line1.find("pc") != string::npos)) {
blk_linenum.emplace_back(linenum);
linenum++;
} else if (!line1.starts_with("#")) {
linenum++;
}
}
}
// 确认潜在opt的linenum
for (int i = 0; i < (int)blk_linenum.size() - 1; i++) {
if ((blk_linenum[i + 1] - blk_linenum[i]) > 5) {
optblk_linenum.emplace_back(blk_linenum[i]);
optblk_linenum.emplace_back(blk_linenum[i + 1]);
}
}
linenum = 0;
int optnum = 0;
int temp = 0;
int head = 0, tail = 0;
bool flag = false;
in.seekg(ios::beg);
if (optblk_linenum.empty()) {
// 如果很短,
out << in2.str() << std::endl;
} else {
head = optblk_linenum[optnum];
tail = optblk_linenum[optnum + 1];
int** blk_array = nullptr;
int temp_inst_blk = 0; // 在指令vector中的数目
string comment;
while (getline(in2, line1)) {
// 第二遍扫描,某一块指令数目>5才会去优化
if (line1.starts_with("#") || line1.starts_with(".loc")) {
comment += line1 + '\n';
continue;
}
if (linenum < head || (linenum == head)) {
out << line1 << std::endl;
linenum++;
} else if (linenum == (head + 1)) {
// std::cout<< "新建块" << std::endl;
// 新建一个矩阵 和 vector<指令>
int block_size = tail - head - 1;
blk_array = new int*[block_size];
for (int i = 0; i < block_size; ++i) {
blk_array[i] = new int[block_size];
}
// 默认初始化为-1
for (int i = 0; i < block_size; i++) {
for (int j = 0; j < block_size; j++) {
blk_array[i][j] = -1;
}
}
AsmInst temp_AsmInst = Create_AsmInst(line1);
LineBlock.emplace_back(comment + line1);
AsmBlock.emplace_back(temp_AsmInst);
comment.clear();
linenum++;
} else if ((linenum > (head + 1) && (linenum < tail))) {
AsmInst temp_AsmInst = Create_AsmInst(line1);
// 计算矩阵
int size = AsmBlock.size();
for (int i = 0; i < size; i++) {
int temp1;
// cout << LineBlock[i] << endl;
// cout << line1 << endl;
// cout << endl;
temp1 = Calcu_Correlation(AsmBlock[i], temp_AsmInst);
blk_array[size][i] = temp1;
}
// 加入优化框
// std::cout<< "加入优化框" << std::endl;
// std::cout<< line1 << std::endl;
LineBlock.emplace_back(comment + line1);
AsmBlock.emplace_back(temp_AsmInst);
comment.clear();
linenum++;
} else if (linenum == tail) {
// 当Linenum = tail数目的时候,通过矩阵算出四个的值
// 对矩阵/AsmBlock进行销毁处理,然后执行重排函数
int nn = tail - head;
// 判断是否需要进行优化,如果不需要的话,直接就输出了
if (IfBlockAllNR(blk_array, (nn - 1))) {
// 无关,直接输出
// std::cout<< "无关,直接输出" << std::endl;
for (int i = 0; i < LineBlock.size(); i++) {
out << LineBlock[i] << std::endl;
}
} else {
// 有关,优化输出,这里遍历那个列表即可
// std::cout<< "有关,优化输出" << std::endl;
Opt_Asm_blk_print(blk_array, LineBlock.size(), LineBlock, out);
}
for (int i = 0; i < nn - 1; i++) {
delete[] blk_array[i];
}
delete[] blk_array;
AsmBlock.clear();
LineBlock.clear();
// 为了防止溢出
if (((optnum + 2) < optblk_linenum.size())) {
optnum += 2;
head = optblk_linenum[optnum];
tail = optblk_linenum[optnum + 1];
}
linenum++;
out << comment << line1 << std::endl;
comment.clear();
} else if (linenum > tail) { // 到最后了,全部输出,最后一块就不优化了
out << comment << line1 << std::endl;
comment.clear();
linenum++;
} else {
assert(false);
}
}
}
}
} // namespace syc::assembly::passes
| 24,910
|
C++
|
.cpp
| 785
| 23.315924
| 80
| 0.552191
|
nzh63/syc
| 39
| 13
| 0
|
GPL-3.0
|
9/20/2024, 10:45:34 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,852
|
context.cpp
|
nzh63_syc/src/assembly/generate/context.cpp
|
/*
* syc, a compiler for SysY
* Copyright (C) 2020-2021 nzh63, skywf21
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#include "assembly/generate/context.h"
#include <algorithm>
#include <cassert>
#include <exception>
namespace syc::assembly {
using namespace std;
Context::Context(ir::IRList* irs, ir::IRList::iterator function_begin_it,
ostream& log_out)
: irs(irs), function_begin_it(function_begin_it), log_out(log_out) {}
string Context::rename(string name) {
if (name.size() > 3 && name[1] == '&' && name[2] == '^')
return name.substr(3);
else if (name.size() > 2 && name[1] == '^')
return name.substr(2);
else if (name.size() > 2 && name[1] == '&')
return "__Var__" + to_string(name.size() - 2) + name.substr(2);
else
return "__Var__" + to_string(name.size() - 1) + name.substr(1);
}
int Context::resolve_stack_offset(string name) {
if (name.substr(0, 4) == "$arg") {
auto id = stoi(name.substr(4));
if (id < 4) {
throw runtime_error(name + " is not in mem.");
} else {
return stack_size[0] + stack_size[1] + stack_size[2] + stack_size[3] +
(id - 4) * 4;
}
} else if (name == "$ra") {
return stack_size[1] + stack_size[2] + stack_size[3] - 4;
}
return stack_offset_map[name] + stack_size[3];
}
void Context::set_ir_timestamp(ir::IR& cur) {
ir_to_time.insert({&cur, ++time});
}
void Context::set_var_latest_use_timestamp(ir::IR& cur) {
if (cur.op_code != ir::OpCode::MALLOC_IN_STACK) {
cur.forEachOp([&, this](ir::OpName op) {
if (op.is_var()) {
if (!var_latest_use_timestamp.count(op.name)) {
var_latest_use_timestamp.insert({op.name, ir_to_time[&cur]});
var_latest_use_timestamp_heap.insert({ir_to_time[&cur], op.name});
}
}
});
}
if (cur.op_code == ir::OpCode::SET_ARG && cur.dest.value < 4) {
string name = "$arg:" + to_string(cur.dest.value) + ":" +
to_string(ir_to_time[&*cur.phi_block]);
var_latest_use_timestamp.insert({name, ir_to_time[&*cur.phi_block]});
var_latest_use_timestamp_heap.insert(
make_pair(ir_to_time[&*cur.phi_block], name));
}
if (cur.op_code == ir::OpCode::IMUL && cur.op1.is_var()) {
var_latest_use_timestamp[cur.op1.name]++;
}
// 易失寄存器
if (cur.op_code == ir::OpCode::CALL || cur.op_code == ir::OpCode::IDIV ||
cur.op_code == ir::OpCode::MOD) {
for (int i = 0; i < 4; i++) {
string name = "$arg:" + to_string(i) + ":" + to_string(ir_to_time[&cur]);
var_latest_use_timestamp.insert({name, ir_to_time[&cur]});
var_latest_use_timestamp_heap.insert(make_pair(ir_to_time[&cur], name));
}
}
}
void Context::set_var_define_timestamp(ir::IR& cur) {
if (cur.op_code != ir::OpCode::MALLOC_IN_STACK &&
cur.op_code != ir::OpCode::PHI_MOV) {
if (cur.dest.is_var()) {
if (!var_define_timestamp.count(cur.dest.name)) {
var_define_timestamp.insert({cur.dest.name, ir_to_time[&cur]});
var_define_timestamp_heap.insert(
make_pair(ir_to_time[&cur], cur.dest.name));
}
}
} else if (cur.op_code == ir::OpCode::PHI_MOV) {
if (cur.dest.is_var()) {
if (!var_define_timestamp.count(cur.dest.name)) {
int time = min(ir_to_time[&*cur.phi_block], ir_to_time[&cur]);
var_define_timestamp.insert({cur.dest.name, time});
var_define_timestamp_heap.insert(make_pair(time, cur.dest.name));
}
}
}
if (cur.op_code == ir::OpCode::SET_ARG && cur.dest.value < 4) {
string name = "$arg:" + to_string(cur.dest.value) + ":" +
to_string(ir_to_time[&*cur.phi_block]);
var_define_timestamp.insert({name, ir_to_time[&cur]});
var_define_timestamp_heap.insert(make_pair(ir_to_time[&cur], name));
}
if (cur.op_code == ir::OpCode::CALL || cur.op_code == ir::OpCode::IDIV ||
cur.op_code == ir::OpCode::MOD) {
for (int i = 0; i < 4; i++) {
string name = "$arg:" + to_string(i) + ":" + to_string(ir_to_time[&cur]);
var_define_timestamp.insert({name, ir_to_time[&cur]});
var_define_timestamp_heap.insert(make_pair(ir_to_time[&cur], name));
}
}
}
void Context::expire_old_intervals(int cur_time) {
for (int i = 0; i < reg_count; i++) {
if (used_reg[i])
if (reg_to_var.find(i) == reg_to_var.end() ||
var_latest_use_timestamp.find(reg_to_var[i]) ==
var_latest_use_timestamp.end() ||
cur_time >= var_latest_use_timestamp[reg_to_var[i]]) {
used_reg[i] = 0;
log_out << "# [log] " << cur_time << " expire " << reg_to_var[i] << " r"
<< i << endl;
reg_to_var.erase(i);
}
}
}
bool Context::var_in_reg(string name) { return var_to_reg.count(name); }
void Context::move_reg(string name, int reg_dest) {
assert(used_reg[reg_dest] == 0);
int old_reg = var_to_reg[name];
used_reg[old_reg] = 0;
get_specified_reg(reg_dest);
reg_to_var.erase(old_reg);
var_to_reg[name] = reg_dest;
reg_to_var.insert({reg_dest, name});
}
void Context::overflow_var(string name) {
if (var_to_reg.count(name)) {
const int reg_id = var_to_reg[name];
used_reg[reg_id] = 0;
var_to_reg.erase(name);
reg_to_var.erase(reg_id);
}
stack_offset_map[name] = stack_size[2];
stack_size[2] += 4;
}
void Context::overflow_reg(int reg_id) {
if (!used_reg[reg_id]) return;
overflow_var(reg_to_var[reg_id]);
}
string Context::select_var_to_overflow(int begin) {
string var = "";
int end = -1;
for (const auto& i : reg_to_var) {
if (i.first < begin) continue;
if (var_latest_use_timestamp[i.second] > end) {
var = i.second;
end = var_latest_use_timestamp[i.second];
}
}
return var;
}
int Context::find_free_reg(int begin) {
// 检测可直接使用的
for (int i = begin; i < reg_count; i++)
if ((savable_reg | used_reg)[i] == 0) {
return i;
}
// 保护现场后可用的
for (int i = begin; i < reg_count; i++)
if (used_reg[i] == 0 && savable_reg[i] == 1) {
return i;
}
return -1;
}
int Context::get_new_reg(int begin) {
// 检测可直接使用的
for (int i = begin; i < reg_count; i++)
if ((savable_reg | used_reg)[i] == 0) {
used_reg[i] = 1;
return i;
}
// 保护现场后可用的
for (int i = begin; i < reg_count; i++)
if (used_reg[i] == 0 && savable_reg[i] == 1) {
used_reg[i] = 1;
stack_size[1] += 4;
savable_reg[i] = 0;
return i;
}
// 选一个溢出
int id = begin;
for (int i = begin; i < reg_count; i++) {
if (var_latest_use_timestamp[reg_to_var[i]] >
var_latest_use_timestamp[reg_to_var[id]])
id = i;
}
overflow_reg(id);
used_reg[id] = 1;
return id;
}
void Context::get_specified_reg(int reg_id) {
assert(used_reg[reg_id] == 0);
if (savable_reg[reg_id] == 1) {
savable_reg[reg_id] = 0;
stack_size[1] += 4;
}
used_reg[reg_id] = 1;
}
void Context::bind_var_to_reg(string name, int reg_id) {
if (name.empty()) {
throw runtime_error("Var name is empty.");
}
assert(used_reg[reg_id] == 1);
if (reg_to_var.find(reg_id) != reg_to_var.end())
var_to_reg.erase(reg_to_var[reg_id]);
reg_to_var.insert({reg_id, name});
var_to_reg.insert({name, reg_id});
}
int Context::get_new_reg_for(string name) {
if (var_to_reg.find(name) != var_to_reg.end()) {
return var_to_reg[name];
}
int reg_id = get_new_reg();
bind_var_to_reg(name, reg_id);
return reg_id;
}
int Context::get_specified_reg_for(string name, int reg_id) {
if (var_to_reg.find(name) != var_to_reg.end()) {
if (var_to_reg[name] == reg_id) {
return var_to_reg[name];
}
}
if (used_reg[reg_id] == 1) {
overflow_reg(reg_id);
}
get_specified_reg(reg_id);
bind_var_to_reg(name, reg_id);
return reg_id;
}
void Context::load_imm(string reg, int value, ostream& out) {
if (value >= 0 && value < 65536)
out << " MOV " << reg << ", #" << value << endl;
else
out << " MOV32 " << reg << ", " << value << endl;
};
void Context::load(string reg, ir::OpName op, ostream& out) {
if (op.is_imm()) {
load_imm(reg, op.value, out);
} else if (op.is_var()) {
if (var_to_reg.find(op.name) != var_to_reg.end()) {
if (stoi(reg.substr(1)) != var_to_reg[op.name])
out << " MOV " << reg << ", r" << var_to_reg[op.name] << endl;
} else {
if (op.name[0] == '%') {
if (op.name[1] == '&') {
int offset = resolve_stack_offset(op.name);
if (offset >= 0 && offset < 256) {
out << " ADD " << reg << ", sp, #" << offset << endl;
} else {
load_imm(reg, resolve_stack_offset(op.name), out);
out << " ADD " << reg << ", sp, " << reg << endl;
}
} else {
if (var_in_reg(op.name)) {
out << " MOV " << reg << ", r" << var_to_reg[op.name] << endl;
} else {
int offset = resolve_stack_offset(op.name);
if (offset > -4096 && offset < 4096) {
out << " LDR " << reg << ", [sp,#" << offset << ']' << endl;
} else {
out << " MOV32 " << reg << ", " << offset << endl;
out << " LDR " << reg << ", [sp, " << reg << "]" << endl;
}
}
}
} else if (op.name[0] == '@') {
if (op.name[1] != '&') {
out << " MOV32 " << reg << ", " << rename(op.name) << endl;
out << " LDR " << reg << ", [" << reg << ",#0]" << endl;
} else {
out << " MOV32 " << reg << ", " << rename(op.name) << endl;
}
} else if (op.name[0] == '$') {
int offset = resolve_stack_offset(op.name);
if (offset > -4096 && offset < 4096) {
out << " LDR " << reg << ", [sp,#" << offset << ']' << endl;
} else {
out << " MOV32 " << reg << ", " << offset << endl;
out << " LDR " << reg << ", [sp," << reg << "]" << endl;
}
}
}
}
}
void Context::store_to_stack_offset(string reg, int offset, ostream& out,
string op) {
if (!(offset > -4096 && offset < 4096)) {
string tmp_reg = reg == "r14" ? "r12" : "r14";
load_imm(tmp_reg, offset, out);
out << " " << op << " " << reg << ", [sp," << tmp_reg << "]" << endl;
} else {
out << " " << op << " " << reg << ", [sp,#" << offset << "]" << endl;
}
}
void Context::load_from_stack_offset(string reg, int offset, ostream& out,
string op) {
if (offset > -4096 && offset < 4096) {
out << " " << op << " " << reg << ", [sp,#" << offset << "]" << endl;
} else {
load_imm(reg, offset, out);
out << " " << op << " " << reg << ", [sp," << reg << "]" << endl;
}
}
void Context::store_to_stack(string reg, ir::OpName op, ostream& out,
string op_code) {
if (!op.is_var()) throw runtime_error("WTF");
if (op.name[1] == '&') return;
if (op.name[0] == '%') {
store_to_stack_offset(reg, resolve_stack_offset(op.name), out, op_code);
} else if (op.name[0] == '@') {
string tmp_reg = reg == "r14" ? "r12" : "r14";
out << " MOV32 " << tmp_reg << ", " << rename(op.name) << endl;
out << " " << op_code << " " << reg << ", [" << tmp_reg << ",#0]"
<< endl;
} else if (op.name[0] == '$') {
int offset = resolve_stack_offset(op.name);
store_to_stack_offset(reg, offset, out, op_code);
}
}
} // namespace syc::assembly
| 12,133
|
C++
|
.cpp
| 337
| 30.454006
| 80
| 0.545727
|
nzh63/syc
| 39
| 13
| 0
|
GPL-3.0
|
9/20/2024, 10:45:34 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,853
|
generate.cpp
|
nzh63_syc/src/assembly/generate/generate.cpp
|
/*
* syc, a compiler for SysY
* Copyright (C) 2020-2021 nzh63, skywf21
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#include <algorithm>
#include <bitset>
#include <cassert>
#include <cmath>
#include <string>
#include "assembly/generate/context.h"
#include "ast/node.h"
#include "config.h"
#include "ir/ir.h"
using namespace std;
namespace syc::assembly {
namespace {
void write_dwarf2(ir::IR ir, ostream& out) {
if (config::enable_dwarf2) {
out << ".loc 1 " << ir.line << " " << ir.column << endl;
}
}
constexpr bitset<Context::reg_count> non_volatile_reg = 0b111111110000;
void generate_function_asm(ir::IRList& irs, ir::IRList::iterator begin,
ir::IRList::iterator end, ostream& out,
ostream& log_out) {
assert(begin->op_code == ir::OpCode::FUNCTION_BEGIN);
Context ctx(&irs, begin, log_out);
// 标号
for (auto it = begin; it != end; it++) {
ctx.set_ir_timestamp(*it);
}
for (auto it = begin; it != end; it++) {
ctx.set_var_define_timestamp(*it);
}
for (auto it = end; it != begin; it--) {
ctx.set_var_latest_use_timestamp(*it);
}
for (auto it = begin; it != end; it++) {
if (it->op_code == ir::OpCode::CALL || it->op_code == ir::OpCode::IDIV ||
it->op_code == ir::OpCode::MOD) {
ctx.has_function_call = true;
break;
}
}
for (auto it = begin; it != end; it++) {
log_out << "# " << ctx.ir_to_time[&*it] << " ";
it->print(log_out);
}
for (auto it = begin; it != end; it++) {
auto& ir = *it;
///////////////////////////////////// 计算栈大小 (数组分配)
if (ir.op_code == ir::OpCode::MALLOC_IN_STACK) {
ctx.stack_offset_map[ir.dest.name] = ctx.stack_size[2];
ctx.stack_size[2] += ir.op1.value;
} else if (ir.op_code == ir::OpCode::SET_ARG) {
ctx.stack_size[3] = std::max(ctx.stack_size[3], (ir.dest.value - 3) * 4);
}
}
// 寄存器分配
for (const auto& i : ctx.var_define_timestamp_heap) {
int cur_time = i.first;
auto var_name = i.second;
ctx.expire_old_intervals(cur_time);
if (ctx.var_in_reg(var_name)) {
// TODO: 有这种情况吗????
continue;
} else {
if (var_name.substr(0, 5) == "$arg:") {
int reg = stoi(var_name.substr(5));
if (ctx.used_reg[reg]) {
string cur_var = ctx.reg_to_var[reg];
if (ctx.find_free_reg(4) != -1) {
ctx.move_reg(cur_var, ctx.find_free_reg(4));
} else {
string overflow_var = ctx.select_var_to_overflow(4);
if (ctx.var_latest_use_timestamp[cur_var] >=
ctx.var_latest_use_timestamp[overflow_var]) {
overflow_var = cur_var;
}
ctx.overflow_var(overflow_var);
if (ctx.used_reg[reg]) {
ctx.move_reg(cur_var, ctx.find_free_reg(4));
}
}
}
ctx.get_specified_reg_for(var_name, reg);
} else {
if (var_name[0] != '%') continue;
// 与期间内固定分配寄存器冲突
bool conflict = false;
int latest = ctx.var_latest_use_timestamp[var_name];
for (const auto& j : ctx.var_define_timestamp_heap) {
if (j.first <= cur_time) continue;
if (j.first > latest) break;
if (j.second.substr(0, 5) == "$arg:") {
conflict = true;
break;
}
}
if (ctx.find_free_reg(conflict ? 4 : 0) != -1) {
ctx.get_specified_reg_for(var_name,
ctx.find_free_reg(conflict ? 4 : 0));
} else {
string cur_max = ctx.select_var_to_overflow(conflict ? 4 : 0);
if (ctx.var_latest_use_timestamp[var_name] <
ctx.var_latest_use_timestamp[cur_max]) {
ctx.get_specified_reg_for(var_name, ctx.var_to_reg[cur_max]);
} else {
ctx.overflow_var(var_name);
}
}
}
}
}
// 翻译
for (auto it = begin; it != end; it++) {
auto& ir = *it;
write_dwarf2(ir, out);
auto& stack_size = ctx.stack_size;
log_out << "#";
ir.print(log_out);
if (ir.op_code == ir::OpCode::FUNCTION_BEGIN) {
out << ".text" << endl;
out << ".global " << ir.label << endl;
out << ".type " << ir.label << ", %function" << endl;
out << ir.label << ":" << endl;
if (stack_size[0] + stack_size[1] + stack_size[2] + stack_size[3] > 256) {
ctx.load("r12",
stack_size[0] + stack_size[1] + stack_size[2] + stack_size[3],
out);
out << " SUB sp, sp, r12" << endl;
} else {
out << " SUB sp, sp, #"
<< stack_size[0] + stack_size[1] + stack_size[2] + stack_size[3]
<< endl;
}
ctx.store_to_stack("r14", ir::OpName("$ra"), out);
// 保护现场
int offset = 0;
for (int i = 0; i < Context::reg_count; i++) {
if (non_volatile_reg[i] != ctx.savable_reg[i]) {
ctx.store_to_stack_offset(
"r" + to_string(i), stack_size[2] + stack_size[3] + offset, out);
offset += 4;
}
}
} else if (ir.op_code == ir::OpCode::MOV ||
ir.op_code == ir::OpCode::PHI_MOV) {
if (ir.dest == ir.op1) continue;
bool dest_in_reg = ctx.var_in_reg(ir.dest.name);
if (ir.op1.is_imm()) {
if (dest_in_reg) {
ctx.load_imm("r" + to_string(ctx.var_to_reg[ir.dest.name]),
ir.op1.value, out);
} else {
ctx.load_imm("r12", ir.op1.value, out);
ctx.store_to_stack("r12", ir.dest, out);
}
} else if (ir.op1.is_var()) {
bool op1_in_reg = ir.op1.is_var() && ctx.var_in_reg(ir.op1.name);
int op1 = op1_in_reg ? ctx.var_to_reg[ir.op1.name] : 12;
int dest = dest_in_reg ? ctx.var_to_reg[ir.dest.name] : 12;
if (!op1_in_reg) {
ctx.load("r" + to_string(op1), ir.op1, out);
}
if (dest_in_reg && op1 != dest)
out << " MOV r" << dest << ", r" << op1 << endl;
else if (!dest_in_reg) {
ctx.store_to_stack("r" + to_string(op1), ir.dest, out);
}
}
}
#define F(OP_NAME, OP) \
else if (ir.op_code == ir::OpCode::OP_NAME) { \
bool dest_in_reg = ctx.var_in_reg(ir.dest.name); \
bool op1_in_reg = ir.op1.is_var() && ctx.var_in_reg(ir.op1.name); \
bool op2_in_reg = ir.op2.is_var() && ctx.var_in_reg(ir.op2.name); \
bool op2_is_imm = \
ir.op2.is_imm() && (ir.op2.value >= 0 && ir.op2.value < 256); \
int op1 = op1_in_reg ? ctx.var_to_reg[ir.op1.name] : 14; \
int op2 = op2_in_reg ? ctx.var_to_reg[ir.op2.name] : 12; \
int dest = dest_in_reg ? ctx.var_to_reg[ir.dest.name] : 12; \
if (!op2_in_reg && !op2_is_imm) { \
ctx.load("r" + to_string(op2), ir.op2, out); \
} \
if (!op1_in_reg) { \
ctx.load("r" + to_string(op1), ir.op1, out); \
} \
out << " " OP " r" << dest << ", r" << op1 << ", "; \
if (op2_is_imm) { \
out << "#" << ir.op2.value << endl; \
} else { \
out << "r" << op2 << endl; \
} \
if (!dest_in_reg) { \
ctx.store_to_stack("r" + to_string(dest), ir.dest, out); \
} \
}
F(ADD, "ADD")
F(SUB, "SUB")
#undef F
else if (ir.op_code == ir::OpCode::IMUL) {
bool dest_in_reg = ctx.var_in_reg(ir.dest.name);
bool op1_in_reg = ir.op1.is_var() && ctx.var_in_reg(ir.op1.name);
bool op2_in_reg = ir.op2.is_var() && ctx.var_in_reg(ir.op2.name);
int op1 = op1_in_reg ? ctx.var_to_reg[ir.op1.name] : 14;
int op2 = op2_in_reg ? ctx.var_to_reg[ir.op2.name] : 12;
int dest = dest_in_reg ? ctx.var_to_reg[ir.dest.name] : 12;
if (!op2_in_reg) {
ctx.load("r" + to_string(op2), ir.op2, out);
}
if (!op1_in_reg) {
ctx.load("r" + to_string(op1), ir.op1, out);
}
if (dest == op1) {
out << " MUL r12, r" << op1 << ", r" << op2 << endl;
out << " MOV r" << dest << ", r12" << endl;
} else {
out << " MUL r" << dest << ", r" << op1 << ", r" << op2 << endl;
}
if (!dest_in_reg) {
ctx.store_to_stack("r" + to_string(dest), ir.dest, out);
}
}
#define F(OP_NAME, OP) \
else if (ir.op_code == ir::OpCode::OP_NAME) { \
assert(ir.op2.is_imm()); \
bool dest_in_reg = ctx.var_in_reg(ir.dest.name); \
bool op1_in_reg = ir.op1.is_var() && ctx.var_in_reg(ir.op1.name); \
int op1 = op1_in_reg ? ctx.var_to_reg[ir.op1.name] : 14; \
int dest = dest_in_reg ? ctx.var_to_reg[ir.dest.name] : 12; \
if (!op1_in_reg) { \
ctx.load("r" + to_string(op1), ir.op1, out); \
} \
out << " " OP " r" << dest << ", r" << op1 << ", #" << ir.op2.value \
<< endl; \
if (!dest_in_reg) { \
ctx.store_to_stack("r" + to_string(dest), ir.dest, out); \
} \
}
F(SAL, "LSL")
F(SAR, "ASR")
#undef F
else if (ir.op_code == ir::OpCode::IDIV) {
if (config::optimize_level > 0 && ir.op2.is_imm()) {
bool dest_in_reg = ctx.var_in_reg(ir.dest.name);
int dest = dest_in_reg ? ctx.var_to_reg[ir.dest.name] : 14;
bool op1_in_reg = ir.op1.is_var() && ctx.var_in_reg(ir.op1.name);
int op1 = op1_in_reg ? ctx.var_to_reg[ir.op1.name] : 0;
if (!op1_in_reg) {
ctx.load("r" + to_string(op1), ir.op1, out);
}
int c = ir.op2.value;
if (c < 0) {
c = -c;
out << " MOV r3, #0" << endl;
out << " SUBS r3, r3, r" << op1 << endl; // op1 = -op1;
op1 = 3;
} else {
out << " CMP r" << op1 << ", #0" << endl;
}
int k = 0;
int g = c;
while (g != 1) {
g = g / 2;
k += 1;
}
if ((c & (c - 1)) ? false : true) {
out << " ASR r" << dest << ", r" << op1 << ", #" << k << endl;
out << " ADDLT r" << dest << ", r" << dest << ", #1" << endl;
} else {
// E = 2^k/c
double E = (double)((int64_t)1 << k) / c;
// f = 2^(k+32)/c
double f = E * ((int64_t)1 << 31);
// s = |f|
int64_t s = ceil(f);
double e = s - f;
if (e > E) {
s = floor(f);
}
s = ceil(f);
ctx.load_imm("r1", s, out);
out << " SMULL r12, r2, r" << op1 << ", r1" << endl;
out << " ASR r" << dest << ", r2, #" << k - 1 << endl;
out << " ADDLT r" << dest << ", r" << dest << ", #1" << endl;
}
if (!dest_in_reg) {
ctx.store_to_stack("r" + to_string(dest), ir.dest, out);
}
} else {
ctx.load("r0", ir.op1, out);
ctx.load("r1", ir.op2, out);
out << " BL __aeabi_idiv" << endl;
if (ctx.var_in_reg(ir.dest.name)) {
out << " MOV r" << ctx.var_to_reg[ir.dest.name] << ", r0" << endl;
} else {
ctx.store_to_stack("r0", ir.dest, out);
}
}
}
else if (ir.op_code == ir::OpCode::MOD) {
ctx.load("r0", ir.op1, out);
ctx.load("r1", ir.op2, out);
out << " BL __aeabi_idivmod" << endl;
if (ctx.var_in_reg(ir.dest.name)) {
out << " MOV r" << ctx.var_to_reg[ir.dest.name] << ", r1" << endl;
} else {
ctx.store_to_stack("r1", ir.dest, out);
}
}
else if (ir.op_code == ir::OpCode::CALL) {
out << " BL " << ir.label << endl;
if (ir.dest.is_var()) {
if (ctx.var_in_reg(ir.dest.name)) {
out << " MOV r" << ctx.var_to_reg[ir.dest.name] << ", r0" << endl;
} else {
ctx.store_to_stack("r0", ir.dest, out);
}
}
}
else if (ir.op_code == ir::OpCode::SET_ARG) {
if (ir.dest.value < 4) {
ctx.load("r" + to_string(ir.dest.value), ir.op1, out);
} else {
ctx.load("r12", ir.op1, out);
ctx.store_to_stack_offset("r12", (ir.dest.value - 4) * 4, out);
}
}
else if (ir.op_code == ir::OpCode::CMP) {
bool op1_in_reg = ir.op1.is_var() && ctx.var_in_reg(ir.op1.name);
bool op2_in_reg = ir.op2.is_var() && ctx.var_in_reg(ir.op2.name);
int op1 = op1_in_reg ? ctx.var_to_reg[ir.op1.name] : 12;
int op2 = op2_in_reg ? ctx.var_to_reg[ir.op2.name] : 14;
if (!op1_in_reg) {
ctx.load("r" + to_string(op1), ir.op1, out);
}
if (!op2_in_reg) {
ctx.load("r" + to_string(op2), ir.op2, out);
}
out << " CMP r" << op1 << ", r" << op2 << endl;
}
#define F(OP_NAME, OP) \
else if (ir.op_code == ir::OpCode::OP_NAME) { \
out << " " OP " " << ir.label << endl; \
}
F(JMP, "B")
F(JEQ, "BEQ")
F(JNE, "BNE")
F(JLE, "BLE")
F(JLT, "BLT")
F(JGE, "BGE")
F(JGT, "BGT")
#undef F
#define F(OP_NAME, OP_THEN, OP_ELSE) \
else if (ir.op_code == ir::OpCode::OP_NAME) { \
bool dest_in_reg = ctx.var_in_reg(ir.dest.name); \
int dest = dest_in_reg ? ctx.var_to_reg[ir.dest.name] : 12; \
if (ir.op1.is_imm() && ir.op1.value >= 0 && ir.op1.value < 256 && \
ir.op2.is_imm() && ir.op2.value >= 0 && ir.op2.value < 256) { \
out << " " OP_THEN " r" << dest << ", #" << ir.op1.value << endl; \
out << " " OP_ELSE " r" << dest << ", #" << ir.op2.value << endl; \
if (!dest_in_reg) { \
ctx.store_to_stack("r" + to_string(dest), ir.dest, out); \
} \
} else { /* TODO */ \
} \
}
F(MOVEQ, "MOVEQ", "MOVNE")
F(MOVNE, "MOVNE", "MOVEQ")
F(MOVLE, "MOVLE", "MOVGT")
F(MOVGT, "MOVGT", "MOVLE")
F(MOVLT, "MOVLT", "MOVGE")
F(MOVGE, "MOVGE", "MOVLT")
#undef F
else if (ir.op_code == ir::OpCode::AND) {
bool dest_in_reg = ctx.var_in_reg(ir.dest.name);
bool op1_in_reg = ir.op1.is_var() && ctx.var_in_reg(ir.op1.name);
bool op2_in_reg = ir.op2.is_var() && ctx.var_in_reg(ir.op2.name);
int op1 = op1_in_reg ? ctx.var_to_reg[ir.op1.name] : 12;
int op2 = op2_in_reg ? ctx.var_to_reg[ir.op2.name] : 14;
int dest = dest_in_reg ? ctx.var_to_reg[ir.dest.name] : 12;
if (!op1_in_reg) {
ctx.load("r" + to_string(op1), ir.op1, out);
}
if (!op2_in_reg) {
ctx.load("r" + to_string(op2), ir.op2, out);
}
out << " TST r" << op1 << ", r" << op2 << endl;
out << " MOVEQ r" << dest << ", #0" << endl;
out << " MOVNE r" << dest << ", #1" << endl;
if (!dest_in_reg) {
ctx.store_to_stack("r" + to_string(dest), ir.dest, out);
}
}
else if (ir.op_code == ir::OpCode::OR) {
bool dest_in_reg = ctx.var_in_reg(ir.dest.name);
bool op1_in_reg = ir.op1.is_var() && ctx.var_in_reg(ir.op1.name);
bool op2_in_reg = ir.op2.is_var() && ctx.var_in_reg(ir.op2.name);
int op1 = op1_in_reg ? ctx.var_to_reg[ir.op1.name] : 12;
int op2 = op2_in_reg ? ctx.var_to_reg[ir.op2.name] : 14;
int dest = dest_in_reg ? ctx.var_to_reg[ir.dest.name] : 12;
if (!op1_in_reg) {
ctx.load("r" + to_string(op1), ir.op1, out);
}
if (!op2_in_reg) {
ctx.load("r" + to_string(op2), ir.op2, out);
}
out << " ORRS r12, r" << op1 << ", r" << op2 << endl;
out << " MOVEQ r" << dest << ", #0" << endl;
out << " MOVNE r" << dest << ", #1" << endl;
if (!dest_in_reg) {
ctx.store_to_stack("r" + to_string(dest), ir.dest, out);
}
}
else if (ir.op_code == ir::OpCode::STORE) {
// op1 基地址
bool op3_in_reg = ir.op3.is_var() && ctx.var_in_reg(ir.op3.name);
int op3 = op3_in_reg ? ctx.var_to_reg[ir.op3.name] : 14;
if (ir.op1.is_var() && ir.op1.name.substr(0, 2) == "%&" &&
ir.op2.is_imm()) {
if (!op3_in_reg) ctx.load("r" + to_string(op3), ir.op3, out);
int offset = ctx.resolve_stack_offset(ir.op1.name) + ir.op2.value;
ctx.store_to_stack_offset("r" + to_string(op3), offset, out);
} else {
bool op2_in_reg = ir.op2.is_var() && ctx.var_in_reg(ir.op2.name);
int op1 = 12;
int op2 = op2_in_reg ? ctx.var_to_reg[ir.op2.name] : 14;
bool offset_is_small =
ir.op2.is_imm() && ir.op2.value >= -4096 && ir.op2.value < 4096;
if (!op2_in_reg && !offset_is_small)
ctx.load("r" + to_string(op2), ir.op2, out);
ctx.load("r" + to_string(op1), ir.op1, out);
if (!op3_in_reg) ctx.load("r" + to_string(op3), ir.op3, out);
out << " STR r" << op3 << ", [r" << op1 << ','
<< (offset_is_small ? '#' : 'r')
<< (offset_is_small ? ir.op2.value : op2) << "]" << endl;
}
}
else if (ir.op_code == ir::OpCode::LOAD) {
bool dest_in_reg = ctx.var_in_reg(ir.dest.name);
int dest = dest_in_reg ? ctx.var_to_reg[ir.dest.name] : 12;
// op1 基地址
if (ir.op1.is_var() && ir.op1.name.substr(0, 2) == "%&" &&
ir.op2.is_imm()) {
int offset = ctx.resolve_stack_offset(ir.op1.name) + ir.op2.value;
ctx.load_from_stack_offset("r" + to_string(dest), offset, out);
if (!dest_in_reg) {
ctx.store_to_stack("r" + to_string(dest), ir.dest, out);
}
} else {
bool op2_in_reg = ir.op2.is_var() && ctx.var_in_reg(ir.op2.name);
int op1 = 12;
int op2 = op2_in_reg ? ctx.var_to_reg[ir.op2.name] : 14;
bool offset_is_small =
ir.op2.is_imm() && ir.op2.value >= -4096 && ir.op2.value < 4096;
if (!op2_in_reg && !offset_is_small)
ctx.load("r" + to_string(op2), ir.op2, out);
ctx.load("r" + to_string(op1), ir.op1, out);
out << " LDR r" << dest << ", [r" << op1 << ","
<< (offset_is_small ? '#' : 'r')
<< (offset_is_small ? ir.op2.value : op2) << "]" << endl;
if (!dest_in_reg) {
ctx.store_to_stack("r" + to_string(dest), ir.dest, out);
}
}
}
else if (ir.op_code == ir::OpCode::RET) {
if (!ir.op1.is_null()) {
ctx.load("r0", ir.op1, out);
}
ctx.load("r14", ir::OpName("$ra"), out);
// 恢复现场
int offset = 0;
for (int i = 0; i < Context::reg_count; i++) {
if (non_volatile_reg[i] != ctx.savable_reg[i]) {
ctx.load_from_stack_offset(
"r" + to_string(i), stack_size[2] + stack_size[3] + offset, out);
offset += 4;
}
}
if (stack_size[0] + stack_size[1] + stack_size[2] + stack_size[3] > 127) {
ctx.load("r12",
stack_size[0] + stack_size[1] + stack_size[2] + stack_size[3],
out);
out << " ADD sp, sp, r12" << endl;
} else {
out << " ADD sp, sp, #"
<< stack_size[0] + stack_size[1] + stack_size[2] + stack_size[3]
<< endl;
}
out << " MOV pc, r14" << endl;
}
else if (ir.op_code == ir::OpCode::LABEL) {
out << ir.label << ':' << endl;
}
}
} // namespace
} // namespace
void generate(ir::IRList& irs, ostream& out, ostream& log_out) {
out << R"(
.macro mov32, reg, val
movw \reg, #:lower16:\val
movt \reg, #:upper16:\val
.endm
)" << endl;
if (config::enable_dwarf2) {
out << ".file 1 \"" << config::input_filename << "\"" << endl;
}
ir::IRList::iterator function_begin_it;
for (auto outter_it = irs.begin(); outter_it != irs.end(); outter_it++) {
auto& ir = *outter_it;
if (ir.op_code == ir::OpCode::DATA_BEGIN) {
write_dwarf2(ir, out);
out << ".data" << endl;
out << ".global " << Context::rename(ir.label) << endl;
out << Context::rename(ir.label) << ":" << endl;
} else if (ir.op_code == ir::OpCode::DATA_WORD) {
write_dwarf2(ir, out);
out << ".word " << ir.dest.value << endl;
} else if (ir.op_code == ir::OpCode::DATA_SPACE) {
write_dwarf2(ir, out);
out << ".space " << ir.dest.value << endl;
} else if (ir.op_code == ir::OpCode::DATA_END) {
// do nothing
} else if (ir.op_code == ir::OpCode::FUNCTION_BEGIN) {
function_begin_it = outter_it;
} else if (ir.op_code == ir::OpCode::FUNCTION_END) {
generate_function_asm(irs, function_begin_it, outter_it, out, log_out);
}
}
}
void generate(ir::IRList& irs, ostream& out) {
ofstream null;
null.setstate(std::ios_base::badbit);
generate(irs, out, null);
}
} // namespace syc::assembly
| 22,650
|
C++
|
.cpp
| 551
| 33.686025
| 80
| 0.463793
|
nzh63/syc
| 39
| 13
| 0
|
GPL-3.0
|
9/20/2024, 10:45:34 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,854
|
ir.cpp
|
nzh63_syc/src/ir/ir.cpp
|
/*
* syc, a compiler for SysY
* Copyright (C) 2020-2021 nzh63, skywf21
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#include "ir/ir.h"
#include <cassert>
#include "ast/node.h"
namespace syc::ir {
OpName::OpName() : type(OpName::Type::Null) {}
OpName::OpName(std::string name) : type(OpName::Type::Var), name(name) {}
OpName::OpName(int value) : type(OpName::Type::Imm), value(value) {}
bool OpName::is_var() const { return this->type == OpName::Type::Var; }
bool OpName::is_local_var() const {
return this->is_var() &&
(this->name.starts_with('%') || this->name.starts_with("$arg"));
}
bool OpName::is_global_var() const {
return this->is_var() && this->name.starts_with('@');
}
bool OpName::is_imm() const { return this->type == OpName::Type::Imm; }
bool OpName::is_null() const { return this->type == OpName::Type::Null; }
bool OpName::operator==(const OpName& other) const {
if (this->type != other.type) return false;
if (this->is_var()) {
return this->name == other.name;
} else if (this->is_imm()) {
return this->value == other.value;
} else {
assert(this->is_null());
return true;
}
}
IR::IR(OpCode op_code, OpName dest, OpName op1, OpName op2, OpName op3,
std::string label)
: op_code(op_code), dest(dest), op1(op1), op2(op2), op3(op3), label(label) {
this->setup_file_postion();
}
IR::IR(OpCode op_code, OpName dest, OpName op1, OpName op2, std::string label)
: op_code(op_code),
dest(dest),
op1(op1),
op2(op2),
op3(OpName()),
label(label) {
this->setup_file_postion();
}
IR::IR(OpCode op_code, OpName dest, OpName op1, std::string label)
: op_code(op_code),
dest(dest),
op1(op1),
op2(OpName()),
op3(OpName()),
label(label) {
this->setup_file_postion();
}
IR::IR(OpCode op_code, OpName dest, std::string label)
: op_code(op_code),
dest(dest),
op1(OpName()),
op2(OpName()),
op3(OpName()),
label(label) {
this->setup_file_postion();
}
IR::IR(OpCode op_code, std::string label)
: op_code(op_code),
dest(OpName()),
op1(OpName()),
op2(OpName()),
op3(OpName()),
label(label) {
this->setup_file_postion();
}
bool IR::some(decltype(&syc::ir::OpName::is_var) callback,
bool include_dest) const {
return this->some([callback](OpName op) { return (op.*callback)(); },
include_dest);
}
bool IR::some(std::function<bool(const syc::ir::OpName&)> callback,
bool include_dest) const {
return (include_dest && callback(this->dest)) || callback(this->op1) ||
callback(this->op2) || callback(this->op3);
}
void IR::forEachOp(std::function<void(const syc::ir::OpName&)> callback,
bool include_dest) const {
this->some(
[callback](const syc::ir::OpName& op) {
callback(op);
return false;
},
include_dest);
}
void IR::print(std::ostream& out, bool verbose) const {
switch (this->op_code) {
case OpCode::MALLOC_IN_STACK:
out << "MALLOC_IN_STACK"
<< std::string(16 - std::string("MALLOC_IN_STACK").size(), ' ');
break;
case OpCode::MOV:
out << "MOV" << std::string(16 - std::string("MOV").size(), ' ');
break;
case OpCode::ADD:
out << "ADD" << std::string(16 - std::string("ADD").size(), ' ');
break;
case OpCode::SUB:
out << "SUB" << std::string(16 - std::string("SUB").size(), ' ');
break;
case OpCode::IMUL:
out << "IMUL" << std::string(16 - std::string("IMUL").size(), ' ');
break;
case OpCode::IDIV:
out << "IDIV" << std::string(16 - std::string("IDIV").size(), ' ');
break;
case OpCode::MOD:
out << "MOD" << std::string(16 - std::string("MOD").size(), ' ');
break;
case OpCode::SET_ARG:
out << "SET_ARG" << std::string(16 - std::string("SET_ARG").size(), ' ');
break;
case OpCode::CALL:
out << "CALL" << std::string(16 - std::string("CALL").size(), ' ');
break;
case OpCode::CMP:
out << "CMP" << std::string(16 - std::string("CMP").size(), ' ');
break;
case OpCode::JMP:
out << "JMP" << std::string(16 - std::string("JMP").size(), ' ');
break;
case OpCode::JEQ:
out << "JEQ" << std::string(16 - std::string("JEQ").size(), ' ');
break;
case OpCode::JNE:
out << "JNE" << std::string(16 - std::string("JNE").size(), ' ');
break;
case OpCode::JLE:
out << "JLE" << std::string(16 - std::string("JLE").size(), ' ');
break;
case OpCode::JLT:
out << "JLT" << std::string(16 - std::string("JLT").size(), ' ');
break;
case OpCode::JGE:
out << "JGE" << std::string(16 - std::string("JGE").size(), ' ');
break;
case OpCode::JGT:
out << "JGT" << std::string(16 - std::string("JGT").size(), ' ');
break;
case OpCode::MOVEQ:
out << "MOVEQ" << std::string(16 - std::string("MOVEQ").size(), ' ');
break;
case OpCode::MOVNE:
out << "MOVNE" << std::string(16 - std::string("MOVNE").size(), ' ');
break;
case OpCode::MOVLE:
out << "MOVLE" << std::string(16 - std::string("MOVLE").size(), ' ');
break;
case OpCode::MOVLT:
out << "MOVLT" << std::string(16 - std::string("MOVLT").size(), ' ');
break;
case OpCode::MOVGE:
out << "MOVGE" << std::string(16 - std::string("MOVGE").size(), ' ');
break;
case OpCode::MOVGT:
out << "MOVGT" << std::string(16 - std::string("MOVGT").size(), ' ');
break;
case OpCode::AND:
out << "AND" << std::string(16 - std::string("AND").size(), ' ');
break;
case OpCode::OR:
out << "OR" << std::string(16 - std::string("OR").size(), ' ');
break;
case OpCode::SAL:
out << "SAL" << std::string(16 - std::string("SAL").size(), ' ');
break;
case OpCode::SAR:
out << "SAR" << std::string(16 - std::string("SAR").size(), ' ');
break;
case OpCode::STORE:
out << "STORE" << std::string(16 - std::string("STORE").size(), ' ');
break;
case OpCode::LOAD:
out << "LOAD" << std::string(16 - std::string("LOAD").size(), ' ');
break;
case OpCode::RET:
out << "RET" << std::string(16 - std::string("RET").size(), ' ');
break;
case OpCode::LABEL:
out << "LABEL" << std::string(16 - std::string("LABEL").size(), ' ');
break;
case OpCode::DATA_BEGIN:
out << "DATA_BEGIN"
<< std::string(16 - std::string("DATA_BEGIN").size(), ' ');
break;
case OpCode::DATA_SPACE:
out << "DATA_SPACE"
<< std::string(16 - std::string("DATA_SPACE").size(), ' ');
break;
case OpCode::DATA_WORD:
out << "DATA_WORD"
<< std::string(16 - std::string("DATA_WORD").size(), ' ');
break;
case OpCode::DATA_END:
out << "DATA_END"
<< std::string(16 - std::string("DATA_END").size(), ' ');
break;
case OpCode::FUNCTION_BEGIN:
out << "FUNCTION_BEGIN"
<< std::string(16 - std::string("FUNCTION_BEGIN").size(), ' ');
break;
case OpCode::FUNCTION_END:
out << "FUNCTION_END"
<< std::string(16 - std::string("FUNCTION_END").size(), ' ');
break;
case OpCode::PHI_MOV:
out << "PHI_MOV" << std::string(16 - std::string("PHI_MOV").size(), ' ');
break;
case OpCode::NOOP:
out << "NOOP" << std::string(16 - std::string("NOOP").size(), ' ');
break;
case OpCode::INFO:
out << "INFO" << std::string(16 - std::string("INFO").size(), ' ');
break;
}
this->forEachOp([&out](const OpName& op) {
if (op.is_imm()) {
out << op.value << '\t';
} else if (op.is_var()) {
out << op.name << '\t';
} else if (op.is_null()) {
out << '\t';
}
});
out << this->label;
out << std::endl;
}
void IR::setup_file_postion() {
if (syc::ast::node::current()) {
this->line = syc::ast::node::current()->line;
this->column = syc::ast::node::current()->column;
} else {
this->line = 0;
this->column = 0;
}
}
} // namespace syc::ir
| 8,740
|
C++
|
.cpp
| 257
| 28.680934
| 80
| 0.562463
|
nzh63/syc
| 39
| 13
| 0
|
GPL-3.0
|
9/20/2024, 10:45:34 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,855
|
optimize.cpp
|
nzh63_syc/src/ir/optimize/optimize.cpp
|
/*
* syc, a compiler for SysY
* Copyright (C) 2020-2021 nzh63, skywf21
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#include "ir/optimize/optimize.h"
#include "assembly/generate/context.h"
#include "config.h"
#include "ir/ir.h"
#include "ir/optimize/passes.h"
namespace syc::ir {
void optimize(IRList &ir) {
using namespace syc::ir::passes;
for (int i = 0; i < 5; i++) {
// local_common_subexpression_elimination(ir);
local_common_constexpr_function_elimination(ir);
optimize_phi_var(ir);
dead_code_elimination(ir);
unreachable_code_elimination(ir);
}
}
void optimize_loop_ir(IRList &ir_before, IRList &ir_cond, IRList &ir_jmp,
IRList &ir_do, IRList &ir_continue) {
using namespace syc::ir::passes;
if (config::optimize_level > 0) {
while (loop_invariant_code_motion(ir_before, ir_cond, ir_jmp, ir_do,
ir_continue))
;
}
}
} // namespace syc::ir
| 1,562
|
C++
|
.cpp
| 43
| 32.534884
| 73
| 0.698088
|
nzh63/syc
| 39
| 13
| 0
|
GPL-3.0
|
9/20/2024, 10:45:34 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,856
|
optimize_phi_var.cpp
|
nzh63_syc/src/ir/optimize/passes/optimize_phi_var.cpp
|
/*
* syc, a compiler for SysY
* Copyright (C) 2020-2021 nzh63, skywf21
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#include "ir/optimize/passes/optimize_phi_var.h"
#include "assembly/generate/context.h"
#include "config.h"
#include "ir/ir.h"
namespace syc::ir::passes {
// MOV %42, some_thing
// ...
// PHI_MOV %43, %42 # %42 only be used here
// =>
// MOV %43, some_thing # rename %42 to %43
// ...
// PHI_MOV %43, %43
void optimize_phi_var(IRList &ir) {
std::map<std::string, int> use_count;
std::map<std::string, std::string> replace_table;
for (const auto &i : ir) {
i.forEachOp(
[&](OpName op) {
if (op.is_var()) {
if (use_count.find(op.name) == use_count.end())
use_count[op.name] = 0;
use_count[op.name]++;
}
},
false);
}
for (auto it = ir.begin(); it != ir.end(); it++) {
if (it->op_code == OpCode::PHI_MOV) {
if (it->op1.is_var() && use_count[it->op1.name] == 1) {
int line = 10;
if (it == ir.begin()) continue;
auto it2 = it;
do {
it2 = std::prev(it2);
if (it2->dest.is_var() && it2->dest.name == it->op1.name) {
replace_table[it2->dest.name] = it->dest.name;
}
} while (it2 != ir.begin());
}
}
}
for (auto &i : ir) {
i.forEachOp([&](OpName op) {
if (op.is_var()) {
if (replace_table.find(op.name) != replace_table.end())
op.name = replace_table[op.name];
}
});
}
}
} // namespace syc::ir::passes
| 2,171
|
C++
|
.cpp
| 68
| 27.088235
| 73
| 0.596667
|
nzh63/syc
| 39
| 13
| 0
|
GPL-3.0
|
9/20/2024, 10:45:34 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,857
|
dead_code_elimination.cpp
|
nzh63_syc/src/ir/optimize/passes/dead_code_elimination.cpp
|
/*
* syc, a compiler for SysY
* Copyright (C) 2020-2021 nzh63, skywf21
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#include "ir/optimize/passes/dead_code_elimination.h"
#include "assembly/generate/context.h"
#include "config.h"
#include "ir/ir.h"
namespace syc::ir::passes {
void dead_code_elimination(IRList &ir) {
syc::assembly::Context ctx(&ir, ir.begin());
for (auto it = ir.begin(); it != ir.end(); it++) {
ctx.set_ir_timestamp(*it);
}
for (auto it = std::prev(ir.end()); it != ir.begin(); it--) {
ctx.set_var_latest_use_timestamp(*it);
auto cur = ctx.ir_to_time[&*it];
if (it->dest.is_var() && it->dest.name[0] == '%' &&
it->op_code != OpCode::CALL && it->op_code != OpCode::PHI_MOV) {
if (ctx.var_latest_use_timestamp.find(it->dest.name) ==
ctx.var_latest_use_timestamp.end() ||
ctx.var_latest_use_timestamp[it->dest.name] <= cur) {
it = ir.erase(it);
}
}
}
for (auto it = ir.begin(); it != ir.end(); it++) {
ctx.set_var_define_timestamp(*it);
}
}
} // namespace syc::ir::passes
| 1,694
|
C++
|
.cpp
| 44
| 35
| 73
| 0.662211
|
nzh63/syc
| 39
| 13
| 0
|
GPL-3.0
|
9/20/2024, 10:45:34 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,858
|
local_common_subexpression_elimination.cpp
|
nzh63_syc/src/ir/optimize/passes/local_common_subexpression_elimination.cpp
|
/*
* syc, a compiler for SysY
* Copyright (C) 2020-2021 nzh63, skywf21
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#include "ir/optimize/passes/local_common_subexpression_elimination.h"
#include <map>
#include <set>
#include "assembly/generate/context.h"
#include "config.h"
#include "ir/ir.h"
using namespace std;
namespace syc::ir::passes {
namespace {
struct compare_ir {
bool operator()(const IR &a, const IR &b) const {
if (a.op_code != b.op_code) return a.op_code < b.op_code;
#define F(op1) \
if (a.op1.type != b.op1.type) return a.op1.type < b.op1.type; \
if (a.op1.is_var() && a.op1.name != b.op1.name) \
return a.op1.name < b.op1.name; \
if (a.op1.is_imm() && a.op1.value != b.op1.value) \
return a.op1.value < b.op1.value;
F(op1)
F(op2)
F(op3)
#undef F
return false;
}
};
} // namespace
void local_common_subexpression_elimination(IRList &ir) {
std::map<IR, int, compare_ir> maybe_opt;
std::set<std::string> mutability_var;
syc::assembly::Context ctx(&ir, ir.begin());
for (auto it = ir.begin(); it != ir.end(); it++) {
ctx.set_ir_timestamp(*it);
}
for (auto it = ir.begin(); it != ir.end(); it++) {
if (it->op_code == OpCode::PHI_MOV) {
mutability_var.insert(it->dest.name);
}
}
for (auto it = ir.begin(); it != ir.end(); it++) {
if (it->op_code == OpCode::LABEL || it->op_code == OpCode::FUNCTION_BEGIN) {
maybe_opt.clear();
}
if (it->dest.is_var() && it->dest.name[0] == '%' && !it->op1.is_null() &&
!it->op2.is_null() && it->op_code != OpCode::MOVEQ &&
it->op_code != OpCode::MOVNE && it->op_code != OpCode::MOVGT &&
it->op_code != OpCode::MOVGE && it->op_code != OpCode::MOVLT &&
it->op_code != OpCode::MOVLE &&
it->op_code != OpCode::MALLOC_IN_STACK && it->op_code != OpCode::LOAD &&
it->op_code != OpCode::MOV && it->op_code != OpCode::PHI_MOV) {
if (maybe_opt.find(*it) != maybe_opt.end()) {
auto opt_ir = maybe_opt.find(*it)->first;
auto time = maybe_opt.find(*it)->second;
if (mutability_var.find(opt_ir.dest.name) == mutability_var.end() &&
mutability_var.find(it->dest.name) == mutability_var.end() &&
(!it->op1.is_var() ||
mutability_var.find(it->op1.name) == mutability_var.end()) &&
(!it->op2.is_var() ||
mutability_var.find(it->op2.name) == mutability_var.end())) {
// 避免相距太远子表达式有望延长生命周期而溢出
if (ctx.ir_to_time[&*it] - time < 20) {
it->print();
opt_ir.print();
IR temp(OpCode::MOV, it->dest, opt_ir.dest);
temp.print();
*it = temp;
}
}
}
maybe_opt.insert({*it, ctx.ir_to_time[&*it]});
}
}
}
} // namespace syc::ir::passes
| 3,563
|
C++
|
.cpp
| 90
| 34
| 80
| 0.585622
|
nzh63/syc
| 39
| 13
| 0
|
GPL-3.0
|
9/20/2024, 10:45:34 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,859
|
invariant_code_motion.cpp
|
nzh63_syc/src/ir/optimize/passes/invariant_code_motion.cpp
|
/*
* syc, a compiler for SysY
* Copyright (C) 2020-2021 nzh63, skywf21
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#include "ir/optimize/passes/invariant_code_motion.h"
#include <set>
#include "config.h"
#include "ir/ir.h"
namespace syc::ir::passes {
bool loop_invariant_code_motion(IRList &ir_before, IRList &ir_cond,
IRList &ir_jmp, IRList &ir_do,
IRList &ir_continue) {
std::set<std::string> never_write_var;
bool do_optimize = false;
for (auto irs :
std::vector<IRList *>({&ir_cond, &ir_jmp, &ir_do, &ir_continue})) {
for (auto &ir : *irs) {
if (ir.op_code == OpCode::LOAD || ir.op_code == OpCode::CALL) {
continue;
}
ir.forEachOp(
[&](OpName op) {
if (op.is_var()) {
never_write_var.insert(op.name);
}
},
false);
}
}
bool has_function_call = false;
for (auto irs :
std::vector<IRList *>({&ir_cond, &ir_jmp, &ir_do, &ir_continue})) {
for (auto &ir : *irs) {
if (ir.dest.is_var()) {
never_write_var.erase(ir.dest.name);
}
if (ir.op_code == OpCode::CALL) {
has_function_call = true;
}
}
}
for (auto irs :
std::vector<IRList *>({&ir_cond, &ir_jmp, &ir_do, &ir_continue})) {
for (auto &ir : *irs) {
bool can_optimize = true;
if (ir.op_code == OpCode::LOAD || ir.op_code == OpCode::CALL ||
ir.op_code == OpCode::PHI_MOV || ir.op_code == OpCode::LABEL ||
ir.op_code == OpCode::CMP || ir.op_code == OpCode::MOVEQ ||
ir.op_code == OpCode::MOVNE || ir.op_code == OpCode::MOVGT ||
ir.op_code == OpCode::MOVGE || ir.op_code == OpCode::MOVLT ||
ir.op_code == OpCode::MOVLE || ir.op_code == OpCode::NOOP) {
can_optimize = false;
}
// MOV可以优化但不应优化,这只会延长斑斓的生存周期,使得寄存器分配效果变差
if (ir.op_code == OpCode::MOV) {
can_optimize = false;
}
can_optimize &= !ir.some(
[&](OpName op) {
return op.is_var() &&
never_write_var.find(op.name) == never_write_var.end();
},
false);
if (!ir.dest.is_var()) {
can_optimize = false;
}
if (has_function_call && ir.some(&OpName::is_global_var, false)) {
can_optimize = false;
}
if (can_optimize) {
ir_before.push_back(ir);
ir.op_code = OpCode::NOOP;
ir.dest = OpName();
ir.op1 = OpName();
ir.op2 = OpName();
ir.op3 = OpName();
do_optimize = true;
}
}
}
return do_optimize;
}
} // namespace syc::ir::passes
| 3,345
|
C++
|
.cpp
| 96
| 27.3125
| 74
| 0.570485
|
nzh63/syc
| 39
| 13
| 0
|
GPL-3.0
|
9/20/2024, 10:45:34 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,860
|
unreachable_code_elimination.cpp
|
nzh63_syc/src/ir/optimize/passes/unreachable_code_elimination.cpp
|
/*
* syc, a compiler for SysY
* Copyright (C) 2020-2021 nzh63, skywf21
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#include "ir/optimize/passes/unreachable_code_elimination.h"
#include "config.h"
#include "ir/ir.h"
namespace syc::ir::passes {
void unreachable_code_elimination(IRList &ir) {
for (auto it = ir.begin(); it != ir.end(); it++) {
if (it->op_code == OpCode::RET || it->op_code == OpCode::JMP) {
for (auto next = std::next(it); next != ir.end();) {
if (next->op_code != OpCode::LABEL &&
next->op_code != OpCode::FUNCTION_END) {
if (next->op_code != OpCode::NOOP && next->op_code != OpCode::INFO)
next = ir.erase(next);
else
next++;
} else {
break;
}
}
}
}
}
} // namespace syc::ir::passes
| 1,429
|
C++
|
.cpp
| 39
| 32.25641
| 77
| 0.651297
|
nzh63/syc
| 39
| 13
| 0
|
GPL-3.0
|
9/20/2024, 10:45:34 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,861
|
local_common_constexpr_function_elimination.cpp
|
nzh63_syc/src/ir/optimize/passes/local_common_constexpr_function_elimination.cpp
|
/*
* syc, a compiler for SysY
* Copyright (C) 2020-2021 nzh63, skywf21
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#include "ir/optimize/passes/local_common_constexpr_function_elimination.h"
#include <set>
#include <string>
#include <unordered_map>
#include "assembly/generate/context.h"
#include "config.h"
#include "ir/ir.h"
namespace syc::ir::passes {
namespace {
bool is_constexpr_function(const IRList &irs, IRList::const_iterator begin,
IRList::const_iterator end) {
for (auto it = begin; it != end; it++) {
auto &ir = *it;
if (ir.some(&OpName::is_global_var)) {
return false;
}
if (ir.op_code == OpCode::INFO && ir.label == "NOT CONSTEXPR") {
return false;
}
}
return true;
}
std::set<std::string> find_constexpr_function(const IRList &irs) {
std::set<std::string> ret;
IRList::const_iterator function_begin_it;
for (auto outter_it = irs.begin(); outter_it != irs.end(); outter_it++) {
auto &ir = *outter_it;
if (ir.op_code == OpCode::FUNCTION_BEGIN) {
function_begin_it = outter_it;
} else if (ir.op_code == OpCode::FUNCTION_END) {
if (is_constexpr_function(irs, function_begin_it, outter_it)) {
ret.insert(function_begin_it->label);
}
}
}
return ret;
}
void _local_common_constexpr_function_elimination(
IRList &ir, const std::set<std::string> &constexpr_function) {
typedef std::unordered_map<int, OpName> CallArgs;
std::unordered_map<std::string, std::vector<std::pair<CallArgs, std::string>>>
calls;
for (auto it = ir.begin(); it != ir.end(); it++) {
if (it->op_code == OpCode::LABEL || it->op_code == OpCode::FUNCTION_BEGIN) {
calls.clear();
}
if (it->op_code == OpCode::CALL) {
CallArgs args;
auto function_name = it->label;
if (constexpr_function.find(function_name) == constexpr_function.end()) {
continue;
}
auto it2 = std::prev(it);
while (it2->op_code == OpCode::SET_ARG) {
args.insert({it2->dest.value, it2->op1});
it2--;
}
bool can_optimize = true;
for (auto kv : args) {
if (kv.second.is_var()) {
if (kv.second.name[0] != '%') {
can_optimize = false;
break;
}
if (kv.second.name.substr(0, 2) == "%&") {
can_optimize = false;
break;
}
}
}
if (!can_optimize) continue;
bool has_same_call = false;
auto eq = [](const OpName &a, const OpName &b) -> bool {
if (a.type != b.type) return false;
if (a.is_imm()) return a.value == b.value;
if (a.is_var()) return a.name == b.name;
return true;
};
std::string prev_call_result;
for (const auto &prev_call : calls[function_name]) {
bool same = true;
const auto &prev_call_args = prev_call.first;
prev_call_result = prev_call.second;
for (auto &kv : args) {
if (prev_call_args.find(kv.first) == prev_call_args.end()) {
same = false;
break;
}
if (!eq(kv.second, prev_call_args.at(kv.first))) {
same = false;
break;
}
}
if (same) {
has_same_call = true;
break;
}
}
if (!has_same_call) {
if (it->dest.is_var()) {
calls[function_name].push_back({args, it->dest.name});
}
} else {
if (it->dest.is_var()) {
it->op_code = OpCode::MOV;
it->op1 = OpName(prev_call_result);
it->op2 = OpName();
it->op3 = OpName();
it->label.clear();
}
}
}
}
}
} // namespace
void local_common_constexpr_function_elimination(IRList &ir) {
return _local_common_constexpr_function_elimination(
ir, find_constexpr_function(ir));
}
} // namespace syc::ir::passes
| 4,512
|
C++
|
.cpp
| 137
| 26.664234
| 80
| 0.593364
|
nzh63/syc
| 39
| 13
| 0
|
GPL-3.0
|
9/20/2024, 10:45:34 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,862
|
context.cpp
|
nzh63_syc/src/ir/generate/context.cpp
|
/*
* syc, a compiler for SysY
* Copyright (C) 2020-2021 nzh63, skywf21
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#include "context.h"
#include <exception>
namespace syc::ir {
VarInfo::VarInfo(std::string name, bool is_array, std::vector<int> shape)
: name(name), shape(shape), is_array(is_array) {}
ConstInfo::ConstInfo(std::vector<int> value, bool is_array,
std::vector<int> shape)
: value(value), shape(shape), is_array(is_array) {}
ConstInfo::ConstInfo(int value) : value({value}), shape({}), is_array(false) {}
Context::Context() {
this->insert_symbol("_sysy_l1", VarInfo("@&^_sysy_l1", true, {1024}));
this->insert_symbol("_sysy_l2", VarInfo("@&^_sysy_l2", true, {1024}));
this->insert_symbol("_sysy_h", VarInfo("@&^_sysy_h", true, {1024}));
this->insert_symbol("_sysy_m", VarInfo("@&^_sysy_m", true, {1024}));
this->insert_symbol("_sysy_s", VarInfo("@&^_sysy_s", true, {1024}));
this->insert_symbol("_sysy_us", VarInfo("@&^_sysy_us", true, {1024}));
this->insert_symbol("_sysy_idx", VarInfo("@^_sysy_idx", false));
}
unsigned Context::get_id() { return ++id; }
void Context::insert_symbol(std::string name, VarInfo value) {
symbol_table.back().insert({name, value});
}
void Context::insert_const(std::string name, ConstInfo value) {
const_table.back().insert({name, value});
}
void Context::insert_const_assign(std::string name, ConstInfo value) {
const_assign_table.back().insert({name, value});
}
VarInfo& Context::find_symbol(std::string name) {
for (int i = symbol_table.size() - 1; i >= 0; i--) {
auto find = symbol_table[i].find(name);
if (find != symbol_table[i].end()) return find->second;
}
throw std::out_of_range("No such symbol:" + name);
}
ConstInfo& Context::find_const(std::string name) {
for (int i = const_table.size() - 1; i >= 0; i--) {
auto find = const_table[i].find(name);
if (find != const_table[i].end()) return find->second;
}
throw std::out_of_range("No such const:" + name);
}
ConstInfo& Context::find_const_assign(std::string name) {
for (int i = const_assign_table.size() - 1; i >= 0; i--) {
auto find = const_assign_table[i].find(name);
if (find != const_assign_table[i].end()) return find->second;
}
throw std::out_of_range("No such const:" + name);
}
void Context::create_scope() {
symbol_table.push_back({});
const_table.push_back({});
const_assign_table.push_back({});
}
void Context::end_scope() {
symbol_table.pop_back();
const_table.pop_back();
const_assign_table.pop_back();
}
bool Context::is_global() {
return symbol_table.size() == 1 && const_table.size() == 1;
}
bool Context::in_loop() { return !loop_label.empty(); }
} // namespace syc::ir
| 3,321
|
C++
|
.cpp
| 81
| 38.382716
| 79
| 0.672136
|
nzh63/syc
| 39
| 13
| 0
|
GPL-3.0
|
9/20/2024, 10:45:34 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,863
|
generate_ir.cpp
|
nzh63_syc/src/ir/generate/generate_ir.cpp
|
/*
* syc, a compiler for SysY
* Copyright (C) 2020-2021 nzh63, skywf21
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#include <cassert>
#include <exception>
#include <unordered_set>
#include "ast/node.h"
#include "config.h"
#include "ir/generate/context.h"
#include "ir/ir.h"
#include "ir/optimize/optimize.h"
//
#include "parser.hpp"
using namespace syc::ir;
namespace syc::ast::node {
void BaseNode::_generate_ir(Context& ctx, IRList& ir) {
this->print();
throw std::runtime_error("Can't generate IR for this node.");
}
void Root::_generate_ir(Context& ctx, IRList& ir) {
for (auto& i : this->body) {
i->generate_ir(ctx, ir);
}
}
void VarDeclare::_generate_ir(Context& ctx, IRList& ir) {
if (ctx.is_global()) {
ir.emplace_back(OpCode::DATA_BEGIN, "@" + this->name.name);
ir.emplace_back(OpCode::DATA_WORD, OpName(0));
ir.emplace_back(OpCode::DATA_END);
ctx.insert_symbol(this->name.name, VarInfo("@" + this->name.name));
} else {
ctx.insert_symbol(this->name.name,
VarInfo("%" + std::to_string(ctx.get_id())));
}
}
void VarDeclareWithInit::_generate_ir(Context& ctx, IRList& ir) {
if (ctx.is_global()) {
ir.emplace_back(OpCode::DATA_BEGIN, "@" + this->name.name);
ir.emplace_back(OpCode::DATA_WORD, OpName(this->value.eval(ctx)));
ir.emplace_back(OpCode::DATA_END);
ctx.insert_symbol(this->name.name, VarInfo("@" + this->name.name));
if (this->is_const) {
ctx.insert_const(this->name.name, ConstInfo(this->value.eval(ctx)));
}
} else {
ctx.insert_symbol(this->name.name,
VarInfo("%" + std::to_string(ctx.get_id())));
Assignment assignment(this->name, this->value);
assignment.line = this->line;
assignment.column = this->column;
assignment.generate_ir(ctx, ir);
if (this->is_const) {
ctx.insert_const(this->name.name, ConstInfo(this->value.eval(ctx)));
}
}
}
void ArrayDeclare::_generate_ir(Context& ctx, IRList& ir) {
std::vector<int> shape;
for (auto i : this->name.shape) shape.push_back(i->eval(ctx));
int size = 1;
for (auto i : shape) size *= i;
if (ctx.is_global()) {
ir.emplace_back(OpCode::DATA_BEGIN, "@&" + this->name.name.name);
ir.emplace_back(OpCode::DATA_SPACE, size * 4);
ir.emplace_back(OpCode::DATA_END);
ctx.insert_symbol(this->name.name.name,
VarInfo("@&" + this->name.name.name, true, shape));
} else {
ctx.insert_symbol(
this->name.name.name,
VarInfo("%&" + std::to_string(ctx.get_id()), true, shape));
ir.push_back(IR(OpCode::MALLOC_IN_STACK,
OpName(ctx.find_symbol(this->name.name.name).name),
size * 4));
}
}
namespace {
void _ArrayDeclareWithInit(ArrayDeclareWithInit& that,
std::vector<ArrayDeclareInitValue*> v,
std::vector<Expression*> shape,
std::vector<int>& init_value, int index,
Context& ctx, IRList& ir) {
const auto output_const = [&](int value, bool is_space = false) {
if (is_space) {
if (ctx.is_global()) {
for (int i = 0; i < value; i++) init_value.push_back(0);
ir.emplace_back(OpCode::DATA_SPACE, value * 4);
} else {
for (int i = 0; i < value; i++) {
init_value.push_back(0);
}
}
} else {
init_value.push_back(value);
if (ctx.is_global())
ir.emplace_back(OpCode::DATA_WORD, value);
else
ir.emplace_back(OpCode::STORE, OpName(),
OpName(ctx.find_symbol(that.name.name.name).name),
init_value.size() * 4 - 4, value);
}
};
const auto output = [&](OpName value, bool is_space = false) {
if (is_space) {
if (ctx.is_global()) {
for (int i = 0; i < value.value; i++) init_value.push_back(0);
ir.emplace_back(OpCode::DATA_SPACE, value.value * 4);
} else {
for (int i = 0; i < value.value; i++) {
init_value.push_back(0);
}
}
} else {
init_value.push_back(0);
if (ctx.is_global())
ir.emplace_back(OpCode::DATA_WORD, value);
else
ir.emplace_back(OpCode::STORE, OpName(),
OpName(ctx.find_symbol(that.name.name.name).name),
init_value.size() * 4 - 4, value);
}
};
if (index >= shape.size()) return;
int size = 1, write_size = 0;
for (auto it = shape.begin() + index; it != shape.end(); it++)
size *= (*it)->eval(ctx);
int size_this_shape = size / shape[index]->eval(ctx);
for (auto i : v) {
if (i->is_number) {
write_size++;
try {
if (that.is_const)
output_const(i->value->eval(ctx));
else
output(i->value->eval(ctx));
} catch (...) {
output(i->value->eval_runtime(ctx, ir));
}
} else {
if (write_size % size_this_shape != 0) {
if (that.is_const)
output_const(size_this_shape - (write_size % size_this_shape), true);
else
output(size_this_shape - (write_size % size_this_shape), true);
}
_ArrayDeclareWithInit(that, i->value_list, shape, init_value, index + 1,
ctx, ir);
write_size += size_this_shape;
}
}
if (that.is_const)
output_const(size - write_size, true);
else
output(size - write_size, true);
}
} // namespace
void ArrayDeclareWithInit::_generate_ir(Context& ctx, IRList& ir) {
std::vector<int> shape;
for (auto i : this->name.shape) shape.push_back(i->eval(ctx));
int size = 1;
for (auto i : shape) size *= i;
std::vector<int> init_value;
if (ctx.is_global()) {
ir.emplace_back(OpCode::DATA_BEGIN, "@&" + this->name.name.name);
_ArrayDeclareWithInit(*this, this->value.value_list, this->name.shape,
init_value, 0, ctx, ir);
ir.emplace_back(OpCode::DATA_END);
ctx.insert_symbol(this->name.name.name,
VarInfo("@&" + this->name.name.name, true, shape));
} else {
ctx.insert_symbol(
this->name.name.name,
VarInfo("%&" + std::to_string(ctx.get_id()), true, shape));
ir.emplace_back(OpCode::MALLOC_IN_STACK,
OpName(ctx.find_symbol(this->name.name.name).name),
size * 4);
ir.emplace_back(OpCode::SET_ARG, 0,
OpName(ctx.find_symbol(this->name.name.name).name));
ir.emplace_back(OpCode::SET_ARG, 1, OpName(0));
ir.emplace_back(OpCode::SET_ARG, 2, OpName(size * 4));
ir.emplace_back(OpCode::CALL, "memset");
_ArrayDeclareWithInit(*this, this->value.value_list, this->name.shape,
init_value, 0, ctx, ir);
}
}
void FunctionDefine::_generate_ir(Context& ctx, IRList& ir) {
ctx.create_scope();
int arg_len = this->args.list.size();
ir.emplace_back(OpCode::FUNCTION_BEGIN, OpName(), arg_len, this->name.name);
for (int i = 0; i < arg_len; i++) {
auto identifier = dynamic_cast<ArrayIdentifier*>(&this->args.list[i]->name);
if (identifier) {
std::vector<int> shape;
for (auto i : identifier->shape) shape.push_back(i->eval(ctx));
auto tmp = "%" + std::to_string(ctx.get_id());
ir.emplace_back(OpCode::MOV, tmp, OpName("$arg" + std::to_string(i)));
ctx.insert_symbol(identifier->name.name, VarInfo(tmp, true, shape));
ir.emplace_back(OpCode::INFO, "NOT CONSTEXPR");
} else {
auto tmp = "%" + std::to_string(ctx.get_id());
ir.emplace_back(OpCode::MOV, tmp, OpName("$arg" + std::to_string(i)));
ctx.insert_symbol(this->args.list[i]->name.name, VarInfo(tmp));
}
}
this->body.generate_ir(ctx, ir);
if (this->return_type == INT) {
ir.emplace_back(OpCode::RET, OpName(), 0);
} else {
ir.emplace_back(OpCode::RET);
}
ir.emplace_back(OpCode::FUNCTION_END, this->name.name);
ctx.end_scope();
}
void Block::_generate_ir(Context& ctx, IRList& ir) {
ctx.create_scope();
for (auto i : this->statements) i->generate_ir(ctx, ir);
ctx.end_scope();
}
void DeclareStatement::_generate_ir(Context& ctx, IRList& ir) {
for (auto i : this->list) i->generate_ir(ctx, ir);
}
void VoidStatement::_generate_ir(Context& ctx, IRList& ir) {}
void EvalStatement::_generate_ir(Context& ctx, IRList& ir) {
this->value.eval_runtime(ctx, ir);
}
void ReturnStatement::_generate_ir(Context& ctx, IRList& ir) {
if (this->value != NULL)
ir.emplace_back(OpCode::RET, OpName(), this->value->eval_runtime(ctx, ir));
else
ir.emplace_back(OpCode::RET);
}
void ContinueStatement::_generate_ir(Context& ctx, IRList& ir) {
ctx.loop_continue_symbol_snapshot.top().push_back(ctx.symbol_table);
for (auto& i : ctx.loop_continue_phi_move.top()) {
ir.emplace_back(
OpCode::MOV, i.second,
OpName(
ctx.symbol_table[i.first.first].find(i.first.second)->second.name));
}
ir.emplace_back(OpCode::JMP, ".L.LOOP_" + ctx.loop_label.top() + "_CONTINUE");
}
void BreakStatement::_generate_ir(Context& ctx, IRList& ir) {
ctx.loop_break_symbol_snapshot.top().push_back(ctx.symbol_table);
for (auto& i : ctx.loop_break_phi_move.top()) {
ir.emplace_back(
OpCode::MOV, i.second,
OpName(
ctx.symbol_table[i.first.first].find(i.first.second)->second.name));
}
ir.emplace_back(OpCode::JMP, ".L.LOOP_" + ctx.loop_label.top() + "_END");
}
void WhileStatement::_generate_ir(Context& ctx, IRList& ir) {
ctx.create_scope();
ctx.loop_label.push(std::to_string(ctx.get_id()));
ctx.loop_var.push({});
// 此处的块与基本快有所不同,见下图
/* ┌───────────┐
COND:│ cmp │
├───────────┤
JMP:│ // jne DO │
│ jeq END │
├───────────┤
DO:│ ... │
│ break; │
│ continue; │
├───────────┤
CONTINUE:│ jmp COND │
├───────────┤
END:│ │
└───────────┘
*/
// 在 `jne END`、`break;`、`continue`前均需要插入 PHI_MOV
// BRFORE
Context ctx_before = ctx;
IRList ir_before;
// COND
Context ctx_cond = ctx_before;
IRList ir_cond;
ir_cond.emplace_back(OpCode::LABEL,
".L.LOOP_" + ctx.loop_label.top() + "_BEGIN");
auto cond = this->cond.eval_cond_runtime(ctx_cond, ir_cond);
// JMP
IRList ir_jmp;
ir_jmp.emplace_back(cond.else_op, ".L.LOOP_" + ctx.loop_label.top() + "_END");
// DO (fake)
Context ctx_do_fake = ctx_cond;
IRList ir_do_fake;
ctx_do_fake.loop_continue_symbol_snapshot.push({});
ctx_do_fake.loop_break_symbol_snapshot.push({});
ctx_do_fake.loop_continue_phi_move.push({});
ctx_do_fake.loop_break_phi_move.push({});
this->dostmt.generate_ir(ctx_do_fake, ir_do_fake);
ctx_do_fake.loop_continue_symbol_snapshot.top().push_back(
ctx_do_fake.symbol_table);
// DO
Context ctx_do = ctx_cond;
IRList ir_do;
ctx_do.loop_continue_symbol_snapshot.push({});
ctx_do.loop_break_symbol_snapshot.push({});
ctx_do.loop_continue_phi_move.push({});
ctx_do.loop_break_phi_move.push({});
for (int i = 0; i < ctx_do_fake.symbol_table.size(); i++) {
for (auto& symbol : ctx_do_fake.symbol_table[i]) {
for (int j = 0;
j < ctx_do_fake.loop_continue_symbol_snapshot.top().size(); j++) {
if (symbol.second.name !=
ctx_do_fake.loop_continue_symbol_snapshot.top()[j][i]
.find(symbol.first)
->second.name) {
ctx_do.loop_continue_phi_move.top().insert(
{{i, symbol.first}, "%" + std::to_string(ctx_do.get_id())});
break;
}
}
}
}
for (int i = 0; i < ctx_cond.symbol_table.size(); i++) {
for (auto& symbol : ctx_cond.symbol_table[i]) {
for (int j = 0; j < ctx_do_fake.loop_break_symbol_snapshot.top().size();
j++) {
const auto do_name = ctx_do_fake.loop_break_symbol_snapshot.top()[j][i]
.find(symbol.first)
->second.name;
if (symbol.second.name != do_name) {
ctx_do.loop_break_phi_move.top().insert(
{{i, symbol.first}, symbol.second.name});
break;
}
}
}
}
ir_do.emplace_back(OpCode::LABEL, ".L.LOOP_" + ctx.loop_label.top() + "_DO");
this->dostmt.generate_ir(ctx_do, ir_do);
for (auto& i : ctx_do.loop_continue_phi_move.top()) {
ir_do.emplace_back(OpCode::PHI_MOV, i.second,
OpName(ctx_do.symbol_table[i.first.first]
.find(i.first.second)
->second.name));
}
for (auto& i : ctx_do.loop_continue_phi_move.top()) {
ctx_do.symbol_table[i.first.first].find(i.first.second)->second.name =
i.second;
}
for (auto& i : ctx_do.loop_break_phi_move.top()) {
ctx_cond.symbol_table[i.first.first].find(i.first.second)->second.name =
i.second;
}
ctx_do.loop_continue_symbol_snapshot.pop();
ctx_do.loop_break_symbol_snapshot.pop();
ctx_do.loop_continue_phi_move.pop();
ctx_do.loop_break_phi_move.pop();
// CONTINUE
Context ctx_continue = ctx_do;
IRList ir_continue;
ir_continue.emplace_back(OpCode::LABEL,
".L.LOOP_" + ctx.loop_label.top() + "_CONTINUE");
ir_cond.clear();
ir_cond.emplace_back(OpCode::LABEL,
".L.LOOP_" + ctx.loop_label.top() + "_BEGIN");
for (int i = 0; i < ctx_before.symbol_table.size(); i++) {
for (const auto& symbol_before : ctx_before.symbol_table[i]) {
const auto& symbo_continue =
*ctx_continue.symbol_table[i].find(symbol_before.first);
if (symbol_before.second.name != symbo_continue.second.name) {
const std::string new_name = "%" + std::to_string(ctx_before.get_id());
ir_before.emplace_back(OpCode::PHI_MOV, new_name,
OpName(symbol_before.second.name));
ir_before.back().phi_block = ir_cond.begin();
ir_continue.emplace_back(OpCode::PHI_MOV, new_name,
OpName(symbo_continue.second.name));
ctx_before.symbol_table[i].find(symbol_before.first)->second.name =
new_name;
ctx_before.loop_var.top().push_back(new_name);
}
}
}
ir_continue.emplace_back(OpCode::JMP,
".L.LOOP_" + ctx.loop_label.top() + "_BEGIN");
ir_continue.emplace_back(OpCode::LABEL,
".L.LOOP_" + ctx.loop_label.top() + "_END");
//////////////////////////////////////////////////////////////////////
// COND real
ctx_cond = ctx_before;
cond = this->cond.eval_cond_runtime(ctx_cond, ir_cond);
// JMP real
ir_jmp.clear();
ir_jmp.emplace_back(cond.else_op, ".L.LOOP_" + ctx.loop_label.top() + "_END");
// DO (fake) real
ctx_do_fake = ctx_cond;
ir_do_fake.clear();
ctx_do_fake.loop_continue_symbol_snapshot.push({});
ctx_do_fake.loop_break_symbol_snapshot.push({});
ctx_do_fake.loop_continue_phi_move.push({});
ctx_do_fake.loop_break_phi_move.push({});
this->dostmt.generate_ir(ctx_do_fake, ir_do_fake);
ctx_do_fake.loop_continue_symbol_snapshot.top().push_back(
ctx_do_fake.symbol_table);
// DO real
ctx_do = ctx_cond;
ir_do.clear();
ir_continue.clear();
ir_continue.emplace_back(OpCode::NOOP);
IRList end;
end.emplace_back(OpCode::LABEL, ".L.LOOP_" + ctx.loop_label.top() + "_END");
ctx_do.loop_continue_symbol_snapshot.push({});
ctx_do.loop_break_symbol_snapshot.push({});
ctx_do.loop_continue_phi_move.push({});
ctx_do.loop_break_phi_move.push({});
for (int i = 0; i < ctx_do_fake.symbol_table.size(); i++) {
for (auto& symbol : ctx_do_fake.symbol_table[i]) {
for (int j = 0;
j < ctx_do_fake.loop_continue_symbol_snapshot.top().size(); j++) {
if (symbol.second.name !=
ctx_do_fake.loop_continue_symbol_snapshot.top()[j][i]
.find(symbol.first)
->second.name) {
ctx_do.loop_continue_phi_move.top().insert(
{{i, symbol.first}, "%" + std::to_string(ctx_do.get_id())});
break;
}
}
}
}
for (int i = 0; i < ctx_cond.symbol_table.size(); i++) {
for (auto& symbol : ctx_cond.symbol_table[i]) {
for (int j = 0; j < ctx_do_fake.loop_break_symbol_snapshot.top().size();
j++) {
const auto do_name = ctx_do_fake.loop_break_symbol_snapshot.top()[j][i]
.find(symbol.first)
->second.name;
if (symbol.second.name != do_name) {
ctx_do.loop_break_phi_move.top().insert(
{{i, symbol.first}, symbol.second.name});
break;
}
}
}
}
ir_do.emplace_back(OpCode::LABEL, ".L.LOOP_" + ctx.loop_label.top() + "_DO");
this->dostmt.generate_ir(ctx_do, ir_do);
for (auto& i : ctx_do.loop_continue_phi_move.top()) {
ir_do.emplace_back(OpCode::PHI_MOV, i.second,
OpName(ctx_do.symbol_table[i.first.first]
.find(i.first.second)
->second.name));
ir_do.back().phi_block = end.begin();
}
for (auto& i : ctx_do.loop_continue_phi_move.top()) {
ctx_do.symbol_table[i.first.first].find(i.first.second)->second.name =
i.second;
}
for (auto& i : ctx_do.loop_break_phi_move.top()) {
ctx_cond.symbol_table[i.first.first].find(i.first.second)->second.name =
i.second;
}
ctx_do.loop_continue_symbol_snapshot.pop();
ctx_do.loop_break_symbol_snapshot.pop();
ctx_do.loop_continue_phi_move.pop();
ctx_do.loop_break_phi_move.pop();
// CONTINUE real
ctx_continue = ctx_do;
ir_continue.emplace_back(OpCode::LABEL,
".L.LOOP_" + ctx.loop_label.top() + "_CONTINUE");
for (int i = 0; i < ctx_before.symbol_table.size(); i++) {
for (const auto& symbol_before : ctx_before.symbol_table[i]) {
const auto& symbo_continue =
*ctx_continue.symbol_table[i].find(symbol_before.first);
if (symbol_before.second.name != symbo_continue.second.name) {
ir_continue.emplace_back(OpCode::PHI_MOV, symbol_before.second.name,
OpName(symbo_continue.second.name));
ir_continue.back().phi_block = ir_cond.begin();
}
}
}
ir_continue.emplace_back(OpCode::JMP,
".L.LOOP_" + ctx.loop_label.top() + "_BEGIN");
/////////////////////////////////////////////////////////
if (config::optimize_level > 0)
syc::ir::optimize_loop_ir(ir_before, ir_cond, ir_jmp, ir_do, ir_continue);
/////////////////////////////////////////////////////////
// 为 continue 块增加假读以延长其生命周期
std::unordered_set<std::string> written;
for (const auto& irs : std::vector<IRList*>{&ir_cond, &ir_jmp, &ir_do}) {
for (const auto& i : *irs) {
if (i.dest.is_var()) written.insert(i.dest.name);
i.forEachOp(
[&](OpName op) {
if (op.is_var()) {
if (!written.count(op.name)) {
ir_continue.emplace_back(OpCode::NOOP, OpName(), op);
}
}
},
false);
}
}
/////////////////////////////////////////////////////////
ctx = ctx_cond;
ctx.id = ctx_continue.id;
ir.splice(ir.end(), ir_before);
ir.splice(ir.end(), ir_cond);
ir.splice(ir.end(), ir_jmp);
ir.splice(ir.end(), ir_do);
ir.splice(ir.end(), ir_continue);
ir.splice(ir.end(), end);
ctx.loop_var.pop();
ctx.loop_label.pop();
ctx.end_scope();
}
void IfElseStatement::_generate_ir(Context& ctx, IRList& ir) {
ctx.create_scope();
auto id = std::to_string(ctx.get_id());
auto cond = this->cond.eval_cond_runtime(ctx, ir);
if (cond.then_op == OpCode::JMP) {
this->thenstmt.generate_ir(ctx, ir);
return;
}
if (cond.else_op == OpCode::JMP) {
this->elsestmt.generate_ir(ctx, ir);
return;
}
ir.emplace_back(cond.else_op, ".L.IF_" + id + "_ELSE");
IRList ir_then, ir_else;
Context ctx_then = ctx, ctx_else = ctx;
ctx_then.create_scope();
this->thenstmt.generate_ir(ctx_then, ir_then);
ctx_then.end_scope();
ctx_else.id = ctx_then.id;
ctx_else.create_scope();
this->elsestmt.generate_ir(ctx_else, ir_else);
ctx_else.end_scope();
ctx.id = ctx_else.id;
IRList end;
end.emplace_back(OpCode::LABEL, ".L.IF_" + id + "_END");
for (int i = 0; i < ctx_then.symbol_table.size(); i++) {
for (auto& s : ctx_then.symbol_table[i]) {
if (s.second.name !=
ctx_else.symbol_table[i].find(s.first)->second.name) {
auto& v = ctx.find_symbol(s.first);
assert(!v.is_array);
if (v.name[0] == '%') v.name = "%" + std::to_string(ctx.get_id());
ir_then.emplace_back(OpCode::PHI_MOV, v.name, OpName(s.second.name));
ir_then.back().phi_block = end.begin();
ir_else.emplace_back(
OpCode::PHI_MOV, v.name,
OpName(ctx_else.symbol_table[i].find(s.first)->second.name));
ir_else.back().phi_block = end.begin();
}
}
}
ir.splice(ir.end(), ir_then);
if (!ir_else.empty()) ir.emplace_back(OpCode::JMP, ".L.IF_" + id + "_END");
ir.emplace_back(OpCode::LABEL, ".L.IF_" + id + "_ELSE");
ir.splice(ir.end(), ir_else);
ir.splice(ir.end(), end);
if (!ctx.loop_break_symbol_snapshot.empty()) {
auto& br = ctx.loop_break_symbol_snapshot.top();
auto& then_br = ctx_then.loop_break_symbol_snapshot.top();
auto& else_br = ctx_else.loop_break_symbol_snapshot.top();
br.insert(br.end(), then_br.begin(), then_br.end());
br.insert(br.end(), else_br.begin(), else_br.end());
auto& co = ctx.loop_continue_symbol_snapshot.top();
auto& then_co = ctx_then.loop_continue_symbol_snapshot.top();
auto& else_co = ctx_else.loop_continue_symbol_snapshot.top();
co.insert(co.end(), then_co.begin(), then_co.end());
co.insert(co.end(), else_co.begin(), else_co.end());
}
ctx.end_scope();
}
void Assignment::_generate_ir(Context& ctx, IRList& ir) {
if (dynamic_cast<ArrayIdentifier*>(&this->lhs)) {
auto rhs = this->rhs.eval_runtime(ctx, ir);
dynamic_cast<ArrayIdentifier*>(&this->lhs)->store_runtime(rhs, ctx, ir);
} else {
auto rhs = this->rhs.eval_runtime(ctx, ir);
auto& v = ctx.find_symbol(this->lhs.name);
if (v.is_array) {
throw std::runtime_error("Can't assign to a array.");
} else {
if (rhs.is_var() && rhs.name[0] == '%' &&
(v.name[0] == '%' || v.name.substr(0, 4) == "$arg") &&
v.name[0] != '@') {
if (ctx.in_loop()) {
bool lhs_is_loop_var = false, rhs_is_loop_vae = false;
int lhs_level = -1, rhs_level = -1;
for (const auto& i : ctx.loop_var.top()) {
if (i == v.name) lhs_is_loop_var = true;
if (i == rhs.name) rhs_is_loop_vae = true;
}
if (lhs_is_loop_var && rhs_is_loop_vae) {
v.name = "%" + std::to_string(ctx.get_id());
ir.emplace_back(OpCode::MOV, v.name, rhs);
} else {
v.name = rhs.name;
}
} else {
v.name = rhs.name;
}
} else if (v.name[0] == '@') {
ir.emplace_back(OpCode::MOV, v.name, rhs);
} else {
v.name = "%" + std::to_string(ctx.get_id());
ir.emplace_back(OpCode::MOV, v.name, rhs);
if (config::optimize_level > 0 && rhs.is_imm()) {
ctx.insert_const_assign(v.name, rhs.value);
}
}
}
}
}
void AfterInc::_generate_ir(Context& ctx, IRList& ir) {
auto n0 = new Number(1);
auto n1 = new BinaryExpression(lhs, this->op, *n0);
auto n2 = new Assignment(lhs, *n1);
n0->line = n1->line = n2->line = this->line;
n0->column = n1->column = n2->column = this->column;
n2->generate_ir(ctx, ir);
delete n2;
delete n1;
delete n0;
}
void ArrayIdentifier::store_runtime(OpName value, Context& ctx, IRList& ir) {
auto v = ctx.find_symbol(this->name.name);
if (v.is_array) {
if (this->shape.size() == v.shape.size()) {
if (config::optimize_level > 0) {
try {
int index = 0, size = 4;
for (int i = this->shape.size() - 1; i >= 0; i--) {
index += this->shape[i]->eval(ctx) * size;
size *= v.shape[i];
}
ir.emplace_back(OpCode::STORE, OpName(), v.name, index, value);
return;
} catch (...) {
}
}
OpName index = "%" + std::to_string(ctx.get_id());
OpName size = "%" + std::to_string(ctx.get_id());
ir.emplace_back(
OpCode::SAL, index,
this->shape[this->shape.size() - 1]->eval_runtime(ctx, ir), 2);
if (this->shape.size() != 1) {
OpName tmp = "%" + std::to_string(ctx.get_id());
ir.emplace_back(OpCode::MOV, size, 4 * v.shape[this->shape.size() - 1]);
}
for (int i = this->shape.size() - 2; i >= 0; i--) {
OpName tmp = "%" + std::to_string(ctx.get_id());
OpName tmp2 = "%" + std::to_string(ctx.get_id());
ir.emplace_back(OpCode::IMUL, tmp, size,
this->shape[i]->eval_runtime(ctx, ir));
ir.emplace_back(OpCode::ADD, tmp2, index, tmp);
index = tmp2;
if (i != 0) {
OpName tmp = "%" + std::to_string(ctx.get_id());
ir.emplace_back(OpCode::IMUL, tmp, size, v.shape[i]);
size = tmp;
}
}
ir.emplace_back(OpCode::STORE, OpName(), v.name, index, value);
} else {
throw std::runtime_error(this->name.name + "'s shape unmatch.");
}
} else {
throw std::runtime_error(this->name.name + " is not a array.");
}
}
} // namespace syc::ast::node
| 26,500
|
C++
|
.cpp
| 682
| 31.633431
| 80
| 0.575385
|
nzh63/syc
| 39
| 13
| 0
|
GPL-3.0
|
9/20/2024, 10:45:34 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,864
|
generate.cpp
|
nzh63_syc/src/ir/generate/generate.cpp
|
/*
* syc, a compiler for SysY
* Copyright (C) 2020-2021 nzh63, skywf21
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#include "ir/generate/generate.h"
namespace syc::ir {
IRList generate(syc::ast::node::Root* root) {
ir::Context ctx;
IRList ir;
root->generate_ir(ctx, ir);
return ir;
}
} // namespace syc::ir
| 930
|
C++
|
.cpp
| 26
| 33.807692
| 73
| 0.740864
|
nzh63/syc
| 39
| 13
| 0
|
GPL-3.0
|
9/20/2024, 10:45:34 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,865
|
eval.cpp
|
nzh63_syc/src/ir/generate/eval.cpp
|
/*
* syc, a compiler for SysY
* Copyright (C) 2020-2021 nzh63, skywf21
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#include "ast/node.h"
//
#include <cassert>
#include "config.h"
#include "parser.hpp"
// 编译期间求值
namespace syc {
int ast::node::Expression::_eval(ir::Context& ctx) {
throw std::runtime_error("can not eval this value at compile time.");
}
int ast::node::Identifier::_eval(ir::Context& ctx) {
try {
auto v = ctx.find_const(this->name);
if (v.is_array) {
throw std::runtime_error(this->name + " is a array.");
} else {
return v.value.front();
}
} catch (std::out_of_range e) {
if (config::optimize_level > 0) {
return ctx.find_const_assign(ctx.find_symbol(this->name).name).value[0];
}
throw e;
}
}
int ast::node::ArrayIdentifier::_eval(ir::Context& ctx) {
auto v = ctx.find_const(this->name.name);
if (v.is_array) {
if (this->shape.size() == v.shape.size()) {
int index = 0, size = 1;
for (int i = this->shape.size() + 1; i >= 0; i++) {
index += this->shape[i]->eval(ctx) * size;
size *= v.shape[i];
}
return v.value[index];
} else {
throw std::runtime_error(this->name.name + "'s shape unmatch.");
}
} else {
throw std::runtime_error(this->name.name + " is not a array.");
}
}
int ast::node::ConditionExpression::_eval(ir::Context& ctx) {
return this->value.eval(ctx);
}
int ast::node::BinaryExpression::_eval(ir::Context& ctx) {
switch (this->op) {
case PLUS:
return lhs.eval(ctx) + rhs.eval(ctx);
break;
case MINUS:
return lhs.eval(ctx) - rhs.eval(ctx);
break;
case MUL:
return lhs.eval(ctx) * rhs.eval(ctx);
break;
case DIV:
return lhs.eval(ctx) / rhs.eval(ctx);
break;
case MOD:
return lhs.eval(ctx) % rhs.eval(ctx);
break;
case EQ:
return lhs.eval(ctx) == rhs.eval(ctx);
break;
case NE:
return lhs.eval(ctx) != rhs.eval(ctx);
break;
case GT:
return lhs.eval(ctx) > rhs.eval(ctx);
break;
case GE:
return lhs.eval(ctx) >= rhs.eval(ctx);
break;
case LT:
return lhs.eval(ctx) < rhs.eval(ctx);
break;
case LE:
return lhs.eval(ctx) <= rhs.eval(ctx);
break;
case AND:
return lhs.eval(ctx) && rhs.eval(ctx);
break;
case OR:
return lhs.eval(ctx) || rhs.eval(ctx);
break;
default:
throw std::runtime_error("Unknow OP");
break;
}
}
int ast::node::UnaryExpression::_eval(ir::Context& ctx) {
switch (this->op) {
case PLUS:
return rhs.eval(ctx);
break;
case MINUS:
return -rhs.eval(ctx);
break;
case NOT:
return !rhs.eval(ctx);
break;
default:
throw std::runtime_error("Unknow OP");
break;
}
}
int ast::node::CommaExpression::_eval(ir::Context& ctx) {
int ret;
for (auto v : values) {
ret = v->eval(ctx);
}
return ret;
}
int ast::node::Number::_eval(ir::Context& ctx) { return this->value; }
int ast::node::Assignment::_eval(ir::Context& ctx) {
if (dynamic_cast<ast::node::ArrayIdentifier*>(&this->lhs) != nullptr) {
throw std::runtime_error("only can eval a local var");
}
auto val = this->rhs.eval(ctx);
auto& v = ctx.find_symbol(this->lhs.name);
if (v.name[0] != '%' || v.is_array) {
throw std::runtime_error("only can eval a local var");
}
v.name = "%" + std::to_string(ctx.get_id());
ctx.insert_const_assign(v.name, val);
return val;
}
int ast::node::AfterInc::_eval(ir::Context& ctx) {
if (dynamic_cast<ast::node::ArrayIdentifier*>(&this->lhs) != nullptr) {
throw std::runtime_error("only can eval a local var");
}
auto val = this->lhs.eval(ctx);
auto& v = ctx.find_symbol(this->lhs.name);
if (v.name[0] != '%' || v.is_array) {
throw std::runtime_error("only can eval a local var");
}
v.name = "%" + std::to_string(ctx.get_id());
auto new_val = this->op == PLUS ? val + 1 : val - 1;
ctx.insert_const_assign(v.name, new_val);
return val;
}
int ast::node::EvalStatement::_eval(ir::Context& ctx) {
return this->value.eval(ctx);
}
// 运行期间求值
ir::OpName ast::node::Expression::_eval_runtime(ir::Context& ctx,
ir::IRList& ir) {
throw std::runtime_error("can not eval this value at run time.");
}
ir::OpName ast::node::Identifier::_eval_runtime(ir::Context& ctx,
ir::IRList& ir) {
auto v = ctx.find_symbol(this->name);
if (v.is_array) {
return v.name;
} else {
if (config::optimize_level > 0) {
try {
return ctx.find_const_assign(v.name).value[0];
} catch (...) {
}
}
return v.name;
}
}
ir::OpName ast::node::ArrayIdentifier::_eval_runtime(ir::Context& ctx,
ir::IRList& ir) {
auto v = ctx.find_symbol(this->name.name);
if (v.is_array) {
if (this->shape.size() == v.shape.size()) {
ir::OpName dest = "%" + std::to_string(ctx.get_id());
if (config::optimize_level > 0) {
try {
int index = 0, size = 4;
for (int i = this->shape.size() - 1; i >= 0; i--) {
index += this->shape[i]->eval(ctx) * size;
size *= v.shape[i];
}
ir.emplace_back(ir::OpCode::LOAD, dest, v.name, index);
return dest;
} catch (...) {
}
}
ir::OpName index = "%" + std::to_string(ctx.get_id());
ir::OpName size = "%" + std::to_string(ctx.get_id());
ir.emplace_back(
ir::OpCode::SAL, index,
this->shape[this->shape.size() - 1]->eval_runtime(ctx, ir), 2);
if (this->shape.size() != 1) {
ir::OpName tmp = "%" + std::to_string(ctx.get_id());
ir.emplace_back(ir::OpCode::MOV, size,
4 * v.shape[this->shape.size() - 1]);
}
for (int i = this->shape.size() - 2; i >= 0; i--) {
ir::OpName tmp = "%" + std::to_string(ctx.get_id());
ir::OpName tmp2 = "%" + std::to_string(ctx.get_id());
ir.emplace_back(ir::OpCode::IMUL, tmp, size,
this->shape[i]->eval_runtime(ctx, ir));
ir.emplace_back(ir::OpCode::ADD, tmp2, index, tmp);
index = tmp2;
if (i != 0) {
ir::OpName tmp = "%" + std::to_string(ctx.get_id());
ir.emplace_back(ir::OpCode::IMUL, tmp, size, v.shape[i]);
size = tmp;
}
}
ir.emplace_back(ir::OpCode::LOAD, dest, v.name, index);
return dest;
} else {
throw std::runtime_error(this->name.name + "'s shape unmatch.");
}
} else {
throw std::runtime_error(this->name.name + " is not a array.");
}
}
ir::OpName ast::node::ConditionExpression::_eval_runtime(ir::Context& ctx,
ir::IRList& ir) {
return this->value.eval_runtime(ctx, ir);
}
namespace {
int log2(int a) {
int ans = -1;
while (a > 0) {
ans++;
a /= 2;
}
return ans;
}
} // namespace
ir::OpName ast::node::BinaryExpression::_eval_runtime(ir::Context& ctx,
ir::IRList& ir) {
if (config::optimize_level > 0) {
try {
return this->eval(ctx);
} catch (...) {
}
}
ir::OpName dest = "%" + std::to_string(ctx.get_id()), lhs, rhs;
if (this->op != AND && this->op != OR) {
if (config::optimize_level > 0) {
try {
lhs = this->lhs.eval(ctx);
} catch (...) {
lhs = this->lhs.eval_runtime(ctx, ir);
}
try {
rhs = this->rhs.eval(ctx);
} catch (...) {
rhs = this->rhs.eval_runtime(ctx, ir);
}
} else {
lhs = this->lhs.eval_runtime(ctx, ir);
rhs = this->rhs.eval_runtime(ctx, ir);
}
}
switch (this->op) {
case PLUS:
ir.emplace_back(ir::OpCode::ADD, dest, lhs, rhs);
break;
case MINUS:
ir.emplace_back(ir::OpCode::SUB, dest, lhs, rhs);
break;
case MUL:
if (config::optimize_level > 0) {
if (lhs.is_imm() && (1 << log2(lhs.value)) == lhs.value) {
if (log2(lhs.value) < 32)
ir.emplace_back(ir::OpCode::SAL, dest, rhs, log2(lhs.value));
else
ir.emplace_back(ir::OpCode::MOV, dest, 0);
break;
}
if (rhs.is_imm() && (1 << log2(rhs.value)) == rhs.value) {
if (log2(rhs.value) < 32)
ir.emplace_back(ir::OpCode::SAL, dest, lhs, log2(rhs.value));
else
ir.emplace_back(ir::OpCode::MOV, dest, 0);
break;
}
}
ir.emplace_back(ir::OpCode::IMUL, dest, lhs, rhs);
break;
case DIV:
ir.emplace_back(ir::OpCode::IDIV, dest, lhs, rhs);
break;
case MOD:
if (config::optimize_level > 0 && rhs.is_imm()) {
ir::OpName tmp1 = "%" + std::to_string(ctx.get_id());
ir::OpName tmp2 = "%" + std::to_string(ctx.get_id());
// TODO: 这个IDIV可能可以DAG优化
ir.emplace_back(ir::OpCode::IDIV, tmp1, lhs, rhs);
ir.emplace_back(ir::OpCode::IMUL, tmp2, tmp1, rhs);
ir.emplace_back(ir::OpCode::SUB, dest, lhs, tmp2);
} else {
ir.emplace_back(ir::OpCode::MOD, dest, lhs, rhs);
}
break;
case EQ:
ir.emplace_back(ir::OpCode::CMP, ir::OpName(), lhs, rhs);
ir.emplace_back(ir::OpCode::MOVEQ, dest, 1, 0);
break;
case NE:
ir.emplace_back(ir::OpCode::CMP, ir::OpName(), lhs, rhs);
ir.emplace_back(ir::OpCode::MOVNE, dest, 1, 0);
break;
case GT:
ir.emplace_back(ir::OpCode::CMP, ir::OpName(), lhs, rhs);
ir.emplace_back(ir::OpCode::MOVGT, dest, 1, 0);
break;
case GE:
ir.emplace_back(ir::OpCode::CMP, ir::OpName(), lhs, rhs);
ir.emplace_back(ir::OpCode::MOVGE, dest, 1, 0);
break;
case LT:
ir.emplace_back(ir::OpCode::CMP, ir::OpName(), lhs, rhs);
ir.emplace_back(ir::OpCode::MOVLT, dest, 1, 0);
break;
case LE:
ir.emplace_back(ir::OpCode::CMP, ir::OpName(), lhs, rhs);
ir.emplace_back(ir::OpCode::MOVLE, dest, 1, 0);
break;
case AND: {
std::string label = ".L.COND" + std::to_string(ctx.get_id()) + "_END";
ir::IRList end;
end.emplace_back(ir::OpCode::LABEL, label);
auto lhs = this->lhs.eval_cond_runtime(ctx, ir);
ir.emplace_back(ir::OpCode::PHI_MOV, dest, ir::OpName(0));
ir.back().phi_block = end.begin();
ir.emplace_back(lhs.else_op, label);
auto rhs = this->rhs.eval_runtime(ctx, ir);
ir.emplace_back(ir::OpCode::PHI_MOV, dest, rhs);
ir.back().phi_block = end.begin();
ir.splice(ir.end(), end);
break;
}
case OR: {
std::string label = ".L.COND" + std::to_string(ctx.get_id()) + "_END";
ir::IRList end;
end.emplace_back(ir::OpCode::LABEL, label);
auto lhs = this->lhs.eval_cond_runtime(ctx, ir);
ir.emplace_back(ir::OpCode::PHI_MOV, dest, ir::OpName(1));
ir.back().phi_block = end.begin();
ir.emplace_back(lhs.then_op, label);
auto rhs = this->rhs.eval_runtime(ctx, ir);
ir.emplace_back(ir::OpCode::PHI_MOV, dest, rhs);
ir.back().phi_block = end.begin();
ir.splice(ir.end(), end);
break;
}
default:
throw std::runtime_error("Unknow OP");
break;
}
return dest;
}
ir::OpName ast::node::UnaryExpression::_eval_runtime(ir::Context& ctx,
ir::IRList& ir) {
if (config::optimize_level > 0) {
try {
return this->eval(ctx);
} catch (...) {
}
}
ir::OpName dest = "%" + std::to_string(ctx.get_id());
switch (this->op) {
case PLUS:
return rhs.eval_runtime(ctx, ir);
break;
case MINUS:
ir.emplace_back(ir::OpCode::SUB, dest, 0, rhs.eval_runtime(ctx, ir));
return dest;
break;
case NOT:
ir.push_back(
ir::IR(ir::OpCode::CMP, ir::OpName(), 0, rhs.eval_runtime(ctx, ir)));
ir.emplace_back(ir::OpCode::MOVEQ, dest, 1, 0);
return dest;
break;
default:
throw std::runtime_error("Unknow OP");
break;
}
}
ir::OpName ast::node::CommaExpression::_eval_runtime(ir::Context& ctx,
ir::IRList& ir) {
ir::OpName ret;
for (auto v : values) {
ret = v->eval_runtime(ctx, ir);
}
return ret;
}
ir::OpName ast::node::FunctionCall::_eval_runtime(ir::Context& ctx,
ir::IRList& ir) {
std::vector<ir::OpName> list;
ir::OpName dest = "%" + std::to_string(ctx.get_id());
for (int i = 0; i < this->args.args.size(); i++) {
list.push_back(this->args.args[i]->eval_runtime(ctx, ir));
}
for (int i = this->args.args.size() - 1; i >= 0; i--) {
ir.emplace_back(ir::OpCode::SET_ARG, i, list[i]);
}
ir.emplace_back(ir::OpCode::CALL, dest, this->name.name);
return dest;
}
ir::OpName ast::node::Number::_eval_runtime(ir::Context& ctx, ir::IRList& ir) {
return this->value;
}
ir::OpName ast::node::Statement::_eval_runtime(ir::Context& ctx,
ir::IRList& ir) {
this->generate_ir(ctx, ir);
return ir::OpName();
}
ir::OpName ast::node::Assignment::_eval_runtime(ir::Context& ctx,
ir::IRList& ir) {
this->generate_ir(ctx, ir);
if (dynamic_cast<ast::node::ArrayIdentifier*>(&this->lhs)) {
assert(ir.back().op_code == ir::OpCode::STORE);
return ir.back().op3;
} else {
assert(ir.back().dest.is_var());
return ir.back().dest;
}
}
ir::OpName ast::node::AfterInc::_eval_runtime(ir::Context& ctx,
ir::IRList& ir) {
auto v = ctx.find_symbol(this->lhs.name);
auto n0 = new ast::node::Number(1);
auto n1 = new ast::node::BinaryExpression(lhs, this->op, *n0);
auto n2 = new ast::node::Assignment(lhs, *n1);
n0->line = n1->line = n2->line = this->line;
n0->column = n1->column = n2->column = this->column;
n2->eval_runtime(ctx, ir);
delete n2;
delete n1;
delete n0;
return v.name;
}
ir::OpName ast::node::EvalStatement::_eval_runtime(ir::Context& ctx,
ir::IRList& ir) {
return this->value.eval_runtime(ctx, ir);
}
ast::node::Expression::CondResult ast::node::Expression::_eval_cond_runtime(
ir::Context& ctx, ir::IRList& ir) {
CondResult ret;
ir.emplace_back(ir::OpCode::CMP, ir::OpName(), this->eval_runtime(ctx, ir),
ir::OpName(0));
ret.then_op = ir::OpCode::JNE;
ret.else_op = ir::OpCode::JEQ;
return ret;
}
ast::node::Expression::CondResult
ast::node::BinaryExpression::_eval_cond_runtime(ir::Context& ctx,
ir::IRList& ir) {
if (config::optimize_level > 0) {
try {
if (this->eval(ctx)) {
return CondResult{ir::OpCode::JMP, ir::OpCode::NOOP};
} else {
return CondResult{ir::OpCode::NOOP, ir::OpCode::JMP};
}
} catch (...) {
}
}
CondResult ret;
ir::OpName lhs, rhs;
if (this->op != AND && this->op != OR) {
if (config::optimize_level > 0) {
try {
lhs = this->lhs.eval(ctx);
} catch (...) {
lhs = this->lhs.eval_runtime(ctx, ir);
}
try {
rhs = this->rhs.eval(ctx);
} catch (...) {
rhs = this->rhs.eval_runtime(ctx, ir);
}
} else {
lhs = this->lhs.eval_runtime(ctx, ir);
rhs = this->rhs.eval_runtime(ctx, ir);
}
}
switch (this->op) {
case EQ:
ir.emplace_back(ir::OpCode::CMP, ir::OpName(), lhs, rhs);
ret.then_op = ir::OpCode::JEQ;
ret.else_op = ir::OpCode::JNE;
break;
case NE:
ir.emplace_back(ir::OpCode::CMP, ir::OpName(), lhs, rhs);
ret.then_op = ir::OpCode::JNE;
ret.else_op = ir::OpCode::JEQ;
break;
case GT:
ir.emplace_back(ir::OpCode::CMP, ir::OpName(), lhs, rhs);
ret.then_op = ir::OpCode::JGT;
ret.else_op = ir::OpCode::JLE;
break;
case GE:
ir.emplace_back(ir::OpCode::CMP, ir::OpName(), lhs, rhs);
ret.then_op = ir::OpCode::JGE;
ret.else_op = ir::OpCode::JLT;
break;
case LT:
ir.emplace_back(ir::OpCode::CMP, ir::OpName(), lhs, rhs);
ret.then_op = ir::OpCode::JLT;
ret.else_op = ir::OpCode::JGE;
break;
case LE:
ir.emplace_back(ir::OpCode::CMP, ir::OpName(), lhs, rhs);
ret.then_op = ir::OpCode::JLE;
ret.else_op = ir::OpCode::JGT;
break;
default:
ir.emplace_back(ir::OpCode::CMP, ir::OpName(),
this->eval_runtime(ctx, ir), ir::OpName(0));
ret.then_op = ir::OpCode::JNE;
ret.else_op = ir::OpCode::JEQ;
break;
}
return ret;
}
} // namespace syc
| 17,492
|
C++
|
.cpp
| 539
| 25.786642
| 79
| 0.559373
|
nzh63/syc
| 39
| 13
| 0
|
GPL-3.0
|
9/20/2024, 10:45:34 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,866
|
node.cpp
|
nzh63_syc/src/ast/node.cpp
|
/*
* syc, a compiler for SysY
* Copyright (C) 2020-2021 nzh63, skywf21
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#include "ast/node.h"
#include <stack>
#include "parser.hpp"
namespace syc::ast::node {
namespace {
std::stack<BaseNode*> nodes;
}
BaseNode* current() {
if (nodes.empty())
return nullptr;
else
return nodes.top();
}
BaseNode::BaseNode() : line(yylloc.first_line), column(yylloc.first_column) {}
BaseNode::~BaseNode() {}
void BaseNode::print(int indentation, bool end, std::ostream& out) {
this->print_indentation(indentation, end, out);
out << "[node Node]" << std::endl;
}
void BaseNode::print_indentation(int indentation, bool end, std::ostream& out) {
for (int i = 0; i < indentation; i++) {
out << "│ ";
}
if (end)
out << "└──";
else
out << "├──";
}
void BaseNode::generate_ir(ir::Context& ctx, ir::IRList& ir) {
nodes.push(this);
try {
this->_generate_ir(ctx, ir);
nodes.pop();
} catch (std::exception e) {
nodes.pop();
throw e;
}
}
int Expression::eval(ir::Context& ctx) {
nodes.push(this);
try {
auto ret = this->_eval(ctx);
nodes.pop();
return ret;
} catch (std::exception e) {
nodes.pop();
throw e;
}
}
ir::OpName Expression::eval_runtime(ir::Context& ctx, ir::IRList& ir) {
nodes.push(this);
try {
auto ret = this->_eval_runtime(ctx, ir);
nodes.pop();
return ret;
} catch (std::exception e) {
nodes.pop();
throw e;
}
};
Expression::CondResult Expression::eval_cond_runtime(ir::Context& ctx,
ir::IRList& ir) {
nodes.push(this);
try {
auto ret = this->_eval_cond_runtime(ctx, ir);
nodes.pop();
return ret;
} catch (std::exception e) {
nodes.pop();
throw e;
}
};
Identifier::Identifier(const std::string& name) : name(name) {}
void Identifier::print(int indentation, bool end, std::ostream& out) {
this->print_indentation(indentation, end, out);
out << "Identifier: " << this->name << std::endl;
}
ConditionExpression::ConditionExpression(Expression& value) : value(value) {}
void ConditionExpression::print(int indentation, bool end, std::ostream& out) {
this->print_indentation(indentation, end, out);
out << "ConditionExpression" << std::endl;
this->value.print(indentation + 1, true, out);
}
BinaryExpression::BinaryExpression(Expression& lhs, int op, Expression& rhs)
: lhs(lhs), rhs(rhs), op(op) {}
void BinaryExpression::print(int indentation, bool end, std::ostream& out) {
this->print_indentation(indentation, end, out);
out << "BinaryExpression OP: " << this->op << std::endl;
this->lhs.print(indentation + 1, false, out);
this->rhs.print(indentation + 1, true, out);
}
UnaryExpression::UnaryExpression(int op, Expression& rhs) : rhs(rhs), op(op) {}
void UnaryExpression::print(int indentation, bool end, std::ostream& out) {
this->print_indentation(indentation, end, out);
out << "UnaryExpression OP: " << this->op << std::endl;
this->rhs.print(indentation + 1, true, out);
}
void CommaExpression::print(int indentation, bool end, std::ostream& out) {
this->print_indentation(indentation, end, out);
out << "CommaExpression" << std::endl;
for (auto v : values) v->print(indentation + 1, true, out);
}
void FunctionCallArgList::print(int indentation, bool end, std::ostream& out) {
this->print_indentation(indentation, end, out);
out << "FunctionCallArgList" << std::endl;
for (auto i = args.begin(); i != args.end(); i++)
(*i)->print(indentation + 1, i + 1 == args.end(), out);
}
FunctionCall::FunctionCall(Identifier& name, FunctionCallArgList& args)
: name(name), args(args) {}
void FunctionCall::print(int indentation, bool end, std::ostream& out) {
this->print_indentation(indentation, end, out);
out << "FunctionCall" << std::endl;
name.print(indentation + 1, false, out);
args.print(indentation + 1, false, out);
}
Number::Number(const std::string& value) : value(std::stoi(value, 0, 0)) {}
Number::Number(INTEGER value) : value(value) {}
void Number::print(int indentation, bool end, std::ostream& out) {
this->print_indentation(indentation, end, out);
out << "Number: " << value << std::endl;
}
void Block::print(int indentation, bool end, std::ostream& out) {
this->print_indentation(indentation, end, out);
out << "Block" << std::endl;
for (auto i = statements.begin(); i != statements.end(); i++)
(*i)->print(indentation + 1, i + 1 == statements.end(), out);
}
Assignment::Assignment(Identifier& lhs, Expression& rhs) : lhs(lhs), rhs(rhs) {}
void Assignment::print(int indentation, bool end, std::ostream& out) {
this->print_indentation(indentation, end, out);
out << "Assignment" << std::endl;
lhs.print(indentation + 1, false, out);
rhs.print(indentation + 1, true, out);
}
AfterInc::AfterInc(Identifier& lhs, int op) : lhs(lhs), op(op) {}
void AfterInc::print(int indentation, bool end, std::ostream& out) {
this->print_indentation(indentation, end, out);
out << "AfterInc op:" << op << std::endl;
lhs.print(indentation + 1, false, out);
}
IfElseStatement::IfElseStatement(ConditionExpression& cond, Statement& thenstmt,
Statement& elsestmt)
: cond(cond), thenstmt(thenstmt), elsestmt(elsestmt) {}
void IfElseStatement::print(int indentation, bool end, std::ostream& out) {
this->print_indentation(indentation, end, out);
out << "IfElseStatement" << std::endl;
this->print_indentation(indentation + 1, false, out);
out << "Cond" << std::endl;
cond.print(indentation + 2, false, out);
this->print_indentation(indentation + 1, false, out);
out << "Then" << std::endl;
thenstmt.print(indentation + 2, false, out);
this->print_indentation(indentation + 1, true, out);
out << "Else" << std::endl;
elsestmt.print(indentation + 2, true, out);
}
WhileStatement::WhileStatement(ConditionExpression& cond, Statement& dostmt)
: cond(cond), dostmt(dostmt) {}
void WhileStatement::print(int indentation, bool end, std::ostream& out) {
this->print_indentation(indentation, end, out);
out << "WhileStatement" << std::endl;
this->print_indentation(indentation + 1, false, out);
out << "Cond" << std::endl;
cond.print(indentation + 2, false, out);
this->print_indentation(indentation + 1, false, out);
out << "Do" << std::endl;
dostmt.print(indentation + 2, false, out);
}
void BreakStatement::print(int indentation, bool end, std::ostream& out) {
this->print_indentation(indentation, end, out);
out << "Break" << std::endl;
}
void ContinueStatement::print(int indentation, bool end, std::ostream& out) {
this->print_indentation(indentation, end, out);
out << "Continue" << std::endl;
}
ReturnStatement::ReturnStatement(Expression* value) : value(value) {}
void ReturnStatement::print(int indentation, bool end, std::ostream& out) {
this->print_indentation(indentation, end, out);
out << "Return" << std::endl;
if (value) value->print(indentation + 1, true, out);
}
EvalStatement::EvalStatement(Expression& value) : value(value) {}
void EvalStatement::print(int indentation, bool end, std::ostream& out) {
this->print_indentation(indentation, end, out);
out << "Eval" << std::endl;
value.print(indentation + 1, true, out);
}
void VoidStatement::print(int indentation, bool end, std::ostream& out) {
this->print_indentation(indentation, end, out);
out << "Void" << std::endl;
}
DeclareStatement::DeclareStatement(int type) : type(type){};
void DeclareStatement::print(int indentation, bool end, std::ostream& out) {
this->print_indentation(indentation, end, out);
out << "Declare Type: " << type << std::endl;
for (auto i = list.begin(); i != list.end(); i++)
(*i)->print(indentation + 1, i + 1 == list.end(), out);
}
ArrayDeclareInitValue::ArrayDeclareInitValue(bool is_number, Expression* value)
: is_number(is_number), value(value) {}
void ArrayDeclareInitValue::print(int indentation, bool end,
std::ostream& out) {
this->print_indentation(indentation, end, out);
out << "ArrayDeclareInitValue" << std::endl;
if (is_number)
value->print(indentation + 1, true, out);
else
for (auto i = value_list.begin(); i != value_list.end(); i++)
(*i)->print(indentation + 1, i + 1 == value_list.end(), out);
}
VarDeclareWithInit::VarDeclareWithInit(Identifier& name, Expression& value,
bool is_const)
: name(name), value(value), is_const(is_const) {}
void VarDeclareWithInit::print(int indentation, bool end, std::ostream& out) {
this->print_indentation(indentation, end, out);
out << "DeclareWithInit" << std::endl;
name.print(indentation + 1, false, out);
value.print(indentation + 1, true, out);
}
VarDeclare::VarDeclare(Identifier& name) : name(name) {}
void VarDeclare::print(int indentation, bool end, std::ostream& out) {
this->print_indentation(indentation, end, out);
out << "Declare" << std::endl;
name.print(indentation + 1, true, out);
}
ArrayIdentifier::ArrayIdentifier(Identifier& name)
: Identifier(name), name(name) {}
void ArrayIdentifier::print(int indentation, bool end, std::ostream& out) {
this->print_indentation(indentation, end, out);
out << "ArrayIdentifier" << std::endl;
name.print(indentation + 1, false, out);
this->print_indentation(indentation + 1, true, out);
out << "Shape" << std::endl;
for (auto i = shape.begin(); i != shape.end(); i++)
(*i)->print(indentation + 2, i + 1 == shape.end(), out);
}
ArrayDeclareWithInit::ArrayDeclareWithInit(ArrayIdentifier& name,
ArrayDeclareInitValue& value,
bool is_const)
: name(name), value(value), is_const(is_const) {}
void ArrayDeclareWithInit::print(int indentation, bool end, std::ostream& out) {
this->print_indentation(indentation, end, out);
out << "ArrayDeclareWithInit" << std::endl;
name.print(indentation + 1, false, out);
value.print(indentation + 1, true, out);
}
ArrayDeclare::ArrayDeclare(ArrayIdentifier& name) : name(name) {}
void ArrayDeclare::print(int indentation, bool end, std::ostream& out) {
this->print_indentation(indentation, end, out);
out << "ArrayDeclare" << std::endl;
name.print(indentation + 1, true, out);
}
FunctionDefineArg::FunctionDefineArg(int type, Identifier& name)
: type(type), name(name) {}
void FunctionDefineArg::print(int indentation, bool end, std::ostream& out) {
this->print_indentation(indentation, end, out);
out << "FunctionDefineArg Type: " << type << std::endl;
name.print(indentation + 1, true, out);
}
void FunctionDefineArgList::print(int indentation, bool end,
std::ostream& out) {
this->print_indentation(indentation, end, out);
out << "FunctionDefineArgList" << std::endl;
for (auto i = list.begin(); i != list.end(); i++)
(*i)->print(indentation + 1, i + 1 == list.end(), out);
}
FunctionDefine::FunctionDefine(int return_type, Identifier& name,
FunctionDefineArgList& args, Block& body)
: return_type(return_type), name(name), args(args), body(body) {}
void FunctionDefine::print(int indentation, bool end, std::ostream& out) {
this->print_indentation(indentation, end, out);
out << "FunctionDefine" << std::endl;
this->print_indentation(indentation + 1, false, out);
out << "Return type: " << return_type << std::endl;
this->print_indentation(indentation + 1, false, out);
out << "Name" << std::endl;
name.print(indentation + 2, true, out);
this->print_indentation(indentation + 1, false, out);
out << "Args" << std::endl;
args.print(indentation + 2, true, out);
this->print_indentation(indentation + 1, true, out);
out << "Body" << std::endl;
body.print(indentation + 2, true, out);
}
void Root::print(int indentation, bool end, std::ostream& out) {
this->print_indentation(indentation, end, out);
out << "Root" << std::endl;
for (auto i = body.begin(); i != body.end(); i++)
(*i)->print(indentation + 1, i + 1 == body.end(), out);
}
} // namespace syc::ast::node
| 12,753
|
C++
|
.cpp
| 310
| 37.454839
| 80
| 0.674982
|
nzh63/syc
| 39
| 13
| 0
|
GPL-3.0
|
9/20/2024, 10:45:34 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,867
|
generate.cpp
|
nzh63_syc/src/ast/generate/generate.cpp
|
/*
* syc, a compiler for SysY
* Copyright (C) 2020-2021 nzh63, skywf21
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#include "ast/generate/generate.h"
extern int yyparse();
extern int yylex_destroy();
extern void yyset_lineno(int _line_number);
extern int yycolumn;
void yyset_in(FILE* _in_str);
namespace syc::ast {
syc::ast::node::Root* root = nullptr;
syc::ast::node::Root* generate(FILE* input) {
yyset_in(input);
yyset_lineno(1);
yycolumn = 1;
yyparse();
yylex_destroy();
return root;
}
} // namespace syc::ast
| 1,142
|
C++
|
.cpp
| 34
| 31.735294
| 73
| 0.739837
|
nzh63/syc
| 39
| 13
| 0
|
GPL-3.0
|
9/20/2024, 10:45:34 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,868
|
config.h
|
nzh63_syc/src/config.h
|
/*
* syc, a compiler for SysY
* Copyright (C) 2020-2021 nzh63, skywf21
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#pragma once
#include <cstdio>
#include <fstream>
#include <iostream>
#include <string>
namespace syc::config {
extern int optimize_level;
extern bool print_ast;
extern bool print_ir;
extern bool print_log;
extern bool enable_dwarf2;
extern FILE* input;
extern std::ostream* output;
extern std::string input_filename;
void parse_arg(int argc, char** argv);
} // namespace syc::config
| 1,114
|
C++
|
.h
| 33
| 32.242424
| 73
| 0.764815
|
nzh63/syc
| 39
| 13
| 0
|
GPL-3.0
|
9/20/2024, 10:45:34 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,869
|
optimize.h
|
nzh63_syc/src/assembly/optimize/optimize.h
|
/*
* syc, a compiler for SysY
* Copyright (C) 2020-2021 nzh63, skywf21
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#pragma once
#include <istream>
#include <ostream>
namespace syc::assembly {
void optimize(std::istream& in, std::ostream& out);
} // namespace syc::assembly
| 888
|
C++
|
.h
| 23
| 36.869565
| 73
| 0.753472
|
nzh63/syc
| 39
| 13
| 0
|
GPL-3.0
|
9/20/2024, 10:45:34 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,870
|
passes.h
|
nzh63_syc/src/assembly/optimize/passes.h
|
/*
* syc, a compiler for SysY
* Copyright (C) 2020-2021 nzh63, skywf21
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#pragma once
#include "assembly/optimize/passes/peephole.h"
#include "assembly/optimize/passes/reorder.h"
| 834
|
C++
|
.h
| 20
| 39.9
| 73
| 0.762899
|
nzh63/syc
| 39
| 13
| 0
|
GPL-3.0
|
9/20/2024, 10:45:34 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,873
|
context.h
|
nzh63_syc/src/assembly/generate/context.h
|
/*
* syc, a compiler for SysY
* Copyright (C) 2020-2021 nzh63, skywf21
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#pragma once
#include <array>
#include <bitset>
#include <ostream>
#include <string>
#include <unordered_map>
#include "ast/node.h"
#include "config.h"
#include "ir/generate/context.h"
#include "ir/ir.h"
namespace syc::assembly {
class Context {
private:
int time = 0;
public:
static constexpr int reg_count = 12;
std::ostream& log_out;
ir::IRList* irs;
// stack_size[0]: 暂未使用
// stack_size[1]: 保护现场 // 顺序为 r14(lr), r4, r5, ..., r11
// stack_size[2]: 寄存器溢出
// stack_size[4]: 函数调用
std::array<int, 4> stack_size{0, 4, 0, 0};
ir::IRList::iterator function_begin_it;
std::unordered_map<std::string, int> stack_offset_map;
// 获取每一条it对应时间戳
std::unordered_map<ir::IR*, int> ir_to_time;
// var定义的时间戳
std::unordered_map<std::string, int> var_define_timestamp;
std::multimap<int, std::string> var_define_timestamp_heap;
// var最后使用的时间戳
std::unordered_map<std::string, int> var_latest_use_timestamp;
std::multimap<int, std::string> var_latest_use_timestamp_heap;
// 保护现场后可用的寄存器
std::bitset<reg_count> savable_reg = 0b111111110000;
// 已使用的寄存器
std::bitset<reg_count> used_reg = 0b000000000000;
// 当前在寄存器中的变量极其寄存器号(active)
std::unordered_map<std::string, int> var_to_reg = {
{"$arg0", 0}, {"$arg1", 1}, {"$arg2", 2}, {"$arg3", 3}};
std::unordered_map<int, std::string> reg_to_var;
bool has_function_call = false;
Context(ir::IRList* irs, ir::IRList::iterator function_begin_it,
std::ostream& log_out = std::cerr);
static std::string rename(std::string name);
int resolve_stack_offset(std::string name);
void set_ir_timestamp(ir::IR& cur);
void set_var_latest_use_timestamp(ir::IR& cur);
void set_var_define_timestamp(ir::IR& cur);
void expire_old_intervals(int cur_time);
bool var_in_reg(std::string name);
// 将变量的寄存器分配移动至 dest
void move_reg(std::string name, int reg_dest);
void overflow_var(std::string name);
void overflow_reg(int reg_id);
// 选择最晚使用的变量,以准备进行淘汰
// 注意:该函数并未真正进行溢出,请调用 overflow_var
std::string select_var_to_overflow(int begin = 0);
// 寻找可使用的寄存器,但不获取它
int find_free_reg(int begin = 0);
// 获取一个可用寄存器,如 mark=true,设置 used_reg[i] = 1
// 警告:该寄存器尚未与变量绑定,考虑配合bind_var_to_reg或使用get_new_reg_for
int get_new_reg(int begin = 0);
// 获取寄存器,但不进行变量绑定
void get_specified_reg(int reg_id);
// 将一个变量绑定到寄存器
// 警告:需要先获取可用寄存器,即 used_reg[i] = 1
// 考虑配合 get_new_reg 或使用 get_new_reg_for
void bind_var_to_reg(std::string name, int reg_id);
// 推荐使用
int get_new_reg_for(std::string name);
// 推荐使用
int get_specified_reg_for(std::string name, int reg_id);
// 加载操作
void load_imm(std::string reg, int value, std::ostream& out);
void load(std::string reg, ir::OpName op, std::ostream& out);
void store_to_stack_offset(std::string reg, int offset, std::ostream& out,
std::string op = "STR");
void load_from_stack_offset(std::string reg, int offset, std::ostream& out,
std::string op = "LDR");
void store_to_stack(std::string reg, ir::OpName op, std::ostream& out,
std::string op_code = "STR");
};
} // namespace syc::assembly
| 4,346
|
C++
|
.h
| 101
| 34.712871
| 77
| 0.688284
|
nzh63/syc
| 39
| 13
| 0
|
GPL-3.0
|
9/20/2024, 10:45:34 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,874
|
generate.h
|
nzh63_syc/src/assembly/generate/generate.h
|
/*
* syc, a compiler for SysY
* Copyright (C) 2020-2021 nzh63, skywf21
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#pragma once
#include <ostream>
#include "ir/ir.h"
namespace syc::assembly {
void generate(ir::IRList& irs, std::ostream& out);
void generate(ir::IRList& irs, std::ostream& out, std::ostream& log_out);
} // namespace syc::assembly
| 962
|
C++
|
.h
| 24
| 38.333333
| 73
| 0.747863
|
nzh63/syc
| 39
| 13
| 0
|
GPL-3.0
|
9/20/2024, 10:45:34 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,875
|
ir.h
|
nzh63_syc/src/ir/ir.h
|
/*
* syc, a compiler for SysY
* Copyright (C) 2020-2021 nzh63, skywf21
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#pragma once
#include <functional>
#include <iostream>
#include <list>
#include <string>
#include "ir/generate/context.h"
namespace syc::ir {
class OpName {
protected:
enum Type {
Var,
Imm,
Null,
};
public:
Type type;
std::string name;
int value;
OpName();
OpName(std::string name);
OpName(int value);
bool is_var() const;
bool is_local_var() const;
bool is_global_var() const;
bool is_imm() const;
bool is_null() const;
bool operator==(const OpName& other) const;
};
enum class OpCode {
MALLOC_IN_STACK, // dest = offset(new StackArray(size op1))
MOV, // dest = op1
ADD, // dest = op1 + op2
SUB, // dest = op1 - op2
IMUL, // dest = op1 * op2
IDIV, // dest = op1 / op2
MOD, // dest = op1 % op2
SET_ARG, // if dest < 4: R(dest)) = op1 else: push_stack(op1)
CALL, // call label
CMP, // cmp op1, op2
JMP, // jmp label
JEQ, // if EQ: jmp label
JNE, // if NE: jmp label
JLE, // if LE: jmp label
JLT, // if LT: jmp label
JGE, // if GE: jmp label
JGT, // if GT: jmp label
MOVEQ, // if EQ: dest = op1 else: dest = op2
MOVNE, // if NE: dest = op1 else: dest = op2
MOVLE, // if LE: dest = op1 else: dest = op2
MOVLT, // if LT: dest = op1 else: dest = op2
MOVGE, // if GE: dest = op1 else: dest = op2
MOVGT, // if GT: dest = op1 else: dest = op2
AND, // dest = op1 && op2
OR, // dest = op1 || op2
SAL, // dest = op1 << op2 算数左移
SAR, // dest = op1 >> op2 算数右移
STORE, // op1[op2] = op3
LOAD, // dest = op1[op2]
RET, // return / return op1
LABEL, // label:
DATA_BEGIN, //.data
DATA_WORD, //.word
DATA_SPACE, //.space
DATA_END, // nothing
FUNCTION_BEGIN, // FUNCTION_BEGIN
FUNCTION_END, // FUNCTION_END
PHI_MOV, // PHI
NOOP, // no operation
INFO, // info for compiler
};
class IR {
public:
int line, column;
OpCode op_code;
std::string label;
OpName op1, op2, op3, dest;
std::list<IR>::iterator phi_block;
IR(OpCode op_code, OpName dest, OpName op1, OpName op2, OpName op3,
std::string label = "");
IR(OpCode op_code, OpName dest, OpName op1, OpName op2,
std::string label = "");
IR(OpCode op_code, OpName dest, OpName op1, std::string label = "");
IR(OpCode op_code, OpName dest, std::string label = "");
IR(OpCode op_code, std::string label = "");
bool some(decltype(&syc::ir::OpName::is_var) callback,
bool include_dest = true) const;
bool some(std::function<bool(const syc::ir::OpName&)> callback,
bool include_dest = true) const;
void forEachOp(std::function<void(const syc::ir::OpName&)> callback,
bool include_dest = true) const;
void print(std::ostream& out = std::cerr, bool verbose = false) const;
protected:
void setup_file_postion();
};
using IRList = std::list<IR>;
} // namespace syc::ir
| 3,976
|
C++
|
.h
| 113
| 32.044248
| 73
| 0.58329
|
nzh63/syc
| 39
| 13
| 0
|
GPL-3.0
|
9/20/2024, 10:45:34 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,876
|
optimize.h
|
nzh63_syc/src/ir/optimize/optimize.h
|
/*
* syc, a compiler for SysY
* Copyright (C) 2020-2021 nzh63, skywf21
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#pragma once
#include "ir/ir.h"
namespace syc::ir {
void optimize(IRList &ir);
void optimize_loop_ir(IRList &ir_before, IRList &ir_cond, IRList &ir_jmp,
IRList &ir_do, IRList &ir_continue);
} // namespace syc::ir
| 966
|
C++
|
.h
| 24
| 37.583333
| 73
| 0.730851
|
nzh63/syc
| 39
| 13
| 0
|
GPL-3.0
|
9/20/2024, 10:45:34 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,877
|
passes.h
|
nzh63_syc/src/ir/optimize/passes.h
|
/*
* syc, a compiler for SysY
* Copyright (C) 2020-2021 nzh63, skywf21
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#pragma once
#include "ir/optimize/passes/dead_code_elimination.h"
#include "ir/optimize/passes/invariant_code_motion.h"
#include "ir/optimize/passes/local_common_constexpr_function_elimination.h"
#include "ir/optimize/passes/local_common_subexpression_elimination.h"
#include "ir/optimize/passes/optimize_phi_var.h"
#include "ir/optimize/passes/unreachable_code_elimination.h"
| 1,106
|
C++
|
.h
| 24
| 44.416667
| 75
| 0.778189
|
nzh63/syc
| 39
| 13
| 0
|
GPL-3.0
|
9/20/2024, 10:45:34 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,878
|
local_common_subexpression_elimination.h
|
nzh63_syc/src/ir/optimize/passes/local_common_subexpression_elimination.h
|
/*
* syc, a compiler for SysY
* Copyright (C) 2020-2021 nzh63, skywf21
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#pragma once
#include "ir/ir.h"
namespace syc::ir::passes {
void local_common_subexpression_elimination(IRList &ir);
} // namespace syc::ir::passes
| 878
|
C++
|
.h
| 22
| 38.136364
| 73
| 0.754386
|
nzh63/syc
| 39
| 13
| 0
|
GPL-3.0
|
9/20/2024, 10:45:34 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,879
|
unreachable_code_elimination.h
|
nzh63_syc/src/ir/optimize/passes/unreachable_code_elimination.h
|
/*
* syc, a compiler for SysY
* Copyright (C) 2020-2021 nzh63, skywf21
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#pragma once
#include "ir/ir.h"
namespace syc::ir::passes {
void unreachable_code_elimination(IRList &ir);
} // namespace syc::ir::passes
| 868
|
C++
|
.h
| 22
| 37.681818
| 73
| 0.752663
|
nzh63/syc
| 39
| 13
| 0
|
GPL-3.0
|
9/20/2024, 10:45:34 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,880
|
invariant_code_motion.h
|
nzh63_syc/src/ir/optimize/passes/invariant_code_motion.h
|
/*
* syc, a compiler for SysY
* Copyright (C) 2020-2021 nzh63, skywf21
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#pragma once
#include "ir/ir.h"
namespace syc::ir::passes {
bool loop_invariant_code_motion(IRList &ir_before, IRList &ir_cond,
IRList &ir_jmp, IRList &ir_do,
IRList &ir_continue);
} // namespace syc::ir::passes
| 1,006
|
C++
|
.h
| 24
| 37.541667
| 73
| 0.701325
|
nzh63/syc
| 39
| 13
| 0
|
GPL-3.0
|
9/20/2024, 10:45:34 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,881
|
dead_code_elimination.h
|
nzh63_syc/src/ir/optimize/passes/dead_code_elimination.h
|
/*
* syc, a compiler for SysY
* Copyright (C) 2020-2021 nzh63, skywf21
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#pragma once
#include "ir/ir.h"
namespace syc::ir::passes {
void dead_code_elimination(IRList &ir);
} // namespace syc::ir::passes
| 861
|
C++
|
.h
| 22
| 37.363636
| 73
| 0.750597
|
nzh63/syc
| 39
| 13
| 0
|
GPL-3.0
|
9/20/2024, 10:45:34 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,882
|
local_common_constexpr_function_elimination.h
|
nzh63_syc/src/ir/optimize/passes/local_common_constexpr_function_elimination.h
|
/*
* syc, a compiler for SysY
* Copyright (C) 2020-2021 nzh63, skywf21
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#pragma once
#include "ir/ir.h"
namespace syc::ir::passes {
void local_common_constexpr_function_elimination(IRList &ir);
} // namespace syc::ir::passes
| 883
|
C++
|
.h
| 22
| 38.363636
| 73
| 0.754651
|
nzh63/syc
| 39
| 13
| 0
|
GPL-3.0
|
9/20/2024, 10:45:34 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,883
|
optimize_phi_var.h
|
nzh63_syc/src/ir/optimize/passes/optimize_phi_var.h
|
/*
* syc, a compiler for SysY
* Copyright (C) 2020-2021 nzh63, skywf21
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#pragma once
#include "ir/ir.h"
namespace syc::ir::passes {
// 移除不必要的PHI_MOV指令
// 如:
// MOV %42, some_thing
// PHI_MOV %43, %42 # %42 only be used here
// =>
// MOV %43, some_thing # rename %42 to %43
// PHI_MOV %43, %43
void optimize_phi_var(IRList &ir);
} // namespace syc::ir::passes
| 1,042
|
C++
|
.h
| 29
| 33.655172
| 73
| 0.720766
|
nzh63/syc
| 39
| 13
| 0
|
GPL-3.0
|
9/20/2024, 10:45:34 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,884
|
context.h
|
nzh63_syc/src/ir/generate/context.h
|
/*
* syc, a compiler for SysY
* Copyright (C) 2020-2021 nzh63, skywf21
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#pragma once
#include <map>
#include <stack>
#include <string>
#include <unordered_map>
#include <utility>
#include <vector>
#include "ir/ir.h"
namespace syc::ir {
class VarInfo {
public:
std::vector<int> shape;
bool is_array;
std::string name; // with @$%
VarInfo(std::string name, bool is_array = false, std::vector<int> shape = {});
};
class ConstInfo {
public:
bool is_array;
std::vector<int> shape;
std::vector<int> value;
ConstInfo(std::vector<int> value, bool is_array = false,
std::vector<int> shape = {});
ConstInfo(int value);
};
class Context {
public:
Context();
unsigned id = 1;
unsigned get_id();
using SymbolTable = std::vector<std::unordered_map<std::string, VarInfo>>;
using ConstTable = std::vector<std::unordered_map<std::string, ConstInfo>>;
SymbolTable symbol_table = {{}};
ConstTable const_table = {{}};
ConstTable const_assign_table = {{}};
void insert_symbol(std::string name, VarInfo value);
void insert_const(std::string name, ConstInfo value);
void insert_const_assign(std::string name, ConstInfo value);
VarInfo& find_symbol(std::string name);
ConstInfo& find_const(std::string name);
ConstInfo& find_const_assign(std::string name);
void create_scope();
void end_scope();
bool is_global();
bool in_loop();
std::stack<std::string> loop_label;
std::stack<std::vector<SymbolTable>> loop_continue_symbol_snapshot;
std::stack<std::vector<SymbolTable>> loop_break_symbol_snapshot;
std::stack<std::map<std::pair<int, std::string>, std::string>>
loop_continue_phi_move;
std::stack<std::map<std::pair<int, std::string>, std::string>>
loop_break_phi_move;
std::stack<std::vector<std::string>> loop_var{};
};
} // namespace syc::ir
| 2,483
|
C++
|
.h
| 72
| 31.819444
| 80
| 0.714583
|
nzh63/syc
| 39
| 13
| 0
|
GPL-3.0
|
9/20/2024, 10:45:34 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,885
|
generate.h
|
nzh63_syc/src/ir/generate/generate.h
|
/*
* syc, a compiler for SysY
* Copyright (C) 2020-2021 nzh63, skywf21
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#pragma once
#include "ast/node.h"
#include "ir/ir.h"
namespace syc::ir {
IRList generate(syc::ast::node::Root* root);
} // namespace syc::ir
| 873
|
C++
|
.h
| 23
| 36.173913
| 73
| 0.746462
|
nzh63/syc
| 39
| 13
| 0
|
GPL-3.0
|
9/20/2024, 10:45:34 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,886
|
node.h
|
nzh63_syc/src/ast/node.h
|
/*
* syc, a compiler for SysY
* Copyright (C) 2020-2021 nzh63, skywf21
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#pragma once
#include <cstdint>
#include <ostream>
#include <string>
#include <vector>
#include "ir/ir.h"
namespace syc {
namespace ir {
class Context;
} // namespace ir
using INTEGER = std::int32_t;
namespace ast::node {
class BaseNode;
BaseNode* current();
class BaseNode {
public:
int line, column;
BaseNode();
virtual ~BaseNode();
virtual void print(int indentation = 0, bool end = false,
std::ostream& out = std::cerr);
void print_indentation(int indentation = 0, bool end = false,
std::ostream& out = std::cerr);
void generate_ir(ir::Context& ctx, ir::IRList& ir);
protected:
virtual void _generate_ir(ir::Context& ctx, ir::IRList& ir);
};
class Expression : public BaseNode {
public:
int eval(ir::Context& ctx);
ir::OpName eval_runtime(ir::Context& ctx, ir::IRList& ir);
struct CondResult {
ir::OpCode then_op;
ir::OpCode else_op;
};
CondResult eval_cond_runtime(ir::Context& ctx, ir::IRList& ir);
protected:
virtual int _eval(ir::Context& ctx);
virtual ir::OpName _eval_runtime(ir::Context& ctx, ir::IRList& ir);
virtual CondResult _eval_cond_runtime(ir::Context& ctx, ir::IRList& ir);
};
class Statement : public Expression {
protected:
virtual ir::OpName _eval_runtime(ir::Context& ctx, ir::IRList& ir);
};
class Declare : public BaseNode {};
class Identifier : public Expression {
public:
std::string name;
Identifier(const std::string& name);
virtual void print(int indentation = 0, bool end = false,
std::ostream& out = std::cerr);
virtual int _eval(ir::Context& ctx);
virtual ir::OpName _eval_runtime(ir::Context& ctx, ir::IRList& ir);
};
class ConditionExpression : public Expression {
public:
Expression& value;
ConditionExpression(Expression& value);
virtual void print(int indentation = 0, bool end = false,
std::ostream& out = std::cerr);
protected:
virtual int _eval(ir::Context& ctx);
virtual ir::OpName _eval_runtime(ir::Context& ctx, ir::IRList& ir);
};
class BinaryExpression : public Expression {
public:
int op;
Expression& lhs;
Expression& rhs;
BinaryExpression(Expression& lhs, int op, Expression& rhs);
virtual void print(int indentation = 0, bool end = false,
std::ostream& out = std::cerr);
protected:
virtual int _eval(ir::Context& ctx);
virtual ir::OpName _eval_runtime(ir::Context& ctx, ir::IRList& ir);
virtual CondResult _eval_cond_runtime(ir::Context& ctx, ir::IRList& ir);
};
class UnaryExpression : public Expression {
public:
int op;
Expression& rhs;
UnaryExpression(int op, Expression& rhs);
virtual void print(int indentation = 0, bool end = false,
std::ostream& out = std::cerr);
protected:
virtual int _eval(ir::Context& ctx);
virtual ir::OpName _eval_runtime(ir::Context& ctx, ir::IRList& ir);
};
class CommaExpression : public Expression {
public:
std::vector<Expression*> values;
CommaExpression() = default;
virtual void print(int indentation = 0, bool end = false,
std::ostream& out = std::cerr);
protected:
virtual int _eval(ir::Context& ctx);
virtual ir::OpName _eval_runtime(ir::Context& ctx, ir::IRList& ir);
};
class FunctionCallArgList : public Expression {
public:
std::vector<Expression*> args;
virtual void print(int indentation = 0, bool end = false,
std::ostream& out = std::cerr);
};
class FunctionCall : public Expression {
public:
Identifier& name;
FunctionCallArgList& args;
FunctionCall(Identifier& name, FunctionCallArgList& args);
virtual void print(int indentation = 0, bool end = false,
std::ostream& out = std::cerr);
protected:
virtual ir::OpName _eval_runtime(ir::Context& ctx, ir::IRList& ir);
};
class Number : public Expression {
public:
INTEGER value;
Number(const std::string& value);
Number(INTEGER value);
virtual void print(int indentation = 0, bool end = false,
std::ostream& out = std::cerr);
virtual int _eval(ir::Context& ctx);
virtual ir::OpName _eval_runtime(ir::Context& ctx, ir::IRList& ir);
};
class Block : public Statement {
public:
std::vector<Statement*> statements;
virtual void print(int indentation = 0, bool end = false,
std::ostream& out = std::cerr);
protected:
virtual void _generate_ir(ir::Context& ctx, ir::IRList& ir);
};
class Assignment : public Statement {
public:
Identifier& lhs;
Expression& rhs;
Assignment(Identifier& lhs, Expression& rhs);
virtual void print(int indentation = 0, bool end = false,
std::ostream& out = std::cerr);
protected:
virtual void _generate_ir(ir::Context& ctx, ir::IRList& ir);
virtual int _eval(ir::Context& ctx);
virtual ir::OpName _eval_runtime(ir::Context& ctx, ir::IRList& ir);
};
class AfterInc : public Statement {
public:
int op;
Identifier& lhs;
AfterInc(Identifier& lhs, int op);
virtual void print(int indentation = 0, bool end = false,
std::ostream& out = std::cerr);
protected:
virtual void _generate_ir(ir::Context& ctx, ir::IRList& ir);
virtual int _eval(ir::Context& ctx);
virtual ir::OpName _eval_runtime(ir::Context& ctx, ir::IRList& ir);
};
class IfElseStatement : public Statement {
public:
ConditionExpression& cond;
Statement& thenstmt;
Statement& elsestmt;
IfElseStatement(ConditionExpression& cond, Statement& thenstmt,
Statement& elsestmt);
virtual void print(int indentation = 0, bool end = false,
std::ostream& out = std::cerr);
protected:
virtual void _generate_ir(ir::Context& ctx, ir::IRList& ir);
};
class WhileStatement : public Statement {
public:
ConditionExpression& cond;
Statement& dostmt;
WhileStatement(ConditionExpression& cond, Statement& dostmt);
virtual void print(int indentation = 0, bool end = false,
std::ostream& out = std::cerr);
protected:
virtual void _generate_ir(ir::Context& ctx, ir::IRList& ir);
};
class BreakStatement : public Statement {
virtual void print(int indentation = 0, bool end = false,
std::ostream& out = std::cerr);
protected:
virtual void _generate_ir(ir::Context& ctx, ir::IRList& ir);
};
class ContinueStatement : public Statement {
virtual void print(int indentation = 0, bool end = false,
std::ostream& out = std::cerr);
protected:
virtual void _generate_ir(ir::Context& ctx, ir::IRList& ir);
};
class ReturnStatement : public Statement {
public:
Expression* value;
ReturnStatement(Expression* value = NULL);
virtual void print(int indentation = 0, bool end = false,
std::ostream& out = std::cerr);
protected:
virtual void _generate_ir(ir::Context& ctx, ir::IRList& ir);
};
class EvalStatement : public Statement {
public:
Expression& value;
EvalStatement(Expression& value);
virtual void print(int indentation = 0, bool end = false,
std::ostream& out = std::cerr);
protected:
virtual void _generate_ir(ir::Context& ctx, ir::IRList& ir);
virtual int _eval(ir::Context& ctx);
virtual ir::OpName _eval_runtime(ir::Context& ctx, ir::IRList& ir);
};
class VoidStatement : public Statement {
virtual void print(int indentation = 0, bool end = false,
std::ostream& out = std::cerr);
protected:
virtual void _generate_ir(ir::Context& ctx, ir::IRList& ir);
};
class DeclareStatement : public Statement {
public:
std::vector<Declare*> list;
int type;
DeclareStatement(int type);
virtual void print(int indentation = 0, bool end = false,
std::ostream& out = std::cerr);
protected:
virtual void _generate_ir(ir::Context& ctx, ir::IRList& ir);
};
class ArrayDeclareInitValue : public Expression {
public:
bool is_number;
Expression* value;
std::vector<ArrayDeclareInitValue*> value_list;
ArrayDeclareInitValue(bool is_number, Expression* value);
virtual void print(int indentation = 0, bool end = false,
std::ostream& out = std::cerr);
};
class VarDeclareWithInit : public Declare {
public:
Identifier& name;
Expression& value;
bool is_const;
VarDeclareWithInit(Identifier& name, Expression& value,
bool is_const = false);
virtual void print(int indentation = 0, bool end = false,
std::ostream& out = std::cerr);
protected:
virtual void _generate_ir(ir::Context& ctx, ir::IRList& ir);
};
class VarDeclare : public Declare {
public:
Identifier& name;
VarDeclare(Identifier& name);
virtual void print(int indentation = 0, bool end = false,
std::ostream& out = std::cerr);
protected:
virtual void _generate_ir(ir::Context& ctx, ir::IRList& ir);
};
class ArrayIdentifier : public Identifier {
public:
Identifier& name;
std::vector<Expression*> shape;
ArrayIdentifier(Identifier& name);
virtual void print(int indentation = 0, bool end = false,
std::ostream& out = std::cerr);
virtual int _eval(ir::Context& ctx);
virtual ir::OpName _eval_runtime(ir::Context& ctx, ir::IRList& ir);
void store_runtime(ir::OpName value, ir::Context& ctx, ir::IRList& ir);
};
class ArrayDeclareWithInit : public Declare {
public:
ArrayIdentifier& name;
ArrayDeclareInitValue& value;
bool is_const;
ArrayDeclareWithInit(ArrayIdentifier& name, ArrayDeclareInitValue& value,
bool is_const = false);
virtual void print(int indentation = 0, bool end = false,
std::ostream& out = std::cerr);
protected:
virtual void _generate_ir(ir::Context& ctx, ir::IRList& ir);
};
class ArrayDeclare : public Declare {
public:
ArrayIdentifier& name;
ArrayDeclare(ArrayIdentifier& name);
virtual void print(int indentation = 0, bool end = false,
std::ostream& out = std::cerr);
protected:
virtual void _generate_ir(ir::Context& ctx, ir::IRList& ir);
};
class FunctionDefineArg : public Expression {
public:
int type;
Identifier& name;
FunctionDefineArg(int type, Identifier& name);
virtual void print(int indentation = 0, bool end = false,
std::ostream& out = std::cerr);
};
class FunctionDefineArgList : public Expression {
public:
std::vector<FunctionDefineArg*> list;
virtual void print(int indentation = 0, bool end = false,
std::ostream& out = std::cerr);
};
class FunctionDefine : public BaseNode {
public:
int return_type;
Identifier& name;
FunctionDefineArgList& args;
Block& body;
FunctionDefine(int return_type, Identifier& name, FunctionDefineArgList& args,
Block& body);
virtual void print(int indentation = 0, bool end = false,
std::ostream& out = std::cerr);
protected:
virtual void _generate_ir(ir::Context& ctx, ir::IRList& ir);
};
class Root : public BaseNode {
public:
std::vector<BaseNode*> body;
virtual void print(int indentation = 0, bool end = true,
std::ostream& out = std::cerr);
protected:
virtual void _generate_ir(ir::Context& ctx, ir::IRList& ir);
};
} // namespace ast::node
} // namespace syc
| 11,971
|
C++
|
.h
| 343
| 30.463557
| 80
| 0.685393
|
nzh63/syc
| 39
| 13
| 0
|
GPL-3.0
|
9/20/2024, 10:45:34 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,887
|
generate.h
|
nzh63_syc/src/ast/generate/generate.h
|
/*
* syc, a compiler for SysY
* Copyright (C) 2020-2021 nzh63, skywf21
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#pragma once
#include <cstdlib>
#include "ast/node.h"
namespace syc::ast {
extern syc::ast::node::Root* root;
syc::ast::node::Root* generate(FILE* input = stdin);
} // namespace syc::ast
| 918
|
C++
|
.h
| 24
| 36.5
| 73
| 0.745516
|
nzh63/syc
| 39
| 13
| 0
|
GPL-3.0
|
9/20/2024, 10:45:34 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,890
|
FakeArduino.cpp
|
Open-Smartwatch_lib-open-smartwatch/FakeArduino.cpp
|
#include "FakeArduino.h"
#ifdef OSW_EMULATOR
#include <SDL.h>
#include <stdint.h>
#include <stdlib.h>
#include <random>
std::mt19937_64 gen(std::random_device{}());
// copy over missing functions from Arduino.h here, and fix them so they run :)
long millis() { return SDL_GetTicks(); }
long random(int howbig) {
uint32_t x = gen();
uint64_t m = uint64_t(x) * uint64_t(howbig);
uint32_t l = uint32_t(m);
if (l < howbig) {
uint32_t t = -howbig;
if (t >= howbig) {
t -= howbig;
if (t >= howbig) t %= howbig;
}
while (l < t) {
x = rand();
m = uint64_t(x) * uint64_t(howbig);
l = uint32_t(m);
}
}
return m >> 32;
}
long random(int howsmall, int howbig) {
if (howsmall >= howbig) {
return howsmall;
}
long diff = howbig - howsmall;
return random(diff) + howsmall;
}
void delay(long millis) { SDL_Delay(millis); }
int32_t min(int32_t a, int32_t b) { return a < b ? a : b; }
int32_t max(int32_t a, int32_t b) { return a > b ? a : b; }
#endif
| 1,014
|
C++
|
.cpp
| 38
| 23.578947
| 79
| 0.613402
|
Open-Smartwatch/lib-open-smartwatch
| 39
| 14
| 0
|
GPL-3.0
|
9/20/2024, 10:45:34 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,891
|
osm_render.cpp
|
Open-Smartwatch_lib-open-smartwatch/osm_render.cpp
|
#include "osm_render.h"
#include "gfx_2d.h"
// #include <stdio.h>
// Memory estimation in bytes:
// 256*256*2=131.072
// 2x2 = 524.288
// 3x3 = 1.179.648
// 4x4 = 2.097.152
// 5x5 = 3.276.800
Graphics2D *getTile(BufferedTile **buffer, uint8_t bufferLength, loadTile loadTileFn, uint32_t tileX, uint32_t tileY,
uint8_t tileZ) {
// return buffered tile
for (uint16_t i = 0; i < bufferLength; i++) {
if (buffer[i] != NULL && buffer[i]->hasTile(tileX, tileY, tileZ)) {
return buffer[i]->getGraphics();
}
}
// find oldest tile
unsigned long oldestTimeStamp = 4294967295;
uint16_t oldestIndex = 0;
for (uint16_t i = 0; i < bufferLength; i++) {
if (buffer[i] != NULL && buffer[i]->getLastUsed() < oldestTimeStamp) {
oldestTimeStamp = buffer[i]->getLastUsed();
oldestIndex = i;
}
}
// overwrite withe new tile
buffer[oldestIndex]->loadTile(loadTileFn, tileX, tileY, tileZ);
// return fresh tile
return buffer[oldestIndex]->getGraphics();
}
void drawTilesBuffered(BufferedTile **buffer, uint8_t n, Graphics2D *target, //
loadTile loadTileFn, float lat, float lon, uint8_t z) {
// TODO: proxy loadTileFn and reuse buffered tile if present
float tileX = lon2tilex(lon, z);
float tileY = lat2tiley(lat, z);
uint16_t zoom = z;
int32_t tposX = target->getWidth() / 2 - tileOffset(tileX);
int32_t tposY = target->getHeight() / 2 - tileOffset(tileY);
// getTile(buffer, n, loadTileFn, tileX, tileY, zoom)->fillFrame(0, 0, 255, 255, rgb565(255, 0, 0));
target->drawGraphics2D(tposX, tposY, getTile(buffer, n, loadTileFn, tileX, tileY, zoom));
// TODO below is not optimal, we have cases where nothing needs to be drawn
if (tileOffset(tileX) < 128 && tileOffset(tileY) < 128) {
// top left (first tile is bot right)
target->drawGraphics2D(tposX - TILE_W, tposY /* */, getTile(buffer, n, loadTileFn, tileX - 1, tileY, zoom));
target->drawGraphics2D(tposX - TILE_W, tposY - TILE_H, getTile(buffer, n, loadTileFn, tileX - 1, tileY - 1, zoom));
target->drawGraphics2D(tposX /* */, tposY - TILE_H, getTile(buffer, n, loadTileFn, tileX, tileY - 1, zoom));
} else if (tileOffset(tileX) < 128 && tileOffset(tileY) >= 128) {
// bot left (first tile is top right)
target->drawGraphics2D(tposX - TILE_W, tposY /* */, getTile(buffer, n, loadTileFn, tileX - 1, tileY, zoom));
target->drawGraphics2D(tposX - TILE_W, tposY + TILE_H, getTile(buffer, n, loadTileFn, tileX - 1, tileY + 1, zoom));
target->drawGraphics2D(tposX /* */, tposY + TILE_H, getTile(buffer, n, loadTileFn, tileX, tileY + 1, zoom));
} else if (tileOffset(tileX) >= 128 && tileOffset(tileY) >= 128) {
// bot right (first tile is top left)
target->drawGraphics2D(tposX /* */, tposY + TILE_H, getTile(buffer, n, loadTileFn, tileX, tileY + 1, zoom));
target->drawGraphics2D(tposX + TILE_W, tposY + TILE_H, getTile(buffer, n, loadTileFn, tileX + 1, tileY + 1, zoom));
target->drawGraphics2D(tposX + TILE_W, tposY /* */, getTile(buffer, n, loadTileFn, tileX + 1, tileY, zoom));
} else {
// top right (first tile is bot left)
target->drawGraphics2D(tposX + TILE_W, tposY /* */, getTile(buffer, n, loadTileFn, tileX + 1, tileY, zoom));
target->drawGraphics2D(tposX + TILE_W, tposY - TILE_H, getTile(buffer, n, loadTileFn, tileX + 1, tileY - 1, zoom));
target->drawGraphics2D(tposX /* */, tposY - TILE_H, getTile(buffer, n, loadTileFn, tileX, tileY - 1, zoom));
}
}
void drawTiles(Graphics2D *target, loadTile loadTileFn, float lat, float lon, uint8_t z) {
float tileX = lon2tilex(lon, z);
float tileY = lat2tiley(lat, z);
uint16_t zoom = z;
int32_t tposX = target->getWidth() / 2 - tileOffset(tileX);
int32_t tposY = target->getHeight() / 2 - tileOffset(tileY);
// target->fill(rgb565(0, 0, 0));
loadTileFn(target, zoom, tileX, tileY, tposX, tposY);
// target->drawFrame(tposX, tposY, 256, 256, rgb565(255, 0, 0));
// TODO below is not optimal, we have cases where nothing needs to be drawn
if (tileOffset(tileX) < 128 && tileOffset(tileY) < 128) {
// top left (first tile is bot right)
loadTileFn(target, zoom, tileX - 1, tileY, tposX - TILE_W, tposY);
loadTileFn(target, zoom, tileX - 1, tileY - 1, tposX - TILE_W, tposY - TILE_H);
loadTileFn(target, zoom, tileX, tileY - 1, tposX, tposY - TILE_H);
// target->drawFrame(200, 200, 10, 10, rgb565(255, 0, 0));
} else if (tileOffset(tileX) < 128 && tileOffset(tileY) >= 128) {
// bot left (first tile is top right)
loadTileFn(target, zoom, tileX - 1, tileY, tposX - TILE_W, tposY);
loadTileFn(target, zoom, tileX - 1, tileY + 1, tposX - TILE_W, tposY + TILE_H);
loadTileFn(target, zoom, tileX, tileY + 1, tposX, tposY + TILE_H);
// target->drawFrame(200, 40, 10, 10, rgb565(255, 0, 0));
} else if (tileOffset(tileX) >= 128 && tileOffset(tileY) >= 128) {
// bot right (first tile is top left)
loadTileFn(target, zoom, tileX, tileY + 1, tposX, tposY + TILE_H);
loadTileFn(target, zoom, tileX + 1, tileY + 1, tposX + TILE_W, tposY + TILE_H);
loadTileFn(target, zoom, tileX + 1, tileY, tposX + TILE_W, tposY);
// target->drawFrame(40, 40, 10, 10, rgb565(255, 0, 0));
} else {
// top right (first tile is bot left)
loadTileFn(target, zoom, tileX + 1, tileY, tposX + TILE_W, tposY);
loadTileFn(target, zoom, tileX + 1, tileY - 1, tposX + TILE_W, tposY - TILE_H);
loadTileFn(target, zoom, tileX, tileY - 1, tposX, tposY - TILE_H);
// target->drawFrame(40, 200, 10, 10, rgb565(255, 0, 0));
}
}
| 5,605
|
C++
|
.cpp
| 100
| 51.89
| 119
| 0.652641
|
Open-Smartwatch/lib-open-smartwatch
| 39
| 14
| 0
|
GPL-3.0
|
9/20/2024, 10:45:34 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,892
|
gfx_util.cpp
|
Open-Smartwatch_lib-open-smartwatch/gfx_util.cpp
|
#include "gfx_util.h"
#ifdef OSW_EMULATOR
#include "FakeArduino.h"
#else
#include <Arduino.h>
#endif
uint16_t rgb565(uint8_t red, uint8_t green, uint8_t blue) {
return ((red & 0b00011111000) << 8) | ((green & 0b00011111100) << 3) | (blue >> 3);
}
uint32_t rgb888(uint8_t red, uint8_t green, uint8_t blue) {
return ((uint32_t)red << 16) | ((uint32_t)green << 8) | (uint32_t)blue;
}
uint16_t rgb888to565(uint32_t rgb888) { return rgb565(rgb888_red(rgb888), rgb888_green(rgb888), rgb888_blue(rgb888)); }
uint32_t rgb565to888(uint16_t rgb565) { return rgb888(rgb565_red(rgb565), rgb565_green(rgb565), rgb565_blue(rgb565)); }
uint16_t blend(uint16_t target, uint16_t source, float alpha) {
uint8_t r = rgb565_red(source) * alpha + rgb565_red(target) * (1.0 - alpha);
uint8_t g = rgb565_green(source) * alpha + rgb565_green(target) * (1.0 - alpha);
uint8_t b = rgb565_blue(source) * alpha + rgb565_blue(target) * (1.0 - alpha);
return rgb565(r, g, b);
}
/**
* @brief Calculated the color code of a dimmed color
*
* @param oc Color code
* @param amount Amount to dimmed.
* @return uint16_t Color code of the dimmed color.
*/
uint16_t dimColor(uint16_t oc, uint8_t amount) {
uint16_t r = rgb565_red(oc);
uint16_t g = rgb565_green(oc);
uint16_t b = rgb565_blue(oc);
r = r >= amount ? r - amount : 0;
g = g >= amount * 2 ? g - amount * 2 : 0;
b = b >= amount ? b - amount : 0;
uint16_t nc = rgb565(r, g, b);
return nc;
}
uint16_t changeColor(uint16_t oc, float amount) {
uint16_t r = rgb565_red(oc);
uint16_t g = rgb565_green(oc);
uint16_t b = rgb565_blue(oc);
r = r * amount;
g = g * amount;
b = b * amount;
uint16_t nc = rgb565(r, g, b);
return nc;
}
uint8_t rgb565_red(uint16_t rgb565) {
// |rrrrrggg|gggbbbbb|
return (rgb565 >> 8) & 0b11111000;
}
uint8_t rgb565_green(uint16_t rgb565) {
// |rrrrrggg|gggbbbbb|
return (rgb565 >> 3) & 0b11111100;
}
uint8_t rgb565_blue(uint16_t rgb565) {
// |rrrrrggg|gggbbbbb|
return (rgb565 << 3);
}
uint8_t rgb888_red(uint32_t rgb888) {
// |rrrrrrrr|gggggggg|bbbbbbbb|
return rgb888 >> 16;
}
uint8_t rgb888_green(uint32_t rgb888) {
// |rrrrrrrr|gggggggg|bbbbbbbb|
return rgb888 >> 8;
}
uint8_t rgb888_blue(uint32_t rgb888) {
// |rrrrrrrr|gggggggg|bbbbbbbb|
return rgb888;
}
// Shamelessly copied from
// https://stackoverflow.com/questions/3018313/algorithm-to-convert-rgb-to-hsv-and-hsv-to-rgb-in-range-0-255-for-both
void hsvToRgb(const unsigned char& h, const unsigned char& s, const unsigned char& v, unsigned char& r,
unsigned char& g, unsigned char& b) {
unsigned char region, remainder, p, q, t;
if (s == 0) {
r = v;
g = v;
b = v;
return;
}
region = h / 43;
remainder = (h - (region * 43)) * 6;
p = (v * (255 - s)) >> 8;
q = (v * (255 - ((s * remainder) >> 8))) >> 8;
t = (v * (255 - ((s * (255 - remainder)) >> 8))) >> 8;
switch (region) {
case 0:
r = v;
g = t;
b = p;
break;
case 1:
r = q;
g = v;
b = p;
break;
case 2:
r = p;
g = v;
b = t;
break;
case 3:
r = p;
g = q;
b = v;
break;
case 4:
r = t;
g = p;
b = v;
break;
default:
r = v;
g = p;
b = q;
break;
}
}
// Also shamelessly copied from
// https://stackoverflow.com/questions/3018313/algorithm-to-convert-rgb-to-hsv-and-hsv-to-rgb-in-range-0-255-for-both
void rgbToHsv(const unsigned char& r, const unsigned char& g, const unsigned char& b, unsigned char& h,
unsigned char& s, unsigned char& v) {
unsigned char rgbMin, rgbMax;
rgbMin = r < g ? (r < b ? r : b) : (g < b ? g : b);
rgbMax = r > g ? (r > b ? r : b) : (g > b ? g : b);
v = rgbMax;
if (v == 0) {
h = 0;
s = 0;
return;
}
s = 255 * long(rgbMax - rgbMin) / v;
if (s == 0) {
h = 0;
return;
}
if (rgbMax == r)
h = 0 + 43 * (g - b) / (rgbMax - rgbMin);
else if (rgbMax == g)
h = 85 + 43 * (b - r) / (rgbMax - rgbMin);
else
h = 171 + 43 * (r - g) / (rgbMax - rgbMin);
};
| 4,107
|
C++
|
.cpp
| 145
| 24.634483
| 119
| 0.594663
|
Open-Smartwatch/lib-open-smartwatch
| 39
| 14
| 0
|
GPL-3.0
|
9/20/2024, 10:45:34 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,893
|
time_util.cpp
|
Open-Smartwatch_lib-open-smartwatch/time_util.cpp
|
#include "time_util.h"
long seconds(long seconds) { return (seconds % 60); }
long minutes(long seconds) {
long fh = (seconds / 3600); // full hours
return (((seconds - fh * 3600) / 60.0));
}
long hours24(long seconds) {
long fd = (seconds / 3600) / 24; // full days
return ((seconds - fd * 24 * 3600) / 3600.0) * 30;
}
| 330
|
C++
|
.cpp
| 10
| 31.1
| 53
| 0.626959
|
Open-Smartwatch/lib-open-smartwatch
| 39
| 14
| 0
|
GPL-3.0
|
9/20/2024, 10:45:34 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,894
|
math_osm.cpp
|
Open-Smartwatch_lib-open-smartwatch/math_osm.cpp
|
#include "math_osm.h"
#ifdef OSW_EMULATOR
#include "FakeArduino.h"
#else
#include <Arduino.h>
#endif
// source: https://wiki.openstreetmap.org/wiki/Slippy_map_tilenames#C.2FC.2B.2B
// we return float here, because we need the fraction
float lon2tilex(float lon, uint8_t z) { return (lon + 180.0) / 360.0 * (float)(1 << z); }
float lat2tiley(float lat, uint8_t z) {
float latrad = lat * PI / 180.0;
return (1.0 - asinh(tan(latrad)) / PI) / 2.0 * (float)(1 << z);
}
// helper function to get the offset within the tile
int32_t tileOffset(float tilex) {
int32_t decimalPlaces = (int32_t)tilex;
return (int32_t)(255 * (tilex - decimalPlaces));
}
float tilex2lon(float x, uint8_t z) { return x / (float)(1 << z) * 360.0 - 180; }
float tiley2lat(float y, uint8_t z) {
float n = PI - TWO_PI * y / (float)(1 << z);
return 180.0 / PI * atan(0.5 * (exp(n) - exp(-n)));
}
float osmResolution[] = {156543.03, 78271.52, 39135.76, 19567.88, 9783.94, 4891.97, 2445.98, 1222.99, 611.50, 305.75,
152.87, 76.43, 38.21, 19.10, 9.55, 4.77, 2.38, 1.19, 0.59};
float getTileResolution(float lat, uint8_t z) { return 156543.03 /*meters/pixel*/ * cos(lat) / (2 ^ z); }
| 1,216
|
C++
|
.cpp
| 26
| 43.961538
| 117
| 0.632203
|
Open-Smartwatch/lib-open-smartwatch
| 39
| 14
| 0
|
GPL-3.0
|
9/20/2024, 10:45:34 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,895
|
anim_doom_fire_old.cpp
|
Open-Smartwatch_lib-open-smartwatch/anim_doom_fire_old.cpp
|
#include "anim_doom_fire_old.h"
#include "gfx_2d.h"
#include "gfx_util.h"
// see: https://p3dt.net/post/2019/01/05/playing-with-doom.html
const uint16_t doomColorMap[36] = {
//
rgb565(0x00, 0x00, 0x00), // #000000
rgb565(0x1f, 0x07, 0x07), // #1f0707
rgb565(0x2f, 0x0f, 0x07), // #2f0f07
rgb565(0x47, 0x0f, 0x07), // #470f07
rgb565(0x57, 0x17, 0x07), // #571707
rgb565(0x67, 0x1f, 0x07), // #671f07
rgb565(0x77, 0x1f, 0x07), // #771f07
rgb565(0x8f, 0x27, 0x07), // #8f2707
rgb565(0x9f, 0x2f, 0x07), // #9f2f07
rgb565(0xaf, 0x3f, 0x07), // #af3f07
rgb565(0xbf, 0x47, 0x07), // #bf4707
rgb565(0xc7, 0x47, 0x07), // #c74707
rgb565(0xDF, 0x4F, 0x07), // #DF4F07
rgb565(0xDF, 0x57, 0x07), // #DF5707
rgb565(0xDF, 0x57, 0x07), // #DF5707
rgb565(0xD7, 0x5F, 0x07), // #D75F07
rgb565(0xD7, 0x67, 0x0F), // #D7670F
rgb565(0xcf, 0x6f, 0x0f), // #cf6f0f
rgb565(0xcf, 0x77, 0x0f), // #cf770f
rgb565(0xcf, 0x7f, 0x0f), // #cf7f0f
rgb565(0xCF, 0x87, 0x17), // #CF8717
rgb565(0xC7, 0x87, 0x17), // #C78717
rgb565(0xC7, 0x8F, 0x17), // #C78F17
rgb565(0xC7, 0x97, 0x1F), // #C7971F
rgb565(0xBF, 0x9F, 0x1F), // #BF9F1F
rgb565(0xBF, 0x9F, 0x1F), // #BF9F1F
rgb565(0xBF, 0xA7, 0x27), // #BFA727
rgb565(0xBF, 0xA7, 0x27), // #BFA727
rgb565(0xBF, 0xAF, 0x2F), // #BFAF2F
rgb565(0xB7, 0xAF, 0x2F), // #B7AF2F
rgb565(0xB7, 0xB7, 0x2F), // #B7B72F
rgb565(0xB7, 0xB7, 0x37), // #B7B737
rgb565(0xCF, 0xCF, 0x6F), // #CFCF6F
rgb565(0xDF, 0xDF, 0x9F), // #DFDF9F
rgb565(0xEF, 0xEF, 0xC7), // #EFEFC7
rgb565(0xFF, 0xFF, 0xFF) // #FFFFFF
};
void setupFire(uint8_t **firePixels, uint16_t w, uint16_t h) {
for (uint8_t y = 0; y < h; y++) {
for (uint8_t x = 0; x < w; x++) {
// last row is hot
firePixels[y][x] = y == h - 1 ? 35 : 0;
}
}
}
void calcFire(uint8_t **firePixels, uint16_t w, uint16_t h) {
for (uint8_t y = 0; y < h - 1; y++) {
for (uint8_t x = 0; x < w; x++) {
uint8_t wind = x + random(2);
wind = wind >= w ? wind - w : wind;
uint8_t speed = y + random(2);
speed = speed >= h ? h - 1 : speed;
firePixels[y][x] = firePixels[speed][wind] - random(2);
firePixels[y][x] = firePixels[y][x] > 35 ? 0 : firePixels[y][x]; // fix overflow
}
}
}
void mapFire(uint8_t **firePixels, uint16_t fireW, uint16_t fireH, //
Graphics2D *graphics2d, uint16_t offsetX, uint16_t offsetY) {
for (uint8_t x = 0; x < fireW; x++) {
for (uint8_t y = 0; y < fireH; y++) {
graphics2d->drawPixel(x + offsetX, y + offsetY, doomColorMap[firePixels[y][x]]);
}
}
}
| 2,707
|
C++
|
.cpp
| 71
| 33.521127
| 87
| 0.576967
|
Open-Smartwatch/lib-open-smartwatch
| 39
| 14
| 0
|
GPL-3.0
|
9/20/2024, 10:45:34 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,896
|
anim_water_ripple.cpp
|
Open-Smartwatch_lib-open-smartwatch/anim_water_ripple.cpp
|
#include "anim_water_ripple.h"
#ifdef OSW_EMULATOR
#include "FakeArduino.h"
#else
#include <Arduino.h>
#endif
#include "gfx_2d.h"
#include "gfx_util.h"
// helper to calculate position in the buffer
#define a(x, y, width) (x) + ((y)*width)
// implementation according to:
// https://web.archive.org/web/20160418004149/http://freespace.virgin.net/hugo.elias/graphics/x_water.htm
void calcWater(int8_t* buf1, int8_t* buf2, uint16_t width, uint16_t height, float damping /* [0,1]*/) {
// for every non-edge element
// this could be faster, but this is easier to understand:
for (uint16_t x = 1; x < width - 1; x++) {
for (uint16_t y = 1; y < height - 1; y++) {
int16_t velocity = -buf2[a(x, y, width)];
int16_t smoothed = (buf1[a(x - 1, y, width)] //
+ buf1[a(x + 1, y, width)] //
+ buf1[a(x, y + 1, width)] //
+ buf1[a(x, y - 1, width)]) /
2;
buf2[a(x, y, width)] = (smoothed + velocity) * damping;
}
}
}
void mapWater(int8_t* buf, uint16_t width, uint16_t height, Graphics2D* background, Graphics2D* target,
uint16_t offsetX, uint16_t offsetY) {
for (uint16_t x = 1; x < width - 1; x++) {
for (uint16_t y = 1; y < height - 1; y++) {
int16_t xShift = x + (buf[a(x - 1, y, width)] - buf[a(x + 1, y, width)]) / 2;
int16_t yShift = y + (buf[a(x, y - 1, width)] - buf[a(x, y + 1, width)]) / 2;
xShift = xShift >= width ? width - 1: xShift;
xShift = xShift < 0 ? 0 : xShift;
yShift = yShift >= height ? height - 1: yShift;
yShift = yShift < 0 ? 0 : yShift;
int16_t shiftedColor = background->getPixel(xShift, yShift);
target->drawPixel(x, y, shiftedColor);
}
}
}
| 1,780
|
C++
|
.cpp
| 42
| 36.142857
| 105
| 0.568537
|
Open-Smartwatch/lib-open-smartwatch
| 39
| 14
| 0
|
GPL-3.0
|
9/20/2024, 10:45:34 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,897
|
math_angles.cpp
|
Open-Smartwatch_lib-open-smartwatch/math_angles.cpp
|
#include "math_angles.h"
#ifdef OSW_EMULATOR
#include "FakeArduino.h"
#else
#include <Arduino.h>
#endif
// rotate a point around a center (cy,cy), with a radius r, 0 degrees ist 12 o'clock
float rpx(float cx, float r, float d) { return cx + r * cos((d - 90) * 1000.0 / 57296.0); }
float rpy(float cy, float r, float d) { return cy + r * sin((d - 90) * 1000.0 / 57296.0); }
// rotate a point around a point
int32_t rotateX(int32_t x, int32_t y, int32_t rx, int32_t ry, float cosA, float sinA) {
return (x - rx) * cosA + (y - ry) * sinA;
}
int32_t rotateY(int32_t x, int32_t y, int32_t rx, int32_t ry, float cosA, float sinA) {
return (y - ry) * cosA - (x - rx) * sinA;
}
int32_t rotateX(int32_t x, int32_t y, int32_t rx, int32_t ry, float a) {
return (x - rx) * cos(a) + (y - ry) * sin(a);
}
int32_t rotateY(int32_t x, int32_t y, int32_t rx, int32_t ry, float a) {
return (y - ry) * cos(a) - (x - rx) * sin(a);
}
// seconds to degrees (0-360)
float s2d(long seconds) { return (seconds % 60) * 6; }
// minutes to degrees (0-360)
float m2d(long seconds) {
long fh = (seconds / 3600); // full hours
return (((seconds - fh * 3600) / 60.0)) * 6;
}
// hours to degrees (0-360)
float h2d(long seconds) {
long fd = (seconds / 3600) / 24; // full days
return ((seconds - fd * 24 * 3600) / 3600.0) * 30;
}
float sign(float x1, float y1, float x2, float y2, float x3, float y3) {
return (x1 - x3) * (y2 - y3) - (x2 - x3) * (y1 - y3);
}
// Source: https://stackoverflow.com/questions/2049582/how-to-determine-if-a-point-is-in-a-2d-triangle
bool pointInsideTriangle(float px, float py, float x1, float y1, float x2, float y2, float x3, float y3) {
float d1, d2, d3;
bool has_neg, has_pos;
d1 = sign(px, py, x1, y1, x2, y2);
d2 = sign(px, py, x2, y2, x3, y3);
d3 = sign(px, py, x3, y3, x1, y1);
has_neg = (d1 < 0) || (d2 < 0) || (d3 < 0);
has_pos = (d1 > 0) || (d2 > 0) || (d3 > 0);
return !(has_neg && has_pos);
}
| 1,948
|
C++
|
.cpp
| 48
| 38.625
| 106
| 0.615996
|
Open-Smartwatch/lib-open-smartwatch
| 39
| 14
| 0
|
GPL-3.0
|
9/20/2024, 10:45:34 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,898
|
anim_firework.cpp
|
Open-Smartwatch_lib-open-smartwatch/anim_firework.cpp
|
#include "anim_firework.h"
void Particle::tick(long ms, float friction, float gravity) {
// update position
locationX += speedX * (ms / 1000.0);
locationY += speedY * (ms / 1000.0);
// update velocity
speedX = speedX - friction * (ms / 1000.0);
speedY = speedY + gravity * (ms / 1000.0);
// printf("particle at %d/%d\n", locationX, locationY);
}
void Firework::init(uint16_t color_, uint8_t radius, uint8_t rings, //
uint16_t screenWidth, uint16_t screenHeight) {
height = 0;
explHeight = random((float)screenHeight * 0.2, (float)screenHeight * 0.8);
age = 0;
color = color_;
for (uint8_t i = 0; i < numParticles; i++) {
// precalculate particle starting points
float pointsOnRing = ((float)numParticles / (float)rings);
uint8_t ring = (i / pointsOnRing) + 1;
float angle = (360.0 / pointsOnRing) * i;
particles[i].locationX = rpx(0, ring * radius, angle);
particles[i].locationY = rpy(0, ring * radius, angle);
// TODO: rotate particle velocities in a circle of radius
particles[i].speedX = rpx(0, radius, angle) * 2;
particles[i].speedY = rpy(0, radius, angle) * 2;
}
}
void Firework::tick(long ms, uint8_t launchSpeed) {
if (height < explHeight) {
height += launchSpeed * (ms / 100.0);
} else {
for (uint8_t i = 0; i < numParticles; i++) {
particles[i].tick(ms, .1, 9.8);
}
color = dimColor(color, age / 1000);
age += ms;
}
}
void Firework::draw(Graphics2D* gfx, int16_t offsetX, int16_t offsetY) {
if (height < explHeight) {
gfx->drawPixel(offsetX, offsetY - height, rgb565(255, 255, 255));
} else {
for (uint8_t i = 0; i < numParticles; i++) {
gfx->drawPixel(offsetX + (int)particles[i].locationX, offsetY - height + (int)particles[i].locationY, color);
}
}
}
| 1,812
|
C++
|
.cpp
| 48
| 33.708333
| 115
| 0.637244
|
Open-Smartwatch/lib-open-smartwatch
| 39
| 14
| 0
|
GPL-3.0
|
9/20/2024, 10:45:34 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,899
|
main.cpp
|
Open-Smartwatch_lib-open-smartwatch/examples/perlin/main.cpp
|
#include <stdint.h>
#include <iostream>
#include "../../FakeArduino.h"
#include "../../FakeArduinoWindowSDL.h"
#include "../../gfx_2d.h"
#include "../../gfx_util.h"
#include "../../math_angles.h"
#include "../../SimplexNoise.h"
SimplexNoise sn;
using namespace std;
#define BUF_W 240
#define BUF_H 240
uint16_t screenBuffer[BUF_W * BUF_H];
Graphics2D gfx2d(BUF_W, BUF_H, 16);
// mix colors
int16_t mix(uint8_t base, float n1, float n2) { return (n1 - abs(n2)) * base; }
void fillPerlin(uint16_t counter) {
for (uint8_t x = 0; x < BUF_W; x++) {
for (uint8_t y = 0; y < BUF_H; y++) {
float n1 = sn.fractal(7, (x + counter) / 120.0, y / 120.0); // sn.noise returns [-1,1]
float n2 = sn.noise((x + counter) / 2, y / 2); // sn.noise returns [-1,1]
uint8_t r = n1 > 0 ? (n1 - n2) * 255 : 0;
uint8_t g = r;
uint8_t b = r;
uint16_t color = rgb565(r, g, b);
if (n1 < -.1) { // deep water
color = rgb565(72 * (1 + n1) + mix(5, n1, n2), 72 * (1 + n1) + mix(5, n1, n2), 190 * (1 + n1) + mix(5, n1, n2));
} else if (n1 < 0) { // shallow water plateaus
color = rgb565(72 + mix(5, n1, n2), 72 + mix(5, n1, n2), 190 + mix(5, n1, n2));
} else if (n1 < .0125) { // beaches
color = rgb565(200 + mix(5, n1, n2), 200 + mix(20, n1, n2), 47 + mix(5, n1, n2));
} else if (n1 < .2) { // meadows
color = rgb565(85 + mix(40, n1, n2), 107 + mix(20, n1, n2), 47 + mix(20, n1, n2));
} else if (n1 < .7) { // forest
color = rgb565((85 * (1 - (n1 - .2) * 2)) + (35 * ((n1 - .2) * 2)) - mix(10, n1, n2),
(107 * (1 - (n1 - .2) * 2)) + (57 * ((n1 - .2) * 2)) - mix(20, n1, n2),
(47 * (1 - (n1 - .2) * 2)) + (7 * ((n1 - .2) * 2)) - mix(10, n1, n2));
} else {
color = rgb565(35, 57, 7) - rgb565(85 + mix(40, n1, n2), 107 + mix(20, n1, n2), 47 + mix(20, n1, n2));
}
gfx2d.drawPixel(x, y, color);
}
}
}
class PerlinWindow : public SDLWindowRGB565 {
public:
PerlinWindow(Graphics2D* gfx2d, int w, int h) : SDLWindowRGB565(gfx2d, w, h) {}
void setup() { printf("zero is %d", rgb565(0, 0, 0)); }
void loop() {
static uint16_t counter = 0;
counter++;
fillPerlin(counter);
}
};
int main(int argc, char* argv[]) {
PerlinWindow pw(&gfx2d, BUF_W, BUF_H);
pw.run();
return 0;
}
| 2,381
|
C++
|
.cpp
| 59
| 35.440678
| 120
| 0.518631
|
Open-Smartwatch/lib-open-smartwatch
| 39
| 14
| 0
|
GPL-3.0
|
9/20/2024, 10:45:34 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,900
|
main.cpp
|
Open-Smartwatch_lib-open-smartwatch/examples/text/main.cpp
|
#include <stdint.h>
#include <stdio.h>
#include "../../FakeArduino.h"
#include "../../FakeArduinoWindowSDL.h"
#include "../../gfx_2d_print.h"
#include "../../gfx_util.h"
#include "../../fonts/Picopixel.h"
#include "../../fonts/FreeSans11pt8b.h"
using namespace std;
#define BUF_W 240
#define BUF_H 240
Graphics2DPrint gfx2d(BUF_W, BUF_H, 16);
// uint16_t maskColor = rgb565(0, 0, 0);
class RotationExampleWindow : public SDLWindowRGB565 {
public:
RotationExampleWindow(Graphics2D* gfx2d, int w, int h) : SDLWindowRGB565(gfx2d, w, h) {}
void setup() {
// gfx2d.enableMask(rgb565(0, 0, 0));
}
void loop() {
static uint16_t counter = 1;
Graphics2DPrint* gfx = &gfx2d;
counter++;
gfx->fill(rgb565(0, 0, 0));
gfx->setTextSize(1);
gfx->setTextLeftAligned();
gfx->setTextCursor(120, 20);
gfx->print("Left\naligned");
gfx->setTextRightAligned();
gfx->setTextCursor(120, 40);
gfx->print("Right\naligned");
gfx->setTextCursor(0, 120);
gfx->setTextLeftAligned();
gfx->setTextMiddleAligned();
gfx->print("middle1\nmiddle2");
gfx->setTextCenterAligned();
gfx->setTextTopAligned();
gfx->setTextCursor(120, 120);
gfx->print("Top aligned\n(top supports multiple_rows)");
gfx->setTextCenterAligned();
gfx->setTextBottomAligned();
gfx->setTextCursor(120, 120);
gfx->print("Bottom aligned"); // does not support multiple rows
gfx->setTextCenterAligned();
gfx->setTextBottomAligned();
gfx->setTextCursor(120, 150);
gfx->setTextSize(2);
gfx->print("Some specifics \n caracters \n \xA4 \xDF \xE0"); // does not support multiple rows
gfx->setFont(&Picopixel);
gfx->setTextCenterAligned();
gfx->setTextCursor(120,200);
gfx->setTextSize(1);
gfx->print("Font pico Pixel");
gfx->clearFont();
gfx->setFont(&FreeSans11pt8b);
gfx->setTextCenterAligned();
gfx->setTextCursor(120,220);
gfx->setTextSize(1);
gfx->print("Font Serif Bold 9px");
gfx->clearFont();
/*
gfx->fill(rgb565(0, 0, 0));
int i = 0;
int j = 0;
gfx->setTextSize(1);
for(i=0; i<11; i++){
for(j=0;j<17;j++){
gfx->setTextCursor(j*15+10,i*15+10);
gfx->print(char(i*10+j+160));
}
}
*/
}
};
int main(int argc, char* argv[]) {
RotationExampleWindow exampleWindow(&gfx2d, BUF_W, BUF_H);
exampleWindow.run();
return 0;
}
| 2,412
|
C++
|
.cpp
| 79
| 26.21519
| 99
| 0.652682
|
Open-Smartwatch/lib-open-smartwatch
| 39
| 14
| 0
|
GPL-3.0
|
9/20/2024, 10:45:34 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,901
|
main.cpp
|
Open-Smartwatch_lib-open-smartwatch/examples/water/main.cpp
|
#include <stdint.h>
#include <iostream>
#include "../../anim_water_ripple.h"
#include "../../gfx_2d.h"
#include "../../gfx_util.h"
#include "../../FakeArduino.h"
#include "../../FakeArduinoWindowSDL.h"
using namespace std;
#define BUF_W 240
#define BUF_H 240
#define WATER_W 120
#define WATER_H 120
int8_t wbuf1[WATER_W * WATER_H];
int8_t wbuf2[WATER_W * WATER_H];
Graphics2D gfx2d(BUF_W, BUF_H, 16);
Graphics2D waterBackground(WATER_W, WATER_H, 8);
Graphics2D waterScreenBuffer(WATER_W, WATER_H, 8);
// mix colors
int16_t mix(uint8_t base, float n1, float n2) { return (n1 - abs(n2)) * base; }
class WaterWindow : public SDLWindowRGB565 {
public:
WaterWindow(Graphics2D* gfx2d, int w, int h) : SDLWindowRGB565(gfx2d, w, h) {}
void setup() {
for (uint16_t x = 0; x < WATER_W; x++) {
for (uint16_t y = 0; y < WATER_H; y++) {
waterBackground.drawPixel(x, y, rgb565(x % 255, y % 255, 0));
}
}
}
void loop() {
static uint16_t counter = 0;
uint16_t r1 = random(WATER_W - 4);
uint16_t r2 = random(WATER_H - 4);
for (uint16_t x = r1; x < r1 + 3; x++) {
for (uint16_t y = r2; y < r2 + 3; y++) {
wbuf1[x + WATER_W * y] = 127;
}
}
counter++;
calcWater(wbuf1, wbuf2, WATER_W, WATER_H, .9);
mapWater(wbuf1, WATER_W, WATER_H, &waterBackground, &waterScreenBuffer, 0, 0);
std::swap(wbuf1, wbuf2);
gfx2d.drawGraphics2D_2x(0, 0, &waterScreenBuffer);
delay(1000 / 30);
}
};
int main(int argc, char* argv[]) {
WaterWindow pw(&gfx2d, BUF_W, BUF_H);
pw.run();
return 0;
}
| 1,575
|
C++
|
.cpp
| 51
| 27.470588
| 82
| 0.62649
|
Open-Smartwatch/lib-open-smartwatch
| 39
| 14
| 0
|
GPL-3.0
|
9/20/2024, 10:45:34 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,902
|
main.cpp
|
Open-Smartwatch_lib-open-smartwatch/examples/osm/main.cpp
|
#include <stdint.h>
#include <stdio.h>
#include "../../FakeArduino.h"
#include "../../FakeArduinoWindowSDL.h"
#include "../../gfx_2d.h"
#include "../../gfx_util.h"
#include "../../osm_render.h"
// full screen buffer
#define BUF_W 240
#define BUF_H 240
// we buffer a quarter tile + 50% and upscale it by a factor of 2x
// this way we greatly reduce the number of reads from the uSD to load new tiles
// when moving around, and reduce memory consumption
#define MAP_BUF_W 255
#define MAP_BUF_H 255
Graphics2D gfx2d(BUF_W, BUF_H, 16);
Graphics2D tileBuffer(MAP_BUF_W, MAP_BUF_H, 5);
void loadTileFn(Graphics2D* target, int8_t z, float tilex, float tiley, int32_t offsetx, int32_t offsety) {
int16_t xStart = max(0, offsetx);
int16_t xEnd = min(target->getWidth(), target->getWidth() + offsetx);
int16_t yStart = max(0, offsety);
int16_t yEnd = min(target->getHeight(), target->getHeight() + offsety);
// printf("xStart %d, xEnd %d, yStart %d, yEnd %d", xStart, xEnd, yStart, yEnd);
uint8_t r = 0;
uint8_t g = 0;
uint8_t b = 0;
Graphics2D* tile = new Graphics2D(256, 256, 16);
const char* path = ("/Volumes/TILEDISK/map/" + std::to_string(z) + "/" + std::to_string((int)tilex) + "/" +
std::to_string((int)tiley) + ".png")
.c_str();
loadPNG(tile, path);
for (int16_t x = xStart; x < xEnd; x++) {
for (int16_t y = yStart; y < yEnd; y++) {
r++;
g++;
uint16_t color = rgb565(r, g, b);
// TODO: optimize for offset
target->drawPixel(x, y, tile->getPixel(x - offsetx, y - offsety));
}
b++;
}
}
float lat = 50.76;
float lon = 4.21;
uint16_t z = 10;
class RotationExampleWindow : public SDLWindowRGB565 {
public:
RotationExampleWindow(Graphics2D* gfx2d, int w, int h) : SDLWindowRGB565(gfx2d, w, h) {}
void setup() {}
void loop() {
static uint16_t counter = 1;
counter++;
drawTiles(&tileBuffer, (loadTile)loadTileFn, lat, lon, z);
gfx2d.drawGraphics2D(0, 0, &tileBuffer);
delay(1000 / 30);
lat += 0.001;
lon += 0.001;
// if (counter % 100 == 0) {
// z++;
// if (z == 17) {
// z = 6;
// }
// }
}
};
int main(int argc, char* argv[]) {
RotationExampleWindow exampleWindow(&gfx2d, BUF_W, BUF_H);
exampleWindow.run();
return 0;
}
| 2,321
|
C++
|
.cpp
| 70
| 29.342857
| 109
| 0.619857
|
Open-Smartwatch/lib-open-smartwatch
| 39
| 14
| 0
|
GPL-3.0
|
9/20/2024, 10:45:34 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,903
|
main.cpp
|
Open-Smartwatch_lib-open-smartwatch/examples/matrix/main.cpp
|
#include <stdint.h>
#include <stdio.h>
#include "../../FakeArduino.h"
#include "../../FakeArduinoWindowSDL.h"
#include "../../anim_matrix.h"
#include "../../anim_water_ripple.h"
#include "../../gfx_2d_print.h"
#include "../../gfx_util.h"
using namespace std;
#define BUF_W 240
#define BUF_H 240
Graphics2DPrint gfx2d(BUF_W, BUF_H, 16);
// create animation object
AnimMatrix m(&gfx2d);
class RotationExampleWindow : public SDLWindowRGB565 {
public:
RotationExampleWindow(Graphics2D* gfx2d, int w, int h) : SDLWindowRGB565(gfx2d, w, h) {}
void setup() {}
void loop() {
static uint16_t counter = 1;
Graphics2DPrint* gfx = &gfx2d;
counter++;
gfx->fill(rgb565(0, 0, 0));
// render animation
m.loop(gfx);
delay(1000 / 30);
}
};
int main(int argc, char* argv[]) {
RotationExampleWindow exampleWindow(&gfx2d, BUF_W, BUF_H);
exampleWindow.run();
return 0;
}
| 903
|
C++
|
.cpp
| 33
| 24.727273
| 90
| 0.683353
|
Open-Smartwatch/lib-open-smartwatch
| 39
| 14
| 0
|
GPL-3.0
|
9/20/2024, 10:45:34 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,904
|
main.cpp
|
Open-Smartwatch_lib-open-smartwatch/examples/doom-fire-old/main.cpp
|
#include <stdint.h>
#include <iostream>
#include "../../FakeArduino.h"
#include "../../FakeArduinoWindowSDL.h"
#include "../../anim_doom_fire_old.h"
#include "../../gfx_util.h"
using namespace std;
#define BUF_W 240
#define BUF_H 240
uint8_t** firePixels = new uint8_t*[BUF_H];
Graphics2D gfx2d(BUF_W, BUF_H,120);
class FireWindow : public SDLWindowRGB565 {
public:
FireWindow(Graphics2D* gfx2d, int w, int h) : SDLWindowRGB565(gfx2d, w, h) {}
void setup() {
// setup array rows
for (int i = 0; i < BUF_H; i++) {
firePixels[i] = new uint8_t[BUF_W];
}
setupFire(firePixels, BUF_W, BUF_H);
}
void loop() {
delay(1000 / 30);
calcFire(firePixels, BUF_W, BUF_H);
mapFire(firePixels, BUF_W, BUF_H, &gfx2d, 0, 0);
}
};
int main(int argc, char* argv[]) {
FireWindow fw(&gfx2d, BUF_W, BUF_H);
fw.run();
return 0;
}
| 864
|
C++
|
.cpp
| 32
| 24.1875
| 79
| 0.646061
|
Open-Smartwatch/lib-open-smartwatch
| 39
| 14
| 0
|
GPL-3.0
|
9/20/2024, 10:45:34 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,905
|
main.cpp
|
Open-Smartwatch_lib-open-smartwatch/examples/rotation/main.cpp
|
#include <stdint.h>
#include <stdio.h>
#include "../../FakeArduino.h"
#include "../../FakeArduinoWindowSDL.h"
#include "../../anim_water_ripple.h"
#include "../../gfx_2d.h"
#include "../../gfx_util.h"
using namespace std;
#define BUF_W 240
#define BUF_H 240
#define WATER_W 120
#define WATER_H 120
Graphics2D gfx2d(BUF_W, BUF_H, 16);
Graphics2D waterBackground(WATER_W, WATER_H, 8);
Graphics2D waterScreenBuffer(WATER_W, WATER_H, 8);
Graphics2D sprites(128, 32, 32);
Graphics2D leaf0(32, 32, 32);
Graphics2D leaf1(32, 32, 32);
Graphics2D leaf2(32, 32, 32);
Graphics2D leaf3(32, 32, 32);
int8_t wbuf1[WATER_W * WATER_H];
int8_t wbuf2[WATER_W * WATER_H];
uint16_t maskColor = rgb565(0, 0, 0);
uint8_t lx1 = 60 + (-20 + random(40)), ly1 = 60 + (-30 + random(60));
uint8_t lx2 = 60 + (-20 + random(40)), ly2 = 60 + (-30 + random(60));
uint8_t lx3 = 60 + (-20 + random(40)), ly3 = 60 + (-30 + random(60));
uint8_t lx4 = 60 + (-20 + random(40)), ly4 = 60 + (-30 + random(60));
int8_t mx1 = -2 + random(10), my1 = -2 + random(10);
int8_t mx2 = -2 + random(10), my2 = -2 + random(10);
int8_t mx3 = -2 + random(10), my3 = -2 + random(10);
int8_t mx4 = -2 + random(10), my4 = -2 + random(10);
class RotationExampleWindow : public SDLWindowRGB565 {
public:
RotationExampleWindow(Graphics2D* gfx2d, int w, int h) : SDLWindowRGB565(gfx2d, w, h) {}
void setup() {
loadPNG(&sprites, "../leafs_128_32_4x.png");
leaf0.enableMask(maskColor);
leaf1.enableMask(maskColor);
leaf2.enableMask(maskColor);
leaf3.enableMask(maskColor);
// create single sprites, easier for drawing
leaf0.drawGraphics2D(0, 0, &sprites, 0 * 32, 0, 32, 32);
leaf1.drawGraphics2D(0, 0, &sprites, 1 * 32, 0, 32, 32);
leaf2.drawGraphics2D(0, 0, &sprites, 2 * 32, 0, 32, 32);
leaf3.drawGraphics2D(0, 0, &sprites, 3 * 32, 0, 32, 32);
gfx2d.enableMask(rgb565(0, 0, 0)); // default (0,0,0)
waterBackground.enableMask(rgb565(0, 0, 0)); // default (0,0,0)
// gfx2d.setMaskColor(rgb565(255, 255, 255));
}
void loop() {
static uint16_t counter = 1;
counter++;
if (counter % 10 == 0) {
lx1 += mx1;
ly1 += my1;
lx2 += mx2;
ly2 += my2;
lx3 += mx3;
ly3 += my3;
lx4 += mx4;
ly4 += my4;
}
uint16_t r1 = random(WATER_W - 4);
uint16_t r2 = random(WATER_H - 4);
// randomize water
for (uint16_t x = r1; x < r1 + 3; x++) {
for (uint16_t y = r2; y < r2 + 3; y++) {
wbuf1[x + WATER_W * y] = 127;
}
}
waterBackground.fillFrame(0, 0, 240, 240, rgb565(10, 10, 10));
// gfx2d.enableAlpha(.5);
waterBackground.drawGraphics2D_rotated(lx1, ly1, &leaf0, 16, 16, counter / 50.0);
waterBackground.drawGraphics2D_rotated(lx2, ly2, &leaf1, 16, 16, -counter / 50.0);
waterBackground.drawGraphics2D_rotated(lx3, ly3, &leaf2, 16, 16, counter / 50.0);
waterBackground.drawGraphics2D_rotated(lx4, ly4, &leaf3, 16, 16, -counter / 50.0);
// gfx2d.disableAplha();
calcWater(wbuf1, wbuf2, WATER_W, WATER_H, .9);
mapWater(wbuf1, WATER_W, WATER_H, &waterBackground, &waterScreenBuffer, 0, 0);
std::swap(wbuf1, wbuf2);
gfx2d.drawGraphics2D_2x(0, 0, &waterScreenBuffer);
delay(1000 / 30);
}
};
int main(int argc, char* argv[]) {
RotationExampleWindow exampleWindow(&gfx2d, BUF_W, BUF_H);
exampleWindow.run();
return 0;
}
| 3,385
|
C++
|
.cpp
| 89
| 34.280899
| 90
| 0.629279
|
Open-Smartwatch/lib-open-smartwatch
| 39
| 14
| 0
|
GPL-3.0
|
9/20/2024, 10:45:34 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,906
|
main.cpp
|
Open-Smartwatch_lib-open-smartwatch/examples/shapes/main.cpp
|
#include <stdint.h>
#include <iostream>
#include "../../FakeArduino.h"
#include "../../FakeArduinoWindowSDL.h"
#include "../../gfx_2d.h"
#include "../../gfx_util.h"
#include "../../math_angles.h"
using namespace std;
#define BUF_W 240
#define BUF_H 240
uint16_t screenBuffer[BUF_W * BUF_H];
Graphics2D gfx2d(BUF_W, BUF_H, 16, false);
class WatchSimpleWindow : public SDLWindowRGB565 {
public:
WatchSimpleWindow(Graphics2D* gfx2d, int w, int h) : SDLWindowRGB565(gfx2d, w, h) {}
void setup() {}
void loop() {
uint8_t cx = 119;
uint8_t cy = 119;
gfx2d.fill(rgb565(0, 0, 0));
// gfx2d.drawLine(0, 0, x, x, rgb565(x, x, 255));
// gfx2d.fillFrame(10, 10, 10, 10, rgb565(x, x, 100));
// gfx2d.drawCircle(120, 120, 32, rgb565(x, 255, 255));
// gfx2d.fillFrame(10, 10, 10, 10, rgb565(255, x, 100));
// gfx2d.drawEllipse(20, 20, 5, 20, rgb565(255, 0, x));
// gfx2d.fillEllipse(120, 20, 5, 20, rgb565(255, 0, x));
// gfx2d.fillFrame(10, 10, 10, 10, rgb565(255, 255, 100));
// gfx2d.drawEllipse(20, 20, 5, 20, rgb565(255, x, 0));
// gfx2d.fillEllipse(120, 20, 5, 20, rgb565(255, 0, x));
// gfx2d.fillRFrame(40, 40, 20, 30, 4, rgb565(255, x, 100));
// gfx2d.drawRFrame(60, 60, 30, 20, 4, rgb565(255, x, x));
// gfx2d.drawCircle(119, 119, 119, rgb565(255, 255, 255));
// gfx2d.drawCircle(119, 120, 119, rgb565(255, 255, 255));
// gfx2d.drawCircle(120, 119, 119, rgb565(255, 255, 255));
// gfx2d.drawCircle(120, 120, 119, rgb565(255, 255, 255));
// gfx2d.drawThickLine(0, 0, 120, 120, 4, rgb565(255, 0, 0));
// gfx2d.drawThickLine(240, 0, 120, 120, 5, rgb565(0, 255, 0));
// gfx2d.drawThickLine(0, 240, 120, 120, 6, rgb565(0, 0, 255));
// gfx2d.drawThickLine(240, 240, 120, 120, 7, rgb565(255, 255, 0));
// gfx2d.fill(rgb565(0, 255, 100));
// gfx2d.fillCircle(120, 120, 20, rgb565(255, 255, 255));
// drawArc(120, 120, -90, 90, 90, 110, 6, rgb565(128, 128, 128));
// drawArc(120, 120, -90, 90, 90, 110, 5, rgb565(255, 255, 255));
// drawArc(120, 120, -90, 90, 90, 110, 4, rgb565(0, 32, 0));
// drawArc(120, 120, -90, 44, 90, 110, 4, rgb565(0, 255, 0));
gfx2d.drawArc(120, 120, 0, 360, 90, 113, 5, rgb565(32, 32, 32));
// gfx2d.drawMinuteTicks(120, 120, 116, 50, rgb565(255, 0, 0));
gfx2d.drawHourTicks(120, 120, 117, 107, rgb565(128, 128, 128));
gfx2d.drawArc(120, 120, 0, 360, 90, 93, 7, changeColor(rgb565(210, 50, 66), 0.25));
gfx2d.drawArc(120, 120, 0, 280, 90, 93, 7, dimColor(rgb565(210, 50, 66), 25));
gfx2d.drawArc(120, 120, 0, 280, 90, 93, 6, rgb565(210, 50, 66));
gfx2d.drawArc(120, 120, 0, 360, 90, 75, 7, changeColor(rgb565(117, 235, 10), 0.25));
gfx2d.drawArc(120, 120, 0, 128, 90, 75, 7, dimColor(rgb565(117, 235, 10), 25));
gfx2d.drawArc(120, 120, 0, 128, 90, 75, 6, rgb565(117, 235, 10));
gfx2d.drawArc(120, 120, 0, 360, 90, 57, 7, changeColor(rgb565(25, 193, 202), 0.25));
gfx2d.drawArc(120, 120, 0, 32, 90, 57, 7, dimColor(rgb565(25, 193, 202), 25));
gfx2d.drawArc(120, 120, 0, 32, 90, 57, 6, rgb565(25, 193, 202));
static uint32_t ticks = 0;
ticks++;
float deltaAngle = ticks;
// hours
gfx2d.drawThickTick(120, 120, 0, 16, -66 + deltaAngle / (3600), 1, rgb565(255, 255, 255));
gfx2d.drawThickTick(120, 120, 16, 60, -66 + deltaAngle / (3600), 4, rgb565(255, 255, 255));
// minutes
gfx2d.drawThickTick(120, 120, 0, 16, 45 + deltaAngle / (60), 1, rgb565(255, 255, 255));
gfx2d.drawThickTick(120, 120, 16, 105, 45 + deltaAngle / (60), 4, rgb565(255, 255, 255));
// seconds
gfx2d.fillCircle(120, 120, 3, rgb565(255, 0, 0));
gfx2d.drawThickTick(120, 120, 0, 16, 0 + deltaAngle, 1, rgb565(255, 0, 0));
gfx2d.drawThickTick(120, 120, 0, 110, 180 + deltaAngle, 1, rgb565(255, 0, 0));
// moon
gfx2d.fillCircle(120, 230, 9, rgb565(128, 128, 128));
gfx2d.fillCircle(120, 230, 8, rgb565(255, 255, 255));
gfx2d.fillCircle(123, 230, 6, rgb565(0, 0, 0));
// usb connector
gfx2d.fillFrame(104, 10, 13, 2, rgb565(128, 128, 128)); // cable dot
gfx2d.fillFrame(117, 8, 3, 6, rgb565(200, 200, 200)); // cable to casing
gfx2d.fillFrame(124, 8, 11, 6, rgb565(128, 128, 128)); // connector
gfx2d.fillFrame(120, 6, 8, 10, rgb565(200, 200, 200)); // casing
delay(1000 / 30);
}
};
int main(int argc, char* argv[]) {
WatchSimpleWindow wsw(&gfx2d, BUF_W, BUF_H);
wsw.run();
return 0;
}
| 4,458
|
C++
|
.cpp
| 87
| 46.91954
| 95
| 0.613244
|
Open-Smartwatch/lib-open-smartwatch
| 39
| 14
| 0
|
GPL-3.0
|
9/20/2024, 10:45:34 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,907
|
main.cpp
|
Open-Smartwatch_lib-open-smartwatch/examples/watch-simple/main.cpp
|
#include <stdint.h>
#include <iostream>
#include "../../FakeArduino.h"
#include "../../FakeArduinoWindowSDL.h"
#include "../../gfx_2d.h"
#include "../../gfx_util.h"
#include "../../math_angles.h"
using namespace std;
#define BUF_W 240
#define BUF_H 240
uint16_t screenBuffer[BUF_W * BUF_H];
Graphics2D gfx2d(BUF_W, BUF_H, 16);
class WatchSimpleWindow : public SDLWindowRGB565 {
public:
WatchSimpleWindow(Graphics2D* gfx2d, int w, int h) : SDLWindowRGB565(gfx2d, w, h) {}
void setup() {}
void loop() {
delay(1000 / 30); // 30FPS
static uint x = 0;
x++;
uint8_t cx = 119;
uint8_t cy = 119;
gfx2d.fill(rgb565(1, 1, 1));
gfx2d.drawHourTicks(BUF_W / 2, BUF_H / 2, 100, 90, rgb565(255, 255, 255));
// hour
gfx2d.drawLine(cx, cy, rpx(cx, 33, h2d(x)), rpy(cy, 33, h2d(x)), rgb565(255, 255, 255));
// // minute
gfx2d.drawLine(cx, cy, rpx(cx, 66, m2d(x)), rpy(cy, 66, m2d(x)), rgb565(0, 255, 0));
// // second
gfx2d.drawLine(cx, cy, rpx(cx, 15, s2d(x) + 180), rpy(cy, 15, s2d(x) + 180), rgb565(255, 0, 0)); // short backwards
gfx2d.drawLine(cx, cy, rpx(cx, 90, s2d(x)), rpy(cy, 90, s2d(x)), rgb565(255, 0, 0)); // long front
}
};
int main(int argc, char* argv[]) {
WatchSimpleWindow wsw(&gfx2d, BUF_W, BUF_H);
wsw.run();
return 0;
}
| 1,319
|
C++
|
.cpp
| 38
| 31.578947
| 120
| 0.612903
|
Open-Smartwatch/lib-open-smartwatch
| 39
| 14
| 0
|
GPL-3.0
|
9/20/2024, 10:45:34 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,908
|
main.cpp
|
Open-Smartwatch_lib-open-smartwatch/examples/doom-fire/main.cpp
|
#include <stdint.h>
#include <iostream>
#include "../../FakeArduino.h"
#include "../../FakeArduinoWindowSDL.h"
#include "../../anim_doom_fire.h"
#include "../../gfx_util.h"
using namespace std;
#define BUF_W 240
#define BUF_H 240
Graphics2DPrint gfx2d(BUF_W, BUF_H, 120);
AnimDoomFire d;
class FireWindow : public SDLWindowRGB565 {
public:
FireWindow(Graphics2D* gfx2d, int w, int h) : SDLWindowRGB565(gfx2d, w, h) {}
void setup() {
}
void loop() {
Graphics2DPrint* gfx = &gfx2d;
gfx->fill(rgb565(0, 0, 0));
// render animation
d.loop(gfx);
delay(1000 / 30);
}
};
int main(int argc, char* argv[]) {
FireWindow fw(&gfx2d, BUF_W, BUF_H);
fw.run();
return 0;
}
| 706
|
C++
|
.cpp
| 29
| 21.689655
| 79
| 0.666667
|
Open-Smartwatch/lib-open-smartwatch
| 39
| 14
| 0
|
GPL-3.0
|
9/20/2024, 10:45:34 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,909
|
main.cpp
|
Open-Smartwatch_lib-open-smartwatch/examples/mix-face/main.cpp
|
#include <stdint.h>
#include <iostream>
#include "../../FakeArduino.h"
#include "../../FakeArduinoWindowSDL.h"
#include "../../gfx_2d.h"
#include "../../gfx_2d_print.h"
#include "../../gfx_util.h"
#include "../../fonts/Picopixel.h"
#include "../../fonts/FreeSans11pt8b.h"
#include "../../math_angles.h"
using namespace std;
#define BUF_W 240
#define BUF_H 240
uint16_t screenBuffer[BUF_W * BUF_H];
Graphics2DPrint gfx2d_print(BUF_W, BUF_H, 16);
class MixFace : public SDLWindowRGB565 {
public:
MixFace(Graphics2DPrint* gfx2d_print, int w, int h) : SDLWindowRGB565(gfx2d_print, w, h) {}
void setup() {}
void loop() {
delay(1000 / 30); // 30FPS
static uint x = 0;
x++;
uint8_t cx = 65;
uint8_t cy = 100;
uint8_t control_size = 2;
uint8_t alp = 3;
char am[] = "AM";
char pm[] = "PM";
gfx2d_print.fill(rgb565(1, 1, 1));
// Left Analog Watch
// 3rd and 4th param -
// Decrease as you get closer to " 0 ".
// The larger the difference in values, the longer it is.
gfx2d_print.drawHourTicks(cx, cy, 45 , 40 , rgb565(255, 255, 255));
gfx2d_print.drawCircle(cx, cy,50 , rgb565(255, 255, 255));
// hour
gfx2d_print.drawLine(cx, cy, rpx(cx, 33 / control_size, h2d(x)), rpy(cy, 33 / control_size, h2d(x)), rgb565(255, 255, 255));
// // minute
gfx2d_print.drawLine(cx, cy, rpx(cx, 66 / control_size, m2d(x)), rpy(cy, 66 / control_size, m2d(x)), rgb565(0, 255, 0));
// // second
gfx2d_print.drawLine(cx, cy, rpx(cx, 15 / control_size, s2d(x) + 180), rpy(cy, 15 / control_size, s2d(x) + 180), rgb565(255, 0, 0)); // short backwards
gfx2d_print.drawLine(cx, cy, rpx(cx, 90 / control_size, s2d(x)), rpy(cy, 90 / control_size, s2d(x)), rgb565(255, 0, 0)); // long front
// Right Digital Watch
gfx2d_print.setTextSize(1);
gfx2d_print.setTextMiddleAligned();
gfx2d_print.setTextLeftAligned();
gfx2d_print.setTextCursor(120 +alp, 75);
const char* weekday = "Sun";
{
char weekday3[4];
switch((int)(x*0.05)%7){
case 0:
weekday3[0] = 'S';
weekday3[1] = 'u';
weekday3[2] = 'n';
break;
case 1:
weekday3[0] = 'M';
weekday3[1] = 'o';
weekday3[2] = 'n';
break;
case 2:
weekday3[0] = 'T';
weekday3[1] = 'u';
weekday3[2] = 'e';
break;
case 3:
weekday3[0] = 'W';
weekday3[1] = 'e';
weekday3[2] = 'd';
break;
case 4:
weekday3[0] = 'T';
weekday3[1] = 'h';
weekday3[2] = 'r';
break;
case 5:
weekday3[0] = 'F';
weekday3[1] = 'r';
weekday3[2] = 'i';
break;
case 6:
weekday3[0] = 'S';
weekday3[1] = 'a';
weekday3[2] = 't';
break;
}
weekday3[3] = '\0';
gfx2d_print.print(weekday3);
}
////date
gfx2d_print.setTextSize(2);
gfx2d_print.setTextMiddleAligned();
gfx2d_print.setTextLeftAligned();
gfx2d_print.setTextCursor(120 + alp, 90);
gfx2d_print.printDecimal((int)(x*0.2)%31+1, 2);
gfx2d_print.print(".");
gfx2d_print.printDecimal((int)(x*0.6)% 12+1, 2);
gfx2d_print.print(".");
gfx2d_print.printDecimal((int)(x*0.9)%100,2); // Full year-name is overflowing
////time
gfx2d_print.setTextSize(3);
gfx2d_print.setTextMiddleAligned();
gfx2d_print.setTextLeftAligned();
gfx2d_print.setTextCursor(120 + alp, 120);
gfx2d_print.printDecimal((int)(x * 0.4) % 12, 2);
gfx2d_print.print(":");
gfx2d_print.printDecimal((int)(x * 0.8) % 60, 2);
gfx2d_print.setTextSize(1);
gfx2d_print.setTextMiddleAligned();
gfx2d_print.setTextLeftAligned();
gfx2d_print.setTextBottomAligned();
gfx2d_print.setTextCursor(120 + 100, 120+10);
if (x % 60>=30) {
gfx2d_print.print(pm);
} else {
gfx2d_print.print(am);
}
// test - step counter just frame
for (uint8_t i = 0; i < 7; i++) {
uint32_t s = x * (i + 1) * 100 % 10000; // virtual step simulation
uint16_t boxHeight = ((float)(s > 10000 ? 10000 : s) / 10000) * 32;
boxHeight = boxHeight < 2 ? 0 : boxHeight;
// step bars
gfx2d_print.fillFrame(((240 / 2) - 8 * 3.5) + i * 8, 180 + (32 - boxHeight), 8, boxHeight, rgb888to565(rgb888(32, 156, 238)));
gfx2d_print.drawRFrame(((240 / 2) - 8 * 3.5) + i * 8, 180, 8, 32, 2, rgb888to565(rgb888(122, 122, 122)));
}
// labels
gfx2d_print.setTextCenterAligned(); // horiz.
gfx2d_print.setTextBottomAligned();
gfx2d_print.setTextSize(1);
gfx2d_print.setTextCursor(240 / 2, 180 - 1);
gfx2d_print.print((int)(x * 0.04)); // today step counter
gfx2d_print.setTextCursor(240 / 2, 180 + 1 + 8 + 8 * 4);
gfx2d_print.print(x); // total step counter
}
};
int main(int argc, char* argv[]) {
MixFace mf(&gfx2d_print,BUF_W, BUF_H);
mf.run();
return 0;
}
| 5,016
|
C++
|
.cpp
| 143
| 28.881119
| 156
| 0.577424
|
Open-Smartwatch/lib-open-smartwatch
| 39
| 14
| 0
|
GPL-3.0
|
9/20/2024, 10:45:34 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,910
|
main.cpp
|
Open-Smartwatch_lib-open-smartwatch/examples/fireworks/main.cpp
|
#include <stdint.h>
#include <iostream>
#include "../../FakeArduino.h"
#include "../../FakeArduinoWindowSDL.h"
#include "../../anim_firework.h"
#include "../../gfx_2d.h"
#include "../../gfx_util.h"
#include "../../math_angles.h"
using namespace std;
#define BUF_W 240
#define BUF_H 240
#define NUM_FIREWORKS 10
Graphics2D gfx2d(BUF_W, BUF_H, 4, false);
Firework fireworks[NUM_FIREWORKS];
int16_t offsets[NUM_FIREWORKS];
class WatchSimpleWindow : public SDLWindowRGB565 {
public:
WatchSimpleWindow(Graphics2D* gfx2d, int w, int h) : SDLWindowRGB565(gfx2d, w, h) {}
void setup() {
// draw background black
gfx2d.fill(rgb565(0, 0, 0));
for (uint16_t i = 0; i < NUM_FIREWORKS; i++) {
offsets[i] = random(40, 200);
}
}
void loop() {
static long lastTick = millis();
for (uint16_t i = 0; i < NUM_FIREWORKS; i++) {
fireworks[i].draw(&gfx2d, offsets[i], BUF_H);
fireworks[i].tick(millis() - lastTick, 10);
if (fireworks[i].age > random(3000, 12000)) {
uint16_t color = rgb565(random(100, 255), random(100, 255), random(100, 255));
uint8_t radius = random(1, 8);
uint8_t rings = random(3, 6);
offsets[i] = random(40, 200);
fireworks[i].init(color, radius, rings, BUF_W, BUF_H);
}
}
gfx2d.dim(10);
lastTick = millis();
delay(1000 / 30);
}
};
int main(int argc, char* argv[]) {
WatchSimpleWindow wsw(&gfx2d, BUF_W, BUF_H);
wsw.run();
return 0;
}
| 1,473
|
C++
|
.cpp
| 48
| 26.8125
| 86
| 0.630835
|
Open-Smartwatch/lib-open-smartwatch
| 39
| 14
| 0
|
GPL-3.0
|
9/20/2024, 10:45:34 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,912
|
gfx_2d.h
|
Open-Smartwatch_lib-open-smartwatch/gfx_2d.h
|
#ifndef P3DT_GFX_2D_H
#define P3DT_GFX_2D_H
#ifdef OSW_EMULATOR
#include <iostream>
#include "FakeArduino.h"
#else
#include <Arduino.h>
#endif
#include "gfx_util.h"
#include "math_angles.h"
enum CIRC_OPT { DRAW_UPPER_RIGHT, DRAW_UPPER_LEFT, DRAW_LOWER_RIGHT, DRAW_LOWER_LEFT, DRAW_ALL };
class DrawPixel {
public:
DrawPixel() {}
virtual void drawPixel(int32_t x, int32_t y, uint16_t color){};
};
class Graphics2D {
public:
Graphics2D(uint16_t w_, uint16_t h_, uint8_t chunkHeight_, bool isRound_ = false, bool allocatePsram_ = false)
: width(w_), height(h_), chunkHeight(chunkHeight_), isRound(isRound_), allocatePsram(allocatePsram_) {
enableBuffer();
maskEnabled = false;
maskColor = rgb565(0, 0, 0);
alphaEnabled = false;
}
void enableBuffer() {
drawPixelCallback = NULL;
uint16_t numChunks = height / chunkHeight;
buffer = new uint16_t*[numChunks];
if (isRound) {
missingPixelColor = rgb565(128, 128, 128);
chunkXOffsets = new uint16_t[numChunks];
chunkWidths = new uint16_t[numChunks];
for (uint16_t i = 0; i < numChunks; i++) {
uint16_t y = i * chunkHeight;
float y1 = (y + (y < height / 2 ? chunkHeight : 0)) - height / 2.0;
float d = sqrt(120 * 120 - y1 * y1);
uint16_t xOffset = 120 - d;
uint16_t chunkWidth = ceil(d * 2);
chunkXOffsets[i] = xOffset;
chunkWidths[i] = chunkWidth;
// Serial.print("Chunk: ");
// Serial.println(i);
// Serial.print(" Width: ");
// Serial.println(chunkWidth);
// Serial.print(" chunkHeight: ");
// Serial.println(chunkHeight);
// Serial.print(" Size: ");
// Serial.println(chunkWidth * chunkHeight);
// buffer[i] = new uint16_t[chunkWidth * chunkHeight];
if (allocatePsram) {
#if defined(GPS_EDITION) || defined(GPS_EDITION_ROTATED)
buffer[i] = (uint16_t*)ps_malloc(width * chunkHeight * sizeof(uint16_t));
#else
buffer[i] = new uint16_t[width * chunkHeight]();
#endif
} else {
buffer[i] = new uint16_t[width * chunkHeight]();
}
}
} else {
for (uint16_t i = 0; i < numChunks; i++) {
// buffer[i] = new uint16_t[width * chunkHeight];
// (uint8_t*) malloc( BufferSize * sizeof(uint8_t) )
if (allocatePsram) {
#if defined(GPS_EDITION) || defined(GPS_EDITION_ROTATED)
buffer[i] = (uint16_t*)ps_malloc(width * chunkHeight * sizeof(uint16_t));
#else
buffer[i] = (uint16_t*)malloc(width * chunkHeight * sizeof(uint16_t));
#endif
} else {
buffer[i] = (uint16_t*)malloc(width * chunkHeight * sizeof(uint16_t));
}
}
}
}
bool hasBuffer() { return drawPixelCallback == NULL; }
void disableBuffer(DrawPixel* callback) { //
delay(1000);
drawPixelCallback = callback;
uint16_t numChunks = height / chunkHeight;
for (uint16_t i = 0; i < numChunks; i++) {
delete[] buffer[i];
buffer[i] = NULL;
}
delete[] buffer;
buffer = NULL;
// delete[] chunkXOffsets;
// chunkXOffsets = NULL;
// delete[] chunkWidths;
// chunkWidths = NULL;
}
~Graphics2D() {
uint16_t numChunks = height / chunkHeight;
for (uint16_t i = 0; i < numChunks; i++) {
delete[] buffer[i];
buffer[i] = NULL;
}
delete[] buffer;
buffer = NULL;
// delete[] chunkXOffsets;
// chunkXOffsets = NULL;
// delete[] chunkWidths;
// chunkWidths = NULL;
}
uint16_t numChunks() { return height / chunkHeight; }
uint16_t* getChunk(uint8_t chunkId) { return buffer[chunkId]; }
uint8_t getChunkHeight() { return chunkHeight; }
uint16_t getChunkOffset(uint8_t chunkId) { return isRound ? chunkXOffsets[chunkId] : 0; }
uint16_t getChunkWidth(uint8_t chunkId) { return isRound ? chunkWidths[chunkId] : width; }
uint16_t getHeight() { return height; }
uint16_t getWidth() { return width; }
bool isMaskEnabled() { return maskEnabled; }
void enableMask(uint16_t color) {
maskEnabled = true;
maskColor = color;
}
void disableMask() { maskColor = false; }
void enableAlpha(float a) {
alpha = a;
alphaEnabled = true;
}
void disableAplha() { alphaEnabled = false; }
void setMissingPixelColor(uint16_t color) { missingPixelColor = color; }
uint16_t getMissingPixelColor(void) { return missingPixelColor; }
// no other functions should be allowed to access the buffer in write mode due to the chunk mapping
/**
* @brief Draw a pixel of color 'color' a x-y position.
*
* @param x x axis coordinate
* @param y y axis coordinate
* @param color color code of the pixel
*/
void drawPixel(int32_t x, int32_t y, uint16_t color) { drawPixelClipped(x, y, color); }
void drawPixelClipped(int32_t x, int32_t y, uint16_t color) {
if (x >= width || y >= height || x < 0 || y < 0) {
return;
}
if (maskEnabled && color == maskColor) {
return;
}
// if we have a pixel callback, there is now buffer
// draw with the callback and return..
if (drawPixelCallback != NULL) {
drawPixelCallback->drawPixel(x, y, color);
return;
}
uint8_t chunkId = y / chunkHeight;
int16_t chunkY = y - chunkId * chunkHeight;
//
if (alphaEnabled) {
if (isRound && isInsideChunk(x, y)) {
int16_t chunkX = x - chunkXOffsets[chunkId];
color = blend(buffer[chunkId][chunkX + chunkY * chunkWidths[chunkId]], color, alpha);
} else {
color = blend(buffer[chunkId][x + chunkY * width], color, alpha);
}
}
if (isRound && isInsideChunk(x, y)) {
int16_t chunkX = x - chunkXOffsets[chunkId];
buffer[chunkId][chunkX + chunkY * chunkWidths[chunkId]] = color;
} else if (!isRound) { // fix for round module
buffer[chunkId][x + chunkY * width] = color;
}
}
uint16_t getPixel(uint16_t x, uint16_t y) {
if (x >= width || y >= height) {
return 0;
}
uint8_t chunkId = y / chunkHeight;
uint16_t chunkY = y - chunkId * chunkHeight;
// printf("chunkid %d, offetY %d for y=%d and chunkHeight=%d\n", chunkId, chunkY, y, chunkHeight);
if (isRound) {
// TODO: check if inside chunk
if (isInsideChunk(x, y)) {
uint16_t chunkX = x - chunkXOffsets[chunkId];
return buffer[chunkId][chunkX + chunkY * chunkWidths[chunkId]];
} else {
return missingPixelColor;
}
} else {
return buffer[chunkId][x + chunkY * width];
}
}
bool isInsideChunk(uint16_t x, uint16_t y) {
uint8_t chunkId = y / chunkHeight;
// uint16_t chunkY = y - chunkId * chunkHeight;
uint16_t chunkOffset = chunkXOffsets[chunkId];
uint16_t chunkWidth = chunkWidths[chunkId];
bool xFit = chunkOffset < x && x < chunkOffset + chunkWidth;
// y always fits, because we chunk in rows
return xFit;
}
/**
* @brief Draw an horizontal line from the point (x,y) to an other horizontal point at h pixels
*
* @param x x-axis of the start point
* @param y y-axis of the start point
* @param w width of the horizontal line
* @param color color code of the line
*/
void drawHLine(int32_t x, int32_t y, uint16_t w, uint16_t color) {
for (uint16_t i = 0; i < w; i++) {
drawPixel(x + i, y, color);
}
}
/**
* @brief Draw a vertical line from the bottom point (x,y) to an other vertical point at h pixels
*
* @param x x-axis of the start point
* @param y y-axis of the start point
* @param h height of the vertical line
* @param color color code of the line
*/
void drawVLine(int32_t x, int32_t y, uint16_t h, uint16_t color) {
for (uint16_t i = 0; i < h; i++) {
drawPixel(x, y + i, color);
}
}
void drawFrame(int32_t x, int32_t y, uint16_t w, uint16_t h, uint16_t color) {
drawHLine(x, y, w, color);
drawHLine(x, y + h, w, color);
drawVLine(x, y, h, color);
drawVLine(x + w, y, h, color);
}
void fillFrame(int32_t x0, int32_t y0, uint16_t w, uint16_t h, uint16_t color) {
for (uint16_t y = y0; y < y0 + h; y++) {
drawHLine(x0, y, w, color);
}
}
/**
* Draw line from (x1,y1) to (x2,y2) point with color
*
* @param x1
* @param y1
* @param x2
* @param y2
* @param color
*/
void drawLine(int32_t x1, int32_t y1, int32_t x2, int32_t y2, uint16_t color) { // see p3dt_gfx_2d_license.txt
// printf("\ndrawLine(%d, %d, %d, %d)",x1,y1,x2,y2);
// see p3dt_gfx_2d_license.txt
int32_t tmp;
int32_t x, y;
int32_t dx, dy;
int32_t err;
int32_t ystep;
uint8_t swapxy = 0;
/* no intersection check at the moment, should be added... */
if (x1 > x2)
dx = x1 - x2;
else
dx = x2 - x1;
if (y1 > y2)
dy = y1 - y2;
else
dy = y2 - y1;
if (dy > dx) {
swapxy = 1;
tmp = dx;
dx = dy;
dy = tmp;
tmp = x1;
x1 = y1;
y1 = tmp;
tmp = x2;
x2 = y2;
y2 = tmp;
}
if (x1 > x2) {
tmp = x1;
x1 = x2;
x2 = tmp;
tmp = y1;
y1 = y2;
y2 = tmp;
}
err = dx >> 1;
if (y2 > y1)
ystep = 1;
else
ystep = -1;
y = y1;
if (x2 == 0xffff) x2--;
for (x = x1; x <= x2; x++) {
if (swapxy == 0)
drawPixel(x, y, color);
else
drawPixel(y, x, color);
err -= abs(dy);
if (err < 0) {
y += ystep;
err += dx;
}
}
}
/**
* @brief Draw a line between (x1,y1) and (x2,y2) with a thick of radius and with specific color
*
* Radius is a multiple of 4 pixels.
*
* @param x1 x-axis of the start point
* @param y1 y-axis of the start point
* @param x2 x-axis of the end point
* @param y2 y-axis of the end point
* @param radius radius of the line. Example : radius = 1 give a line of 4 px of diameter, radius 2 -> 8px, etc....
* @param color color code use to draw the line.
* @param highQuality
*/
void drawThickLine(int32_t x1, int32_t y1, int32_t x2, int32_t y2, uint8_t radius, uint16_t color,
bool highQuality = false) { // see p3dt_gfx_2d_license.txt
// see p3dt_gfx_2d_license.txt
int32_t tmp;
int32_t x, y;
int32_t dx, dy;
int32_t err;
int32_t ystep;
uint8_t swapxy = 0;
/* no intersection check at the moment, should be added... */
if (x1 > x2)
dx = x1 - x2;
else
dx = x2 - x1;
if (y1 > y2)
dy = y1 - y2;
else
dy = y2 - y1;
if (dy > dx) {
swapxy = 1;
tmp = dx;
dx = dy;
dy = tmp;
tmp = x1;
x1 = y1;
y1 = tmp;
tmp = x2;
x2 = y2;
y2 = tmp;
}
if (x1 > x2) {
tmp = x1;
x1 = x2;
x2 = tmp;
tmp = y1;
y1 = y2;
y2 = tmp;
}
err = dx >> 1;
if (y2 > y1)
ystep = 1;
else
ystep = -1;
y = y1;
if (x2 == 0xffff) x2--;
for (x = x1; x <= x2; x++) {
if (swapxy == 0) {
if (highQuality) {
fillCircle(x, y, radius, color);
} else {
drawCircle(x, y, radius, color);
if (radius > 2) {
drawCircle(x, y, radius - 1, color);
}
if (radius > 3) {
drawCircle(x, y, radius - 2, color);
}
}
} else {
if (highQuality) {
fillCircle(y, x, radius, color);
} else {
drawCircle(y, x, radius, color);
if (radius > 2) {
drawCircle(y, x, radius - 1, color);
}
if (radius > 3) {
drawCircle(y, x, radius - 2, color);
}
}
}
err -= (uint8_t)dy;
if (err < 0) {
y += (uint16_t)ystep;
err += (uint16_t)dx;
}
}
}
void drawTriangle(uint16_t x0, uint16_t y0, uint16_t x1, uint16_t y1, uint16_t x2, uint16_t y2, uint16_t color) {
drawLine(x0, y0, x1, y1, color);
drawLine(x1, y1, x2, y2, color);
drawLine(x2, y2, x0, y0, color);
}
/*
* "Complex" Stuff:
*/
void _drawCircleSection(uint16_t x, uint16_t y, uint16_t x0, uint16_t y0, uint16_t color,
CIRC_OPT option) { // see p3dt_gfx_2d_license.txt
if (option == DRAW_UPPER_RIGHT || option == DRAW_ALL) {
drawPixel(x0 + x, y0 - y, color);
drawPixel(x0 + y, y0 - x, color);
}
if (option == DRAW_UPPER_LEFT || option == DRAW_ALL) {
drawPixel(x0 - x, y0 - y, color);
drawPixel(x0 - y, y0 - x, color);
}
if (option == DRAW_LOWER_RIGHT || option == DRAW_ALL) {
drawPixel(x0 + x, y0 + y, color);
drawPixel(x0 + y, y0 + x, color);
}
if (option == DRAW_LOWER_LEFT || option == DRAW_ALL) {
drawPixel(x0 - x, y0 + y, color);
drawPixel(x0 - y, y0 + x, color);
}
}
/**
* @brief Draw a circle
*
* @param x0 x-axis of the center of the circle
* @param y0 y-axis of the center of the circle
* @param rad radius of the circle
* @param color color code of the circle
* @param option
*/
void drawCircle(uint16_t x0, uint16_t y0, uint16_t rad, uint16_t color,
CIRC_OPT option = DRAW_ALL) { // see p3dt_gfx_2d_license.txt
float f;
float ddFx;
float ddFy;
float x;
float y;
f = 1;
f -= rad;
ddFx = 1;
ddFy = 0;
ddFy -= rad;
ddFy *= 2;
x = 0;
y = rad;
_drawCircleSection(x, y, x0, y0, color, option);
while (x < y) {
if (f >= 0) {
y--;
ddFy += 2;
f += ddFy;
}
x++;
ddFx += 2;
f += ddFx;
_drawCircleSection(x, y, x0, y0, color, option);
}
}
void _fillCircleSection(uint16_t x, uint16_t y, uint16_t x0, uint16_t y0, uint16_t color,
CIRC_OPT option) { // see p3dt_gfx_2d_license.txt
if (option == DRAW_UPPER_RIGHT || option == DRAW_ALL) {
drawVLine(x0 + x, y0 - y, y + 1, color);
drawVLine(x0 + y, y0 - x, x + 1, color);
}
if (option == DRAW_UPPER_LEFT || option == DRAW_ALL) {
drawVLine(x0 - x, y0 - y, y + 1, color);
drawVLine(x0 - y, y0 - x, x + 1, color);
}
if (option == DRAW_LOWER_RIGHT || option == DRAW_ALL) {
drawVLine(x0 + x, y0, y + 1, color);
drawVLine(x0 + y, y0, x + 1, color);
}
if (option == DRAW_LOWER_LEFT || option == DRAW_ALL) {
drawVLine(x0 - x, y0, y + 1, color);
drawVLine(x0 - y, y0, x + 1, color);
}
}
void fillCircle(uint16_t x0, uint16_t y0, uint16_t rad, uint16_t color,
CIRC_OPT option = DRAW_ALL) { // see p3dt_gfx_2d_license.txt
float f;
float ddFx;
float ddFy;
float x;
float y;
f = 1;
f -= rad;
ddFx = 1;
ddFy = 0;
ddFy -= rad;
ddFy *= 2;
x = 0;
y = rad;
_fillCircleSection(x, y, x0, y0, color, option);
while (x < y) {
if (f >= 0) {
y--;
ddFy += 2;
f += ddFy;
}
x++;
ddFx += 2;
f += ddFx;
_fillCircleSection(x, y, x0, y0, color, option);
}
}
void _drawEllipseSection(uint16_t x, uint16_t y, uint16_t x0, uint16_t y0, uint16_t color,
CIRC_OPT option = DRAW_ALL) { // see p3dt_gfx_2d_license.txt
/* upper right */
if (option == DRAW_UPPER_RIGHT || option == DRAW_ALL) {
drawPixel(x0 + x, y0 - y, color);
}
/* upper left */
if (option == DRAW_UPPER_LEFT || option == DRAW_ALL) {
drawPixel(x0 - x, y0 - y, color);
}
/* lower right */
if (option == DRAW_LOWER_RIGHT || option == DRAW_ALL) {
drawPixel(x0 + x, y0 + y, color);
}
/* lower left */
if (option == DRAW_LOWER_LEFT || option == DRAW_ALL) {
drawPixel(x0 - x, y0 + y, color);
}
}
void drawEllipse(uint16_t x0, uint16_t y0, uint16_t rx, uint16_t ry, uint16_t color,
CIRC_OPT option = DRAW_ALL) { // see p3dt_gfx_2d_license.txt
float x;
float y;
float xchg;
float ychg;
float err;
float rxrx2;
float ryry2;
float stopx;
float stopy;
rxrx2 = rx;
rxrx2 *= rx;
rxrx2 *= 2;
ryry2 = ry;
ryry2 *= ry;
ryry2 *= 2;
x = rx;
y = 0;
xchg = 1;
xchg -= rx;
xchg -= rx;
xchg *= ry;
xchg *= ry;
ychg = rx;
ychg *= rx;
err = 0;
stopx = ryry2;
stopx *= rx;
stopy = 0;
while (stopx >= stopy) {
_drawEllipseSection(x, y, x0, y0, color, option);
y++;
stopy += rxrx2;
err += ychg;
ychg += rxrx2;
if (2 * err + xchg > 0) {
x--;
stopx -= ryry2;
err += xchg;
xchg += ryry2;
}
}
x = 0;
y = ry;
xchg = ry;
xchg *= ry;
ychg = 1;
ychg -= ry;
ychg -= ry;
ychg *= rx;
ychg *= rx;
err = 0;
stopx = 0;
stopy = rxrx2;
stopy *= ry;
while (stopx <= stopy) {
_drawEllipseSection(x, y, x0, y0, color, option);
x++;
stopx += ryry2;
err += xchg;
xchg += ryry2;
if (2 * err + ychg > 0) {
y--;
stopy -= rxrx2;
err += ychg;
ychg += rxrx2;
}
}
}
void _fillEllipseSection(uint16_t x, uint16_t y, uint16_t x0, uint16_t y0, uint16_t color,
CIRC_OPT option = DRAW_ALL) { // see p3dt_gfx_2d_license.txt
/* upper right */
if (option == DRAW_UPPER_RIGHT || option == DRAW_ALL) {
drawVLine(x0 + x, y0 - y, y + 1, color);
}
/* upper left */
if (option == DRAW_UPPER_LEFT || option == DRAW_ALL) {
drawVLine(x0 - x, y0 - y, y + 1, color);
}
/* lower right */
if (option == DRAW_LOWER_RIGHT || option == DRAW_ALL) {
drawVLine(x0 + x, y0, y + 1, color);
}
/* lower left */
if (option == DRAW_LOWER_LEFT || option == DRAW_ALL) {
drawVLine(x0 - x, y0, y + 1, color);
}
}
void fillEllipse(uint16_t x0, uint16_t y0, uint16_t rx, uint16_t ry, uint16_t color,
CIRC_OPT option = DRAW_ALL) { // see p3dt_gfx_2d_license.txt
float x;
float y;
float xchg;
float ychg;
float err;
float rxrx2;
float ryry2;
float stopx;
float stopy;
rxrx2 = rx;
rxrx2 *= rx;
rxrx2 *= 2;
ryry2 = ry;
ryry2 *= ry;
ryry2 *= 2;
x = rx;
y = 0;
xchg = 1;
xchg -= rx;
xchg -= rx;
xchg *= ry;
xchg *= ry;
ychg = rx;
ychg *= rx;
err = 0;
stopx = ryry2;
stopx *= rx;
stopy = 0;
while (stopx >= stopy) {
_fillEllipseSection(x, y, x0, y0, color, option);
y++;
stopy += rxrx2;
err += ychg;
ychg += rxrx2;
if (2 * err + xchg > 0) {
x--;
stopx -= ryry2;
err += xchg;
xchg += ryry2;
}
}
x = 0;
y = ry;
xchg = ry;
xchg *= ry;
ychg = 1;
ychg -= ry;
ychg -= ry;
ychg *= rx;
ychg *= rx;
err = 0;
stopx = 0;
stopy = rxrx2;
stopy *= ry;
while (stopx <= stopy) {
_fillEllipseSection(x, y, x0, y0, color, option);
x++;
stopx += ryry2;
err += xchg;
xchg += ryry2;
if (2 * err + ychg > 0) {
y--;
stopy -= rxrx2;
err += ychg;
ychg += rxrx2;
}
}
}
void drawRFrame(uint16_t x, uint16_t y, uint16_t w, uint16_t h, uint16_t r,
uint16_t color) { // see p3dt_gfx_2d_license.txt
uint16_t xl;
uint16_t yu;
xl = x;
xl += r;
yu = y;
yu += r;
{
uint16_t yl;
uint16_t xr;
xr = x;
xr += w;
xr -= r;
xr -= 1;
yl = y;
yl += h;
yl -= r;
yl -= 1;
drawCircle(xl, yu, r, color, DRAW_UPPER_LEFT);
drawCircle(xr, yu, r, color, DRAW_UPPER_RIGHT);
drawCircle(xl, yl, r, color, DRAW_LOWER_LEFT);
drawCircle(xr, yl, r, color, DRAW_LOWER_RIGHT);
}
{
uint16_t ww;
uint16_t hh;
ww = w;
ww -= r;
ww -= r;
hh = h;
hh -= r;
hh -= r;
xl++;
yu++;
if (ww >= 3) {
ww -= 2;
h--;
drawHLine(xl, y, ww, color);
drawHLine(xl, y + h, ww, color);
}
if (hh >= 3) {
hh -= 2;
w--;
drawVLine(x, yu, hh, color);
drawVLine(x + w, yu, hh, color);
}
}
}
void fillRFrame(uint16_t x, uint16_t y, uint16_t w, uint16_t h, uint16_t r,
uint16_t color) { // see p3dt_gfx_2d_license.txt
if(h < 2 * r)
//Prevent infinite looping
return;
uint16_t xl;
uint16_t yu;
uint16_t yl;
uint16_t xr;
xl = x;
xl += r;
yu = y;
yu += r;
xr = x;
xr += w;
xr -= r;
xr -= 1;
yl = y;
yl += h;
yl -= r;
yl -= 1;
fillCircle(xl, yu, r, color, DRAW_UPPER_LEFT);
fillCircle(xr, yu, r, color, DRAW_UPPER_RIGHT);
fillCircle(xl, yl, r, color, DRAW_LOWER_LEFT);
fillCircle(xr, yl, r, color, DRAW_LOWER_RIGHT);
{
uint16_t ww;
uint16_t hh;
ww = w;
ww -= r;
ww -= r;
xl++;
yu++;
if (ww >= 3) {
ww -= 2;
fillFrame(xl, y, ww, r + 1, color);
fillFrame(xl, yl, ww, r + 1, color);
}
hh = h;
hh -= r;
hh -= r;
// h--;
if (hh >= 3) {
hh -= 2;
fillFrame(x, yu, w, hh, color);
}
}
}
void drawTick(uint8_t cx, uint8_t cy, uint8_t r1, uint8_t r2, float angle, uint16_t color) {
drawLine(rpx(cx, r1, angle), rpy(cy, r1, angle), rpx(cx, r2, angle), rpy(cy, r2, angle), color);
}
void drawThickTick(uint8_t cx, uint8_t cy, uint8_t r1, uint8_t r2, float angle, uint8_t radius, uint16_t color,
bool highQuality = false) {
drawThickLine(rpx(cx, r1, angle), rpy(cy, r1, angle), rpx(cx, r2, angle), rpy(cy, r2, angle), radius, color,
highQuality);
}
/**
* @brief Draw N ticks around the clock to visualize the hours.
*
* @param cx center x axis
* @param cy center y axis
* @param r1 radius from the begin of the tick.
* @param r2 radius from the end of the tick.
* @param nTicks number of ticks to draw
* @param color color code
*/
void drawNTicks(uint8_t cx, uint8_t cy, uint8_t r1, uint8_t r2, uint8_t nTicks, uint16_t color) {
const float deltaAngle = 360.0 / nTicks;
for (uint16_t h = 0; h < nTicks; h++) {
drawTick(cx, cy, r1, r2, h * deltaAngle, color);
}
}
/**
* @brief Draw 12 ticks around the clock to visualize the hours.
*
* @param cx center x axis
* @param cy center y axis
* @param r1 radius from the begin of the tick.
* @param r2 radius from the end of the tick.
* @param color color code
*/
void drawHourTicks(uint8_t cx, uint8_t cy, uint8_t r1, uint8_t r2, uint16_t color) {
drawNTicks(cx, cy, r1, r2, 12, color);
}
/**
* @brief Draw the ticks around the clock to visualize the minutes.
*
* 60 ticks will be drawn around the clock.
*
* @param cx center x axis
* @param cy center y axis
* @param r1 rayon
* @param r2
* @param color color code
*/
void drawMinuteTicks(uint8_t cx, uint8_t cy, uint8_t r1, uint8_t r2, uint16_t color) {
drawNTicks(cx, cy, r1, r2, 60, color);
}
void drawArc(int16_t x, int16_t y, int16_t r1, int16_t r2, float start, float end, uint16_t color) {
this->drawArc(x, y, start, end, 1, r1, r2-r1, color); // This _should_ be the equivalent call...
}
/**
* Draw an arc
*
* @param cx Arc X center coordinates
* @param cy Arc Y center coordinates
* @param start Beginning angle of the arc (in deg). O° is equivalent to 12AM
* @param stop End angle of the arc (in deg).
* @param steps Number of lines that will compose the arc.
* @param radius Radius of the arc from the cx/cy center
* @param lineRadius Radius of the line. Example : radius = 1 give a line of 4 px of diameter, radius 2 -> 8px,
* etc....
* @param color Color code of the arc
* @param highQuality
*/
void drawArc(int32_t cx, int32_t cy, float start, float stop, uint16_t steps, uint16_t radius, uint8_t lineRadius,
uint16_t color, bool highQuality = false) {
int32_t x1 = rpx(cx, radius, start);
int32_t y1 = rpy(cy, radius, start);
// printf("\ndraw from %f,%f in %d steps", start, stop, steps);
float arcLength = stop - start;
for (uint16_t i = 1; i <= steps; i++) {
float segmentLength = i * (arcLength / steps);
// printf("\n rpx(%d, %d, %f + %f)", cx, radius, start, segmentLength);
int32_t x2 = rpx(cx, radius, start + segmentLength);
int32_t y2 = rpy(cy, radius, start + segmentLength);
// printf("\n gfx2d.drawLine(%d, %d, %d, %d, color);", x1, y1, x2, y2);
drawThickLine(x1, y1, x2, y2, lineRadius, color, highQuality);
x1 = x2;
y1 = y2;
}
}
void drawBWBitmap(uint16_t x0, uint16_t y0, uint16_t cnt, uint16_t h, uint8_t* bitmap, uint16_t color,
uint16_t bgColor = 0, bool drawBackground = false) {
// cnt: Number of bytes of the bitmap in horizontal direction. The width of the bitmap is cnt*8.
// h: Height of the bitmap.
for (uint16_t x = 0; x < cnt; x++) {
for (uint16_t y = 0; y < h; y++) {
uint8_t bits = bitmap[x + y * cnt];
for (uint8_t b = 1; b <= 8; b++) {
if (bits & (1 << (8 - b))) {
drawPixel(x * 8 + x0 + b, y + y0, color);
} else if (drawBackground) {
drawPixel(x * 8 + x0 + b, y + y0, bgColor);
}
}
}
}
}
/**
* @brief Fill all the display with a color.
*
* Used for initialisation of the display with a background color.
*
* @param color Color code
*/
void fill(uint16_t color) {
for (uint16_t x = 0; x < width; x++) {
for (uint16_t y = 0; y < height; y++) {
drawPixel(x, y, color);
}
}
}
void dim(uint8_t amount) {
for (uint16_t x = 0; x < width; x++) {
for (uint16_t y = 0; y < height; y++) {
drawPixel(x, y, dimColor(getPixel(x, y), amount));
}
}
}
void drawGraphics2D(int32_t offsetX, int32_t offsetY, Graphics2D* source) {
for (int32_t y = 0; y < source->getHeight(); y++) {
for (int32_t x = 0; x < source->getWidth(); x++) {
drawPixel(x + offsetX, y + offsetY, source->getPixel(x, y));
}
}
}
void drawGraphics2D(int32_t offsetX, int32_t offsetY, Graphics2D* source, int32_t sourceOffsetX,
int32_t sourceOffsetY, uint16_t sourceWidth, uint16_t sourceHeight) {
for (int32_t x = 0; x < sourceWidth; x++) {
for (int32_t y = 0; y < sourceHeight; y++) {
drawPixel(x + offsetX, y + offsetY, source->getPixel(x + sourceOffsetX, y + sourceOffsetY));
}
}
}
// draw scaled by 2x
void drawGraphics2D_2x(int32_t offsetX, int32_t offsetY, Graphics2D* source) {
for (int32_t x = 0; x < source->getWidth() * 2; x++) {
for (int32_t y = 0; y < source->getHeight() * 2; y++) {
drawPixel(x + offsetX, y + offsetY, source->getPixel(x / 2, y / 2));
}
}
}
// draw section scaled by 2x
void drawGraphics2D_2x(uint16_t offsetX, uint16_t offsetY, Graphics2D* source, uint16_t sourceOffsetX,
uint16_t sourceOffsetY, uint16_t sourceWidth, uint16_t sourceHeight) {
for (uint16_t x = 0; x < sourceWidth * 2; x++) {
for (uint16_t y = 0; y < sourceHeight * 2; y++) {
drawPixel(x + offsetX, y + offsetY, source->getPixel(sourceOffsetX + x / 2, sourceOffsetY + y / 2));
}
}
}
#ifdef ROTATE_LEGACY
// this rotate function is faster, but it has artifacts
void drawGraphics2D_rotatedLegacy(uint16_t offsetX, uint16_t offsetY, Graphics2D* source, uint16_t rotationX,
uint16_t rotationY, float angle) {
float cosA = cos(angle);
float sinA = sin(angle);
for (uint16_t x = 0; x < source->getWidth(); x++) {
for (uint16_t y = 0; y < source->getHeight(); y++) {
int32_t newX = (x - rotationX) * cosA + (y - rotationY) * sinA;
int32_t newY = (y - rotationY) * cosA - (x - rotationX) * sinA;
drawPixel(newX + offsetX, newY + offsetY, source->getPixel(x, y));
}
}
}
#endif
void drawGraphics2D_rotated(uint16_t offsetX, uint16_t offsetY, Graphics2D* source, uint16_t rx, uint16_t ry,
float angle) {
float cosA = cos(angle);
float sinA = sin(angle);
// rotateX = (x - rx) * cos(angle) + (y - ry) * sin(angle);
// rotateY = (y - ry) * cos(angle) - (x - rx) * sin(angle);
// first calculate the bounding box of the new image
// // top left
int32_t tl_x = rotateX(0, 0, rx, ry, cosA, sinA);
int32_t tl_y = rotateY(0, 0, rx, ry, cosA, sinA);
// // top right
int32_t tr_x = rotateX(source->getWidth() - 1, 0, rx, ry, cosA, sinA);
int32_t tr_y = rotateY(source->getWidth() - 1, 0, rx, ry, cosA, sinA);
// // bottom left
int32_t bl_x = rotateX(0, source->getHeight() - 1, rx, ry, cosA, sinA);
int32_t bl_y = rotateY(0, source->getHeight() - 1, rx, ry, cosA, sinA);
// // bottom right
int32_t br_x = rotateX(source->getWidth(), source->getHeight(), rx, ry, cosA, sinA);
int32_t br_y = rotateY(source->getWidth(), source->getHeight(), rx, ry, cosA, sinA);
// debug: draw rotated image
// this->drawLine(offsetX + tl_x, offsetY + tl_y, offsetX + tr_x, offsetY + tr_y, rgb565(255, 0, 0));
// this->drawLine(offsetX + tr_x, offsetY + tr_y, offsetX + br_x, offsetY + br_y, rgb565(255, 0, 0));
// this->drawLine(offsetX + bl_x, offsetY + bl_y, offsetX + br_x, offsetY + br_y, rgb565(255, 0, 0));
// this->drawLine(offsetX + bl_x, offsetY + bl_y, offsetX + tl_x, offsetY + tl_y, rgb565(255, 0, 0));
// determine bounding box
int32_t boxX = min(tl_x, min(tr_x, min(bl_x, br_x)));
int32_t boxY = min(tl_y, min(tr_y, min(bl_y, br_y)));
int32_t boxW = max(tl_x, max(tr_x, max(bl_x, br_x))) - boxX;
int32_t boxH = max(tl_y, max(tr_y, max(bl_y, br_y))) - boxY;
// debug: draw bounding box
// this->drawFrame(boxX + offsetX, boxY + offsetY, boxW, boxH, rgb565(0, 255, 0));
cosA = cos(-angle);
sinA = sin(-angle);
for (int16_t x = boxX; x < boxX + boxW; x++) {
for (int16_t y = boxY; y < boxY + boxH; y++) {
if (pointInsideTriangle(x, y, tl_x, tl_y, tr_x, tr_y, br_x, br_y)) {
int16_t origX = rotateX(x, y, 0, 0, cosA, sinA);
int16_t origY = rotateY(x, y, 0, 0, cosA, sinA);
drawPixel(x + offsetX, y + offsetY, source->getPixel(origX + rx, origY + ry));
} else if (pointInsideTriangle(x, y, tl_x, tl_y, bl_x, bl_y, br_x, br_y)) {
int16_t origX = rotateX(x, y, 0, 0, cosA, sinA);
int16_t origY = rotateY(x, y, 0, 0, cosA, sinA);
drawPixel(x + offsetX, y + offsetY, source->getPixel(origX + rx, origY + ry));
}
}
}
}
protected:
uint16_t** buffer;
DrawPixel* drawPixelCallback;
uint16_t* chunkXOffsets;
uint16_t* chunkWidths;
/**
* @brief Width (in pixels) of the display frame
*/
uint16_t width;
/**
* @brief Height (in pixels) of the display frame.
*/
uint16_t height;
uint16_t maskColor;
uint16_t missingPixelColor;
bool maskEnabled;
uint8_t chunkHeight;
bool isRound;
bool alphaEnabled;
bool allocatePsram;
float alpha;
};
#endif
| 31,411
|
C++
|
.h
| 1,012
| 25
| 117
| 0.558007
|
Open-Smartwatch/lib-open-smartwatch
| 39
| 14
| 0
|
GPL-3.0
|
9/20/2024, 10:45:34 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,913
|
math_osm.h
|
Open-Smartwatch_lib-open-smartwatch/math_osm.h
|
#ifndef OSM_H
#define OSM_H
#ifdef OSW_EMULATOR
#include "FakeArduino.h"
#else
#include <Arduino.h>
#endif
// source: https://wiki.openstreetmap.org/wiki/Slippy_map_tilenames#C.2FC.2B.2B
// we return float here, because we need the fraction
float lon2tilex(float lon, uint8_t z);
float lat2tiley(float lat, uint8_t z);
// helper function to get the offset within the tile
int32_t tileOffset(float tilex);
float tilex2lon(float x, uint8_t z);
float tiley2lat(float y, uint8_t z);
float getTileResolution(float lat, uint8_t z);
#endif
| 542
|
C++
|
.h
| 17
| 30.352941
| 79
| 0.77907
|
Open-Smartwatch/lib-open-smartwatch
| 39
| 14
| 0
|
GPL-3.0
|
9/20/2024, 10:45:34 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,914
|
FakeArduinoWindowSDL.h
|
Open-Smartwatch_lib-open-smartwatch/FakeArduinoWindowSDL.h
|
#ifndef OSW_EMULATOR_WINDOW_SDL_H
#define OSW_EMULATOR_WINDOW_SDL_H
#include <SDL.h>
#include <SDL_image.h>
#include <fstream>
#include "gfx_2d.h"
#include "gfx_util.h"
// Source: https://stackoverflow.com/questions/53033971/how-to-get-the-color-of-a-specific-pixel-from-sdl-surface
Uint32 getpixel(SDL_Surface* surface, int x, int y) {
int bpp = surface->format->BytesPerPixel;
/* Here p is the address to the pixel we want to retrieve */
Uint8* p = (Uint8*)surface->pixels + y * surface->pitch + x * bpp;
switch (bpp) {
case 1:
return *p;
break;
case 2:
return *(Uint16*)p;
break;
case 3:
if (SDL_BYTEORDER == SDL_BIG_ENDIAN)
return p[0] << 16 | p[1] << 8 | p[2];
else
return p[0] | p[1] << 8 | p[2] << 16;
break;
case 4:
return *(Uint32*)p;
break;
default:
return 0; /* shouldn't happen, but avoids warnings */
}
}
void loadPNG(Graphics2D* target, const char* path) { //
std::ifstream f(path);
if (f.good()) {
// printf("loading %s\n", path);
SDL_Surface* image = IMG_Load(path);
for (uint16_t x = 0; x < image->w; x++) {
for (uint16_t y = 0; y < image->h; y++) {
SDL_Color rgb;
Uint32 data = getpixel(image, x, y);
SDL_GetRGB(data, image->format, &rgb.r, &rgb.g, &rgb.b);
target->drawPixel(x, y, rgb565(rgb.g, rgb.b, rgb.r));
}
}
target->drawFrame(0, 0, target->getWidth(), target->getHeight(), 0);
} else {
for (uint16_t x = 0; x < target->getWidth(); x++) {
for (uint16_t y = 0; y < target->getHeight(); y++) {
target->drawPixel(x, y, rgb565(x, y, 0));
}
}
// printf("missing %s\n", path);
}
f.close();
}
class SDLWindowRGB565 {
public:
SDLWindowRGB565(Graphics2D* graphics2d_, int width_, int height_)
: graphics2d(graphics2d_), width(width_), height(height_) {
// create window & renderer
SDL_Init(SDL_INIT_VIDEO);
SDL_CreateWindowAndRenderer(width, height, 0, &window, &renderer);
texture = SDL_CreateTexture(renderer, SDL_PIXELFORMAT_RGB565, SDL_TEXTUREACCESS_STATIC, width, height);
textureBuffer = new uint16_t[width * height];
// create the watch outline temp object limited to this scope:
Graphics2D graphics2d_temp = Graphics2D(width, height, 1);
graphics2d_temp.fillFrame(0, 0, width, height, rgb565(0, 0, 0));
}
SDLWindowRGB565(Graphics2D* graphics2d_, int width_, int height_, bool draw_debug)
: graphics2d(graphics2d_), width(width_), height(height_) {
// create window & renderer
SDL_Init(SDL_INIT_VIDEO);
SDL_CreateWindowAndRenderer(width, height, 0, &window, &renderer);
texture = SDL_CreateTexture(renderer, SDL_PIXELFORMAT_RGB565, SDL_TEXTUREACCESS_STATIC, width, height);
textureBuffer = new uint16_t[width * height];
}
~SDLWindowRGB565() {
delete[] textureBuffer;
SDL_DestroyTexture(texture);
SDL_DestroyRenderer(renderer);
SDL_DestroyWindow(window);
SDL_Quit();
}
virtual void setup(){};
virtual void loop(){};
void run() {
setup();
SDL_Event event; // Event variable
while (!(event.type == SDL_QUIT)) {
loop();
// we don't emulate requestFlush() with this setup
drawToWindow();
SDL_PollEvent(&event);
}
}
void drawWatchOverlay() {
graphics2d->drawCircle(119, 119, 119, rgb565(255, 255, 255));
graphics2d->fillFrame(216, 40, 10, 10, rgb565(200, 200, 200));
graphics2d->fillFrame(216, 190, 10, 10, rgb565(200, 200, 200));
graphics2d->fillFrame(13, 40, 10, 10, rgb565(200, 200, 200));
graphics2d->fillFrame(13, 190, 10, 10, rgb565(200, 200, 200));
}
void gfx2dToTextureBuffer(void) {
for (uint16_t x = 0; x < graphics2d->getWidth(); x++) {
for (uint16_t y = 0; y < graphics2d->getHeight(); y++) {
textureBuffer[x + y * graphics2d->getWidth()] = graphics2d->getPixel(x, y);
}
}
}
void drawToWindow() {
drawWatchOverlay();
gfx2dToTextureBuffer();
SDL_UpdateTexture(texture, NULL, textureBuffer, width * sizeof(Uint16) /*pitch*/);
SDL_RenderClear(renderer);
SDL_RenderCopy(renderer, texture, NULL, NULL);
SDL_RenderPresent(renderer);
}
private:
Graphics2D* graphics2d;
int height;
int width;
SDL_Renderer* renderer = NULL;
SDL_Window* window = NULL;
SDL_Texture* texture = NULL;
uint16_t* textureBuffer = NULL;
};
#endif
| 4,422
|
C++
|
.h
| 128
| 29.820313
| 113
| 0.641704
|
Open-Smartwatch/lib-open-smartwatch
| 39
| 14
| 0
|
GPL-3.0
|
9/20/2024, 10:45:34 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,915
|
esp32_cpu.h
|
Open-Smartwatch_lib-open-smartwatch/esp32_cpu.h
|
#ifndef P3DT_ESP32_CPU_H
#define P3DT_ESP32_CPU_H
void setMinCPUSpeed() {
// https://github.com/espressif/arduino-esp32/blob/master/cores/esp32/esp32-hal-cpu.h
// ESP32 PICO D4 -> https://docs.espressif.com/projects/esp-idf/en/latest/hw-reference/get-started-pico-kit.html
// -> 40MHz Oscillator
// // 240, 160, 80, 40, 20, 10 <<< For 40MHz XTAL
setCpuFrequencyMhz(40);
}
#endif
| 392
|
C++
|
.h
| 10
| 37.1
| 114
| 0.721785
|
Open-Smartwatch/lib-open-smartwatch
| 39
| 14
| 0
|
GPL-3.0
|
9/20/2024, 10:45:34 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,916
|
anim_matrix.h
|
Open-Smartwatch_lib-open-smartwatch/anim_matrix.h
|
#ifndef ANIM_MATRIX_H
#define ANIM_MATRIX_H
#include "gfx_2d_print.h"
#define MATRIX_STRING_MAX_LENGTH 16
class MatrixString {
public:
MatrixString(Graphics2DPrint* gfx, const char* matrixChars = "GATC", uint8_t numMatrixChars = 4,
uint8_t maxScale = 3) {
this->gfx = gfx;
this->matrixChars = matrixChars;
this->numMatrixChars = numMatrixChars;
this->maxScale = maxScale;
randomize();
}
void randomize(void) {
length = random(MATRIX_STRING_MAX_LENGTH - 1) + 1;
x = 16 + random(gfx->getWidth() - 32);
scale = random(maxScale) + 1;
gfx->setTextSize(scale);
y = 0 - (gfx->getTextOfsetRows(length)) - random(100);
speed = random(scale) + scale;
for (uint8_t i = 0; i < length; i++) {
s[i] = matrixChars[random(numMatrixChars)];
}
}
uint8_t length;
char s[MATRIX_STRING_MAX_LENGTH];
int16_t x;
int16_t y;
uint8_t scale;
int16_t speed;
const char* matrixChars;
uint8_t numMatrixChars;
uint8_t maxScale;
Graphics2DPrint* gfx;
void draw() {
gfx->setTextSize(scale);
gfx->setTextLeftAligned();
gfx->setTextTopAligned();
for (uint8_t i = 0; i < length; i++) {
gfx->setTextCursor(x, y + gfx->getTextOfsetRows(i));
gfx->print(s[i]);
}
y += speed;
if (random(100) > 75) {
s[random(length)] = matrixChars[random(numMatrixChars)];
}
if (y > gfx->getHeight()) {
randomize();
}
}
};
// TODO: use an dim colors correctly
class AnimMatrix {
public:
AnimMatrix(Graphics2DPrint* gfx, const char* chars = "GATC", uint8_t charCount = 4, uint8_t stringCount = 32,
uint8_t maxScale = 3, uint16_t fgColor = rgb565(0, 255, 0), uint16_t maskColor = rgb565(255, 0, 0)) {
this->chars = chars;
this->stringCount = stringCount;
this->maxScale = maxScale;
this->fgColor = fgColor;
this->maskColor = maskColor;
matrixStrings = new MatrixString*[stringCount];
for (uint8_t i = 0; i < stringCount; i++) {
matrixStrings[i] = new MatrixString(gfx, chars, charCount, maxScale);
}
}
void loop(Graphics2DPrint* gfx) {
gfx->enableMask(maskColor);
// draw back to front
for (uint8_t c = 1; c <= maxScale; c++) {
gfx->setTextColor(rgb565(0, 32 + c * 64, 0), rgb565(255, 0, 0));
for (uint8_t i = 0; i < stringCount; i++) {
if (matrixStrings[i]->scale == c) {
matrixStrings[i]->draw();
}
}
}
}
MatrixString** matrixStrings;
const char* chars;
uint8_t stringCount;
uint8_t maxScale;
uint16_t fgColor;
uint16_t maskColor;
};
#endif
| 2,601
|
C++
|
.h
| 87
| 25.252874
| 114
| 0.634654
|
Open-Smartwatch/lib-open-smartwatch
| 39
| 14
| 0
|
GPL-3.0
|
9/20/2024, 10:45:34 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,917
|
osm_render.h
|
Open-Smartwatch_lib-open-smartwatch/osm_render.h
|
#ifndef OSM_RENDER_H
#define OSM_RENDER_H
#ifdef OSW_EMULATOR
#include "FakeArduino.h"
#else
#include <Arduino.h>
#endif
#include "gfx_2d.h"
#include "math_osm.h"
#define TILE_W 256
#define TILE_H 256
#define TILE_CHUNK_H 16
typedef void (*loadTile)(Graphics2D *target, int8_t z, float tilex, float tiley, int32_t offsetx, int32_t offsety);
class BufferedTile {
public:
BufferedTile(bool inPsram) {
gfx = new Graphics2D(TILE_W, TILE_H, TILE_CHUNK_H, false /* not round */, inPsram /* but in psram*/);
lastUsed = 0;
};
~BufferedTile() { delete gfx; }
void loadTile(loadTile loadTileFn, uint32_t tileX, uint32_t tileY, uint8_t tileZ) {
loadTileFn(gfx, tileZ, tileX, tileY, 0, 0);
_tileX = tileX;
_tileY = tileY;
_tileZ = tileZ;
lastUsed = millis();
}
bool hasTile(uint32_t tileX, uint32_t tileY, uint8_t tileZ) {
return tileZ == _tileZ && tileX == _tileX && tileY == _tileY && lastUsed != 0;
}
Graphics2D *getGraphics() {
lastUsed = millis();
return gfx;
}
unsigned long getLastUsed() { return lastUsed; }
private:
Graphics2D *gfx;
uint8_t _tileZ;
uint32_t _tileX;
uint32_t _tileY;
unsigned long lastUsed;
};
void drawTiles(Graphics2D *target, loadTile loadTileFn, float lat, float lon, uint8_t z);
void drawTilesBuffered(BufferedTile **buffer, uint8_t bufferLength, Graphics2D *target, //
loadTile loadTileFn, float lat, float lon, uint8_t z);
#endif
| 1,457
|
C++
|
.h
| 46
| 28.369565
| 115
| 0.692143
|
Open-Smartwatch/lib-open-smartwatch
| 39
| 14
| 0
|
GPL-3.0
|
9/20/2024, 10:45:34 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,918
|
math_angles.h
|
Open-Smartwatch_lib-open-smartwatch/math_angles.h
|
#ifndef GFX_ANGLES_H
#define GFX_ANGLES_H
#ifdef OSW_EMULATOR
#include "FakeArduino.h"
#else
#include <Arduino.h>
#endif
/**
* @brief Find the x-axis point which is at a distance r and an angle d of a point C(cx,cy).
*
* 0 degrees ist 12 o'clock
*
* This function can be used to find coordonnates of the extremity of the clock hand from the center
*
* @param cx x value of the initial point
* @param r radius
* @param d angle in degrees (0째 is 12 o'clock)
* @return float
*/
float rpx(float cx, float x, float r);
/**
* Find the y-axis of a point which is at a distance r and an angle d of a point C(cx,cy).
*
* 0 degrees ist 12 o'clock
* This function can be used to find coordonnates of the extremity of the clock hand from the center
*
* @param cy y value of the initial point
* @param r radius
* @param d angle in degrees (0째 is 12 o'clock)
* @return float
*/
float rpy(float cy, float y, float r);
int32_t rotateX(int32_t x, int32_t y, int32_t rx, int32_t ry, float cosA, float sinA);
int32_t rotateY(int32_t x, int32_t y, int32_t rx, int32_t ry, float cosA, float sinA);
int32_t rotateX(int32_t x, int32_t y, int32_t rx, int32_t ry, float a);
int32_t rotateY(int32_t x, int32_t y, int32_t rx, int32_t ry, float a);
/**
* Convert seconds in degrees.
*
* 0 seconds = 0째 / 15 seconds = 90째 ...
*
* @param seconds seconds to convert
* @return float angle in degrees
*/
float s2d(long seconds);
// minutes to degrees (0-360)
float m2d(long seconds);
// hours to degrees (0-360)
float h2d(long seconds);
bool pointInsideTriangle(float px, float py, float x1, float y1, float x2, float y2, float x3, float y3);
#endif
| 1,676
|
C++
|
.h
| 51
| 30.901961
| 105
| 0.705518
|
Open-Smartwatch/lib-open-smartwatch
| 39
| 14
| 0
|
GPL-3.0
|
9/20/2024, 10:45:34 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,919
|
anim_water_ripple.h
|
Open-Smartwatch_lib-open-smartwatch/anim_water_ripple.h
|
#ifndef WATER_RIPPLE_H
#define WATER_RIPPLE_H
#ifdef OSW_EMULATOR
#include "FakeArduino.h"
#else
#include <Arduino.h>
#endif
#include "gfx_2d.h"
#include "gfx_util.h"
// implementation according to:
// https://web.archive.org/web/20160418004149/http://freespace.virgin.net/hugo.elias/graphics/x_water.htm
void calcWater(int8_t* buf1, int8_t* buf2, uint16_t width, uint16_t height, float damping /* [0,1]*/);
void mapWater(int8_t* buf, uint16_t width, uint16_t height, Graphics2D* background, Graphics2D* target,
uint16_t offsetX, uint16_t offsetY);
#endif
| 575
|
C++
|
.h
| 15
| 36.066667
| 105
| 0.747748
|
Open-Smartwatch/lib-open-smartwatch
| 39
| 14
| 0
|
GPL-3.0
|
9/20/2024, 10:45:34 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,920
|
anim_firework.h
|
Open-Smartwatch_lib-open-smartwatch/anim_firework.h
|
#ifndef ANIM_FIREWORK_H
#define ANIM_FIREWORK_H
#ifdef OSW_EMULATOR
#include "FakeArduino.h"
#else
#include <Arduino.h>
#endif
#include "gfx_2d.h"
#include "gfx_util.h"
class Particle {
public:
Particle() {}
float locationX;
float locationY;
float speedX;
float speedY;
void tick(long ms, float friction, float gravity);
};
class Firework {
private:
Particle* particles;
uint8_t numParticles;
public:
Firework() {
numParticles = 53;
particles = new Particle[numParticles];
}
~Firework(void) { delete[] particles; }
void init(uint16_t color, uint8_t radius, uint8_t rings, //
uint16_t screenWidth, uint16_t screenHeight);
void tick(long ms, uint8_t launchSpeed);
void draw(Graphics2D* gfx, int16_t offsetX, int16_t offsetY);
uint16_t height;
uint16_t explHeight;
uint16_t color;
long age;
};
#endif
| 864
|
C++
|
.h
| 38
| 20.026316
| 63
| 0.72561
|
Open-Smartwatch/lib-open-smartwatch
| 39
| 14
| 0
|
GPL-3.0
|
9/20/2024, 10:45:34 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,922
|
anim_doom_fire_old.h
|
Open-Smartwatch_lib-open-smartwatch/anim_doom_fire_old.h
|
#pragma once
#ifdef OSW_EMULATOR
#include "FakeArduino.h"
#else
#include <Arduino.h>
#endif
#include "gfx_2d.h"
#include "gfx_util.h"
// see: https://p3dt.net/post/2019/01/05/playing-with-doom.html
void setupFire(uint8_t **firePixels, uint16_t w, uint16_t h);
void calcFire(uint8_t **firePixels, uint16_t w, uint16_t h);
void mapFire(uint8_t **firePixels, uint16_t fireW, uint16_t fireH, //
Graphics2D *graphics2d, uint16_t offsetX, uint16_t offsetY);
| 472
|
C++
|
.h
| 13
| 33.846154
| 73
| 0.730684
|
Open-Smartwatch/lib-open-smartwatch
| 39
| 14
| 0
|
GPL-3.0
|
9/20/2024, 10:45:34 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,924
|
anim_doom_fire.h
|
Open-Smartwatch_lib-open-smartwatch/anim_doom_fire.h
|
#pragma once
#ifdef OSW_EMULATOR
#include "FakeArduino.h"
#else
#include <Arduino.h>
#endif
//#include "gfx_2d.h"
#include "gfx_2d_print.h"
#include "gfx_util.h"
// see: https://p3dt.net/post/2019/01/05/playing-with-doom.html
class AnimDoomFire{
public:
AnimDoomFire() {
for (int i = 0; i < 240; i++) {
firePixels[i] = new uint8_t[240];
}
setupFire(firePixels, 240, 240);
}
const uint16_t doomColorMap[36] = {
//
rgb565(0x00, 0x00, 0x00), // #000000
rgb565(0x1f, 0x07, 0x07), // #1f0707
rgb565(0x2f, 0x0f, 0x07), // #2f0f07
rgb565(0x47, 0x0f, 0x07), // #470f07
rgb565(0x57, 0x17, 0x07), // #571707
rgb565(0x67, 0x1f, 0x07), // #671f07
rgb565(0x77, 0x1f, 0x07), // #771f07
rgb565(0x8f, 0x27, 0x07), // #8f2707
rgb565(0x9f, 0x2f, 0x07), // #9f2f07
rgb565(0xaf, 0x3f, 0x07), // #af3f07
rgb565(0xbf, 0x47, 0x07), // #bf4707
rgb565(0xc7, 0x47, 0x07), // #c74707
rgb565(0xDF, 0x4F, 0x07), // #DF4F07
rgb565(0xDF, 0x57, 0x07), // #DF5707
rgb565(0xDF, 0x57, 0x07), // #DF5707
rgb565(0xD7, 0x5F, 0x07), // #D75F07
rgb565(0xD7, 0x67, 0x0F), // #D7670F
rgb565(0xcf, 0x6f, 0x0f), // #cf6f0f
rgb565(0xcf, 0x77, 0x0f), // #cf770f
rgb565(0xcf, 0x7f, 0x0f), // #cf7f0f
rgb565(0xCF, 0x87, 0x17), // #CF8717
rgb565(0xC7, 0x87, 0x17), // #C78717
rgb565(0xC7, 0x8F, 0x17), // #C78F17
rgb565(0xC7, 0x97, 0x1F), // #C7971F
rgb565(0xBF, 0x9F, 0x1F), // #BF9F1F
rgb565(0xBF, 0x9F, 0x1F), // #BF9F1F
rgb565(0xBF, 0xA7, 0x27), // #BFA727
rgb565(0xBF, 0xA7, 0x27), // #BFA727
rgb565(0xBF, 0xAF, 0x2F), // #BFAF2F
rgb565(0xB7, 0xAF, 0x2F), // #B7AF2F
rgb565(0xB7, 0xB7, 0x2F), // #B7B72F
rgb565(0xB7, 0xB7, 0x37), // #B7B737
rgb565(0xCF, 0xCF, 0x6F), // #CFCF6F
rgb565(0xDF, 0xDF, 0x9F), // #DFDF9F
rgb565(0xEF, 0xEF, 0xC7), // #EFEFC7
rgb565(0xFF, 0xFF, 0xFF) // #FFFFFF
};
void setupFire(uint8_t **firePixels, uint16_t w, uint16_t h) {
for (uint8_t y = 0; y < h; y++) {
for (uint8_t x = 0; x < w; x++) {
// last row is hot
firePixels[y][x] = y == h - 1 ? 35 : 0;
}
}
}
void calcFire(uint8_t **firePixels, uint16_t w, uint16_t h,float* X ,float* Y) {
for (uint8_t y = 0; y < h - 1; y++) {
for (uint8_t x = 0; x < w; x++) {
uint8_t wind = x + random(2) + (Y == nullptr ? 0 : (abs(*Y) / 15000));
wind = wind >= w ? wind - w : wind;
uint8_t speed = y + random(2) + (X == nullptr ? 0:(abs(*X) / 15000));
speed = speed >= h ? h - 1 : speed;
firePixels[y][x] = firePixels[speed][wind] - random(2);
firePixels[y][x] = firePixels[y][x] > 35 ? 0 : firePixels[y][x]; // fix overflow
}
}
}
void mapFire(uint8_t **firePixels, uint16_t fireW, uint16_t fireH, //
Graphics2D *graphics2d, uint16_t offsetX, uint16_t offsetY) {
for (uint8_t x = 0; x < fireW; x++) {
for (uint8_t y = 0; y < fireH; y++) {
graphics2d->drawPixel(x + offsetX, y + offsetY, doomColorMap[firePixels[y][x]]);
}
}
}
void loop(Graphics2DPrint *gfx,float* X = nullptr, float* Y = nullptr) {
calcFire(firePixels, 240, 240,X,Y);
mapFire(firePixels, 240, 240, gfx, 0, 0);
}
uint8_t **firePixels = new uint8_t *[240];
};
| 3,413
|
C++
|
.h
| 91
| 31.802198
| 89
| 0.561255
|
Open-Smartwatch/lib-open-smartwatch
| 39
| 14
| 0
|
GPL-3.0
|
9/20/2024, 10:45:34 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,925
|
FakeArduino.h
|
Open-Smartwatch_lib-open-smartwatch/FakeArduino.h
|
#ifndef OSW_EMULATOR_H
#define OSW_EMULATOR_H
#include <stdint.h>
#include <math.h>
#define PI 3.1415926535897932384626433832795
#define HALF_PI 1.5707963267948966192313216916398
#define TWO_PI 6.283185307179586476925286766559
#define DEG_TO_RAD 0.017453292519943295769236907684886
#define RAD_TO_DEG 57.295779513082320876798154814105
#define EULER 2.718281828459045235360287471352
// copy over missing functions from Arduino.h here, and fix them so they run :)
long millis();
long random(int howbig);
long random(int howsmall, int howbig);
void delay(long millis);
int32_t min(int32_t a, int32_t b);
int32_t max(int32_t a, int32_t b);
#endif
| 645
|
C++
|
.h
| 18
| 34.722222
| 79
| 0.8192
|
Open-Smartwatch/lib-open-smartwatch
| 39
| 14
| 0
|
GPL-3.0
|
9/20/2024, 10:45:34 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,927
|
gfx_util.h
|
Open-Smartwatch_lib-open-smartwatch/gfx_util.h
|
#ifndef P3DT_GFX_UTIL_H
#define P3DT_GFX_UTIL_H
#ifdef OSW_EMULATOR
#include "FakeArduino.h"
#else
#include <Arduino.h>
#endif
uint16_t rgb565(uint8_t red, uint8_t green, uint8_t blue);
uint32_t rgb888(uint8_t red, uint8_t green, uint8_t blue);
uint32_t rgb565to888(uint16_t rgb565);
uint16_t rgb888to565(uint32_t rgb888);
uint8_t rgb565_red(uint16_t rgb565);
uint8_t rgb565_green(uint16_t rgb565);
uint8_t rgb565_blue(uint16_t rgb565);
uint8_t rgb888_red(uint32_t rgb888);
uint8_t rgb888_green(uint32_t rgb888);
uint8_t rgb888_blue(uint32_t rgb888);
uint16_t blend(uint16_t target, uint16_t source, float alpha);
uint16_t dimColor(uint16_t oc, uint8_t amount);
uint16_t changeColor(uint16_t oc, float amount);
void hsvToRgb(const unsigned char& h, const unsigned char& s, const unsigned char& v, unsigned char& r,
unsigned char& g, unsigned char& b);
void rgbToHsv(const unsigned char& r, const unsigned char& g, const unsigned char& b, unsigned char& h,
unsigned char& s, unsigned char& v);
#endif
| 1,037
|
C++
|
.h
| 25
| 39
| 103
| 0.751745
|
Open-Smartwatch/lib-open-smartwatch
| 39
| 14
| 0
|
GPL-3.0
|
9/20/2024, 10:45:34 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,928
|
gfx_2d_print.h
|
Open-Smartwatch_lib-open-smartwatch/gfx_2d_print.h
|
#ifndef P3DT_GFX_2D_PRINT_H
#define P3DT_GFX_2D_PRINT_H
// This is (still) a nasty copy paste job of Arduino_GFX.h, sorry, but it works.
#ifdef OSW_EMULATOR
#include <iostream>
#include "FakeArduino.h"
#include "FakePrint.h"
#include "Fakegfxfont.h"
#include "Fakeglcdfont.h"
#include "Fakepgmspace.h"
#else
#include <Arduino.h>
#include <Arduino_TFT.h>
#include "Print.h"
#include "gfxfont.h"
#include "font/glcdfont.h"
#endif
#include "fonts/ows_font_CEI_8859-15.cpp"
#include "gfx_2d.h"
#include "gfx_util.h"
#include "math_angles.h"
#ifdef OSW_EMULATOR
inline GFXglyph *pgm_read_glyph_ptr(const GFXfont *gfxFont, uint8_t c) {
#ifdef __AVR__
return &(((GFXglyph *)pgm_read_pointer(&gfxFont->glyph))[c]);
#else
// expression in __AVR__ section may generate "dereferencing type-punned pointer will break strict-aliasing rules"
// warning In fact, on other platforms (such as STM32) there is no need to do this pointer magic as program memory may
// be read in a usual way So expression may be simplified
return gfxFont->glyph + c;
#endif //__AVR__
}
inline uint8_t *pgm_read_bitmap_ptr(const GFXfont *gfxFont) {
#ifdef __AVR__
return (uint8_t *)pgm_read_pointer(&gfxFont->bitmap);
#else
// expression in __AVR__ section generates "dereferencing type-punned pointer will break strict-aliasing rules"
// warning In fact, on other platforms (such as STM32) there is no need to do this pointer magic as program memory may
// be read in a usual way So expression may be simplified
return gfxFont->bitmap;
#endif //__AVR__
}
#endif
class Graphics2DPrint : public Graphics2D, public Print {
public:
Graphics2DPrint(uint16_t w_, uint16_t h_, uint8_t chunkHeight_, bool isRound_ = false, bool allocatePsram_ = false)
: Graphics2D(w_, h_, chunkHeight_, isRound_, allocatePsram_) {
cursor_x = 0;
cursor_y = 0;
_max_x = w_ - 1; ///< x zero base bound
_max_y = h_ - 1; ///< y zero base bound
textcolor = rgb565(255, 255, 255);
textbgcolor = rgb565(0, 0, 0);
textsize_x = textsize_y = 1;
// TODO: fix text wrapping on single character prints
// wrap = true;
_cp437 = false;
gfxFont = nullptr;
text_x_alignment = _text_alignment::LEFT;
text_y_alignment = _text_alignment::LEFT;
text_pixel_margin = 0; // unused
_rotation = 0; // unused
}
// helper functions
size_t getTextLength(const uint8_t *buffer, size_t size) const {
size_t string_size = 0;
while (size--) {
string_size += getCharWidth(*buffer++);
}
return string_size;
}
size_t getCharWidth(const uint8_t tempC) const {
if (tempC == '\n') {
return 0;
}
if (gfxFont == nullptr) {
return 6; // basic font width.
} else {
uint8_t first = pgm_read_byte(&gfxFont->first);
if ((tempC >= first) && (tempC <= (uint8_t)pgm_read_byte(&gfxFont->last))) {
GFXglyph *glyph = pgm_read_glyph_ptr(gfxFont, tempC - first);
return pgm_read_byte(&glyph->xAdvance);
}
}
return 0;
}
size_t getCharHeight(const uint8_t tempC) const {
if (tempC == '\n') {
return 0;
}
if (gfxFont == nullptr) {
return 8; // basic font height.
} else {
return pgm_read_byte(&gfxFont->yAdvance);
}
return 0;
}
/*!
@brief Draw a single character
@param x Bottom left corner x coordinate
@param y Bottom left corner y coordinate
@param c The 8-bit font-indexed character (likely ascii)
@param color 16-bit 5-6-5 Color to draw character with
@param bg 16-bit 5-6-5 Color to fill background with (if same as color, no background)
*/
void drawChar(int16_t x, int16_t y, unsigned char c, uint16_t color, uint16_t bg) {
uint16_t block_w;
uint16_t block_h;
if (!gfxFont) // 'Classic' built-in font
{
block_w = 6 * textsize_x;
block_h = 8 * textsize_y;
if ((x > _max_x) || // Clip right
(y > _max_y) || // Clip bottom
((x + block_w - 1) < 0) || // Clip left
((y + block_h - 1) < 0) // Clip top
) {
return;
}
if (!_cp437 && (c >= 176)) {
c++; // Handle 'classic' charset behavior
}
// Not required: startWrite();
for (int8_t i = 0; i < 5; i++) { // Char bitmap = 5 columns
uint8_t line = pgm_read_byte(&OSWfont[c * 5 + i]);
for (int8_t j = 0; j < 8; j++, line >>= 1) {
if (line & 1) {
if (textsize_x == 1 && textsize_y == 1) {
drawPixel(x + i, y + j, color);
} else {
fillFrame(x + i * textsize_x, y + j * textsize_y, textsize_x - text_pixel_margin,
textsize_y - text_pixel_margin, color);
}
} else if (bg != color) {
if (textsize_x == 1 && textsize_y == 1) {
drawPixel(x + i, y + j, bg);
} else {
fillFrame(x + i * textsize_x, y + j * textsize_y, textsize_x - text_pixel_margin,
textsize_y - text_pixel_margin, bg);
}
}
}
}
if (bg != color) { // If opaque, draw vertical line for last column
if (textsize_x == 1 && textsize_y == 1) {
drawVLine(x + 5, y, 8, bg);
} else {
fillFrame(x + 5 * textsize_x, y, textsize_x, 8 * textsize_y, bg);
}
}
// Not required: endWrite();
} else // Custom font
{
// Character is assumed previously filtered by write() to eliminate
// newlines, returns, non-printable characters, etc. Calling
// drawChar() directly with 'bad' characters of font may cause mayhem!
c -= (uint8_t)pgm_read_byte(&gfxFont->first);
GFXglyph *glyph = pgm_read_glyph_ptr(gfxFont, c);
uint8_t *bitmap = pgm_read_bitmap_ptr(gfxFont);
uint16_t bo = pgm_read_word(&glyph->bitmapOffset);
uint8_t w = pgm_read_byte(&glyph->width), h = pgm_read_byte(&glyph->height),
xAdvance = pgm_read_byte(&glyph->xAdvance), yAdvance = pgm_read_byte(&gfxFont->yAdvance),
baseline = yAdvance * 2 / 3; // TODO: baseline is an arbitrary currently, may be define in font file
int8_t xo = pgm_read_byte(&glyph->xOffset), yo = pgm_read_byte(&glyph->yOffset);
uint8_t xx, yy, bits = 0, bit = 0;
int16_t xo16 = 0, yo16 = 0;
if (xAdvance < w) {
xAdvance = w; // Don't know why it exists
}
if (textsize_x > 1 || textsize_y > 1) {
xo16 = (unsigned char)xo;
yo16 = (unsigned char)yo;
}
block_w = xAdvance * textsize_x;
block_h = yAdvance * textsize_y;
if ((x > _max_x) || // Clip right
(y > _max_y) || // Clip bottom
((x + block_w - 1) < 0) || // Clip left
((y + block_h - 1) < 0) // Clip top
) {
return;
}
// NOTE: Different from Adafruit_GFX design, Adruino_GFX also cater background.
// Since it may introduce many ugly output, it should limited using on mono font only.
// Not required: startWrite();
if (bg != color) // have background color
{
fillFrame(x, y - (baseline * textsize_y), block_w, block_h, bg);
}
for (yy = 0; yy < h; yy++) {
for (xx = 0; xx < w; xx++) {
if (!(bit++ & 7)) {
bits = pgm_read_byte(&bitmap[bo++]);
}
if (bits & 0x80) {
if (textsize_x == 1 && textsize_y == 1) {
drawPixel(x + xo + xx, y + yo + yy, color);
} else {
fillFrame(x + (xo16 + xx) * textsize_x, y + (yo16 + yy) * textsize_y, textsize_x - text_pixel_margin,
textsize_y - text_pixel_margin, color);
}
}
bits <<= 1;
}
}
// Not required: endWrite();
} // End classic vs custom font
}
// manage writing to buffer and virtual from print header
size_t write(uint8_t c) override {
// newline can only happen with direct function calls
if (!gfxFont) { // 'Classic' built-in font
if (c == '\n') { // Newline?
cursor_x = 0; // Reset x to zero,
cursor_y += textsize_y * 8; // advance y one line
} else if (c != '\r') { // Ignore carriage returns
drawChar(cursor_x, cursor_y - 7 * (textsize_y), c, textcolor, textbgcolor);
cursor_x += textsize_x * 6; // Advance x one char
}
} else { // Custom font
if (c == '\n') {
cursor_x = 0;
cursor_y += (int16_t)textsize_y * (uint8_t)pgm_read_byte(&gfxFont->yAdvance);
} else if (c != '\r') {
uint8_t first = pgm_read_byte(&gfxFont->first);
if ((c >= first) && (c <= (uint8_t)pgm_read_byte(&gfxFont->last))) {
GFXglyph *glyph = pgm_read_glyph_ptr(gfxFont, c - first);
drawChar(cursor_x, cursor_y, c, textcolor, textbgcolor);
cursor_x += textsize_x * pgm_read_byte(&glyph->xAdvance);
}
}
}
return 1;
}
size_t write(const uint8_t *buffer, size_t size) override {
// check if it fits && check if there is a /n in the text.
int16_t temp_cursor_x = cursor_x;
// int16_t space = 0;
// TODO: fix text wrapping on single character prints
// if (wrap) {
// if (text_x_alignment == _text_alignment::LEFT) {
// space = width - temp_cursor_x;
// } else if (text_x_alignment == _text_alignment::RIGHT) {
// space = temp_cursor_x;
// } else if (text_x_alignment == _text_alignment::CENTER) {
// if (temp_cursor_x * 2 > width) {
// space = (width - temp_cursor_x) * 2;
// } else {
// space = temp_cursor_x * 2;
// }
// }
// }
size_t count = 0; // to keep track of the buffer
uint16_t msg_length = 0; // keep track of the message length for wrap
for (size_t i = 0; i < size; i++) {
if (buffer[i] == '\n') {
if ((i - count) > 0) {
write_nocheck(&buffer[count], (i - count), false);
}
write('\n');
cursor_x = temp_cursor_x;
count = i + 1;
msg_length = 0;
}
msg_length += getCharWidth(buffer[i]);
// TODO: fix text wrapping on single character prints
// if (wrap && msg_length > space) { // wrap
// write_nocheck(&buffer[count], (i - count), false);
// write('\n');
// cursor_x = temp_cursor_x;
// count = i;
// i--; // decrease it one to include the "to large" character
// msg_length = 0;
// }
}
if (size == 1) { // needed for single characters
write_nocheck(&buffer[count], ((size)-count), true);
} else if (count != size - 1) { // needed for center when user doesn't provide an "\n"
write_nocheck(&buffer[count], ((size)-count), true);
}
return count;
}
size_t write_nocheck(const uint8_t *buffer, size_t size, bool final) {
//--> remember the cursor position before printing
int16_t temp_cursor_x = cursor_x;
int16_t temp_cursor_y = cursor_y;
//---> check x alignment
if (text_x_alignment == _text_alignment::RIGHT) {
const size_t msg_length = getTextLength(buffer, size);
cursor_x -= msg_length * textsize_x;
temp_cursor_x = cursor_x;
} else if (text_x_alignment == _text_alignment::CENTER) {
const size_t msg_length = getTextLength(buffer, size);
cursor_x -= msg_length * textsize_x / 2;
}
//-->check y alignment
if (text_y_alignment == _text_alignment::CENTER) {
if (!gfxFont)
cursor_y += (int16_t)textsize_y * 8 / 2;
else {
const unsigned char c = '1' - (uint8_t)pgm_read_byte(&gfxFont->first);
GFXglyph *glyph_temp = pgm_read_glyph_ptr(gfxFont, c);
cursor_y += (int16_t)textsize_y * (glyph_temp->height / 2);
}
} else if (text_y_alignment == _text_alignment::RIGHT) { // in other words: under baseline
if (!gfxFont)
cursor_y += (int16_t)textsize_y * 8;
else {
const unsigned char c = '1' - (uint8_t)pgm_read_byte(&gfxFont->first);
GFXglyph *glyphtemp = pgm_read_glyph_ptr(gfxFont, c);
cursor_y += (int16_t)textsize_y * (glyphtemp->height);
}
}
// then actually write the buffer.
size_t n = 0;
while (size--) {
n += write(*buffer++);
}
//--> then fix the cursor x alignment
if (text_x_alignment == _text_alignment::RIGHT) {
cursor_x = temp_cursor_x;
} else if (text_x_alignment == _text_alignment::CENTER) {
if (final && buffer[size - 1] != '\n') {
if (!gfxFont) {
if (cursor_y == temp_cursor_y) cursor_y = temp_cursor_y + textsize_y * 8; // advance y one line
} else {
if (cursor_y == temp_cursor_y)
cursor_y = temp_cursor_y + textsize_y * gfxFont->yAdvance; // advance y one line
}
temp_cursor_y = cursor_y;
}
cursor_x = temp_cursor_x;
}
//--> then fix the cursor y alignment
if (text_y_alignment != _text_alignment::LEFT) {
cursor_y = temp_cursor_y;
}
return n;
}
/**
* Display a number with a minimum number of digits.
*
* Example : yourNumer = 3 and numDigits = 4 display 0003
*
* @param yourNumber number to display
* @param numDigits minimum number of digit to display
*/
void printDecimal(long yourNumber, int numDigits) {
for (int i = 1; i < numDigits; i++) {
if (yourNumber < pow(10, i)) {
print("0");
}
}
print(yourNumber);
}
/**
@param str String parameter you need 'foo' -> E.g char foo[] = "index";
@param pos Nth count string
@param directionHead string cut head
*/
char *slice(char *str, int pos, bool directionHead = false) {
uint8_t len = strlen(str);
if (len > abs(pos) && 0 != pos) {
if(directionHead){
if (pos > 0)
str[pos] = 0; // 3 : (Hell)o, World -> Hell
else
str = str - pos; // -3 : Hel(lo, World) -> lo, World
} else {
if (pos > 0)
str = str + (len - pos); // 3 : Hello, Wo(rld) -> rld
else
str[len - abs(pos)] = '\0'; // -3 : (Hello, Wo)rld -> Hello, Wo
}
}
return str;
}
// set alignment options
void setTextCenterAligned() { text_x_alignment = _text_alignment::CENTER; }
void setTextLeftAligned() { text_x_alignment = _text_alignment::LEFT; }
void setTextRightAligned() { text_x_alignment = _text_alignment::RIGHT; }
void setTextMiddleAligned() { text_y_alignment = _text_alignment::CENTER; }
void setTextBottomAligned() { text_y_alignment = _text_alignment::LEFT; }
void setTextTopAligned() { text_y_alignment = _text_alignment::RIGHT; }
// set font options
void clearFont() { setFont(nullptr); }
/**
* @brief Can defined a specific font to use.
*
* WARNING : you have to put a resetFont() when you want to use an other font.
* If you not this font will be used for all the caracters displayed
*
* @param f
*/
void setFont(const GFXfont *f) { gfxFont = (GFXfont *)f; }
/**
* @brief Set the text size.
*
* Size "1" mean a size of 8px height and 6 px width.
* Size "2" mean a double size => 18px height x 12px width
*
* @param s Size of the text
*/
void setTextSize(uint8_t s) { setTextSize(s, s, 0); }
/**
* @brief Set the x and y factor size to apply
*
* Example : setTextSize(3,2) will set the text size to a block of 3*8=24px height and 2x6px=12px width
*
* @param s_x x/width size factor
* @param s_y y/height size factor
*/
void setTextSize(uint8_t s_x, uint8_t s_y) { setTextSize(s_x, s_y, 0); }
void setTextSize(uint8_t s_x, uint8_t s_y, uint8_t pixel_margin) {
text_pixel_margin = ((pixel_margin < s_x) && (pixel_margin < s_y)) ? pixel_margin : 0;
textsize_x = (s_x > 0) ? s_x : 1;
textsize_y = (s_y > 0) ? s_y : 1;
}
void setTextColor(uint16_t c) { textcolor = textbgcolor = c; }
void setTextColor(uint16_t c, uint16_t bg) {
textcolor = c;
textbgcolor = bg;
}
// TODO: fix text wrapping on single character prints
// void setTextWrap(bool w) { wrap = w; }
// cursor functions
/**
* @brief Set the text cursor position.
*
* The cursor define le left-bottom position of the caracter.
*
* @param x x-axis of the cursor.
* @param y y-axis of the cursor.
*/
void setTextCursor(int16_t x, int16_t y) {
cursor_x = x;
cursor_y = y;
}
int16_t getTextCursorX() const { return cursor_x; }
int16_t getTextCursorY() const { return cursor_y; };
void cp437(bool x = true) { _cp437 = x; }
/*!
@brief Get Nth coordinate by font size (get coord of font X axis)
@param numChars Nth width
*/
uint16_t getTextOfsetColumns(const float numChars) const { // works with default font only
return numChars * getCharWidth(' ') * textsize_x;
}
/*!
@brief Get Nth coordinate by font size (get coord of font Y axis)
@param numRows Nth height
*/
uint16_t getTextOfsetRows(const float numRows) const { // works with default font only
return numRows * getCharHeight(' ') * textsize_y;
}
void resetText() {
setTextSize(1);
clearFont();
setTextLeftAligned();
setTextBottomAligned();
}
protected:
int16_t _max_x;
int16_t _max_y;
/**
* Distance to the left of the screen (in pixels) of the cursor.
**/
int16_t cursor_x;
/**
* Distance to the top of the screen (in pixels) of the cursor.
**/
int16_t cursor_y;
uint16_t textcolor;
uint16_t textbgcolor;
uint8_t textsize_x;
uint8_t textsize_y;
uint8_t text_pixel_margin;
uint8_t _rotation;
enum _text_alignment { RIGHT = 0, LEFT, CENTER };
_text_alignment text_x_alignment;
_text_alignment text_y_alignment;
// TODO: fix text wrapping on single character prints
// bool wrap;
bool _cp437;
public:
GFXfont *gfxFont;
};
#endif
| 17,995
|
C++
|
.h
| 488
| 30.956967
| 120
| 0.583591
|
Open-Smartwatch/lib-open-smartwatch
| 39
| 14
| 0
|
GPL-3.0
|
9/20/2024, 10:45:34 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,929
|
Fakepgmspace.h
|
Open-Smartwatch_lib-open-smartwatch/Fakepgmspace.h
|
#ifdef OSW_EMULATOR
// this is copy and paste form the ESP IDF
#define pgm_read_byte(addr) (*(const unsigned char *)(addr))
#define pgm_read_word(addr) ({ \
typeof(addr) _addr = (addr); \
*(const unsigned short *)(_addr); \
})
#endif
| 243
|
C++
|
.h
| 8
| 28.5
| 62
| 0.668103
|
Open-Smartwatch/lib-open-smartwatch
| 39
| 14
| 0
|
GPL-3.0
|
9/20/2024, 10:45:34 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,930
|
time_util.h
|
Open-Smartwatch_lib-open-smartwatch/time_util.h
|
#ifndef TIME_UTIL_H
#define TIME_UTIL_H
#ifdef OSW_EMULATOR
#include "FakeArduino.h"
#else
#include <Arduino.h>
#endif
long seconds(long seconds);
long minutes(long seconds);
long hours24(long seconds);
#endif
| 212
|
C++
|
.h
| 11
| 18.090909
| 27
| 0.80402
|
Open-Smartwatch/lib-open-smartwatch
| 39
| 14
| 0
|
GPL-3.0
|
9/20/2024, 10:45:34 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
1,542,932
|
FreeSans11pt8b.h
|
Open-Smartwatch_lib-open-smartwatch/fonts/FreeSans11pt8b.h
|
const uint8_t FreeSans11pt8bBitmaps[] PROGMEM = {
0xFF, 0xFF, 0xFF, 0x0F, 0xDE, 0xF7, 0xB9, 0x00, 0x0C, 0x60, 0xC4, 0x0C,
0x47, 0xFF, 0x7F, 0xF0, 0x8C, 0x18, 0x81, 0x88, 0x19, 0x8F, 0xFE, 0xFF,
0xE3, 0x10, 0x31, 0x03, 0x30, 0x23, 0x00, 0x08, 0x07, 0xE1, 0xFF, 0x74,
0xEC, 0x87, 0x90, 0xF2, 0x07, 0x40, 0x7E, 0x03, 0xF0, 0x27, 0x04, 0x3C,
0x87, 0x90, 0xFA, 0x73, 0xFE, 0x3F, 0x01, 0x00, 0x00, 0x08, 0x0F, 0x02,
0x07, 0xE1, 0x03, 0x9C, 0x40, 0xC3, 0x20, 0x39, 0xC8, 0x07, 0xE4, 0x00,
0xF1, 0x00, 0x00, 0x8F, 0x00, 0x27, 0xE0, 0x13, 0x9C, 0x04, 0xC3, 0x02,
0x30, 0xC0, 0x8E, 0x70, 0x41, 0xF8, 0x10, 0x3C, 0x0F, 0x00, 0xFC, 0x0E,
0x70, 0x61, 0x83, 0x0C, 0x0C, 0xC0, 0x7C, 0x03, 0xC0, 0x37, 0x33, 0x1D,
0xB0, 0x7D, 0x81, 0xCC, 0x06, 0x70, 0xF9, 0xFE, 0xC7, 0xC3, 0xFF, 0x80,
0x18, 0x8C, 0x46, 0x31, 0x18, 0xC6, 0x31, 0x8C, 0x61, 0x0C, 0x61, 0x0C,
0x20, 0x80, 0xC2, 0x18, 0x43, 0x18, 0x43, 0x18, 0xC6, 0x31, 0x8C, 0x46,
0x31, 0x18, 0x88, 0x00, 0x10, 0x23, 0xF8, 0x82, 0x8D, 0x80, 0x0C, 0x03,
0x00, 0xC0, 0x30, 0xFF, 0xFF, 0xF0, 0xC0, 0x30, 0x0C, 0x03, 0x00, 0xF5,
0x80, 0xFF, 0xC0, 0xF0, 0x04, 0x30, 0x82, 0x18, 0x41, 0x04, 0x20, 0x82,
0x18, 0x41, 0x0C, 0x20, 0x1E, 0x0F, 0xC7, 0x39, 0x86, 0xC0, 0xF0, 0x3C,
0x0F, 0x03, 0xC0, 0xF0, 0x3C, 0x0F, 0x03, 0x61, 0x98, 0xE3, 0xF0, 0x78,
0x08, 0xCF, 0xFF, 0x8C, 0x63, 0x18, 0xC6, 0x31, 0x8C, 0x63, 0x3E, 0x1F,
0xE6, 0x1F, 0x03, 0xC0, 0xC0, 0x30, 0x0C, 0x06, 0x07, 0x07, 0x83, 0x81,
0x80, 0x40, 0x30, 0x0F, 0xFF, 0xFF, 0x3F, 0x1F, 0xEE, 0x1F, 0x03, 0xC0,
0xC0, 0x70, 0xF8, 0x3E, 0x01, 0xC0, 0x30, 0x0F, 0x03, 0xC0, 0xD8, 0x67,
0xF8, 0xF8, 0x03, 0x00, 0xC0, 0x70, 0x3C, 0x1B, 0x04, 0xC3, 0x31, 0x8C,
0x43, 0x20, 0xCF, 0xFF, 0xFF, 0x03, 0x00, 0xC0, 0x30, 0x0C, 0x7F, 0x9F,
0xE6, 0x01, 0x80, 0x60, 0x1B, 0x8D, 0xFB, 0x86, 0x00, 0xC0, 0x30, 0x0C,
0x03, 0xC0, 0xF8, 0x67, 0xF8, 0xF8, 0x1E, 0x0F, 0xE7, 0x19, 0x83, 0xC0,
0x30, 0x0D, 0xF3, 0xFE, 0xE1, 0xB0, 0x3C, 0x0F, 0x03, 0xC0, 0xD8, 0x67,
0xF8, 0x78, 0xFF, 0xFF, 0xF0, 0x08, 0x06, 0x01, 0x00, 0xC0, 0x60, 0x18,
0x0C, 0x03, 0x00, 0x80, 0x60, 0x18, 0x04, 0x03, 0x00, 0xC0, 0x1E, 0x0F,
0xC7, 0x39, 0x86, 0x61, 0x9C, 0xE3, 0xF0, 0xFC, 0x61, 0xB0, 0x3C, 0x0F,
0x03, 0xC0, 0xD8, 0x63, 0xF0, 0x78, 0x1E, 0x1F, 0xE6, 0x1B, 0x03, 0xC0,
0xF0, 0x3C, 0x0D, 0x87, 0x7F, 0xCF, 0xB0, 0x0C, 0x03, 0xC1, 0x98, 0xE7,
0xF0, 0x78, 0xF0, 0x00, 0x0F, 0xF0, 0x00, 0x3D, 0x60, 0x00, 0x20, 0x1C,
0x0F, 0x0F, 0x07, 0x81, 0x80, 0x3C, 0x01, 0xF0, 0x07, 0x80, 0x3C, 0x00,
0x80, 0xFF, 0xFF, 0xFC, 0x00, 0x00, 0x0F, 0xFF, 0xFF, 0xC0, 0x00, 0x1C,
0x01, 0xE0, 0x0F, 0x00, 0x3C, 0x01, 0xC0, 0x78, 0x78, 0x3C, 0x1E, 0x02,
0x00, 0x00, 0x3E, 0x3F, 0xB8, 0xF8, 0x3C, 0x18, 0x0C, 0x0C, 0x0E, 0x0C,
0x0E, 0x06, 0x03, 0x00, 0x00, 0x00, 0x60, 0x30, 0x01, 0xFC, 0x00, 0x7F,
0xF0, 0x0E, 0x07, 0x81, 0xC0, 0x1C, 0x30, 0x70, 0xE6, 0x1F, 0xE7, 0x63,
0x8E, 0x3C, 0x30, 0xE3, 0xC6, 0x0C, 0x3C, 0x60, 0xC3, 0xC6, 0x0C, 0x7C,
0x61, 0x86, 0xE7, 0x18, 0xE6, 0x3E, 0xFC, 0x71, 0xCF, 0x83, 0x80, 0x00,
0x1E, 0x00, 0x00, 0xFF, 0xE0, 0x01, 0xF8, 0x00, 0x03, 0x80, 0x0E, 0x00,
0x7C, 0x01, 0xB0, 0x0C, 0xC0, 0x31, 0x80, 0xC6, 0x06, 0x18, 0x18, 0x30,
0x7F, 0xC3, 0xFF, 0x0C, 0x06, 0x30, 0x19, 0x80, 0x66, 0x00, 0xD8, 0x03,
0xFF, 0x8F, 0xFC, 0xC0, 0xEC, 0x06, 0xC0, 0x6C, 0x06, 0xC0, 0xCF, 0xF8,
0xFF, 0xCC, 0x06, 0xC0, 0x3C, 0x03, 0xC0, 0x3C, 0x07, 0xFF, 0xEF, 0xFC,
0x07, 0xE0, 0x7F, 0xC3, 0x83, 0x9C, 0x07, 0x60, 0x0F, 0x00, 0x0C, 0x00,
0x30, 0x00, 0xC0, 0x03, 0x00, 0x0C, 0x00, 0xD8, 0x03, 0x70, 0x18, 0xE0,
0xE1, 0xFF, 0x01, 0xF0, 0xFF, 0x0F, 0xFC, 0xC0, 0xEC, 0x06, 0xC0, 0x7C,
0x03, 0xC0, 0x3C, 0x03, 0xC0, 0x3C, 0x03, 0xC0, 0x3C, 0x07, 0xC0, 0x6C,
0x0E, 0xFF, 0xCF, 0xF0, 0xFF, 0xFF, 0xFF, 0x00, 0x60, 0x0C, 0x01, 0x80,
0x30, 0x07, 0xFE, 0xFF, 0xD8, 0x03, 0x00, 0x60, 0x0C, 0x01, 0x80, 0x3F,
0xFF, 0xFF, 0xFF, 0xFF, 0xFC, 0x03, 0x00, 0xC0, 0x30, 0x0C, 0x03, 0xFE,
0xFF, 0xB0, 0x0C, 0x03, 0x00, 0xC0, 0x30, 0x0C, 0x03, 0x00, 0x07, 0xE0,
0x3F, 0xF0, 0xE0, 0x73, 0x80, 0x76, 0x00, 0x78, 0x00, 0x30, 0x00, 0x60,
0x3F, 0xC0, 0x7F, 0x80, 0x0F, 0x80, 0x1B, 0x00, 0x37, 0x00, 0xE7, 0x07,
0xC7, 0xFD, 0x83, 0xE1, 0xC0, 0x3C, 0x03, 0xC0, 0x3C, 0x03, 0xC0, 0x3C,
0x03, 0xC0, 0x3F, 0xFF, 0xFF, 0xFC, 0x03, 0xC0, 0x3C, 0x03, 0xC0, 0x3C,
0x03, 0xC0, 0x3C, 0x03, 0xFF, 0xFF, 0xFF, 0xFF, 0x01, 0x80, 0xC0, 0x60,
0x30, 0x18, 0x0C, 0x06, 0x03, 0x01, 0x80, 0xC0, 0x78, 0x3C, 0x1F, 0x1D,
0xFC, 0x7C, 0xC0, 0x76, 0x03, 0x30, 0x31, 0x83, 0x0C, 0x30, 0x63, 0x03,
0x30, 0x1B, 0xC0, 0xF6, 0x07, 0x18, 0x30, 0xE1, 0x83, 0x8C, 0x0C, 0x60,
0x33, 0x01, 0xD8, 0x06, 0xC0, 0x60, 0x30, 0x18, 0x0C, 0x06, 0x03, 0x01,
0x80, 0xC0, 0x60, 0x30, 0x18, 0x0C, 0x06, 0x03, 0xFF, 0xFF, 0xE0, 0x0F,
0xC0, 0x1F, 0xC0, 0x7F, 0x80, 0xFD, 0x01, 0x7B, 0x06, 0xF6, 0x0D, 0xE4,
0x13, 0xCC, 0x67, 0x98, 0xCF, 0x11, 0x1E, 0x36, 0x3C, 0x6C, 0x78, 0x50,
0xF0, 0xE1, 0xE1, 0xC3, 0xE0, 0x3E, 0x03, 0xF0, 0x3F, 0x03, 0xD8, 0x3D,
0xC3, 0xCC, 0x3C, 0x63, 0xC6, 0x3C, 0x33, 0xC3, 0x3C, 0x1B, 0xC0, 0xFC,
0x0F, 0xC0, 0x7C, 0x07, 0x07, 0xC0, 0x3F, 0xE0, 0xE0, 0xE3, 0x80, 0xE6,
0x00, 0xD8, 0x00, 0xF0, 0x01, 0xE0, 0x03, 0xC0, 0x07, 0x80, 0x0F, 0x00,
0x1B, 0x00, 0x67, 0x01, 0xC7, 0x07, 0x07, 0xFC, 0x03, 0xE0, 0xFF, 0x9F,
0xFB, 0x03, 0xE0, 0x3C, 0x07, 0x80, 0xF0, 0x3F, 0xFE, 0xFF, 0x98, 0x03,
0x00, 0x60, 0x0C, 0x01, 0x80, 0x30, 0x06, 0x00, 0x07, 0xC0, 0x3F, 0xE0,
0xE0, 0xE3, 0x80, 0xE6, 0x00, 0xD8, 0x00, 0xF0, 0x01, 0xE0, 0x03, 0xC0,
0x07, 0x80, 0x0F, 0x00, 0x1B, 0x02, 0x67, 0x07, 0xC7, 0x07, 0x07, 0xFF,
0x03, 0xE6, 0x00, 0x04, 0xFF, 0xC7, 0xFF, 0x30, 0x1D, 0x80, 0x6C, 0x03,
0x60, 0x1B, 0x01, 0x9F, 0xF8, 0xFF, 0xE6, 0x03, 0xB0, 0x0D, 0x80, 0x6C,
0x03, 0x60, 0x1B, 0x00, 0xD8, 0x07, 0x1F, 0x87, 0xFE, 0x60, 0x7C, 0x03,
0xC0, 0x0C, 0x00, 0xF0, 0x07, 0xF0, 0x0F, 0xE0, 0x0F, 0x00, 0x3C, 0x03,
0xC0, 0x37, 0x06, 0x7F, 0xE1, 0xF8, 0xFF, 0xFF, 0xFF, 0x06, 0x00, 0x60,
0x06, 0x00, 0x60, 0x06, 0x00, 0x60, 0x06, 0x00, 0x60, 0x06, 0x00, 0x60,
0x06, 0x00, 0x60, 0x06, 0x00, 0x60, 0xC0, 0x3C, 0x03, 0xC0, 0x3C, 0x03,
0xC0, 0x3C, 0x03, 0xC0, 0x3C, 0x03, 0xC0, 0x3C, 0x03, 0xC0, 0x3C, 0x03,
0xC0, 0x37, 0x0E, 0x7F, 0xC1, 0xF8, 0x60, 0x0D, 0x80, 0x66, 0x01, 0x8C,
0x06, 0x30, 0x30, 0xC0, 0xC1, 0x83, 0x06, 0x18, 0x18, 0x60, 0x31, 0x80,
0xCC, 0x03, 0xB0, 0x06, 0xC0, 0x1E, 0x00, 0x38, 0x00, 0xC0, 0xE0, 0x70,
0x36, 0x07, 0x03, 0x60, 0x70, 0x76, 0x0F, 0x06, 0x30, 0xD8, 0x63, 0x0D,
0x86, 0x31, 0xD8, 0x63, 0x18, 0x8C, 0x19, 0x8C, 0xC1, 0x98, 0xCC, 0x1B,
0x0C, 0xC1, 0xB0, 0x78, 0x0F, 0x07, 0x80, 0xF0, 0x78, 0x0E, 0x03, 0x80,
0xE0, 0x30, 0x60, 0x1C, 0xC0, 0xE3, 0x83, 0x06, 0x18, 0x0C, 0xE0, 0x3B,
0x00, 0x78, 0x00, 0xE0, 0x03, 0x80, 0x1F, 0x00, 0xCC, 0x07, 0x18, 0x18,
0x70, 0xC0, 0xC7, 0x01, 0x98, 0x07, 0xE0, 0x1D, 0x80, 0x67, 0x03, 0x0C,
0x0C, 0x18, 0x60, 0x73, 0x80, 0xCC, 0x01, 0xE0, 0x07, 0x80, 0x0C, 0x00,
0x30, 0x00, 0xC0, 0x03, 0x00, 0x0C, 0x00, 0x30, 0x00, 0xC0, 0xFF, 0xFF,
0xFF, 0x00, 0x60, 0x0E, 0x01, 0xC0, 0x38, 0x03, 0x00, 0x60, 0x0E, 0x01,
0xC0, 0x38, 0x03, 0x00, 0x60, 0x0E, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0xCC,
0xCC, 0xCC, 0xCC, 0xCC, 0xCC, 0xCC, 0xCC, 0xCF, 0xF0, 0x83, 0x04, 0x10,
0x60, 0x82, 0x08, 0x10, 0x41, 0x06, 0x08, 0x20, 0xC1, 0xFF, 0x33, 0x33,
0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x3F, 0xF0, 0x18, 0x1C, 0x3C, 0x24,
0x26, 0x62, 0x43, 0xC3, 0xFF, 0xF8, 0xC6, 0x30, 0x3E, 0x3F, 0xEC, 0x38,
0x06, 0x01, 0x83, 0xE7, 0xFB, 0x86, 0xC1, 0xB0, 0xE7, 0xFD, 0xE3, 0xC0,
0x18, 0x03, 0x00, 0x60, 0x0C, 0xF1, 0xFF, 0xBC, 0x77, 0x07, 0xC0, 0x78,
0x0F, 0x01, 0xE0, 0x3E, 0x0F, 0xE3, 0xB7, 0xE6, 0x78, 0x1F, 0x0F, 0xE6,
0x1F, 0x83, 0xC0, 0x30, 0x0C, 0x03, 0x00, 0xE0, 0xD8, 0x77, 0xF8, 0x7C,
0x00, 0xC0, 0x30, 0x0C, 0x03, 0x1E, 0xDF, 0xF6, 0x1F, 0x87, 0xC0, 0xF0,
0x3C, 0x0F, 0x03, 0xE1, 0xD8, 0x77, 0xFC, 0x7B, 0x1E, 0x0F, 0xE6, 0x1B,
0x03, 0xC0, 0xFF, 0xFF, 0xFF, 0x00, 0xC0, 0xD8, 0x67, 0xF8, 0x78, 0x37,
0x66, 0xFF, 0x66, 0x66, 0x66, 0x66, 0x66, 0x1E, 0xDF, 0xF6, 0x1F, 0x87,
0xC0, 0xF0, 0x3C, 0x0F, 0x03, 0xE1, 0xD8, 0x77, 0xEC, 0x73, 0x00, 0xC0,
0x7C, 0x19, 0xFE, 0x3E, 0x00, 0xC0, 0x30, 0x0C, 0x03, 0x00, 0xCF, 0x37,
0xFF, 0x1F, 0x83, 0xC0, 0xF0, 0x3C, 0x0F, 0x03, 0xC0, 0xF0, 0x3C, 0x0F,
0x03, 0xF0, 0xFF, 0xFF, 0xFF, 0x33, 0x00, 0x33, 0x33, 0x33, 0x33, 0x33,
0x33, 0x33, 0x3F, 0xE0, 0xC0, 0x30, 0x0C, 0x03, 0x00, 0xC3, 0xB1, 0xCC,
0xE3, 0x30, 0xD8, 0x3F, 0x0E, 0xE3, 0x18, 0xC3, 0x30, 0xCC, 0x1B, 0x07,
0xFF, 0xFF, 0xFF, 0xFF, 0xCE, 0x3E, 0xDF, 0x7F, 0xE3, 0xC7, 0xC1, 0x83,
0xC1, 0x83, 0xC1, 0x83, 0xC1, 0x83, 0xC1, 0x83, 0xC1, 0x83, 0xC1, 0x83,
0xC1, 0x83, 0xC1, 0x83, 0xCF, 0x37, 0xFF, 0x1F, 0x83, 0xC0, 0xF0, 0x3C,
0x0F, 0x03, 0xC0, 0xF0, 0x3C, 0x0F, 0x03, 0x1E, 0x1F, 0xE6, 0x1B, 0x87,
0xC0, 0xF0, 0x3C, 0x0F, 0x03, 0xE1, 0xD8, 0x67, 0xF8, 0x78, 0xCF, 0x1B,
0xF3, 0xC7, 0x70, 0x7C, 0x07, 0x80, 0xF0, 0x1E, 0x03, 0xE0, 0xFE, 0x3B,
0xFE, 0x67, 0x8C, 0x01, 0x80, 0x30, 0x06, 0x00, 0x1E, 0xDF, 0xF6, 0x1F,
0x87, 0xC0, 0xF0, 0x3C, 0x0F, 0x03, 0xE1, 0xD8, 0x77, 0xFC, 0x7B, 0x00,
0xC0, 0x30, 0x0C, 0x03, 0xDF, 0x7E, 0x30, 0xC3, 0x0C, 0x30, 0xC3, 0x0C,
0x30, 0x3E, 0x3F, 0xF8, 0x78, 0x0E, 0x03, 0xE0, 0xFC, 0x07, 0x01, 0xE0,
0xFF, 0xC7, 0xC0, 0x66, 0xFF, 0x66, 0x66, 0x66, 0x66, 0x77, 0xC0, 0xF0,
0x3C, 0x0F, 0x03, 0xC0, 0xF0, 0x3C, 0x0F, 0x03, 0xC1, 0xF8, 0xFF, 0xEC,
0xF3, 0xC0, 0xEC, 0x19, 0x83, 0x30, 0xC3, 0x18, 0x63, 0x0C, 0xC0, 0xD8,
0x1B, 0x03, 0xC0, 0x38, 0x06, 0x00, 0xC1, 0x83, 0x63, 0x86, 0x63, 0xC6,
0x63, 0xC6, 0x62, 0xC4, 0x36, 0x4C, 0x36, 0x6C, 0x36, 0x6C, 0x34, 0x68,
0x1C, 0x38, 0x1C, 0x38, 0x1C, 0x30, 0x60, 0xD8, 0x63, 0x30, 0x6C, 0x1E,
0x03, 0x00, 0xE0, 0x78, 0x1B, 0x0C, 0x66, 0x19, 0x83, 0xC0, 0xD8, 0x36,
0x0D, 0x86, 0x31, 0x8C, 0x43, 0x30, 0x6C, 0x1A, 0x07, 0x80, 0xE0, 0x30,
0x0C, 0x03, 0x01, 0x81, 0xE0, 0x70, 0x00, 0xFF, 0xFF, 0xC0, 0xC0, 0xC0,
0xE0, 0x60, 0x60, 0x60, 0x60, 0x60, 0x3F, 0xFF, 0xF0, 0x19, 0xCC, 0x63,
0x18, 0xC6, 0x33, 0xB0, 0xC3, 0x18, 0xC6, 0x31, 0x8C, 0x71, 0x80, 0xFF,
0xFF, 0xFF, 0xFF, 0xFF, 0xC0, 0xC7, 0x18, 0xC6, 0x31, 0x8C, 0x61, 0x86,
0x66, 0x31, 0x8C, 0x63, 0x19, 0xCC, 0x00, 0x60, 0x7C, 0x63, 0xE0, 0x60,
0xFF, 0xFF, 0xFF, 0xFF, 0xC7, 0xE3, 0xCF, 0xF3, 0xDC, 0x3B, 0xD8, 0x1B,
0xD8, 0x1B, 0xC0, 0x1B, 0xC0, 0x3B, 0xC0, 0x33, 0xC0, 0xE3, 0xC0, 0xC3,
0xC1, 0x83, 0xC1, 0x83, 0xC1, 0x83, 0xC0, 0x03, 0xC0, 0x03, 0xC1, 0x83,
0xC1, 0x83, 0xFF, 0xFF, 0xFF, 0xFF, 0xF0, 0xFF, 0xFF, 0xFF, 0x04, 0x07,
0xC3, 0xF9, 0xD7, 0xE4, 0xF1, 0x0C, 0x43, 0x10, 0xC4, 0x39, 0x37, 0x5C,
0xFE, 0x1F, 0x01, 0x00, 0x0F, 0x83, 0xF8, 0xC3, 0xB0, 0x36, 0x06, 0xC0,
0x1C, 0x01, 0xC0, 0xFF, 0x1F, 0xE0, 0x30, 0x06, 0x01, 0x80, 0x7C, 0x5F,
0xFB, 0x0F, 0x03, 0xE0, 0x7F, 0xC7, 0x86, 0x30, 0x03, 0x00, 0x3F, 0xF3,
0xFF, 0x86, 0x00, 0x30, 0x03, 0xFE, 0x3F, 0xF0, 0x60, 0x01, 0x80, 0x0F,
0x00, 0x3F, 0xC0, 0x7C, 0xC0, 0xD0, 0x26, 0x18, 0x84, 0x33, 0x04, 0x81,
0xE0, 0x30, 0x7F, 0x83, 0x00, 0xC1, 0xFE, 0x0C, 0x03, 0x00, 0xC0, 0x30,
0x19, 0x80, 0xF0, 0x06, 0x00, 0x00, 0x1F, 0x87, 0xFE, 0x60, 0x7C, 0x03,
0xC0, 0x0C, 0x00, 0xF0, 0x07, 0xF0, 0x0F, 0xE0, 0x0F, 0x00, 0x3C, 0x03,
0xC0, 0x37, 0x06, 0x7F, 0xE1, 0xF8, 0x0E, 0x07, 0xC3, 0x18, 0xC6, 0x38,
0x0F, 0x06, 0xE3, 0x0C, 0xC1, 0xB0, 0x3E, 0x0D, 0xE3, 0x3C, 0xC3, 0xE0,
0x70, 0x0E, 0x61, 0x98, 0x67, 0x38, 0xFC, 0x1E, 0x00, 0x46, 0x16, 0x0E,
0x00, 0x03, 0xE3, 0xFF, 0x87, 0x80, 0xE0, 0x3E, 0x0F, 0xC0, 0x70, 0x1E,
0x0F, 0xFC, 0x7C, 0x07, 0xE0, 0x1F, 0xF8, 0x3C, 0x3C, 0x73, 0xCE, 0x67,
0xE6, 0xEC, 0x37, 0xCC, 0x03, 0xC8, 0x03, 0xC8, 0x03, 0xCC, 0x03, 0xEC,
0x37, 0x67, 0xE6, 0x73, 0xCE, 0x3C, 0x3C, 0x1F, 0xF8, 0x07, 0xE0, 0x72,
0x20, 0x9E, 0x8A, 0x2F, 0xC0, 0xFC, 0x22, 0xCF, 0x34, 0x4C, 0xCC, 0xC8,
0x80, 0xFF, 0xFF, 0xFC, 0x01, 0x80, 0x30, 0x06, 0x00, 0xC0, 0xFF, 0xC0,
0x07, 0xE0, 0x1F, 0xF8, 0x3C, 0x3C, 0x7F, 0xCE, 0x6F, 0xE6, 0xE8, 0x27,
0xC8, 0x23, 0xCF, 0xE3, 0xCF, 0xE3, 0xC8, 0x63, 0xE8, 0x27, 0x68, 0x26,
0x78, 0x2E, 0x3C, 0x3C, 0x1F, 0xF8, 0x07, 0xE0, 0xFF, 0xF0, 0x38, 0xFB,
0x1C, 0x18, 0x38, 0xDF, 0x1C, 0x06, 0x00, 0xC0, 0x18, 0x03, 0x07, 0xFE,
0xFF, 0xC1, 0x80, 0x30, 0x06, 0x00, 0xC0, 0x00, 0x00, 0x0F, 0xFF, 0xFF,
0xC0, 0x7D, 0x8F, 0x18, 0x31, 0x84, 0x10, 0x7F, 0xFE, 0x7D, 0x8F, 0x18,
0x31, 0x80, 0xC1, 0xE3, 0xC6, 0xF8, 0x19, 0x80, 0xF0, 0x06, 0x00, 0x00,
0xFF, 0xFF, 0xFF, 0x00, 0x60, 0x0E, 0x01, 0xC0, 0x38, 0x03, 0x00, 0x60,
0x0E, 0x01, 0xC0, 0x38, 0x03, 0x00, 0x60, 0x0E, 0x00, 0xFF, 0xFF, 0xFF,
0xC0, 0xD8, 0x1B, 0x03, 0x60, 0x6C, 0x0D, 0x81, 0xB0, 0x36, 0x06, 0xC1,
0xDC, 0x7B, 0xFF, 0xFE, 0x3C, 0x01, 0x80, 0x30, 0x00, 0x1F, 0xDF, 0xF7,
0xDB, 0xF6, 0xFD, 0xBF, 0x6F, 0xD9, 0xF6, 0x7D, 0x8F, 0x60, 0xD8, 0x36,
0x0D, 0x83, 0x60, 0xD8, 0x36, 0x0D, 0x83, 0x60, 0xD8, 0xF0, 0x66, 0x16,
0x0E, 0x00, 0x0F, 0xFF, 0xFC, 0x0C, 0x0C, 0x0E, 0x06, 0x06, 0x06, 0x06,
0x06, 0x03, 0xFF, 0xFF, 0x3D, 0xB6, 0xDB, 0x60, 0x7B, 0x38, 0x61, 0x87,
0x37, 0x80, 0xFC, 0x89, 0x99, 0x99, 0x16, 0x79, 0xA2, 0x00, 0x0F, 0x3F,
0xE7, 0xFF, 0xFD, 0xC3, 0xC0, 0x30, 0x38, 0x06, 0x03, 0x01, 0x80, 0x60,
0x30, 0x0C, 0x06, 0x01, 0xFF, 0xC0, 0x3F, 0xF8, 0x06, 0x03, 0x00, 0xC0,
0x70, 0x18, 0x06, 0x03, 0x00, 0xE1, 0xE0, 0x0F, 0xFF, 0xF8, 0x79, 0xFF,
0x1E, 0x1F, 0x0F, 0xE7, 0xF1, 0x87, 0xC3, 0x70, 0xF0, 0x3C, 0x0C, 0x07,
0x81, 0xFF, 0xF0, 0x3F, 0xFE, 0x06, 0x00, 0xC0, 0xC0, 0x6C, 0x3C, 0x19,
0xFC, 0xFF, 0x0F, 0x0F, 0x80, 0x0C, 0xC0, 0x33, 0x00, 0x00, 0x38, 0x07,
0x60, 0x19, 0xC0, 0xC3, 0x03, 0x06, 0x18, 0x1C, 0xE0, 0x33, 0x00, 0x78,
0x01, 0xE0, 0x03, 0x00, 0x0C, 0x00, 0x30, 0x00, 0xC0, 0x03, 0x00, 0x0C,
0x00, 0x30, 0x00, 0x0C, 0x06, 0x00, 0x00, 0x00, 0xC0, 0x60, 0x70, 0x30,
0x70, 0x30, 0x30, 0x18, 0x3C, 0x1F, 0x1D, 0xFC, 0x7C, 0x06, 0x00, 0x0C,
0x00, 0x18, 0x00, 0x00, 0x03, 0x80, 0x0E, 0x00, 0x7C, 0x01, 0xB0, 0x0C,
0xC0, 0x31, 0x80, 0xC6, 0x06, 0x18, 0x18, 0x30, 0x7F, 0xC3, 0xFF, 0x0C,
0x06, 0x30, 0x19, 0x80, 0x66, 0x00, 0xD8, 0x03, 0x00, 0xC0, 0x06, 0x00,
0x30, 0x00, 0x00, 0x03, 0x80, 0x0E, 0x00, 0x7C, 0x01, 0xB0, 0x0C, 0xC0,
0x31, 0x80, 0xC6, 0x06, 0x18, 0x18, 0x30, 0x7F, 0xC3, 0xFF, 0x0C, 0x06,
0x30, 0x19, 0x80, 0x66, 0x00, 0xD8, 0x03, 0x03, 0x00, 0x1E, 0x00, 0xCC,
0x00, 0x00, 0x03, 0x80, 0x0E, 0x00, 0x7C, 0x01, 0xB0, 0x0C, 0xC0, 0x31,
0x80, 0xC6, 0x06, 0x18, 0x18, 0x30, 0x7F, 0xC3, 0xFF, 0x0C, 0x06, 0x30,
0x19, 0x80, 0x66, 0x00, 0xD8, 0x03, 0x06, 0x60, 0x3F, 0x80, 0x9C, 0x00,
0x00, 0x03, 0x80, 0x0E, 0x00, 0x7C, 0x01, 0xB0, 0x0C, 0xC0, 0x31, 0x80,
0xC6, 0x06, 0x18, 0x18, 0x30, 0x7F, 0xC3, 0xFF, 0x0C, 0x06, 0x30, 0x19,
0x80, 0x66, 0x00, 0xD8, 0x03, 0x06, 0x60, 0x19, 0x80, 0x00, 0x00, 0xE0,
0x03, 0x80, 0x1F, 0x00, 0x6C, 0x03, 0x30, 0x0C, 0x60, 0x31, 0x81, 0x86,
0x06, 0x0C, 0x1F, 0xF0, 0xFF, 0xC3, 0x01, 0x8C, 0x06, 0x60, 0x19, 0x80,
0x36, 0x00, 0xC0, 0x03, 0xC0, 0x1F, 0x00, 0x66, 0x01, 0xB8, 0x07, 0xC0,
0x06, 0x00, 0x38, 0x00, 0xE0, 0x07, 0xC0, 0x1B, 0x00, 0xCC, 0x03, 0x18,
0x0C, 0x60, 0x61, 0x81, 0x83, 0x07, 0xFC, 0x3F, 0xF0, 0xC0, 0x63, 0x01,
0x98, 0x06, 0x60, 0x0D, 0x80, 0x30, 0x03, 0xFF, 0xF0, 0x3F, 0xFF, 0x07,
0x30, 0x00, 0x63, 0x00, 0x06, 0x30, 0x00, 0xC3, 0x00, 0x0C, 0x30, 0x01,
0x83, 0xFE, 0x18, 0x3F, 0xE1, 0xFF, 0x00, 0x3F, 0xF0, 0x03, 0x03, 0x00,
0x70, 0x30, 0x06, 0x03, 0x00, 0x60, 0x3F, 0xFC, 0x03, 0xFF, 0x07, 0xE0,
0x7F, 0xC3, 0x83, 0x9C, 0x07, 0x60, 0x0F, 0x00, 0x0C, 0x00, 0x30, 0x00,
0xC0, 0x03, 0x00, 0x0C, 0x00, 0xD8, 0x03, 0x70, 0x18, 0xE0, 0xE1, 0xFF,
0x03, 0xF0, 0x02, 0x00, 0x0F, 0x00, 0x0C, 0x02, 0x30, 0x07, 0x80, 0x18,
0x01, 0x80, 0x18, 0x00, 0x0F, 0xFF, 0xFF, 0xF0, 0x06, 0x00, 0xC0, 0x18,
0x03, 0x00, 0x7F, 0xEF, 0xFD, 0x80, 0x30, 0x06, 0x00, 0xC0, 0x18, 0x03,
0xFF, 0xFF, 0xF0, 0x06, 0x01, 0x80, 0x60, 0x00, 0x0F, 0xFF, 0xFF, 0xF0,
0x06, 0x00, 0xC0, 0x18, 0x03, 0x00, 0x7F, 0xEF, 0xFD, 0x80, 0x30, 0x06,
0x00, 0xC0, 0x18, 0x03, 0xFF, 0xFF, 0xF0, 0x0C, 0x03, 0xC0, 0xCC, 0x00,
0x0F, 0xFF, 0xFF, 0xF0, 0x06, 0x00, 0xC0, 0x18, 0x03, 0x00, 0x7F, 0xEF,
0xFD, 0x80, 0x30, 0x06, 0x00, 0xC0, 0x18, 0x03, 0xFF, 0xFF, 0xF0, 0x19,
0x83, 0x30, 0x00, 0x7F, 0xFF, 0xFF, 0x80, 0x30, 0x06, 0x00, 0xC0, 0x18,
0x03, 0xFF, 0x7F, 0xEC, 0x01, 0x80, 0x30, 0x06, 0x00, 0xC0, 0x1F, 0xFF,
0xFF, 0x80, 0x61, 0x86, 0x03, 0x18, 0xC6, 0x31, 0x8C, 0x63, 0x18, 0xC6,
0x31, 0x8C, 0x60, 0x33, 0x30, 0x06, 0x31, 0x8C, 0x63, 0x18, 0xC6, 0x31,
0x8C, 0x63, 0x18, 0xC0, 0x31, 0xEC, 0xC0, 0x30, 0xC3, 0x0C, 0x30, 0xC3,
0x0C, 0x30, 0xC3, 0x0C, 0x30, 0xC3, 0x0C, 0xCF, 0x30, 0x18, 0x61, 0x86,
0x18, 0x61, 0x86, 0x18, 0x61, 0x86, 0x18, 0x61, 0x86, 0x00, 0x7F, 0xC1,
0xFF, 0xC6, 0x07, 0x18, 0x06, 0x60, 0x19, 0x80, 0x36, 0x00, 0xFF, 0x03,
0xFC, 0x0D, 0x80, 0x36, 0x00, 0xD8, 0x07, 0x60, 0x19, 0x81, 0xE7, 0xFF,
0x1F, 0xF0, 0x1E, 0x81, 0xF8, 0x31, 0x0E, 0x03, 0xE0, 0x3F, 0x03, 0xF0,
0x3D, 0x83, 0xDC, 0x3C, 0xC3, 0xC6, 0x3C, 0x63, 0xC3, 0x3C, 0x33, 0xC1,
0xBC, 0x0F, 0xC0, 0xFC, 0x07, 0xC0, 0x70, 0x06, 0x00, 0x06, 0x00, 0x06,
0x00, 0x00, 0x00, 0x7C, 0x03, 0xFE, 0x0E, 0x0E, 0x38, 0x0E, 0x60, 0x0D,
0x80, 0x0F, 0x00, 0x1E, 0x00, 0x3C, 0x00, 0x78, 0x00, 0xF0, 0x01, 0xB0,
0x06, 0x70, 0x1C, 0x70, 0x70, 0x7F, 0xC0, 0x3E, 0x00, 0x00, 0xC0, 0x03,
0x00, 0x0C, 0x00, 0x00, 0x00, 0x7C, 0x03, 0xFE, 0x0E, 0x0E, 0x38, 0x0E,
0x60, 0x0D, 0x80, 0x0F, 0x00, 0x1E, 0x00, 0x3C, 0x00, 0x78, 0x00, 0xF0,
0x01, 0xB0, 0x06, 0x70, 0x1C, 0x70, 0x70, 0x7F, 0xC0, 0x3E, 0x00, 0x03,
0x00, 0x0F, 0x00, 0x33, 0x00, 0x00, 0x00, 0x7C, 0x03, 0xFE, 0x0E, 0x0E,
0x38, 0x0E, 0x60, 0x0D, 0x80, 0x0F, 0x00, 0x1E, 0x00, 0x3C, 0x00, 0x78,
0x00, 0xF0, 0x01, 0xB0, 0x06, 0x70, 0x1C, 0x70, 0x70, 0x7F, 0xC0, 0x3E,
0x00, 0x06, 0x20, 0x1F, 0xC0, 0x37, 0x00, 0x00, 0x00, 0x7C, 0x03, 0xFE,
0x0E, 0x0E, 0x38, 0x0E, 0x60, 0x0D, 0x80, 0x0F, 0x00, 0x1E, 0x00, 0x3C,
0x00, 0x78, 0x00, 0xF0, 0x01, 0xB0, 0x06, 0x70, 0x1C, 0x70, 0x70, 0x7F,
0xC0, 0x3E, 0x00, 0x06, 0x60, 0x0C, 0xC0, 0x00, 0x00, 0x3E, 0x01, 0xFF,
0x07, 0x07, 0x1C, 0x07, 0x30, 0x06, 0xC0, 0x07, 0x80, 0x0F, 0x00, 0x1E,
0x00, 0x3C, 0x00, 0x78, 0x00, 0xD8, 0x03, 0x38, 0x0E, 0x38, 0x38, 0x3F,
0xE0, 0x1F, 0x00, 0xC1, 0xB1, 0x8D, 0x83, 0x81, 0xC1, 0xB1, 0x8D, 0x82,
0x07, 0xC2, 0x3F, 0xE8, 0xE0, 0xE3, 0x80, 0xE6, 0x02, 0xD8, 0x0C, 0xF0,
0x31, 0xE0, 0xC3, 0xC3, 0x07, 0x8C, 0x0F, 0x30, 0x1B, 0xC0, 0x67, 0x01,
0xCF, 0x07, 0x37, 0xFC, 0x43, 0xE0, 0x0C, 0x00, 0x60, 0x03, 0x00, 0x00,
0xC0, 0x3C, 0x03, 0xC0, 0x3C, 0x03, 0xC0, 0x3C, 0x03, 0xC0, 0x3C, 0x03,
0xC0, 0x3C, 0x03, 0xC0, 0x3C, 0x03, 0xC0, 0x37, 0x0E, 0x7F, 0xC1, 0xF8,
0x03, 0x00, 0x60, 0x0C, 0x00, 0x00, 0xC0, 0x3C, 0x03, 0xC0, 0x3C, 0x03,
0xC0, 0x3C, 0x03, 0xC0, 0x3C, 0x03, 0xC0, 0x3C, 0x03, 0xC0, 0x3C, 0x03,
0xC0, 0x37, 0x0E, 0x7F, 0xC1, 0xF8, 0x0C, 0x01, 0xE0, 0x33, 0x00, 0x00,
0xC0, 0x3C, 0x03, 0xC0, 0x3C, 0x03, 0xC0, 0x3C, 0x03, 0xC0, 0x3C, 0x03,
0xC0, 0x3C, 0x03, 0xC0, 0x3C, 0x03, 0xC0, 0x37, 0x0E, 0x7F, 0xC1, 0xF8,
0x19, 0x81, 0x98, 0x00, 0x0C, 0x03, 0xC0, 0x3C, 0x03, 0xC0, 0x3C, 0x03,
0xC0, 0x3C, 0x03, 0xC0, 0x3C, 0x03, 0xC0, 0x3C, 0x03, 0xC0, 0x3C, 0x03,
0x70, 0xE7, 0xFC, 0x1F, 0x80, 0x01, 0x80, 0x0C, 0x00, 0x60, 0x00, 0x00,
0xE0, 0x1D, 0x80, 0x67, 0x03, 0x0C, 0x0C, 0x18, 0x60, 0x73, 0x80, 0xCC,
0x01, 0xE0, 0x07, 0x80, 0x0C, 0x00, 0x30, 0x00, 0xC0, 0x03, 0x00, 0x0C,
0x00, 0x30, 0x00, 0xC0, 0xC0, 0x18, 0x03, 0xFE, 0x7F, 0xEC, 0x0F, 0x80,
0xF0, 0x1E, 0x03, 0xC0, 0x78, 0x1F, 0xFF, 0x7F, 0xCC, 0x01, 0x80, 0x30,
0x06, 0x00, 0x3E, 0x1F, 0xCE, 0x3B, 0x06, 0xC1, 0xB0, 0xEC, 0xF3, 0x3E,
0xC1, 0xB0, 0x3C, 0x0F, 0x03, 0xC0, 0xF0, 0x6C, 0xFB, 0x38, 0x30, 0x04,
0x00, 0x80, 0x00, 0x3E, 0x3F, 0xEC, 0x38, 0x06, 0x01, 0x83, 0xE7, 0xFB,
0x86, 0xC1, 0xB0, 0xE7, 0xFD, 0xE3, 0x06, 0x03, 0x01, 0x80, 0x00, 0x3E,
0x3F, 0xEC, 0x38, 0x06, 0x01, 0x83, 0xE7, 0xFB, 0x86, 0xC1, 0xB0, 0xE7,
0xFD, 0xE3, 0x1C, 0x05, 0x03, 0x60, 0x00, 0x3E, 0x3F, 0xEC, 0x38, 0x06,
0x01, 0x83, 0xE7, 0xFB, 0x86, 0xC1, 0xB0, 0xE7, 0xFD, 0xE3, 0x19, 0x0F,
0xC2, 0x70, 0x00, 0x3E, 0x3F, 0xEC, 0x38, 0x06, 0x01, 0x83, 0xE7, 0xFB,
0x86, 0xC1, 0xB0, 0xE7, 0xFD, 0xE3, 0x33, 0x0C, 0xC0, 0x00, 0xF8, 0xFF,
0xB0, 0xE0, 0x18, 0x06, 0x0F, 0x9F, 0xEE, 0x1B, 0x06, 0xC3, 0x9F, 0xF7,
0x8C, 0x0E, 0x07, 0xC3, 0xB0, 0xEC, 0x1F, 0x03, 0x83, 0xE3, 0xFE, 0xC3,
0x80, 0x60, 0x18, 0x3E, 0x7F, 0xB8, 0x6C, 0x1B, 0x0E, 0x7F, 0xDE, 0x30,
0x3E, 0x3E, 0x3F, 0xDF, 0xCC, 0x1E, 0x18, 0x07, 0x03, 0x01, 0x80, 0xCF,
0xFF, 0xF7, 0xFF, 0xFF, 0x86, 0x00, 0xC1, 0x80, 0xF0, 0xF8, 0x6F, 0xE7,
0xF9, 0xE0, 0xF8, 0x1E, 0x1F, 0xE6, 0x1B, 0x03, 0xC0, 0x30, 0x0C, 0x03,
0x00, 0xC0, 0xD8, 0x77, 0xF8, 0x78, 0x08, 0x03, 0x00, 0x60, 0x98, 0x3C,
0x00, 0x30, 0x06, 0x00, 0x80, 0x00, 0x1E, 0x0F, 0xE6, 0x1B, 0x03, 0xC0,
0xFF, 0xFF, 0xFF, 0x00, 0xC0, 0xD8, 0x67, 0xF8, 0x78, 0x06, 0x03, 0x00,
0x80, 0x00, 0x1E, 0x0F, 0xE6, 0x1B, 0x03, 0xC0, 0xFF, 0xFF, 0xFF, 0x00,
0xC0, 0xD8, 0x67, 0xF8, 0x78, 0x1C, 0x05, 0x03, 0x60, 0x00, 0x1E, 0x0F,
0xE6, 0x1B, 0x03, 0xC0, 0xFF, 0xFF, 0xFF, 0x00, 0xC0, 0xD8, 0x67, 0xF8,
0x78, 0x33, 0x0C, 0xC0, 0x00, 0x78, 0x3F, 0x98, 0x6C, 0x0F, 0x03, 0xFF,
0xFF, 0xFC, 0x03, 0x03, 0x61, 0x9F, 0xE1, 0xE0, 0xC6, 0x20, 0x33, 0x33,
0x33, 0x33, 0x33, 0x33, 0x36, 0x40, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33,
0x30, 0xE4, 0xC0, 0x18, 0x61, 0x86, 0x18, 0x61, 0x86, 0x18, 0x61, 0x86,
0xCF, 0x30, 0x0C, 0x30, 0xC3, 0x0C, 0x30, 0xC3, 0x0C, 0x30, 0xC3, 0x00,
0x00, 0x1D, 0x81, 0xC1, 0xF0, 0x06, 0x07, 0xC7, 0xF9, 0x86, 0xE1, 0xF0,
0x3C, 0x0F, 0x03, 0xC0, 0xF8, 0x76, 0x19, 0xFE, 0x1E, 0x00, 0x11, 0x8F,
0xC2, 0xF0, 0x00, 0xCF, 0x37, 0xFF, 0x1F, 0x83, 0xC0, 0xF0, 0x3C, 0x0F,
0x03, 0xC0, 0xF0, 0x3C, 0x0F, 0x03, 0x30, 0x06, 0x00, 0x80, 0x00, 0x1E,
0x1F, 0xE6, 0x1B, 0x87, 0xC0, 0xF0, 0x3C, 0x0F, 0x03, 0xE1, 0xD8, 0x67,
0xF8, 0x78, 0x06, 0x03, 0x01, 0x80, 0x00, 0x1E, 0x1F, 0xE6, 0x1B, 0x87,
0xC0, 0xF0, 0x3C, 0x0F, 0x03, 0xE1, 0xD8, 0x67, 0xF8, 0x78, 0x18, 0x0F,
0x02, 0x60, 0x00, 0x1E, 0x1F, 0xE6, 0x1B, 0x87, 0xC0, 0xF0, 0x3C, 0x0F,
0x03, 0xE1, 0xD8, 0x67, 0xF8, 0x78, 0x11, 0x0F, 0xC2, 0xF0, 0x00, 0x1E,
0x1F, 0xE6, 0x1B, 0x87, 0xC0, 0xF0, 0x3C, 0x0F, 0x03, 0xE1, 0xD8, 0x67,
0xF8, 0x78, 0x33, 0x0C, 0xC0, 0x00, 0x78, 0x7F, 0x98, 0x6E, 0x1F, 0x03,
0xC0, 0xF0, 0x3C, 0x0F, 0x87, 0x61, 0x9F, 0xE1, 0xE0, 0x0C, 0x01, 0x80,
0x00, 0x00, 0x0F, 0xFF, 0xFF, 0xC0, 0x00, 0x00, 0x0C, 0x01, 0x80, 0x1E,
0x5F, 0xD6, 0x1B, 0x87, 0xC2, 0xF1, 0x3C, 0x8F, 0x43, 0xE1, 0xD8, 0x67,
0xFA, 0x78, 0x00, 0x00, 0x30, 0x04, 0x00, 0x80, 0x00, 0xC0, 0xF0, 0x3C,
0x0F, 0x03, 0xC0, 0xF0, 0x3C, 0x0F, 0x03, 0xC1, 0xF8, 0xFF, 0xEC, 0xF3,
0x06, 0x03, 0x00, 0x80, 0x00, 0xC0, 0xF0, 0x3C, 0x0F, 0x03, 0xC0, 0xF0,
0x3C, 0x0F, 0x03, 0xC1, 0xF8, 0xFF, 0xEC, 0xF3, 0x18, 0x0F, 0x02, 0x60,
0x00, 0xC0, 0xF0, 0x3C, 0x0F, 0x03, 0xC0, 0xF0, 0x3C, 0x0F, 0x03, 0xC1,
0xF8, 0xFF, 0xEC, 0xF3, 0x33, 0x0C, 0xC0, 0x03, 0x03, 0xC0, 0xF0, 0x3C,
0x0F, 0x03, 0xC0, 0xF0, 0x3C, 0x0F, 0x07, 0xE3, 0xFF, 0xB3, 0xCC, 0x06,
0x01, 0x80, 0xC0, 0x00, 0xC0, 0xD8, 0x36, 0x0D, 0x86, 0x31, 0x8C, 0x43,
0x30, 0x6C, 0x1A, 0x07, 0x80, 0xE0, 0x30, 0x0C, 0x03, 0x01, 0x81, 0xE0,
0x70, 0x00, 0xC0, 0x18, 0x03, 0x00, 0x67, 0x8F, 0xF9, 0xE3, 0xB8, 0x3E,
0x03, 0xC0, 0x78, 0x0F, 0x01, 0xF0, 0x7F, 0x1D, 0xFF, 0x33, 0xC6, 0x00,
0xC0, 0x18, 0x03, 0x00, 0x00, 0x19, 0x86, 0x60, 0x03, 0x03, 0x60, 0xD8,
0x36, 0x18, 0xC6, 0x31, 0x0C, 0xC1, 0xB0, 0x68, 0x1E, 0x03, 0x80, 0xC0,
0x30, 0x0C, 0x06, 0x07, 0x81, 0xC0 };
const GFXglyph FreeSans11pt8bGlyphs[] PROGMEM = {
{ 0, 0, 0, 6, 0, 1 }, // 0, 0x00 ' '
{ 0, 2, 16, 7, 3, -15 }, // 1, 0x01 '!'
{ 4, 5, 5, 7, 1, -15 }, // 2, 0x02 '"'
{ 8, 12, 15, 12, 0, -14 }, // 3, 0x03 '#'
{ 31, 11, 18, 12, 1, -16 }, // 4, 0x04 '$'
{ 56, 18, 16, 20, 1, -15 }, // 5, 0x05 '%'
{ 92, 13, 16, 15, 1, -15 }, // 6, 0x06 '&'
{ 118, 2, 5, 4, 1, -15 }, // 7, 0x07 '''
{ 120, 5, 21, 7, 2, -15 }, // 8, 0x08 '('
{ 134, 5, 21, 7, 1, -15 }, // 9, 0x09 ')'
{ 148, 7, 6, 9, 1, -15 }, // 10, 0x0A '*'
{ 154, 10, 10, 13, 2, -9 }, // 11, 0x0B '+'
{ 167, 2, 5, 6, 2, -1 }, // 12, 0x0C ','
{ 169, 5, 2, 7, 1, -6 }, // 13, 0x0D '-'
{ 171, 2, 2, 5, 2, -1 }, // 14, 0x0E '.'
{ 172, 6, 16, 6, 0, -15 }, // 15, 0x0F '/'
{ 184, 10, 16, 12, 1, -15 }, // 16, 0x10 '0'
{ 204, 5, 16, 12, 3, -15 }, // 17, 0x11 '1'
{ 214, 10, 16, 12, 1, -15 }, // 18, 0x12 '2'
{ 234, 10, 16, 12, 1, -15 }, // 19, 0x13 '3'
{ 254, 10, 16, 12, 1, -15 }, // 20, 0x14 '4'
{ 274, 10, 16, 12, 1, -15 }, // 21, 0x15 '5'
{ 294, 10, 16, 12, 1, -15 }, // 22, 0x16 '6'
{ 314, 10, 16, 12, 1, -15 }, // 23, 0x17 '7'
{ 334, 10, 16, 12, 1, -15 }, // 24, 0x18 '8'
{ 354, 10, 16, 12, 1, -15 }, // 25, 0x19 '9'
{ 374, 2, 12, 5, 2, -11 }, // 26, 0x1A ':'
{ 377, 2, 14, 6, 2, -10 }, // 27, 0x1B ';'
{ 381, 11, 11, 13, 1, -10 }, // 28, 0x1C '<'
{ 397, 11, 6, 13, 1, -7 }, // 29, 0x1D '='
{ 406, 11, 11, 13, 1, -10 }, // 30, 0x1E '>'
{ 422, 9, 16, 12, 2, -15 }, // 31, 0x1F '?'
{ 440, 20, 19, 22, 1, -15 }, // 32, 0x20 '@'
{ 488, 14, 16, 15, 0, -15 }, // 33, 0x21 'A'
{ 516, 12, 16, 15, 2, -15 }, // 34, 0x22 'B'
{ 540, 14, 16, 16, 1, -15 }, // 35, 0x23 'C'
{ 568, 12, 16, 15, 2, -15 }, // 36, 0x24 'D'
{ 592, 11, 16, 14, 2, -15 }, // 37, 0x25 'E'
{ 614, 10, 16, 13, 2, -15 }, // 38, 0x26 'F'
{ 634, 15, 16, 17, 1, -15 }, // 39, 0x27 'G'
{ 664, 12, 16, 16, 2, -15 }, // 40, 0x28 'H'
{ 688, 2, 16, 6, 2, -15 }, // 41, 0x29 'I'
{ 692, 9, 16, 12, 1, -15 }, // 42, 0x2A 'J'
{ 710, 13, 16, 15, 2, -15 }, // 43, 0x2B 'K'
{ 736, 9, 16, 12, 2, -15 }, // 44, 0x2C 'L'
{ 754, 15, 16, 19, 2, -15 }, // 45, 0x2D 'M'
{ 784, 12, 16, 16, 2, -15 }, // 46, 0x2E 'N'
{ 808, 15, 16, 17, 1, -15 }, // 47, 0x2F 'O'
{ 838, 11, 16, 14, 2, -15 }, // 48, 0x30 'P'
{ 860, 15, 17, 17, 1, -15 }, // 49, 0x31 'Q'
{ 892, 13, 16, 16, 2, -15 }, // 50, 0x32 'R'
{ 918, 12, 16, 15, 2, -15 }, // 51, 0x33 'S'
{ 942, 12, 16, 14, 1, -15 }, // 52, 0x34 'T'
{ 966, 12, 16, 16, 2, -15 }, // 53, 0x35 'U'
{ 990, 14, 16, 14, 0, -15 }, // 54, 0x36 'V'
{ 1018, 20, 16, 21, 0, -15 }, // 55, 0x37 'W'
{ 1058, 14, 16, 14, 0, -15 }, // 56, 0x38 'X'
{ 1086, 14, 16, 15, 1, -15 }, // 57, 0x39 'Y'
{ 1114, 12, 16, 14, 1, -15 }, // 58, 0x3A 'Z'
{ 1138, 4, 21, 6, 1, -15 }, // 59, 0x3B '['
{ 1149, 6, 16, 6, 0, -15 }, // 60, 0x3C '\'
{ 1161, 4, 21, 6, 0, -15 }, // 61, 0x3D ']'
{ 1172, 8, 8, 10, 1, -15 }, // 62, 0x3E '^'
{ 1180, 13, 1, 12, 0, 4 }, // 63, 0x3F '_'
{ 1182, 4, 3, 6, 0, -15 }, // 64, 0x40 '`'
{ 1184, 10, 12, 12, 1, -11 }, // 65, 0x41 'a'
{ 1199, 11, 16, 12, 1, -15 }, // 66, 0x42 'b'
{ 1221, 10, 12, 11, 1, -11 }, // 67, 0x43 'c'
{ 1236, 10, 16, 12, 1, -15 }, // 68, 0x44 'd'
{ 1256, 10, 12, 12, 1, -11 }, // 69, 0x45 'e'
{ 1271, 4, 16, 6, 1, -15 }, // 70, 0x46 'f'
{ 1279, 10, 17, 12, 1, -11 }, // 71, 0x47 'g'
{ 1301, 10, 16, 12, 1, -15 }, // 72, 0x48 'h'
{ 1321, 2, 16, 5, 1, -15 }, // 73, 0x49 'i'
{ 1325, 4, 21, 5, 0, -15 }, // 74, 0x4A 'j'
{ 1336, 10, 16, 11, 1, -15 }, // 75, 0x4B 'k'
{ 1356, 2, 16, 5, 1, -15 }, // 76, 0x4C 'l'
{ 1360, 16, 12, 18, 1, -11 }, // 77, 0x4D 'm'
{ 1384, 10, 12, 12, 1, -11 }, // 78, 0x4E 'n'
{ 1399, 10, 12, 12, 1, -11 }, // 79, 0x4F 'o'
{ 1414, 11, 16, 12, 1, -11 }, // 80, 0x50 'p'
{ 1436, 10, 16, 12, 1, -11 }, // 81, 0x51 'q'
{ 1456, 6, 12, 7, 1, -11 }, // 82, 0x52 'r'
{ 1465, 9, 12, 11, 1, -11 }, // 83, 0x53 's'
{ 1479, 4, 14, 6, 1, -13 }, // 84, 0x54 't'
{ 1486, 10, 12, 12, 1, -11 }, // 85, 0x55 'u'
{ 1501, 11, 12, 11, 0, -11 }, // 86, 0x56 'v'
{ 1518, 16, 12, 16, 0, -11 }, // 87, 0x57 'w'
{ 1542, 10, 12, 10, 0, -11 }, // 88, 0x58 'x'
{ 1557, 10, 17, 11, 0, -11 }, // 89, 0x59 'y'
{ 1579, 9, 12, 11, 1, -11 }, // 90, 0x5A 'z'
{ 1593, 5, 21, 7, 1, -15 }, // 91, 0x5B '{'
{ 1607, 2, 21, 6, 2, -15 }, // 92, 0x5C '|'
{ 1613, 5, 21, 7, 2, -15 }, // 93, 0x5D '}'
{ 1627, 9, 4, 11, 1, -9 }, // 94, 0x5E '~'
{ 1632, 16, 21, 18, 1, -17 }, // 95, 0x5F '<control> DELETE'
{ 1674, 0, 0, 6, 0, 1 }, // 96, 0x60 'NO-BREAK SPACE'
{ 1674, 2, 16, 7, 2, -11 }, // 97, 0x61 'INVERTED EXCLAMATION MARK'
{ 1678, 10, 14, 12, 1, -12 }, // 98, 0x62 'CENT SIGN'
{ 1696, 11, 16, 12, 0, -15 }, // 99, 0x63 'POUND SIGN'
{ 1718, 13, 16, 14, 0, -15 }, // 100, 0x64 'EURO SIGN *'
{ 1744, 10, 16, 12, 1, -15 }, // 101, 0x65 'YEN SIGN'
{ 1764, 12, 20, 15, 2, -19 }, // 102, 0x66 'LATIN CAPITAL LETTER S WITH CARON *'
{ 1794, 10, 21, 12, 1, -15 }, // 103, 0x67 'SECTION SIGN'
{ 1821, 9, 16, 11, 1, -15 }, // 104, 0x68 'LATIN SMALL LETTER S WITH CARON *'
{ 1839, 16, 16, 18, 1, -15 }, // 105, 0x69 'COPYRIGHT SIGN'
{ 1871, 6, 9, 8, 1, -15 }, // 106, 0x6A 'FEMININE ORDINAL INDICATOR'
{ 1878, 7, 7, 11, 2, -8 }, // 107, 0x6B 'LEFT-POINTING DOUBLE ANGLE QUOTATION MARK'
{ 1885, 11, 6, 13, 1, -8 }, // 108, 0x6C 'NOT SIGN'
{ 1894, 5, 2, 7, 1, -6 }, // 109, 0x6D 'SOFT HYPHEN'
{ 1896, 16, 16, 18, 1, -15 }, // 110, 0x6E 'REGISTERED SIGN'
{ 1928, 6, 2, 7, 1, -15 }, // 111, 0x6F 'MACRON'
{ 1930, 7, 8, 13, 3, -15 }, // 112, 0x70 'DEGREE SIGN'
{ 1937, 11, 14, 13, 1, -12 }, // 113, 0x71 'PLUS-MINUS SIGN'
{ 1957, 7, 9, 8, 1, -17 }, // 114, 0x72 'SUPERSCRIPT TWO'
{ 1965, 7, 10, 8, 1, -17 }, // 115, 0x73 'SUPERSCRIPT THREE'
{ 1974, 12, 20, 14, 1, -19 }, // 116, 0x74 'LATIN CAPITAL LETTER Z WITH CARON *'
{ 2004, 11, 15, 12, 1, -11 }, // 117, 0x75 'MICRO SIGN'
{ 2025, 10, 19, 12, 2, -15 }, // 118, 0x76 'PILCROW SIGN'
{ 2049, 2, 2, 6, 2, -6 }, // 119, 0x77 'MIDDLE DOT'
{ 2050, 9, 16, 11, 1, -15 }, // 120, 0x78 'LATIN SMALL LETTER Z WITH CARON *'
{ 2068, 3, 9, 8, 3, -16 }, // 121, 0x79 'SUPERSCRIPT ONE'
{ 2072, 6, 9, 8, 1, -15 }, // 122, 0x7A 'MASCULINE ORDINAL INDICATOR'
{ 2079, 7, 7, 11, 2, -9 }, // 123, 0x7B 'RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK'
{ 2086, 19, 16, 22, 1, -15 }, // 124, 0x7C 'LATIN CAPITAL LIGATURE OE *'
{ 2124, 19, 12, 20, 1, -11 }, // 125, 0x7D 'LATIN SMALL LIGATURE OE *'
{ 2153, 14, 19, 15, 1, -18 }, // 126, 0x7E 'LATIN CAPITAL LETTER Y WITH DIAERESIS *'
{ 2187, 9, 16, 12, 2, -11 }, // 127, 0x7F 'INVERTED QUESTION MARK'
{ 2205, 14, 20, 15, 0, -19 }, // 128, 0x80 'LATIN CAPITAL LETTER A WITH GRAVE'
{ 2240, 14, 20, 15, 0, -19 }, // 129, 0x81 'LATIN CAPITAL LETTER A WITH ACUTE'
{ 2275, 14, 20, 15, 0, -19 }, // 130, 0x82 'LATIN CAPITAL LETTER A WITH CIRCUMFLEX'
{ 2310, 14, 20, 15, 0, -19 }, // 131, 0x83 'LATIN CAPITAL LETTER A WITH TILDE'
{ 2345, 14, 19, 15, 0, -18 }, // 132, 0x84 'LATIN CAPITAL LETTER A WITH DIAERESIS'
{ 2379, 14, 22, 15, 0, -21 }, // 133, 0x85 'LATIN CAPITAL LETTER A WITH RING ABOVE'
{ 2418, 20, 16, 22, 0, -15 }, // 134, 0x86 'LATIN CAPITAL LETTER AE'
{ 2458, 14, 21, 16, 1, -15 }, // 135, 0x87 'LATIN CAPITAL LETTER C WITH CEDILLA'
{ 2495, 11, 20, 14, 2, -19 }, // 136, 0x88 'LATIN CAPITAL LETTER E WITH GRAVE'
{ 2523, 11, 20, 14, 2, -19 }, // 137, 0x89 'LATIN CAPITAL LETTER E WITH ACUTE'
{ 2551, 11, 20, 14, 2, -19 }, // 138, 0x8A 'LATIN CAPITAL LETTER E WITH CIRCUMFLEX'
{ 2579, 11, 19, 14, 2, -18 }, // 139, 0x8B 'LATIN CAPITAL LETTER E WITH DIAERESIS'
{ 2606, 5, 20, 6, 0, -19 }, // 140, 0x8C 'LATIN CAPITAL LETTER I WITH GRAVE'
{ 2619, 5, 20, 6, 1, -19 }, // 141, 0x8D 'LATIN CAPITAL LETTER I WITH ACUTE'
{ 2632, 6, 20, 7, 0, -19 }, // 142, 0x8E 'LATIN CAPITAL LETTER I WITH CIRCUMFLEX'
{ 2647, 6, 19, 7, 1, -18 }, // 143, 0x8F 'LATIN CAPITAL LETTER I WITH DIAERESIS'
{ 2662, 14, 16, 16, 1, -15 }, // 144, 0x90 'LATIN CAPITAL LETTER ETH'
{ 2690, 12, 19, 16, 2, -18 }, // 145, 0x91 'LATIN CAPITAL LETTER N WITH TILDE'
{ 2719, 15, 20, 17, 1, -19 }, // 146, 0x92 'LATIN CAPITAL LETTER O WITH GRAVE'
{ 2757, 15, 20, 17, 1, -19 }, // 147, 0x93 'LATIN CAPITAL LETTER O WITH ACUTE'
{ 2795, 15, 20, 17, 1, -19 }, // 148, 0x94 'LATIN CAPITAL LETTER O WITH CIRCUMFLEX'
{ 2833, 15, 20, 17, 1, -19 }, // 149, 0x95 'LATIN CAPITAL LETTER O WITH TILDE'
{ 2871, 15, 19, 17, 1, -18 }, // 150, 0x96 'LATIN CAPITAL LETTER O WITH DIAERESIS'
{ 2907, 9, 8, 13, 2, -8 }, // 151, 0x97 'MULTIPLICATION SIGN'
{ 2916, 15, 16, 17, 1, -15 }, // 152, 0x98 'LATIN CAPITAL LETTER O WITH STROKE'
{ 2946, 12, 20, 16, 2, -19 }, // 153, 0x99 'LATIN CAPITAL LETTER U WITH GRAVE'
{ 2976, 12, 20, 16, 2, -19 }, // 154, 0x9A 'LATIN CAPITAL LETTER U WITH ACUTE'
{ 3006, 12, 20, 16, 2, -19 }, // 155, 0x9B 'LATIN CAPITAL LETTER U WITH CIRCUMFLEX'
{ 3036, 12, 19, 16, 2, -18 }, // 156, 0x9C 'LATIN CAPITAL LETTER U WITH DIAERESIS'
{ 3065, 14, 20, 15, 1, -19 }, // 157, 0x9D 'LATIN CAPITAL LETTER Y WITH ACUTE'
{ 3100, 11, 16, 14, 2, -15 }, // 158, 0x9E 'LATIN CAPITAL LETTER THORN'
{ 3122, 10, 16, 13, 2, -15 }, // 159, 0x9F 'LATIN SMALL LETTER SHARP S'
{ 3142, 10, 16, 12, 1, -15 }, // 160, 0xA0 'LATIN SMALL LETTER A WITH GRAVE'
{ 3162, 10, 16, 12, 1, -15 }, // 161, 0xA1 'LATIN SMALL LETTER A WITH ACUTE'
{ 3182, 10, 16, 12, 1, -15 }, // 162, 0xA2 'LATIN SMALL LETTER A WITH CIRCUMFLEX'
{ 3202, 10, 16, 12, 1, -15 }, // 163, 0xA3 'LATIN SMALL LETTER A WITH TILDE'
{ 3222, 10, 15, 12, 1, -14 }, // 164, 0xA4 'LATIN SMALL LETTER A WITH DIAERESIS'
{ 3241, 10, 18, 12, 1, -17 }, // 165, 0xA5 'LATIN SMALL LETTER A WITH RING ABOVE'
{ 3264, 18, 12, 19, 1, -11 }, // 166, 0xA6 'LATIN SMALL LETTER AE'
{ 3291, 10, 17, 11, 1, -11 }, // 167, 0xA7 'LATIN SMALL LETTER C WITH CEDILLA'
{ 3313, 10, 16, 12, 1, -15 }, // 168, 0xA8 'LATIN SMALL LETTER E WITH GRAVE'
{ 3333, 10, 16, 12, 1, -15 }, // 169, 0xA9 'LATIN SMALL LETTER E WITH ACUTE'
{ 3353, 10, 16, 12, 1, -15 }, // 170, 0xAA 'LATIN SMALL LETTER E WITH CIRCUMFLEX'
{ 3373, 10, 15, 12, 1, -14 }, // 171, 0xAB 'LATIN SMALL LETTER E WITH DIAERESIS'
{ 3392, 4, 16, 5, 0, -15 }, // 172, 0xAC 'LATIN SMALL LETTER I WITH GRAVE'
{ 3400, 4, 16, 5, 0, -15 }, // 173, 0xAD 'LATIN SMALL LETTER I WITH ACUTE'
{ 3408, 6, 16, 6, -1, -15 }, // 174, 0xAE 'LATIN SMALL LETTER I WITH CIRCUMFLEX'
{ 3420, 6, 15, 6, 0, -14 }, // 175, 0xAF 'LATIN SMALL LETTER I WITH DIAERESIS'
{ 3432, 10, 17, 12, 1, -16 }, // 176, 0xB0 'LATIN SMALL LETTER ETH'
{ 3454, 10, 16, 12, 1, -15 }, // 177, 0xB1 'LATIN SMALL LETTER N WITH TILDE'
{ 3474, 10, 16, 12, 1, -15 }, // 178, 0xB2 'LATIN SMALL LETTER O WITH GRAVE'
{ 3494, 10, 16, 12, 1, -15 }, // 179, 0xB3 'LATIN SMALL LETTER O WITH ACUTE'
{ 3514, 10, 16, 12, 1, -15 }, // 180, 0xB4 'LATIN SMALL LETTER O WITH CIRCUMFLEX'
{ 3534, 10, 16, 12, 1, -15 }, // 181, 0xB5 'LATIN SMALL LETTER O WITH TILDE'
{ 3554, 10, 15, 12, 1, -14 }, // 182, 0xB6 'LATIN SMALL LETTER O WITH DIAERESIS'
{ 3573, 11, 10, 13, 1, -9 }, // 183, 0xB7 'DIVISION SIGN'
{ 3587, 10, 13, 12, 1, -11 }, // 184, 0xB8 'LATIN SMALL LETTER O WITH STROKE'
{ 3604, 10, 16, 12, 1, -15 }, // 185, 0xB9 'LATIN SMALL LETTER U WITH GRAVE'
{ 3624, 10, 16, 12, 1, -15 }, // 186, 0xBA 'LATIN SMALL LETTER U WITH ACUTE'
{ 3644, 10, 16, 12, 1, -15 }, // 187, 0xBB 'LATIN SMALL LETTER U WITH CIRCUMFLEX'
{ 3664, 10, 15, 12, 1, -14 }, // 188, 0xBC 'LATIN SMALL LETTER U WITH DIAERESIS'
{ 3683, 10, 21, 11, 0, -15 }, // 189, 0xBD 'LATIN SMALL LETTER Y WITH ACUTE'
{ 3710, 11, 19, 12, 1, -14 }, // 190, 0xBE 'LATIN SMALL LETTER THORN'
{ 3737, 10, 20, 11, 0, -14 } }; // 191, 0xBF 'LATIN SMALL LETTER Y WITH DIAERESIS'
const GFXfont FreeSans11pt8b PROGMEM = {
(uint8_t *)FreeSans11pt8bBitmaps,
(GFXglyph *)FreeSans11pt8bGlyphs,
0x20, 0xDF, 26 };
// Approx. 5113 bytes
| 37,408
|
C++
|
.h
| 513
| 69.929825
| 99
| 0.573214
|
Open-Smartwatch/lib-open-smartwatch
| 39
| 14
| 0
|
GPL-3.0
|
9/20/2024, 10:45:34 PM (Europe/Amsterdam)
| false
| false
| false
| false
| false
| false
| false
| false
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.