Compare commits

...

32 Commits

Author SHA1 Message Date
56b817956f falscher name 2024-11-23 12:33:36 +00:00
53f9ca8975 AM tuning von Sarah mit richtigem Namen 2024-11-23 12:33:01 +00:00
ad9ab32130 AM tuning von Sarah 2024-11-23 12:28:41 +00:00
c40bdc46fa movie 2 uploaded 2024-11-11 08:38:44 +00:00
39a7c823a8 reupload of movie 2024-11-11 08:17:47 +00:00
08d31c0cdf deleted the movie 2024-11-11 08:16:36 +00:00
2f4dc268ab Movie in new folder, easier to find 2024-11-11 08:14:23 +00:00
c5e98d966d Dateien nach "results" hochladen
Power spectrum animations for contrast 10% and 20%
2024-11-10 17:10:17 +00:00
Diana
22f533db85 idk 2024-10-28 17:32:19 +01:00
Diana
91f27157dc ? 2024-10-28 15:21:24 +01:00
Diana
861a689f4e Changes dianas plot 2024-10-28 15:19:37 +01:00
d2444240f2 [Animation_ChatGPT] updated 2024-10-28 15:11:32 +01:00
2515472d32 [Animation_ChatGPT] updated 2024-10-28 15:11:01 +01:00
Diana
851857c19d Changes plot function 2024-10-27 13:14:33 +01:00
Diana
4a7e963c03 Changed find_nearest_peak 2024-10-27 12:37:00 +01:00
Diana
09a86f5d6f dont remember 2024-10-27 12:36:32 +01:00
Diana
904fa5cf30 Added find_nearest_peak function 2024-10-26 14:11:04 +02:00
Diana
2e2e79f5fe no idea 2024-10-25 18:10:57 +02:00
Diana
79bb459da9 no idea 2024-10-25 18:10:15 +02:00
Diana
2947782652 Added find_AM 2024-10-25 17:16:15 +02:00
Diana
447e88b212 no idea 2024-10-25 17:10:56 +02:00
Diana
136e8a380c Merge branch 'main' of https://whale.am28.uni-tuebingen.de/git/mbergmann/gpgrewe2024 2024-10-25 17:09:46 +02:00
Diana
423fe451be Changes integral function 2024-10-25 17:09:29 +02:00
f888737aaa [tuning_curve_max] updated to final version 2024-10-25 16:41:45 +02:00
86f702b946 added results for tuning curves 2024-10-25 16:41:01 +02:00
3ea0083f4c new code for am plots 2024-10-25 15:44:08 +02:00
3e155beb19 new code for am plots 2024-10-25 15:43:28 +02:00
f7374bb75c Merge branch 'main' of https://whale.am28.uni-tuebingen.de/git/mbergmann/gpgrewe2024 2024-10-25 15:41:41 +02:00
25e51d3eed Merge branch 'main' of https://whale.am28.uni-tuebingen.de/git/mbergmann/gpgrewe2024 2024-10-24 15:29:06 +02:00
100c36e703 Merge branch 'main' of https://whale.am28.uni-tuebingen.de/git/mbergmann/gpgrewe2024 2024-10-24 11:02:25 +02:00
e6e252ac1d Merge branch 'main' of https://whale.am28.uni-tuebingen.de/git/mbergmann/gpgrewe2024 2024-10-24 10:13:49 +02:00
2eac3ecde6 idk 2024-10-24 10:13:28 +02:00
38 changed files with 24755 additions and 3980 deletions

View File

@@ -9,12 +9,14 @@ import numpy as np
import matplotlib.pyplot as plt import matplotlib.pyplot as plt
from scipy.signal import welch from scipy.signal import welch
from matplotlib.animation import FuncAnimation, PillowWriter from matplotlib.animation import FuncAnimation, PillowWriter
import useful_functions as f
# Generate distances and corresponding frequencies # Generate distances and corresponding frequencies
distances = np.arange(-400, 451, 1) distances = np.arange(-400, 2000, 1)
f1 = 800 f1 = 800
f2 = f1 + distances f2 = f1 + distances
# Time parameters # Time parameters
dt = 0.00001 dt = 0.00001
t = np.arange(0, 2, dt) t = np.arange(0, 2, dt)
@@ -27,37 +29,45 @@ axs[1].set_xlabel('Frequency [Hz]')
axs[1].set_ylabel('Power [1/Hz]') axs[1].set_ylabel('Power [1/Hz]')
axs[1].set_xlim(0, 1500) axs[1].set_xlim(0, 1500)
# Function to compute and plot the power spectrum
def plot_powerspectrum(i):
# Generate the signal as a sum of two sine waves
def plot_powerspectrum_2(i):
# Clear the previous plots # Clear the previous plots
axs[0].cla() axs[0].cla()
axs[1].cla() axs[1].cla()
# Generate the signal # Generate the signal as a sum of two sine waves
x = np.sin(2*np.pi*f1*t) + 0.2 * np.sin(2*np.pi*f2[i]*t) x = np.sin(2 * np.pi * f1 * t) + 0.8 * np.sin(2 * np.pi * f2[i] * t) # Second wave is 20% as strong
x[x < 0] = 0 # Apply half-wave rectification
# Plot the signal (first 20 ms for clarity) # Plot the signal (first 20 ms for clarity)
axs[0].plot(t[t < 0.02], x[t < 0.02]) axs[0].plot(t[t < 0.02], x[t < 0.02])
axs[0].set_title(f"Signal (f2={f2[i]} Hz)") axs[0].set_title(f"Signal (f2={f2[i]} Hz)")
axs[0].set_xlabel('Time [s]') axs[0].set_xlabel('Time [s]')
axs[0].set_ylabel('Amplitude') axs[0].set_ylabel('Amplitude')
axs[0].set_ylim(0, 1.2) axs[0].set_ylim(-2, 2)
x[x < 0] = 0 # Apply half-wave rectification (optional)
# Compute power spectrum # Compute power spectrum
freq, power = welch(x, fs=1/dt, nperseg=2**16) freq, power = welch(x, fs=1/dt, nperseg=2**16)
pref = np.max(power)
decibel_power = 10 * np.log10(power/pref)
AM = f.find_AM(f1, 0.5 * f1, f2[i])
# Plot the power spectrum # Plot the power spectrum
axs[1].plot(freq, power) axs[1].plot(freq, power)
axs[1].set_xlim(0, 1500) axs[1].set_xlim(0, 3000)
axs[1].set_ylim(0, 0.05)
axs[1].set_title(f'Power Spectrum (f2={f2[i]} Hz)') axs[1].set_title(f'Power Spectrum (f2={f2[i]} Hz)')
axs[1].set_xlabel('Frequency [Hz]') axs[1].set_xlabel('Frequency [Hz]')
axs[1].set_ylabel('Power [1/Hz]') axs[1].set_ylabel('Power [1/Hz]')
#axs[1].set_ylim(0, 0.00007)
axs[1].plot(f1, power[np.argmin(np.abs(freq-f1))], 'o')
axs[1].plot(f2[i], power[np.argmin(np.abs(freq-f2[i]))], 'd')
axs[1].plot(AM, power[np.argmin(np.abs(freq-AM))], '*')
axs[1].axvline(AM, alpha = 0.5, color = 'r')
# Create the animation # Create the animation
ani = FuncAnimation(fig, plot_powerspectrum, frames=len(distances), interval=500) ani = FuncAnimation(fig, plot_powerspectrum_2, frames=len(distances), interval=500)
# Display the animation # Save the animation as a GIF file (optional)
ani.save("signal_animation.gif", writer=PillowWriter(fps=30)) ani.save("sum_of_sinewaves.gif", writer=PillowWriter(fps=30))
plt.show()

View File

@@ -0,0 +1,162 @@
import matplotlib.pyplot as plt
import numpy as np
import os
import glob
import rlxnix as rlx
from useful_functions import sam_data, sam_spectrum, calculate_integral, contrast_sorting, remove_poor
from tqdm import tqdm # Import tqdm for the progress bar
def load_files(file_path_pattern):
"""Load all files matching the pattern and remove poor quality files."""
all_files = glob.glob(file_path_pattern)
good_files = remove_poor(all_files)
return good_files
def process_sam_data(sam):
"""Process data for a single SAM and return necessary frequencies and powers."""
_, _, _, _, eodf, nyquist, stim_freq = sam_data(sam)
# Skip if stim_freq is NaN
if np.isnan(stim_freq):
return None
# Get power spectrum and frequency index for 1/2 EODf
freq, power = sam_spectrum(sam)
nyquist_idx = np.searchsorted(freq, nyquist)
# Get frequencies and powers before 1/2 EODf
freqs_before_half_eodf = freq[:nyquist_idx]
powers_before_half_eodf = power[:nyquist_idx]
# Get peak frequency and power
am_peak_f = freqs_before_half_eodf[np.argmax(powers_before_half_eodf)]
_, _, peak_power = calculate_integral(freq, power, am_peak_f)
return stim_freq, am_peak_f, peak_power
def plot_contrast_data(contrast_dict, file_tag, axs1, axs2):
"""Loop over all contrasts and plot AM Frequency and AM Power."""
for idx, contrast in enumerate(contrast_dict): # contrasts = keys of dict
ax1 = axs1[idx] # First figure (AM Frequency vs Stimulus Frequency)
ax2 = axs2[idx] # Second figure (AM Power vs Stimulus Frequency)
contrast_sams = contrast_dict[contrast]
# store all stim_freq and peak_power/nyquist_freq for this contrast
stim_freqs = []
am_freqs = []
peak_powers = []
# loop over all sams of one contrast
for sam in contrast_sams:
processed_data = process_sam_data(sam)
if processed_data is None:
continue
stim_freq, am_peak_f, peak_power = processed_data
stim_freqs.append(stim_freq)
am_freqs.append(am_peak_f)
peak_powers.append(peak_power)
# Plot in the first figure (AM Frequency vs Stimulus Frequency)
ax1.plot(stim_freqs, am_freqs, '-', label=file_tag)
ax1.set_title(f'Contrast {contrast}%')
ax1.grid(True)
ax1.legend(loc='upper right')
# Plot in the second figure (AM Power vs Stimulus Frequency)
ax2.plot(stim_freqs, peak_powers, '-', label=file_tag)
ax2.set_title(f'Contrast {contrast}%')
ax2.grid(True)
ax2.legend(loc='upper right')
def process_file(file, axs1, axs2):
"""Process a single file: extract SAMs and plot data for each contrast."""
dataset = rlx.Dataset(file)
sam_list = dataset.repro_runs('SAM')
# Extract the file tag (first part of the filename) for the legend
file_tag = '-'.join(os.path.basename(file).split('-')[0:4])
# Sort SAMs by contrast
contrast_dict = contrast_sorting(sam_list)
# Plot the data for each contrast
plot_contrast_data(contrast_dict, file_tag, axs1, axs2)
def loop_over_files(files, axs1, axs2):
"""Loop over all good files, process each file, and plot the data."""
for file in tqdm(files, desc="Processing files"):
process_file(file, axs1, axs2)
def main():
# Load files
file_path_pattern = '../data/16-10-24/*.nix'
good_files = load_files(file_path_pattern)
# Initialize figures
fig1, axs1 = plt.subplots(3, 1, constrained_layout=True, sharex=True) # For AM Frequency vs Stimulus Frequency
fig2, axs2 = plt.subplots(3, 1, constrained_layout=True, sharex=True) # For AM Power vs Stimulus Frequency
# Loop over files and process data
loop_over_files(good_files, axs1, axs2)
# Add labels to figures
fig1.supxlabel('Stimulus Frequency (df + EODf) [Hz]')
fig1.supylabel('AM Frequency [Hz]')
fig2.supxlabel('Stimulus Frequency (df + EODf) [Hz]')
fig2.supylabel('AM Power')
# Show plots
plt.show()
# Run the main function
if __name__ == '__main__':
main()
'''
Function that gets eodf and 1/2 eodf per contrast:
def calculate_mean_eodf(sams):
"""
Calculate mean EODf and mean 1/2 EODf for the given SAM data.
Args:
sams (list): List of SAM objects.
Returns:
mean_eodf (float): Mean EODf across all SAMs.
mean_half_eodf (float): Mean 1/2 EODf (Nyquist frequency) across all SAMs.
"""
eodfs = []
nyquists = []
for sam in sams:
_, _, _, _, eodf, nyquist, _ = sam_data(sam)
# Add to list only if valid
if not np.isnan(eodf):
eodfs.append(eodf)
nyquists.append(nyquist)
# Calculate mean EODf and 1/2 EODf
mean_eodf = np.mean(eodfs)
mean_half_eodf = np.mean(nyquists)
return mean_eodf, mean_half_eodf
'''
# TODO:
# display eodf values in plot for one cell, one intensity - integrate function for this
# lowpass with gaussian kernel for amplitude plot(0.5 sigma in frequency spectrum (dont filter too narrowly))
# fix legends (only for the cells that are being displayed)
# save figures
# plot remaining 3 plots, make 1 function for every option and put that in main code
# push files to git

View File

@@ -0,0 +1,96 @@
import matplotlib.pyplot as plt
import numpy as np
import os
import rlxnix as rlx
from useful_functions import sam_data, sam_spectrum, calculate_integral, contrast_sorting
# close all open plots
plt.close('all')
def plot_am_vs_frequency_single_intensity(file, contrast=20):
"""
Plots AM Power vs Stimulus Frequency and Nyquist Frequency vs Stimulus Frequency for
one intensity and one cell (file).
Parameters:
file (str): Path to the file (one cell).
intensity (int): The intensity level (contrast) to filter by.
"""
# Load the dataset for the given file
dataset = rlx.Dataset(file)
# Get SAMs for the whole recording
sam_list = dataset.repro_runs('SAM')
# Extract the file tag (first part of the filename) for the legend
file_tag = '-'.join(os.path.basename(file).split('-')[0:4])
# Sort SAMs by contrast
contrast_dict = contrast_sorting(sam_list)
# Get the SAMs for 20% contrast
sams = contrast_dict[contrast]
# Create a figure with 1 row and 2 columns
fig, axs = plt.subplots(2, 1, layout='constrained')
# Store all stim_freq, peak_power, and am_freq for the given contrast
stim_freqs = []
peak_powers = []
am_freqs = []
# Loop over all SAMs of the specified contrast
for sam in sams:
# Get stim_freq for each SAM
_, _, _, _, eodf, nyquist, stim_freq = sam_data(sam)
# Skip over empty SAMs
if np.isnan(stim_freq):
continue
# Get power spectrum from one SAM
freq, power = sam_spectrum(sam)
# get index of 1/2 eodf frequency
nyquist_idx = np.searchsorted(freq, nyquist)
# get frequencies until 1/2 eodf and powers for those frequencies
freqs_before_half_eodf = freq[:nyquist_idx]
powers_before_half_eodf = power[:nyquist_idx]
# Get the frequency of the highest peak before 1/2 EODf
am_peak_f = freqs_before_half_eodf[np.argmax(powers_before_half_eodf)]
# Get the power of the highest peak before 1/2 EODf
_, _, peak_power = calculate_integral(freq, power, am_peak_f)
# Collect data for plotting
stim_freqs.append(stim_freq)
peak_powers.append(peak_power)
am_freqs.append(am_peak_f)
# Plot AM Power vs Stimulus Frequency (first column)
ax = axs[0]
ax.plot(stim_freqs, am_freqs, '-')
ax.set_ylabel('AM Frequency [Hz]')
ax.grid(True)
# Plot AM Frequency vs Stimulus Frequency (second column)
ax = axs[1]
ax.plot(stim_freqs, peak_powers, '-')
ax.set_ylabel('AM Power')
ax.grid(True)
# Figure settings
fig.suptitle(f"Cell: {file_tag}, Contrast: {contrast}%")
fig.supxlabel("Stimulus Frequency (df + EODf) [Hz]")
plt.show()
# Call function
file = '../data/16-10-24/2024-10-16-ad-invivo-1.nix'
# Call the function to plot the data for one intensity and one cell
plot_am_vs_frequency_single_intensity(file)

View File

@@ -72,14 +72,16 @@ functions_path = r"C:\Users\diana\OneDrive - UT Cloud\Master\GPs\GP1_Grewe\Proje
sys.path.append(functions_path) sys.path.append(functions_path)
import useful_functions as u import useful_functions as u
import matplotlib.ticker as ticker import matplotlib.ticker as ticker
import matplotlib.patches as mpatches
import matplotlib.cm as cm
def float_formatter(x, _): def float_formatter(x, _):
"""Format the y-axis values as floats with a specified precision.""" """Format the y-axis values as floats with a specified precision."""
return f'{x:.5f}' return f'{x:.5f}'
def plot_highlighted_integrals(ax, frequency, power, points, color_mapping, points_categories, delta=2.5): def plot_highlighted_integrals(ax, frequency, power, points, nyquist, true_eodf, color_mapping, points_categories, delta=2.5):
""" """
Highlight integrals on the existing axes of the power spectrum. Highlights integrals on the existing axes of the power spectrum for a given dataset.
Parameters Parameters
---------- ----------
@@ -102,38 +104,51 @@ def plot_highlighted_integrals(ax, frequency, power, points, color_mapping, poin
------- -------
None None
""" """
ax.plot(frequency, power, color = "k") # Plot power spectrum on the existing axes # Define color mappings for specific categories
category_colors = {
"AM": "#ff7f0e",
"Nyquist": "#2ca02c",
"EODf": "#d62728",
"Stimulus": "#9467bd",
"EODf (awake fish)": "#8c564b"
}
# Plot the power spectrum on the provided axes
for point in points: for point in points:
# Calculate the integral and local mean # Identify the category for the current point
integral, local_mean = u.calculate_integral_2(frequency, power, point) point_category = next((cat for cat, pts in points_categories.items() if point in pts), "Unknown")
# Check if the point is valid # Assign color based on category, or default to grey if unknown
color = color_mapping.get(point_category, 'gray')
# Calculate the integral and check validity
integral, local_mean = u.calculate_integral_2(frequency, power, point)
valid = u.valid_integrals(integral, local_mean, point) valid = u.valid_integrals(integral, local_mean, point)
if valid: if valid:
# Define color based on the category of the point # Highlight valid points with a shaded region
point_category = next((cat for cat, pts in points_categories.items() if point in pts), "Unknown") ax.axvspan(point - delta, point + delta, color=color, alpha=0.35, label=f'{point_category}')
color = next((c for cat, c in color_mapping.items() if point in points_categories[cat]), 'gray')
# Shade the region around the point where the integral was calculated ax.plot(frequency, power, color="#1f77b4", linewidth=1.5)
ax.axvspan(point - delta, point + delta, color=color, alpha=0.2, label=f'{point_category}') # Use the category colors for 'Nyquist' and 'EODf' lines
ax.axvline(nyquist, color=category_colors.get("Nyquist", "#2ca02c"), linestyle="--")
# Text with categories and colors ax.axvline(true_eodf, color=category_colors.get("EODf (awake fish)", "#8c564b"), linestyle="--")
ax.text(1000, 5.8e-5, "AM", fontsize=10, color="green", alpha=0.2)
ax.text(1000, 5.6e-5, "Nyquist", fontsize=10, color="blue", alpha=0.2)
ax.text(1000, 5.4e-5, "EODf", fontsize=10, color="red", alpha=0.2)
ax.text(1000, 5.2e-5, "Stimulus frequency", fontsize=10, color="orange", alpha=0.2)
ax.text(1000, 5.0e-5, "EODf of awake fish", fontsize=10, color="purple", alpha=0.2)
# Set plot limits and labels
ax.set_xlim([0, 1200]) ax.set_xlim([0, 1200])
ax.set_ylim([0, 6e-5]) ax.set_ylim([0, 6e-5])
ax.set_xlabel('Frequency (Hz)') ax.set_xlabel('Frequency (Hz)', fontsize=12)
ax.set_ylabel('Power') ax.set_ylabel(r'Power [$\frac{\mathrm{Hz^2}}{\mathrm{Hz}}$]', fontsize=12)
ax.set_title('Power Spectrum with highlighted Integrals') #ax.set_title('Power Spectrum with highlighted Integrals', fontsize=14)
# Apply float formatting to the y-axis # Apply float formatting to the y-axis
ax.yaxis.set_major_formatter(ticker.FuncFormatter(float_formatter)) ax.yaxis.set_major_formatter(ticker.FuncFormatter(float_formatter))

View File

@@ -1,26 +1,45 @@
import glob import glob
import matplotlib.pyplot as plt import matplotlib.pyplot as plt
import numpy as np import numpy as np
import os
import rlxnix as rlx import rlxnix as rlx
import scipy as sp
import time
import useful_functions as f import useful_functions as f
from matplotlib.lines import Line2D
from tqdm import tqdm
# tatsächliche Power der peaks benutzen # plot the tuning curves for all cells y/n
single_plots = True
# all files we want to use # all files we want to use
files = glob.glob("../data/2024-10-*.nix") files = glob.glob("../data/2024-10-*.nix")
#EODf file for either day
eodf_file_w = glob.glob('../data/EOD_only/*-16*.nix')[0]
eodf_file_m = glob.glob('../data/EOD_only/*-21*.nix')[0]
# get only the good and fair filepaths # get only the good and fair filepaths
new_files = f.remove_poor(files) new_files = f.remove_poor(files)
#get the filenames as labels for plotting
labels = [os.path.splitext(os.path.basename(file))[0] for file in new_files]
# dict for all the different contrasts
contrast_files = {20 : {'power' :[], 'freq' : []},
10 : {'power' :[], 'freq' : []},
5 : {'power' :[], 'freq' : []}}
norm_contrast_files = {20 : {'power' :[], 'freq' : []},
10 : {'power' :[], 'freq' : []},
5 : {'power' :[], 'freq' : []}}
# loop over all the good files # loop over all the good files
for file in new_files: for u, file in tqdm(enumerate(new_files), total = len(new_files)):
#use correct eodf file
if "-16" in file:
orig_eodf = f.true_eodf(eodf_file_w)
else:
orig_eodf = f.true_eodf(eodf_file_m)
#define lists
contrast_frequencies = [] contrast_frequencies = []
contrast_powers = [] contrast_powers = []
# load a file # load a file
@@ -30,78 +49,145 @@ for file in new_files:
# get arrays for frequnecies and power # get arrays for frequnecies and power
stim_frequencies = np.zeros(len(sams)) stim_frequencies = np.zeros(len(sams))
peak_powers = np.zeros_like(stim_frequencies) peak_powers = np.zeros_like(stim_frequencies)
# loop over all sams contrast_sams = f.contrast_sorting(sams)
# dictionary for the contrasts
contrast_sams = {20 : [], eodfs = []
10 : [],
5 : []}
# loop over all sams
for sam in sams:
# get the contrast
avg_dur, contrast, _, _, _, _, _ = f.sam_data(sam)
# check for valid trails
if np.isnan(contrast):
continue
elif sam.stimulus_count < 3: #aborted trials
continue
elif avg_dur < 1.7:
continue
else:
contrast = int(contrast) # get integer of contrast
# sort them accordingly
if contrast == 20:
contrast_sams[20].append(sam)
if contrast == 10:
contrast_sams[10].append(sam)
if contrast == 5:
contrast_sams[5].append(sam)
else:
continue
# loop over the contrasts # loop over the contrasts
for key in contrast_sams: for key in contrast_sams:
stim_frequencies = np.zeros(len(contrast_sams[key])) stim_frequencies = np.zeros(len(contrast_sams[key]))
norm_stim_frequencies = np.zeros_like(stim_frequencies)
peak_powers = np.zeros_like(stim_frequencies) peak_powers = np.zeros_like(stim_frequencies)
for i, sam in enumerate(contrast_sams[key]): for i, sam in enumerate(contrast_sams[key]):
# get stimulus frequency and stimuli # get stimulus frequency and stimuli
_, _, _, _, _, _, stim_frequency = f.sam_data(sam) _, _, _, _, eodf, _, stim_frequency = f.sam_data(sam)
stimuli = sam.stimuli sam_frequency, sam_power = f.sam_spectrum(sam)
# lists for the power spectra
frequencies = []
powers = []
# loop over the stimuli
for stimulus in stimuli:
# get the powerspectrum for each stimuli
frequency, power = f.power_spectrum(stimulus)
# append the power spectrum data
frequencies.append(frequency)
powers.append(power)
#average over the stimuli
sam_frequency = np.mean(frequencies, axis = 0)
sam_power = np.mean(powers, axis = 0)
# detect peaks # detect peaks
integral, surroundings, peak_power = f.calculate_integral(sam_frequency, _, _, peak_powers[i] = f.calculate_integral(sam_frequency,
sam_power, stim_frequency) sam_power, stim_frequency)
peak_powers[i] = peak_power
# add the current stimulus frequency # add the current stimulus frequency
stim_frequencies[i] = stim_frequency stim_frequencies[i] = stim_frequency
norm_stim_frequencies[i] = stim_frequency - orig_eodf
eodfs.append(eodf)
# replae zeros with NaN # replae zeros with NaN
peak_powers = np.where(peak_powers == 0, np.nan, peak_powers) peak_powers = np.where(peak_powers == 0, np.nan, peak_powers)
contrast_frequencies.append(stim_frequencies) contrast_frequencies.append(stim_frequencies)
contrast_powers.append(peak_powers) contrast_powers.append(peak_powers)
if key == 20:
contrast_files[20]['freq'].append(stim_frequencies)
contrast_files[20]['power'].append(peak_powers)
norm_contrast_files[20]['freq'].append(norm_stim_frequencies)
norm_contrast_files[20]['power'].append(peak_powers)
elif key == 10:
contrast_files[10]['freq'].append(stim_frequencies)
contrast_files[10]['power'].append(peak_powers)
norm_contrast_files[10]['freq'].append(norm_stim_frequencies)
norm_contrast_files[10]['power'].append(peak_powers)
else:
contrast_files[5]['freq'].append(stim_frequencies)
contrast_files[5]['power'].append(peak_powers)
norm_contrast_files[5]['freq'].append(norm_stim_frequencies)
norm_contrast_files[5]['power'].append(peak_powers)
fig, ax = plt.subplots(layout = 'constrained') curr_eodf = np.mean(eodfs)
if single_plots == True:
# one cell with all contrasts in one subplot
fig, ax = plt.subplots()
ax.plot(contrast_frequencies[0], contrast_powers[0]) ax.plot(contrast_frequencies[0], contrast_powers[0])
ax.plot(contrast_frequencies[1], contrast_powers[1]) ax.plot(contrast_frequencies[1], contrast_powers[1])
if contrast_frequencies and contrast_frequencies[-1].size == 0:
if contrast_frequencies and contrast_frequencies[-2].size == 0:
ax.set_xlim(0,2000)
else:
ax.set_xlim(0,np.max(contrast_frequencies[-2]))
else:
ax.plot(contrast_frequencies[2], contrast_powers[2]) ax.plot(contrast_frequencies[2], contrast_powers[2])
ax.set_xlim(0,np.max(contrast_frequencies[-1]))
ax.axvline(orig_eodf, color = 'black',linestyle = 'dashed', alpha = 0.8)
ax.axvline(2*curr_eodf, color = 'black', linestyle = 'dotted', alpha = 0.8)
ax.set_ylim(0, 0.00014)
ax.set_xlabel('stimulus frequency [Hz]') ax.set_xlabel('stimulus frequency [Hz]')
ax.set_ylabel(r' power [$\frac{\mathrm{mV^2}}{\mathrm{Hz}}$]') ax.set_ylabel(r' power [$\frac{\mathrm{mV^2}}{\mathrm{Hz}}$]')
ax.set_title(f"{file}") ax.set_title(f"{file}")
fig.legend(labels = ['20 % contrast', '10 % contrast','5 % contrast','EODf of awake fish', '1st harmonic of current EODf' ], loc = 'lower center', ncol = 3)
plt.tight_layout(rect=[0, 0.06, 1, 1])
plt.savefig(f'../results/tuning_curve{labels[u]}.svg')
#one cell with the contrasts in different subplots
fig, axs = plt.subplots(1, 3, figsize = [10,6], sharex = True, sharey = True)
for p, key in enumerate(contrast_files):
ax = axs[p]
ax.plot(contrast_files[key]['freq'][-1],contrast_files[key]['power'][-1])
ax.set_title(f"{key}")
ax.axvline(orig_eodf, color = 'black',linestyle = 'dashed')
ax.axvline(2*curr_eodf, color = 'darkblue', linestyle = 'dotted', alpha = 0.8)
if p == 0:
ax.set_ylabel(r'power [$\frac{\mathrm{mV^2}}{\mathrm{Hz}}$]', fontsize=12)
fig.supxlabel('stimulus frequency [Hz]', fontsize=12)
fig.suptitle(f'{labels[u]}')
fig.legend(labels = ['power of stimulus peak', 'EODf of awake fish','1st harmonic of current EODf'], loc = 'lower center', bbox_to_anchor=(0.5, 0.05), ncol = 3)
plt.tight_layout(rect=[0, 0.06, 1, 1])
plt.savefig(f'../results/contrast_tuning{labels[u]}.svg')
cmap = plt.get_cmap('viridis')
colors = cmap(np.linspace(0, 1, len(new_files)))
plt.close('all')
if len(new_files) < 10:
lines = []
labels_legend = []
fig, axs = plt.subplots(1, 3, figsize = [10,6], sharex = True, sharey = True)
for p, key in enumerate(contrast_files):
ax = axs[p]
for i in range(len(contrast_files[key]['power'])):
line, = ax.plot(contrast_files[key]['freq'][i],contrast_files[key]['power'][i], label = labels[i], color = colors[i])
ax.set_title(f"{key}")
ax.axvline(orig_eodf, color = 'black',linestyle = 'dashed')
if p == 0:
lines.append(line)
labels_legend.append(labels[i])
fig.supxlabel('stimulus frequency [Hz]', fontsize=12)
fig.supylabel(r'power [$\frac{\mathrm{mV^2}}{\mathrm{Hz}}$]', fontsize=12)
# Create a single legend beneath the plots with 3 columns
lines.append(Line2D([0], [0], color='black', linestyle='--')) # Custom line for the legend
labels_legend.append("Awake fish EODf") # Custom label
fig.legend(lines, labels_legend, loc='upper center', ncol=3, fontsize=10)
plt.tight_layout(rect=[0, 0, 1, 0.85]) # Adjust layout to make space for the legend
if "-16" in new_files[-1]:
plt.savefig('../results/tuning_curves_10_16.svg')
elif "-21" in new_files[0]:
plt.savefig('../results/tuning_curves_10_21.svg')
else:
for o in range(2):
lines = []
labels_legend = []
fig, axs = plt.subplots(1, 3, figsize = [10,6], sharex = True, sharey = True)
for p, key in enumerate(norm_contrast_files):
ax = axs[p]
for i in range(len(norm_contrast_files[key]['power'])):
line, = ax.plot(norm_contrast_files[key]['freq'][i],norm_contrast_files[key]['power'][i], label = labels[i], color = colors[i])
ax.set_title(f"{key}")
ax.axvline(0, color = 'black',linestyle = 'dashed')
if p == 0:
lines.append(line)
labels_legend.append(labels[i])
fig.supylabel(r'power [$\frac{\mathrm{mV^2}}{\mathrm{Hz}}$]', fontsize=12)
# Create a single legend beneath the plots with 3 columns
lines.append(Line2D([0], [0], color='black', linestyle='--')) # Custom line for the legend
labels_legend.append("Awake fish EODf") # Custom label
fig.legend(lines, labels_legend, loc='upper center', ncol=3, fontsize=10)
plt.tight_layout(rect=[0, 0, 1, 0.82]) # Adjust layout to make space for the legend
if o == 0:
ax.set_xlim(-600, 2100)
fig.supxlabel('stimulus frequency [Hz]', fontsize=12)
plt.savefig('../results/tuning_curves_norm.svg')
else:
ax.set_xlim(-600, 600)
fig.supxlabel(' relative stimulus frequency [Hz]', fontsize=12)
plt.savefig('../results/tuning_curves_norm_zoom.svg')
#plt.close('all')

View File

@@ -1,42 +1,13 @@
import numpy as np import numpy as np
import rlxnix as rlx import rlxnix as rlx
from scipy.signal import welch from scipy.signal import welch
from scipy import signal
import matplotlib.pyplot as plt
from scipy.signal import find_peaks
def all_coming_together(freq_array, power_array, points_list, categories, num_harmonics_list, colors, delta=2.5, threshold=0.5): def all_coming_together(freq_array, power_array, points_list, categories, num_harmonics_list, colors, delta=2.5, threshold=0.5):
""" # Initialize dictionaries and lists
Process a list of points, calculating integrals, checking validity, and preparing harmonics for valid points. valid_points = []
Parameters
----------
freq_array : np.array
Array of frequencies corresponding to the power values.
power_array : np.array
Array of power spectral density values.
points_list : list
List of harmonic frequency points to process.
categories : list
List of corresponding categories for each point.
num_harmonics_list : list
List of the number of harmonics for each point.
colors : list
List of colors corresponding to each point's category.
delta : float, optional
Radius of the range for integration around each point (default is 2.5).
threshold : float, optional
Threshold value to compare integrals with local mean (default is 0.5).
Returns
-------
valid_points : list
A continuous list of harmonics for all valid points.
color_mapping : dict
A dictionary mapping categories to corresponding colors.
category_harmonics : dict
A mapping of categories to their harmonic frequencies.
messages : list
A list of messages for each point, stating whether it was valid or not.
"""
valid_points = [] # A continuous list of harmonics for valid points
color_mapping = {} color_mapping = {}
category_harmonics = {} category_harmonics = {}
messages = [] messages = []
@@ -46,21 +17,25 @@ def all_coming_together(freq_array, power_array, points_list, categories, num_ha
num_harmonics = num_harmonics_list[i] num_harmonics = num_harmonics_list[i]
color = colors[i] color = colors[i]
# Step 1: Calculate the integral for the point # Calculate the integral for the point
integral, local_mean = calculate_integral_2(freq_array, power_array, point, delta) integral, local_mean = calculate_integral_2(freq_array, power_array, point)
# Step 2: Check if the point is valid # Check if the point is valid
valid = valid_integrals(integral, local_mean, point, threshold) valid = valid_integrals(integral, local_mean, point)
if valid: if valid:
# Step 3: Prepare harmonics if the point is valid # Prepare harmonics if the point is valid
harmonics, color_map, category_harm = prepare_harmonic(point, category, num_harmonics, color) harmonics, color_map, category_harm = prepare_harmonic(point, category, num_harmonics, color)
valid_points.extend(harmonics) # Use extend() to append harmonics in a continuous manner valid_points.extend(harmonics)
color_mapping.update(color_map) color_mapping[category] = color # Store color for category
category_harmonics.update(category_harm) category_harmonics[category] = harmonics
messages.append(f"The point {point} is valid.") messages.append(f"The point {point} is valid.")
else: else:
messages.append(f"The point {point} is not valid.") messages.append(f"The point {point} is not valid.")
# Debugging print statements
print("Color Mapping:", color_mapping)
print("Category Harmonics:", category_harmonics)
return valid_points, color_mapping, category_harmonics, messages return valid_points, color_mapping, category_harmonics, messages
@@ -150,40 +125,42 @@ def calculate_integral(freq, power, point, delta = 2.5):
local_mean = np.mean([l_integral, r_integral]) local_mean = np.mean([l_integral, r_integral])
return integral, local_mean, p_power return integral, local_mean, p_power
def calculate_integral_2(freq, power, point, delta = 2.5):
def calculate_integral_2(freq, power, peak_freq, delta=2.5):
""" """
Calculate the integral around a single specified point. Calculate the integral around a specified peak frequency and the local mean.
Parameters Parameters
---------- ----------
frequency : np.array freq : np.array
An array of frequencies corresponding to the power values. An array of frequencies corresponding to the power values.
power : np.array power : np.array
An array of power spectral density values. An array of power spectral density values.
point : float peak_freq : float
The harmonic frequency at which to calculate the integral. The frequency of the peak around which to calculate the integral.
delta : float, optional delta : float, optional
Radius of the range for integration around the point. The default is 2.5. Radius of the range for integration around the peak. The default is 2.5.
Returns Returns
------- -------
integral : float integral : float
The calculated integral around the point. The calculated integral around the peak frequency.
local_mean : float local_mean : float
The local mean value (adjacent integrals). The local mean value (adjacent integrals).
p_power : float
The local maxiumum power.
""" """
indices = (freq >= point - delta) & (freq <= point + delta) # Calculate integral around the peak frequency
indices = (freq >= peak_freq - delta) & (freq <= peak_freq + delta)
integral = np.trapz(power[indices], freq[indices]) integral = np.trapz(power[indices], freq[indices])
left_indices = (freq >= point - 5 * delta) & (freq < point - delta) # Calculate local mean from adjacent ranges
right_indices = (freq > point + delta) & (freq <= point + 5 * delta) left_indices = (freq >= peak_freq - 5 * delta) & (freq < peak_freq - delta)
right_indices = (freq > peak_freq + delta) & (freq <= peak_freq + 5 * delta)
l_integral = np.trapz(power[left_indices], freq[left_indices]) l_integral = np.trapz(power[left_indices], freq[left_indices]) if np.any(left_indices) else 0
r_integral = np.trapz(power[right_indices], freq[right_indices]) r_integral = np.trapz(power[right_indices], freq[right_indices]) if np.any(right_indices) else 0
local_mean = np.mean([l_integral, r_integral]) local_mean = np.mean([l_integral, r_integral])
return integral, local_mean return integral, local_mean
def contrast_sorting(sams, con_1 = 20, con_2 = 10, con_3 = 5, stim_count = 3, stim_dur = 2): def contrast_sorting(sams, con_1 = 20, con_2 = 10, con_3 = 5, stim_count = 3, stim_dur = 2):
@@ -274,44 +251,66 @@ def extract_stim_data(stimulus):
stim_freq = round(stimulus.metadata[stimulus.name]['Frequency'][0][0]) stim_freq = round(stimulus.metadata[stimulus.name]['Frequency'][0][0])
stim_dur = stimulus.duration stim_dur = stimulus.duration
# calculates the amplitude modulation # calculates the amplitude modulation
amp_mod, ny_freq = AM(eodf, stim_freq) _, ny_freq = AM(eodf, stim_freq)
return amplitude, df, eodf, stim_freq,stim_dur, amp_mod, ny_freq amp_mod = find_AM(eodf, ny_freq, stim_freq)
return amplitude, df, eodf, stim_freq, stim_dur, amp_mod, ny_freq
def find_exceeding_points(frequency, power, points, delta, threshold): def find_AM(eodf, nyquist, stimulus_frequency):
t = signal.windows.triang(eodf) * nyquist
length_t2 = int(eodf*10)
t2 = np.tile(t, length_t2)
x_values = np.arange(len(t2))
#fig, ax = plt.subplots()
#ax.plot(t2)
#ax.scatter(stimulus_frequency, t2[np.argmin(np.abs(x_values - stimulus_frequency))])
#plt.grid()
AM = t2[np.argmin(np.abs(x_values - stimulus_frequency))]
return AM
def find_nearest_peak(freq, power, point, peak_search_range=30, threshold=None):
""" """
Find the points where the integral exceeds the local mean by a given threshold. Find the nearest peak within a specified range around a given point.
Parameters Parameters
---------- ----------
frequency : np.array freq : np.array
An array of frequencies corresponding to the power values. An array of frequencies corresponding to the power values.
power : np.array power : np.array
An array of power spectral density values. An array of power spectral density values.
points : list point : float
A list of harmonic frequencies to evaluate. The harmonic frequency for which to find the nearest peak.
delta : float peak_search_range : float, optional
Half-width of the range for integration around the point. Range in Hz to search for peaks around the specified point. The default is 30.
threshold : float threshold : float, optional
Threshold value to compare integrals with local mean. Minimum height of peaks to consider. If None, no threshold is applied.
Returns Returns
------- -------
exceeding_points : list peak_freq : float
A list of points where the integral exceeds the local mean by the threshold. The frequency of the nearest peak within the specified range, or the input point if no peak is found.
""" """
exceeding_points = [] # Define the range for peak searching
search_indices = (freq >= point - peak_search_range) & (freq <= point + peak_search_range)
for point in points: # Find peaks in the specified range
# Calculate the integral and local mean for the current point peaks, properties = find_peaks(power[search_indices], height=threshold)
integral, local_mean = calculate_integral(frequency, power, point, delta)
# Check if the integral exceeds the threshold # Adjust peak indices to match the original frequency array
valid, message = valid_integrals(integral, local_mean, threshold, point) peaks_freq = freq[search_indices][peaks]
if valid: if peaks_freq.size == 0:
exceeding_points.append(point) # No peaks detected, return the input point
return point
# Find the nearest peak to the specified point
nearest_peak_index = np.argmin(np.abs(peaks_freq - point))
peak_freq = peaks_freq[nearest_peak_index]
return peak_freq
return exceeding_points
def firing_rate(binary_spikes, dt = 0.000025, box_width = 0.01): def firing_rate(binary_spikes, dt = 0.000025, box_width = 0.01):
''' '''

BIN
protocol_movies/movie_1.mp4 Normal file

Binary file not shown.

BIN
protocol_movies/movie_2.mp4 Normal file

Binary file not shown.

BIN
protocol_movies/movie_3.mp4 Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -6,7 +6,7 @@
<rdf:RDF xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:RDF xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<cc:Work> <cc:Work>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<dc:date>2024-10-25T15:19:30.742411</dc:date> <dc:date>2024-10-25T16:35:48.568894</dc:date>
<dc:format>image/svg+xml</dc:format> <dc:format>image/svg+xml</dc:format>
<dc:creator> <dc:creator>
<cc:Agent> <cc:Agent>
@@ -30,8 +30,8 @@ z
</g> </g>
<g id="axes_1"> <g id="axes_1">
<g id="patch_2"> <g id="patch_2">
<path d="M 74.1896 317.72 <path d="M 74.1896 356.6
L 276.3264 317.72 L 276.3264 356.6
L 276.3264 47.04 L 276.3264 47.04
L 74.1896 47.04 L 74.1896 47.04
z z
@@ -41,17 +41,17 @@ z
<g id="xtick_1"> <g id="xtick_1">
<g id="line2d_1"> <g id="line2d_1">
<defs> <defs>
<path id="m490054e862" d="M 0 0 <path id="mf33050c462" d="M 0 0
L 0 3.5 L 0 3.5
" style="stroke: #000000; stroke-width: 0.8"/> " style="stroke: #000000; stroke-width: 0.8"/>
</defs> </defs>
<g> <g>
<use xlink:href="#m490054e862" x="87.752892" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mf33050c462" x="87.752892" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_1"> <g id="text_1">
<!-- 900 --> <!-- 900 -->
<g transform="translate(78.209142 332.318438) scale(0.1 -0.1)"> <g transform="translate(78.209142 371.198438) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-39" d="M 703 97 <path id="DejaVuSans-39" d="M 703 97
L 703 672 L 703 672
@@ -114,12 +114,12 @@ z
<g id="xtick_2"> <g id="xtick_2">
<g id="line2d_2"> <g id="line2d_2">
<g> <g>
<use xlink:href="#m490054e862" x="126.644051" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mf33050c462" x="126.644051" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_2"> <g id="text_2">
<!-- 920 --> <!-- 920 -->
<g transform="translate(117.100301 332.318438) scale(0.1 -0.1)"> <g transform="translate(117.100301 371.198438) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-32" d="M 1228 531 <path id="DejaVuSans-32" d="M 1228 531
L 3431 531 L 3431 531
@@ -155,12 +155,12 @@ z
<g id="xtick_3"> <g id="xtick_3">
<g id="line2d_3"> <g id="line2d_3">
<g> <g>
<use xlink:href="#m490054e862" x="165.53521" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mf33050c462" x="165.53521" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_3"> <g id="text_3">
<!-- 940 --> <!-- 940 -->
<g transform="translate(155.99146 332.318438) scale(0.1 -0.1)"> <g transform="translate(155.99146 371.198438) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-34" d="M 2419 4116 <path id="DejaVuSans-34" d="M 2419 4116
L 825 1625 L 825 1625
@@ -191,12 +191,12 @@ z
<g id="xtick_4"> <g id="xtick_4">
<g id="line2d_4"> <g id="line2d_4">
<g> <g>
<use xlink:href="#m490054e862" x="204.426369" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mf33050c462" x="204.426369" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_4"> <g id="text_4">
<!-- 960 --> <!-- 960 -->
<g transform="translate(194.882619 332.318438) scale(0.1 -0.1)"> <g transform="translate(194.882619 371.198438) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-36" d="M 2113 2584 <path id="DejaVuSans-36" d="M 2113 2584
Q 1688 2584 1439 2293 Q 1688 2584 1439 2293
@@ -238,12 +238,12 @@ z
<g id="xtick_5"> <g id="xtick_5">
<g id="line2d_5"> <g id="line2d_5">
<g> <g>
<use xlink:href="#m490054e862" x="243.317529" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mf33050c462" x="243.317529" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_5"> <g id="text_5">
<!-- 980 --> <!-- 980 -->
<g transform="translate(233.773779 332.318438) scale(0.1 -0.1)"> <g transform="translate(233.773779 371.198438) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-38" d="M 2034 2216 <path id="DejaVuSans-38" d="M 2034 2216
Q 1584 2216 1326 1975 Q 1584 2216 1326 1975
@@ -296,17 +296,17 @@ z
<g id="ytick_1"> <g id="ytick_1">
<g id="line2d_6"> <g id="line2d_6">
<defs> <defs>
<path id="m568727e189" d="M 0 0 <path id="m81b582117b" d="M 0 0
L -3.5 0 L -3.5 0
" style="stroke: #000000; stroke-width: 0.8"/> " style="stroke: #000000; stroke-width: 0.8"/>
</defs> </defs>
<g> <g>
<use xlink:href="#m568727e189" x="74.1896" y="280.809091" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m81b582117b" x="74.1896" y="314.387273" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_6"> <g id="text_6">
<!-- 0.04 --> <!-- 0.04 -->
<g transform="translate(36.544288 284.60831) scale(0.1 -0.1)"> <g transform="translate(36.544288 318.186491) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-2212" d="M 678 2272 <path id="DejaVuSans-2212" d="M 678 2272
L 4684 2272 L 4684 2272
@@ -334,12 +334,12 @@ z
<g id="ytick_2"> <g id="ytick_2">
<g id="line2d_7"> <g id="line2d_7">
<g> <g>
<use xlink:href="#m568727e189" x="74.1896" y="231.594545" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m81b582117b" x="74.1896" y="258.103636" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_7"> <g id="text_7">
<!-- 0.02 --> <!-- 0.02 -->
<g transform="translate(36.544288 235.393764) scale(0.1 -0.1)"> <g transform="translate(36.544288 261.902855) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-2212"/> <use xlink:href="#DejaVuSans-2212"/>
<use xlink:href="#DejaVuSans-30" x="83.789062"/> <use xlink:href="#DejaVuSans-30" x="83.789062"/>
<use xlink:href="#DejaVuSans-2e" x="147.412109"/> <use xlink:href="#DejaVuSans-2e" x="147.412109"/>
@@ -351,12 +351,12 @@ z
<g id="ytick_3"> <g id="ytick_3">
<g id="line2d_8"> <g id="line2d_8">
<g> <g>
<use xlink:href="#m568727e189" x="74.1896" y="182.38" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m81b582117b" x="74.1896" y="201.82" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_8"> <g id="text_8">
<!-- 0.00 --> <!-- 0.00 -->
<g transform="translate(44.923975 186.179219) scale(0.1 -0.1)"> <g transform="translate(44.923975 205.619219) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-30"/> <use xlink:href="#DejaVuSans-30"/>
<use xlink:href="#DejaVuSans-2e" x="63.623047"/> <use xlink:href="#DejaVuSans-2e" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="95.410156"/> <use xlink:href="#DejaVuSans-30" x="95.410156"/>
@@ -367,12 +367,12 @@ z
<g id="ytick_4"> <g id="ytick_4">
<g id="line2d_9"> <g id="line2d_9">
<g> <g>
<use xlink:href="#m568727e189" x="74.1896" y="133.165455" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m81b582117b" x="74.1896" y="145.536364" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_9"> <g id="text_9">
<!-- 0.02 --> <!-- 0.02 -->
<g transform="translate(44.923975 136.964673) scale(0.1 -0.1)"> <g transform="translate(44.923975 149.335582) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-30"/> <use xlink:href="#DejaVuSans-30"/>
<use xlink:href="#DejaVuSans-2e" x="63.623047"/> <use xlink:href="#DejaVuSans-2e" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="95.410156"/> <use xlink:href="#DejaVuSans-30" x="95.410156"/>
@@ -383,12 +383,12 @@ z
<g id="ytick_5"> <g id="ytick_5">
<g id="line2d_10"> <g id="line2d_10">
<g> <g>
<use xlink:href="#m568727e189" x="74.1896" y="83.950909" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m81b582117b" x="74.1896" y="89.252727" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_10"> <g id="text_10">
<!-- 0.04 --> <!-- 0.04 -->
<g transform="translate(44.923975 87.750128) scale(0.1 -0.1)"> <g transform="translate(44.923975 93.051946) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-30"/> <use xlink:href="#DejaVuSans-30"/>
<use xlink:href="#DejaVuSans-2e" x="63.623047"/> <use xlink:href="#DejaVuSans-2e" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="95.410156"/> <use xlink:href="#DejaVuSans-30" x="95.410156"/>
@@ -398,7 +398,7 @@ z
</g> </g>
<g id="text_11"> <g id="text_11">
<!-- power [$\frac{\mathrm{mV^2}}{\mathrm{Hz}}$] --> <!-- power [$\frac{\mathrm{mV^2}}{\mathrm{Hz}}$] -->
<g transform="translate(27.864288 217.3) rotate(-90) scale(0.12 -0.12)"> <g transform="translate(27.864288 236.74) rotate(-90) scale(0.12 -0.12)">
<defs> <defs>
<path id="DejaVuSans-70" d="M 1159 525 <path id="DejaVuSans-70" d="M 1159 525
L 1159 -1331 L 1159 -1331
@@ -622,26 +622,26 @@ z
</g> </g>
<g id="line2d_11"/> <g id="line2d_11"/>
<g id="line2d_12"> <g id="line2d_12">
<path d="M 175.258 317.72 <path d="M 175.258 356.6
L 175.258 47.04 L 175.258 47.04
" clip-path="url(#pd89d12929d)" style="fill: none; stroke-dasharray: 5.55,2.4; stroke-dashoffset: 0; stroke: #000000; stroke-width: 1.5"/> " clip-path="url(#pc7a3e8435c)" style="fill: none; stroke-dasharray: 5.55,2.4; stroke-dashoffset: 0; stroke: #000000; stroke-width: 1.5"/>
</g> </g>
<g id="line2d_13"> <g id="line2d_13">
<path clip-path="url(#pd89d12929d)" style="fill: none; stroke-dasharray: 1.5,2.475; stroke-dashoffset: 0; stroke: #00008b; stroke-opacity: 0.8; stroke-width: 1.5"/> <path clip-path="url(#pc7a3e8435c)" style="fill: none; stroke-dasharray: 1.5,2.475; stroke-dashoffset: 0; stroke: #00008b; stroke-opacity: 0.8; stroke-width: 1.5"/>
</g> </g>
<g id="patch_3"> <g id="patch_3">
<path d="M 74.1896 317.72 <path d="M 74.1896 356.6
L 74.1896 47.04 L 74.1896 47.04
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_4"> <g id="patch_4">
<path d="M 276.3264 317.72 <path d="M 276.3264 356.6
L 276.3264 47.04 L 276.3264 47.04
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_5"> <g id="patch_5">
<path d="M 74.1896 317.72 <path d="M 74.1896 356.6
L 276.3264 317.72 L 276.3264 356.6
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_6"> <g id="patch_6">
@@ -659,8 +659,8 @@ L 276.3264 47.04
</g> </g>
<g id="axes_2"> <g id="axes_2">
<g id="patch_7"> <g id="patch_7">
<path d="M 290.6264 317.72 <path d="M 290.6264 356.6
L 492.7632 317.72 L 492.7632 356.6
L 492.7632 47.04 L 492.7632 47.04
L 290.6264 47.04 L 290.6264 47.04
z z
@@ -670,12 +670,12 @@ z
<g id="xtick_6"> <g id="xtick_6">
<g id="line2d_14"> <g id="line2d_14">
<g> <g>
<use xlink:href="#m490054e862" x="304.189692" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mf33050c462" x="304.189692" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_13"> <g id="text_13">
<!-- 900 --> <!-- 900 -->
<g transform="translate(294.645942 332.318438) scale(0.1 -0.1)"> <g transform="translate(294.645942 371.198438) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-39"/> <use xlink:href="#DejaVuSans-39"/>
<use xlink:href="#DejaVuSans-30" x="63.623047"/> <use xlink:href="#DejaVuSans-30" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/> <use xlink:href="#DejaVuSans-30" x="127.246094"/>
@@ -685,12 +685,12 @@ z
<g id="xtick_7"> <g id="xtick_7">
<g id="line2d_15"> <g id="line2d_15">
<g> <g>
<use xlink:href="#m490054e862" x="343.080851" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mf33050c462" x="343.080851" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_14"> <g id="text_14">
<!-- 920 --> <!-- 920 -->
<g transform="translate(333.537101 332.318438) scale(0.1 -0.1)"> <g transform="translate(333.537101 371.198438) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-39"/> <use xlink:href="#DejaVuSans-39"/>
<use xlink:href="#DejaVuSans-32" x="63.623047"/> <use xlink:href="#DejaVuSans-32" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/> <use xlink:href="#DejaVuSans-30" x="127.246094"/>
@@ -700,12 +700,12 @@ z
<g id="xtick_8"> <g id="xtick_8">
<g id="line2d_16"> <g id="line2d_16">
<g> <g>
<use xlink:href="#m490054e862" x="381.97201" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mf33050c462" x="381.97201" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_15"> <g id="text_15">
<!-- 940 --> <!-- 940 -->
<g transform="translate(372.42826 332.318438) scale(0.1 -0.1)"> <g transform="translate(372.42826 371.198438) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-39"/> <use xlink:href="#DejaVuSans-39"/>
<use xlink:href="#DejaVuSans-34" x="63.623047"/> <use xlink:href="#DejaVuSans-34" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/> <use xlink:href="#DejaVuSans-30" x="127.246094"/>
@@ -715,12 +715,12 @@ z
<g id="xtick_9"> <g id="xtick_9">
<g id="line2d_17"> <g id="line2d_17">
<g> <g>
<use xlink:href="#m490054e862" x="420.863169" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mf33050c462" x="420.863169" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_16"> <g id="text_16">
<!-- 960 --> <!-- 960 -->
<g transform="translate(411.319419 332.318438) scale(0.1 -0.1)"> <g transform="translate(411.319419 371.198438) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-39"/> <use xlink:href="#DejaVuSans-39"/>
<use xlink:href="#DejaVuSans-36" x="63.623047"/> <use xlink:href="#DejaVuSans-36" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/> <use xlink:href="#DejaVuSans-30" x="127.246094"/>
@@ -730,12 +730,12 @@ z
<g id="xtick_10"> <g id="xtick_10">
<g id="line2d_18"> <g id="line2d_18">
<g> <g>
<use xlink:href="#m490054e862" x="459.754329" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mf33050c462" x="459.754329" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_17"> <g id="text_17">
<!-- 980 --> <!-- 980 -->
<g transform="translate(450.210579 332.318438) scale(0.1 -0.1)"> <g transform="translate(450.210579 371.198438) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-39"/> <use xlink:href="#DejaVuSans-39"/>
<use xlink:href="#DejaVuSans-38" x="63.623047"/> <use xlink:href="#DejaVuSans-38" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/> <use xlink:href="#DejaVuSans-30" x="127.246094"/>
@@ -747,61 +747,61 @@ z
<g id="ytick_6"> <g id="ytick_6">
<g id="line2d_19"> <g id="line2d_19">
<g> <g>
<use xlink:href="#m568727e189" x="290.6264" y="280.809091" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m81b582117b" x="290.6264" y="314.387273" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
<g id="ytick_7"> <g id="ytick_7">
<g id="line2d_20"> <g id="line2d_20">
<g> <g>
<use xlink:href="#m568727e189" x="290.6264" y="231.594545" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m81b582117b" x="290.6264" y="258.103636" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
<g id="ytick_8"> <g id="ytick_8">
<g id="line2d_21"> <g id="line2d_21">
<g> <g>
<use xlink:href="#m568727e189" x="290.6264" y="182.38" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m81b582117b" x="290.6264" y="201.82" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
<g id="ytick_9"> <g id="ytick_9">
<g id="line2d_22"> <g id="line2d_22">
<g> <g>
<use xlink:href="#m568727e189" x="290.6264" y="133.165455" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m81b582117b" x="290.6264" y="145.536364" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
<g id="ytick_10"> <g id="ytick_10">
<g id="line2d_23"> <g id="line2d_23">
<g> <g>
<use xlink:href="#m568727e189" x="290.6264" y="83.950909" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m81b582117b" x="290.6264" y="89.252727" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
</g> </g>
<g id="line2d_24"/> <g id="line2d_24"/>
<g id="line2d_25"> <g id="line2d_25">
<path d="M 391.6948 317.72 <path d="M 391.6948 356.6
L 391.6948 47.04 L 391.6948 47.04
" clip-path="url(#p817c85e0a9)" style="fill: none; stroke-dasharray: 5.55,2.4; stroke-dashoffset: 0; stroke: #000000; stroke-width: 1.5"/> " clip-path="url(#p7830e5515d)" style="fill: none; stroke-dasharray: 5.55,2.4; stroke-dashoffset: 0; stroke: #000000; stroke-width: 1.5"/>
</g> </g>
<g id="line2d_26"> <g id="line2d_26">
<path clip-path="url(#p817c85e0a9)" style="fill: none; stroke-dasharray: 1.5,2.475; stroke-dashoffset: 0; stroke: #00008b; stroke-opacity: 0.8; stroke-width: 1.5"/> <path clip-path="url(#p7830e5515d)" style="fill: none; stroke-dasharray: 1.5,2.475; stroke-dashoffset: 0; stroke: #00008b; stroke-opacity: 0.8; stroke-width: 1.5"/>
</g> </g>
<g id="patch_8"> <g id="patch_8">
<path d="M 290.6264 317.72 <path d="M 290.6264 356.6
L 290.6264 47.04 L 290.6264 47.04
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_9"> <g id="patch_9">
<path d="M 492.7632 317.72 <path d="M 492.7632 356.6
L 492.7632 47.04 L 492.7632 47.04
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_10"> <g id="patch_10">
<path d="M 290.6264 317.72 <path d="M 290.6264 356.6
L 492.7632 317.72 L 492.7632 356.6
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_11"> <g id="patch_11">
@@ -835,8 +835,8 @@ z
</g> </g>
<g id="axes_3"> <g id="axes_3">
<g id="patch_12"> <g id="patch_12">
<path d="M 507.0632 317.72 <path d="M 507.0632 356.6
L 709.2 317.72 L 709.2 356.6
L 709.2 47.04 L 709.2 47.04
L 507.0632 47.04 L 507.0632 47.04
z z
@@ -846,12 +846,12 @@ z
<g id="xtick_11"> <g id="xtick_11">
<g id="line2d_27"> <g id="line2d_27">
<g> <g>
<use xlink:href="#m490054e862" x="520.626492" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mf33050c462" x="520.626492" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_19"> <g id="text_19">
<!-- 900 --> <!-- 900 -->
<g transform="translate(511.082742 332.318438) scale(0.1 -0.1)"> <g transform="translate(511.082742 371.198438) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-39"/> <use xlink:href="#DejaVuSans-39"/>
<use xlink:href="#DejaVuSans-30" x="63.623047"/> <use xlink:href="#DejaVuSans-30" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/> <use xlink:href="#DejaVuSans-30" x="127.246094"/>
@@ -861,12 +861,12 @@ z
<g id="xtick_12"> <g id="xtick_12">
<g id="line2d_28"> <g id="line2d_28">
<g> <g>
<use xlink:href="#m490054e862" x="559.517651" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mf33050c462" x="559.517651" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_20"> <g id="text_20">
<!-- 920 --> <!-- 920 -->
<g transform="translate(549.973901 332.318438) scale(0.1 -0.1)"> <g transform="translate(549.973901 371.198438) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-39"/> <use xlink:href="#DejaVuSans-39"/>
<use xlink:href="#DejaVuSans-32" x="63.623047"/> <use xlink:href="#DejaVuSans-32" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/> <use xlink:href="#DejaVuSans-30" x="127.246094"/>
@@ -876,12 +876,12 @@ z
<g id="xtick_13"> <g id="xtick_13">
<g id="line2d_29"> <g id="line2d_29">
<g> <g>
<use xlink:href="#m490054e862" x="598.40881" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mf33050c462" x="598.40881" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_21"> <g id="text_21">
<!-- 940 --> <!-- 940 -->
<g transform="translate(588.86506 332.318438) scale(0.1 -0.1)"> <g transform="translate(588.86506 371.198438) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-39"/> <use xlink:href="#DejaVuSans-39"/>
<use xlink:href="#DejaVuSans-34" x="63.623047"/> <use xlink:href="#DejaVuSans-34" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/> <use xlink:href="#DejaVuSans-30" x="127.246094"/>
@@ -891,12 +891,12 @@ z
<g id="xtick_14"> <g id="xtick_14">
<g id="line2d_30"> <g id="line2d_30">
<g> <g>
<use xlink:href="#m490054e862" x="637.299969" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mf33050c462" x="637.299969" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_22"> <g id="text_22">
<!-- 960 --> <!-- 960 -->
<g transform="translate(627.756219 332.318438) scale(0.1 -0.1)"> <g transform="translate(627.756219 371.198438) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-39"/> <use xlink:href="#DejaVuSans-39"/>
<use xlink:href="#DejaVuSans-36" x="63.623047"/> <use xlink:href="#DejaVuSans-36" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/> <use xlink:href="#DejaVuSans-30" x="127.246094"/>
@@ -906,12 +906,12 @@ z
<g id="xtick_15"> <g id="xtick_15">
<g id="line2d_31"> <g id="line2d_31">
<g> <g>
<use xlink:href="#m490054e862" x="676.191129" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mf33050c462" x="676.191129" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_23"> <g id="text_23">
<!-- 980 --> <!-- 980 -->
<g transform="translate(666.647379 332.318438) scale(0.1 -0.1)"> <g transform="translate(666.647379 371.198438) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-39"/> <use xlink:href="#DejaVuSans-39"/>
<use xlink:href="#DejaVuSans-38" x="63.623047"/> <use xlink:href="#DejaVuSans-38" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/> <use xlink:href="#DejaVuSans-30" x="127.246094"/>
@@ -923,61 +923,61 @@ z
<g id="ytick_11"> <g id="ytick_11">
<g id="line2d_32"> <g id="line2d_32">
<g> <g>
<use xlink:href="#m568727e189" x="507.0632" y="280.809091" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m81b582117b" x="507.0632" y="314.387273" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
<g id="ytick_12"> <g id="ytick_12">
<g id="line2d_33"> <g id="line2d_33">
<g> <g>
<use xlink:href="#m568727e189" x="507.0632" y="231.594545" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m81b582117b" x="507.0632" y="258.103636" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
<g id="ytick_13"> <g id="ytick_13">
<g id="line2d_34"> <g id="line2d_34">
<g> <g>
<use xlink:href="#m568727e189" x="507.0632" y="182.38" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m81b582117b" x="507.0632" y="201.82" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
<g id="ytick_14"> <g id="ytick_14">
<g id="line2d_35"> <g id="line2d_35">
<g> <g>
<use xlink:href="#m568727e189" x="507.0632" y="133.165455" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m81b582117b" x="507.0632" y="145.536364" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
<g id="ytick_15"> <g id="ytick_15">
<g id="line2d_36"> <g id="line2d_36">
<g> <g>
<use xlink:href="#m568727e189" x="507.0632" y="83.950909" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m81b582117b" x="507.0632" y="89.252727" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
</g> </g>
<g id="line2d_37"/> <g id="line2d_37"/>
<g id="line2d_38"> <g id="line2d_38">
<path d="M 608.1316 317.72 <path d="M 608.1316 356.6
L 608.1316 47.04 L 608.1316 47.04
" clip-path="url(#p6794961674)" style="fill: none; stroke-dasharray: 5.55,2.4; stroke-dashoffset: 0; stroke: #000000; stroke-width: 1.5"/> " clip-path="url(#p7eb3cc825f)" style="fill: none; stroke-dasharray: 5.55,2.4; stroke-dashoffset: 0; stroke: #000000; stroke-width: 1.5"/>
</g> </g>
<g id="line2d_39"> <g id="line2d_39">
<path clip-path="url(#p6794961674)" style="fill: none; stroke-dasharray: 1.5,2.475; stroke-dashoffset: 0; stroke: #00008b; stroke-opacity: 0.8; stroke-width: 1.5"/> <path clip-path="url(#p7eb3cc825f)" style="fill: none; stroke-dasharray: 1.5,2.475; stroke-dashoffset: 0; stroke: #00008b; stroke-opacity: 0.8; stroke-width: 1.5"/>
</g> </g>
<g id="patch_13"> <g id="patch_13">
<path d="M 507.0632 317.72 <path d="M 507.0632 356.6
L 507.0632 47.04 L 507.0632 47.04
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_14"> <g id="patch_14">
<path d="M 709.2 317.72 <path d="M 709.2 356.6
L 709.2 47.04 L 709.2 47.04
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_15"> <g id="patch_15">
<path d="M 507.0632 317.72 <path d="M 507.0632 356.6
L 709.2 317.72 L 709.2 356.6
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_16"> <g id="patch_16">
@@ -1354,27 +1354,27 @@ z
</g> </g>
<g id="legend_1"> <g id="legend_1">
<g id="patch_17"> <g id="patch_17">
<path d="M 117.271094 427 <path d="M 117.271094 405.4
L 602.728906 427 L 602.728906 405.4
Q 604.728906 427 604.728906 425 Q 604.728906 405.4 604.728906 403.4
L 604.728906 411.321875 L 604.728906 389.721875
Q 604.728906 409.321875 602.728906 409.321875 Q 604.728906 387.721875 602.728906 387.721875
L 117.271094 409.321875 L 117.271094 387.721875
Q 115.271094 409.321875 115.271094 411.321875 Q 115.271094 387.721875 115.271094 389.721875
L 115.271094 425 L 115.271094 403.4
Q 115.271094 427 117.271094 427 Q 115.271094 405.4 117.271094 405.4
z z
" style="fill: #ffffff; opacity: 0.8; stroke: #cccccc; stroke-linejoin: miter"/> " style="fill: #ffffff; opacity: 0.8; stroke: #cccccc; stroke-linejoin: miter"/>
</g> </g>
<g id="line2d_40"> <g id="line2d_40">
<path d="M 119.271094 417.420313 <path d="M 119.271094 395.820312
L 129.271094 417.420313 L 129.271094 395.820312
L 139.271094 417.420313 L 139.271094 395.820312
" style="fill: none; stroke: #1f77b4; stroke-width: 1.5; stroke-linecap: square"/> " style="fill: none; stroke: #1f77b4; stroke-width: 1.5; stroke-linecap: square"/>
</g> </g>
<g id="text_27"> <g id="text_27">
<!-- power of stimulus peak --> <!-- power of stimulus peak -->
<g transform="translate(147.271094 420.920313) scale(0.1 -0.1)"> <g transform="translate(147.271094 399.320312) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-6b" d="M 581 4863 <path id="DejaVuSans-6b" d="M 581 4863
L 1159 4863 L 1159 4863
@@ -1416,14 +1416,14 @@ z
</g> </g>
</g> </g>
<g id="line2d_41"> <g id="line2d_41">
<path d="M 284.085156 417.420313 <path d="M 284.085156 395.820312
L 294.085156 417.420313 L 294.085156 395.820312
L 304.085156 417.420313 L 304.085156 395.820312
" style="fill: none; stroke-dasharray: 5.55,2.4; stroke-dashoffset: 0; stroke: #000000; stroke-width: 1.5"/> " style="fill: none; stroke-dasharray: 5.55,2.4; stroke-dashoffset: 0; stroke: #000000; stroke-width: 1.5"/>
</g> </g>
<g id="text_28"> <g id="text_28">
<!-- EODf of awake fish --> <!-- EODf of awake fish -->
<g transform="translate(312.085156 420.920313) scale(0.1 -0.1)"> <g transform="translate(312.085156 399.320312) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-45" d="M 628 4666 <path id="DejaVuSans-45" d="M 628 4666
L 3578 4666 L 3578 4666
@@ -1521,14 +1521,14 @@ z
</g> </g>
</g> </g>
<g id="line2d_42"> <g id="line2d_42">
<path d="M 426.530469 417.420313 <path d="M 426.530469 395.820312
L 436.530469 417.420313 L 436.530469 395.820312
L 446.530469 417.420313 L 446.530469 395.820312
" style="fill: none; stroke-dasharray: 1.5,2.475; stroke-dashoffset: 0; stroke: #00008b; stroke-opacity: 0.8; stroke-width: 1.5"/> " style="fill: none; stroke-dasharray: 1.5,2.475; stroke-dashoffset: 0; stroke: #00008b; stroke-opacity: 0.8; stroke-width: 1.5"/>
</g> </g>
<g id="text_29"> <g id="text_29">
<!-- 1st harmonic of current EODf --> <!-- 1st harmonic of current EODf -->
<g transform="translate(454.530469 420.920313) scale(0.1 -0.1)"> <g transform="translate(454.530469 399.320312) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-31"/> <use xlink:href="#DejaVuSans-31"/>
<use xlink:href="#DejaVuSans-73" x="63.623047"/> <use xlink:href="#DejaVuSans-73" x="63.623047"/>
<use xlink:href="#DejaVuSans-74" x="115.722656"/> <use xlink:href="#DejaVuSans-74" x="115.722656"/>
@@ -1562,14 +1562,14 @@ L 446.530469 417.420313
</g> </g>
</g> </g>
<defs> <defs>
<clipPath id="pd89d12929d"> <clipPath id="pc7a3e8435c">
<rect x="74.1896" y="47.04" width="202.1368" height="270.68"/> <rect x="74.1896" y="47.04" width="202.1368" height="309.56"/>
</clipPath> </clipPath>
<clipPath id="p817c85e0a9"> <clipPath id="p7830e5515d">
<rect x="290.6264" y="47.04" width="202.1368" height="270.68"/> <rect x="290.6264" y="47.04" width="202.1368" height="309.56"/>
</clipPath> </clipPath>
<clipPath id="p6794961674"> <clipPath id="p7eb3cc825f">
<rect x="507.0632" y="47.04" width="202.1368" height="270.68"/> <rect x="507.0632" y="47.04" width="202.1368" height="309.56"/>
</clipPath> </clipPath>
</defs> </defs>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 42 KiB

After

Width:  |  Height:  |  Size: 42 KiB

View File

@@ -6,7 +6,7 @@
<rdf:RDF xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:RDF xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<cc:Work> <cc:Work>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<dc:date>2024-10-25T15:19:47.823554</dc:date> <dc:date>2024-10-25T16:36:04.240474</dc:date>
<dc:format>image/svg+xml</dc:format> <dc:format>image/svg+xml</dc:format>
<dc:creator> <dc:creator>
<cc:Agent> <cc:Agent>
@@ -30,8 +30,8 @@ z
</g> </g>
<g id="axes_1"> <g id="axes_1">
<g id="patch_2"> <g id="patch_2">
<path d="M 49.8896 317.72 <path d="M 49.8896 356.6
L 257.350161 317.72 L 257.350161 356.6
L 257.350161 47.04 L 257.350161 47.04
L 49.8896 47.04 L 49.8896 47.04
z z
@@ -41,17 +41,17 @@ z
<g id="xtick_1"> <g id="xtick_1">
<g id="line2d_1"> <g id="line2d_1">
<defs> <defs>
<path id="mb0dc4d9ad7" d="M 0 0 <path id="m83ea8634f5" d="M 0 0
L 0 3.5 L 0 3.5
" style="stroke: #000000; stroke-width: 0.8"/> " style="stroke: #000000; stroke-width: 0.8"/>
</defs> </defs>
<g> <g>
<use xlink:href="#mb0dc4d9ad7" x="83.919692" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m83ea8634f5" x="83.919692" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_1"> <g id="text_1">
<!-- 500 --> <!-- 500 -->
<g transform="translate(74.375942 332.318438) scale(0.1 -0.1)"> <g transform="translate(74.375942 371.198438) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-35" d="M 691 4666 <path id="DejaVuSans-35" d="M 691 4666
L 3169 4666 L 3169 4666
@@ -109,12 +109,12 @@ z
<g id="xtick_2"> <g id="xtick_2">
<g id="line2d_2"> <g id="line2d_2">
<g> <g>
<use xlink:href="#mb0dc4d9ad7" x="124.115879" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m83ea8634f5" x="124.115879" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_2"> <g id="text_2">
<!-- 750 --> <!-- 750 -->
<g transform="translate(114.572129 332.318438) scale(0.1 -0.1)"> <g transform="translate(114.572129 371.198438) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-37" d="M 525 4666 <path id="DejaVuSans-37" d="M 525 4666
L 3525 4666 L 3525 4666
@@ -136,12 +136,12 @@ z
<g id="xtick_3"> <g id="xtick_3">
<g id="line2d_3"> <g id="line2d_3">
<g> <g>
<use xlink:href="#mb0dc4d9ad7" x="164.312066" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m83ea8634f5" x="164.312066" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_3"> <g id="text_3">
<!-- 1000 --> <!-- 1000 -->
<g transform="translate(151.587066 332.318438) scale(0.1 -0.1)"> <g transform="translate(151.587066 371.198438) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-31" d="M 794 531 <path id="DejaVuSans-31" d="M 794 531
L 1825 531 L 1825 531
@@ -168,12 +168,12 @@ z
<g id="xtick_4"> <g id="xtick_4">
<g id="line2d_4"> <g id="line2d_4">
<g> <g>
<use xlink:href="#mb0dc4d9ad7" x="204.508253" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m83ea8634f5" x="204.508253" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_4"> <g id="text_4">
<!-- 1250 --> <!-- 1250 -->
<g transform="translate(191.783253 332.318438) scale(0.1 -0.1)"> <g transform="translate(191.783253 371.198438) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-32" d="M 1228 531 <path id="DejaVuSans-32" d="M 1228 531
L 3431 531 L 3431 531
@@ -210,12 +210,12 @@ z
<g id="xtick_5"> <g id="xtick_5">
<g id="line2d_5"> <g id="line2d_5">
<g> <g>
<use xlink:href="#mb0dc4d9ad7" x="244.704441" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m83ea8634f5" x="244.704441" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_5"> <g id="text_5">
<!-- 1500 --> <!-- 1500 -->
<g transform="translate(231.979441 332.318438) scale(0.1 -0.1)"> <g transform="translate(231.979441 371.198438) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-31"/> <use xlink:href="#DejaVuSans-31"/>
<use xlink:href="#DejaVuSans-35" x="63.623047"/> <use xlink:href="#DejaVuSans-35" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/> <use xlink:href="#DejaVuSans-30" x="127.246094"/>
@@ -228,17 +228,17 @@ z
<g id="ytick_1"> <g id="ytick_1">
<g id="line2d_6"> <g id="line2d_6">
<defs> <defs>
<path id="m4be76cfd17" d="M 0 0 <path id="m7feb10dc94" d="M 0 0
L -3.5 0 L -3.5 0
" style="stroke: #000000; stroke-width: 0.8"/> " style="stroke: #000000; stroke-width: 0.8"/>
</defs> </defs>
<g> <g>
<use xlink:href="#m4be76cfd17" x="49.8896" y="306.243894" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m7feb10dc94" x="49.8896" y="343.475486" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_6"> <g id="text_6">
<!-- 0 --> <!-- 0 -->
<g transform="translate(36.5271 310.043113) scale(0.1 -0.1)"> <g transform="translate(36.5271 347.274705) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-30"/> <use xlink:href="#DejaVuSans-30"/>
</g> </g>
</g> </g>
@@ -246,12 +246,12 @@ L -3.5 0
<g id="ytick_2"> <g id="ytick_2">
<g id="line2d_7"> <g id="line2d_7">
<g> <g>
<use xlink:href="#m4be76cfd17" x="49.8896" y="246.852409" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m7feb10dc94" x="49.8896" y="275.553112" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_7"> <g id="text_7">
<!-- 1 --> <!-- 1 -->
<g transform="translate(36.5271 250.651627) scale(0.1 -0.1)"> <g transform="translate(36.5271 279.352331) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-31"/> <use xlink:href="#DejaVuSans-31"/>
</g> </g>
</g> </g>
@@ -259,12 +259,12 @@ L -3.5 0
<g id="ytick_3"> <g id="ytick_3">
<g id="line2d_8"> <g id="line2d_8">
<g> <g>
<use xlink:href="#m4be76cfd17" x="49.8896" y="187.460923" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m7feb10dc94" x="49.8896" y="207.630738" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_8"> <g id="text_8">
<!-- 2 --> <!-- 2 -->
<g transform="translate(36.5271 191.260142) scale(0.1 -0.1)"> <g transform="translate(36.5271 211.429957) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-32"/> <use xlink:href="#DejaVuSans-32"/>
</g> </g>
</g> </g>
@@ -272,12 +272,12 @@ L -3.5 0
<g id="ytick_4"> <g id="ytick_4">
<g id="line2d_9"> <g id="line2d_9">
<g> <g>
<use xlink:href="#m4be76cfd17" x="49.8896" y="128.069438" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m7feb10dc94" x="49.8896" y="139.708364" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_9"> <g id="text_9">
<!-- 3 --> <!-- 3 -->
<g transform="translate(36.5271 131.868656) scale(0.1 -0.1)"> <g transform="translate(36.5271 143.507582) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-33" d="M 2597 2516 <path id="DejaVuSans-33" d="M 2597 2516
Q 3050 2419 3304 2112 Q 3050 2419 3304 2112
@@ -319,12 +319,12 @@ z
<g id="ytick_5"> <g id="ytick_5">
<g id="line2d_10"> <g id="line2d_10">
<g> <g>
<use xlink:href="#m4be76cfd17" x="49.8896" y="68.677952" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m7feb10dc94" x="49.8896" y="71.785989" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_10"> <g id="text_10">
<!-- 4 --> <!-- 4 -->
<g transform="translate(36.5271 72.477171) scale(0.1 -0.1)"> <g transform="translate(36.5271 75.585208) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-34" d="M 2419 4116 <path id="DejaVuSans-34" d="M 2419 4116
L 825 1625 L 825 1625
@@ -352,7 +352,7 @@ z
</g> </g>
<g id="text_11"> <g id="text_11">
<!-- power [$\frac{\mathrm{mV^2}}{\mathrm{Hz}}$] --> <!-- power [$\frac{\mathrm{mV^2}}{\mathrm{Hz}}$] -->
<g transform="translate(27.8471 217.3) rotate(-90) scale(0.12 -0.12)"> <g transform="translate(27.8471 236.74) rotate(-90) scale(0.12 -0.12)">
<defs> <defs>
<path id="DejaVuSans-70" d="M 1159 525 <path id="DejaVuSans-70" d="M 1159 525
L 1159 -1331 L 1159 -1331
@@ -593,63 +593,63 @@ z
</g> </g>
</g> </g>
<g id="line2d_11"> <g id="line2d_11">
<path d="M 59.319626 298.36433 <path d="M 59.319626 334.464116
L 63.339244 303.001108 L 63.339244 339.766912
L 67.358863 288.545168 L 67.358863 323.234547
L 71.378482 293.947246 L 71.378482 329.41257
L 75.3981 278.077468 L 75.3981 311.263284
L 79.417719 224.533967 L 79.417719 250.028889
L 83.437338 227.668383 L 83.437338 253.613527
L 87.456957 208.771747 L 87.456957 232.002611
L 91.476575 202.18406 L 91.476575 224.46868
L 95.496194 189.195309 L 95.496194 209.614248
L 99.515813 224.10178 L 99.515813 249.534623
L 103.535431 217.132113 L 103.535431 241.563846
L 107.715835 239.046025 L 107.715835 266.625434
L 111.735454 283.393239 L 111.735454 317.342603
L 115.755072 235.057738 L 115.755072 262.064276
L 119.774691 216.87041 L 119.774691 241.264553
L 123.79431 198.487461 L 123.79431 220.241109
L 127.813928 132.179072 L 127.813928 144.408299
L 131.833547 59.343636 L 131.833547 61.110909
L 135.853166 166.308746 L 135.853166 183.4403
L 139.872785 215.169087 L 139.872785 239.318854
L 143.892403 189.474516 L 143.892403 209.93356
L 147.912022 218.531452 L 147.912022 243.164183
L 151.931641 226.868991 L 151.931641 252.699312
L 155.951259 223.943966 L 155.951259 249.354141
L 159.970878 247.177905 L 159.970878 275.925362
L 163.990497 279.716861 L 163.990497 313.138157
L 168.010116 272.885184 L 168.010116 305.32519
L 172.029734 283.874048 L 172.029734 317.892475
L 176.049353 293.896728 L 176.049353 329.354795
L 180.068972 273.727109 L 180.068972 306.288048
L 184.08859 232.855074 L 184.08859 259.545225
" clip-path="url(#p3e74e39ae1)" style="fill: none; stroke: #1f77b4; stroke-width: 1.5; stroke-linecap: square"/> " clip-path="url(#p94eab1ecbc)" style="fill: none; stroke: #1f77b4; stroke-width: 1.5; stroke-linecap: square"/>
</g> </g>
<g id="line2d_12"> <g id="line2d_12">
<path d="M 155.468905 317.72 <path d="M 155.468905 356.6
L 155.468905 47.04 L 155.468905 47.04
" clip-path="url(#p3e74e39ae1)" style="fill: none; stroke-dasharray: 5.55,2.4; stroke-dashoffset: 0; stroke: #000000; stroke-width: 1.5"/> " clip-path="url(#p94eab1ecbc)" style="fill: none; stroke-dasharray: 5.55,2.4; stroke-dashoffset: 0; stroke: #000000; stroke-width: 1.5"/>
</g> </g>
<g id="line2d_13"> <g id="line2d_13">
<path d="M 107.100833 317.72 <path d="M 107.100833 356.6
L 107.100833 47.04 L 107.100833 47.04
" clip-path="url(#p3e74e39ae1)" style="fill: none; stroke-dasharray: 1.5,2.475; stroke-dashoffset: 0; stroke: #00008b; stroke-opacity: 0.8; stroke-width: 1.5"/> " clip-path="url(#p94eab1ecbc)" style="fill: none; stroke-dasharray: 1.5,2.475; stroke-dashoffset: 0; stroke: #00008b; stroke-opacity: 0.8; stroke-width: 1.5"/>
</g> </g>
<g id="patch_3"> <g id="patch_3">
<path d="M 49.8896 317.72 <path d="M 49.8896 356.6
L 49.8896 47.04 L 49.8896 47.04
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_4"> <g id="patch_4">
<path d="M 257.350161 317.72 <path d="M 257.350161 356.6
L 257.350161 47.04 L 257.350161 47.04
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_5"> <g id="patch_5">
<path d="M 49.8896 317.72 <path d="M 49.8896 356.6
L 257.350161 317.72 L 257.350161 356.6
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_6"> <g id="patch_6">
@@ -667,8 +667,8 @@ L 257.350161 47.04
</g> </g>
<g id="axes_2"> <g id="axes_2">
<g id="patch_7"> <g id="patch_7">
<path d="M 274.4264 317.72 <path d="M 274.4264 356.6
L 481.886961 317.72 L 481.886961 356.6
L 481.886961 47.04 L 481.886961 47.04
L 274.4264 47.04 L 274.4264 47.04
z z
@@ -678,12 +678,12 @@ z
<g id="xtick_6"> <g id="xtick_6">
<g id="line2d_14"> <g id="line2d_14">
<g> <g>
<use xlink:href="#mb0dc4d9ad7" x="308.456492" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m83ea8634f5" x="308.456492" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_14"> <g id="text_14">
<!-- 500 --> <!-- 500 -->
<g transform="translate(298.912742 332.318438) scale(0.1 -0.1)"> <g transform="translate(298.912742 371.198438) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-35"/> <use xlink:href="#DejaVuSans-35"/>
<use xlink:href="#DejaVuSans-30" x="63.623047"/> <use xlink:href="#DejaVuSans-30" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/> <use xlink:href="#DejaVuSans-30" x="127.246094"/>
@@ -693,12 +693,12 @@ z
<g id="xtick_7"> <g id="xtick_7">
<g id="line2d_15"> <g id="line2d_15">
<g> <g>
<use xlink:href="#mb0dc4d9ad7" x="348.652679" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m83ea8634f5" x="348.652679" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_15"> <g id="text_15">
<!-- 750 --> <!-- 750 -->
<g transform="translate(339.108929 332.318438) scale(0.1 -0.1)"> <g transform="translate(339.108929 371.198438) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-37"/> <use xlink:href="#DejaVuSans-37"/>
<use xlink:href="#DejaVuSans-35" x="63.623047"/> <use xlink:href="#DejaVuSans-35" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/> <use xlink:href="#DejaVuSans-30" x="127.246094"/>
@@ -708,12 +708,12 @@ z
<g id="xtick_8"> <g id="xtick_8">
<g id="line2d_16"> <g id="line2d_16">
<g> <g>
<use xlink:href="#mb0dc4d9ad7" x="388.848866" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m83ea8634f5" x="388.848866" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_16"> <g id="text_16">
<!-- 1000 --> <!-- 1000 -->
<g transform="translate(376.123866 332.318438) scale(0.1 -0.1)"> <g transform="translate(376.123866 371.198438) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-31"/> <use xlink:href="#DejaVuSans-31"/>
<use xlink:href="#DejaVuSans-30" x="63.623047"/> <use xlink:href="#DejaVuSans-30" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/> <use xlink:href="#DejaVuSans-30" x="127.246094"/>
@@ -724,12 +724,12 @@ z
<g id="xtick_9"> <g id="xtick_9">
<g id="line2d_17"> <g id="line2d_17">
<g> <g>
<use xlink:href="#mb0dc4d9ad7" x="429.045053" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m83ea8634f5" x="429.045053" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_17"> <g id="text_17">
<!-- 1250 --> <!-- 1250 -->
<g transform="translate(416.320053 332.318438) scale(0.1 -0.1)"> <g transform="translate(416.320053 371.198438) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-31"/> <use xlink:href="#DejaVuSans-31"/>
<use xlink:href="#DejaVuSans-32" x="63.623047"/> <use xlink:href="#DejaVuSans-32" x="63.623047"/>
<use xlink:href="#DejaVuSans-35" x="127.246094"/> <use xlink:href="#DejaVuSans-35" x="127.246094"/>
@@ -740,12 +740,12 @@ z
<g id="xtick_10"> <g id="xtick_10">
<g id="line2d_18"> <g id="line2d_18">
<g> <g>
<use xlink:href="#mb0dc4d9ad7" x="469.241241" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m83ea8634f5" x="469.241241" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_18"> <g id="text_18">
<!-- 1500 --> <!-- 1500 -->
<g transform="translate(456.516241 332.318438) scale(0.1 -0.1)"> <g transform="translate(456.516241 371.198438) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-31"/> <use xlink:href="#DejaVuSans-31"/>
<use xlink:href="#DejaVuSans-35" x="63.623047"/> <use xlink:href="#DejaVuSans-35" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/> <use xlink:href="#DejaVuSans-30" x="127.246094"/>
@@ -758,113 +758,113 @@ z
<g id="ytick_6"> <g id="ytick_6">
<g id="line2d_19"> <g id="line2d_19">
<g> <g>
<use xlink:href="#m4be76cfd17" x="274.4264" y="306.243894" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m7feb10dc94" x="274.4264" y="343.475486" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
<g id="ytick_7"> <g id="ytick_7">
<g id="line2d_20"> <g id="line2d_20">
<g> <g>
<use xlink:href="#m4be76cfd17" x="274.4264" y="246.852409" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m7feb10dc94" x="274.4264" y="275.553112" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
<g id="ytick_8"> <g id="ytick_8">
<g id="line2d_21"> <g id="line2d_21">
<g> <g>
<use xlink:href="#m4be76cfd17" x="274.4264" y="187.460923" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m7feb10dc94" x="274.4264" y="207.630738" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
<g id="ytick_9"> <g id="ytick_9">
<g id="line2d_22"> <g id="line2d_22">
<g> <g>
<use xlink:href="#m4be76cfd17" x="274.4264" y="128.069438" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m7feb10dc94" x="274.4264" y="139.708364" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
<g id="ytick_10"> <g id="ytick_10">
<g id="line2d_23"> <g id="line2d_23">
<g> <g>
<use xlink:href="#m4be76cfd17" x="274.4264" y="68.677952" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m7feb10dc94" x="274.4264" y="71.785989" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
</g> </g>
<g id="line2d_24"> <g id="line2d_24">
<path d="M 284.01721 302.810686 <path d="M 284.01721 339.549139
L 288.036829 305.416364 L 288.036829 342.529091
L 292.056448 304.964567 L 292.056448 342.012399
L 296.076066 298.085802 L 296.076066 334.14558
L 300.095685 274.021265 L 300.095685 306.624456
L 304.115304 251.992938 L 304.115304 281.432019
L 308.134923 220.254201 L 308.134923 245.134384
L 312.154541 195.021541 L 312.154541 216.27735
L 316.17416 199.282533 L 316.17416 221.150383
L 320.193779 276.526711 L 320.193779 309.48978
L 324.213397 251.859911 L 324.213397 281.279884
L 328.233016 266.01825 L 328.233016 297.471902
L 332.09185 150.328569 L 332.09185 165.164758
L 336.111469 304.00459 L 336.111469 340.914532
L 340.131088 290.890535 L 340.131088 325.916798
L 344.150706 246.219107 L 344.150706 274.828844
L 348.170325 215.701566 L 348.170325 239.927817
L 352.189944 174.871939 L 352.189944 193.233494
L 356.209562 195.302794 L 356.209562 216.599002
L 360.229181 222.9446 L 360.229181 248.211228
L 364.2488 209.326229 L 364.2488 232.636738
L 368.268419 229.991396 L 368.268419 256.270213
L 372.288037 231.151652 L 372.288037 257.597126
L 376.307656 241.182024 L 376.307656 269.068244
L 380.327275 262.755794 L 380.327275 293.740832
L 384.346893 265.986455 L 384.346893 297.435539
L 388.366512 281.261941 L 388.366512 314.90517
L 392.225346 299.005131 L 392.225346 335.19696
L 396.244965 287.955187 L 396.244965 322.559822
L 400.264583 260.916423 L 400.264583 291.637257
L 404.284202 270.674121 L 404.284202 302.796534
L 408.303821 266.621481 L 408.303821 298.16178
L 412.32344 273.510476 L 412.32344 306.040298
L 416.343058 242.384701 L 416.343058 270.443671
L 420.362677 234.458639 L 420.362677 261.379123
L 424.382296 263.918702 L 424.382296 295.070778
L 428.401914 297.874157 L 428.401914 333.903535
L 432.421533 303.629827 L 432.421533 340.485939
L 436.441152 304.491 L 436.441152 341.470809
L 440.460771 304.61444 L 440.460771 341.61198
L 444.480389 303.902462 L 444.480389 340.797735
L 448.500008 303.7903 L 448.500008 340.669463
L 452.519627 292.633674 L 452.519627 327.910318
L 456.539245 287.090285 L 456.539245 321.570687
L 460.398079 304.465933 L 460.398079 341.442142
L 464.417698 303.593555 L 464.417698 340.444457
L 468.437317 297.075863 L 468.437317 332.990576
L 472.456936 300.402091 L 472.456936 336.794577
" clip-path="url(#p495abc9a41)" style="fill: none; stroke: #1f77b4; stroke-width: 1.5; stroke-linecap: square"/> " clip-path="url(#p09e1a6e53b)" style="fill: none; stroke: #1f77b4; stroke-width: 1.5; stroke-linecap: square"/>
</g> </g>
<g id="line2d_25"> <g id="line2d_25">
<path d="M 380.005705 317.72 <path d="M 380.005705 356.6
L 380.005705 47.04 L 380.005705 47.04
" clip-path="url(#p495abc9a41)" style="fill: none; stroke-dasharray: 5.55,2.4; stroke-dashoffset: 0; stroke: #000000; stroke-width: 1.5"/> " clip-path="url(#p09e1a6e53b)" style="fill: none; stroke-dasharray: 5.55,2.4; stroke-dashoffset: 0; stroke: #000000; stroke-width: 1.5"/>
</g> </g>
<g id="line2d_26"> <g id="line2d_26">
<path d="M 331.637633 317.72 <path d="M 331.637633 356.6
L 331.637633 47.04 L 331.637633 47.04
" clip-path="url(#p495abc9a41)" style="fill: none; stroke-dasharray: 1.5,2.475; stroke-dashoffset: 0; stroke: #00008b; stroke-opacity: 0.8; stroke-width: 1.5"/> " clip-path="url(#p09e1a6e53b)" style="fill: none; stroke-dasharray: 1.5,2.475; stroke-dashoffset: 0; stroke: #00008b; stroke-opacity: 0.8; stroke-width: 1.5"/>
</g> </g>
<g id="patch_8"> <g id="patch_8">
<path d="M 274.4264 317.72 <path d="M 274.4264 356.6
L 274.4264 47.04 L 274.4264 47.04
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_9"> <g id="patch_9">
<path d="M 481.886961 317.72 <path d="M 481.886961 356.6
L 481.886961 47.04 L 481.886961 47.04
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_10"> <g id="patch_10">
<path d="M 274.4264 317.72 <path d="M 274.4264 356.6
L 481.886961 317.72 L 481.886961 356.6
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_11"> <g id="patch_11">
@@ -882,8 +882,8 @@ L 481.886961 47.04
</g> </g>
<g id="axes_3"> <g id="axes_3">
<g id="patch_12"> <g id="patch_12">
<path d="M 498.9632 317.72 <path d="M 498.9632 356.6
L 706.423761 317.72 L 706.423761 356.6
L 706.423761 47.04 L 706.423761 47.04
L 498.9632 47.04 L 498.9632 47.04
z z
@@ -893,12 +893,12 @@ z
<g id="xtick_11"> <g id="xtick_11">
<g id="line2d_27"> <g id="line2d_27">
<g> <g>
<use xlink:href="#mb0dc4d9ad7" x="532.993292" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m83ea8634f5" x="532.993292" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_20"> <g id="text_20">
<!-- 500 --> <!-- 500 -->
<g transform="translate(523.449542 332.318438) scale(0.1 -0.1)"> <g transform="translate(523.449542 371.198438) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-35"/> <use xlink:href="#DejaVuSans-35"/>
<use xlink:href="#DejaVuSans-30" x="63.623047"/> <use xlink:href="#DejaVuSans-30" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/> <use xlink:href="#DejaVuSans-30" x="127.246094"/>
@@ -908,12 +908,12 @@ z
<g id="xtick_12"> <g id="xtick_12">
<g id="line2d_28"> <g id="line2d_28">
<g> <g>
<use xlink:href="#mb0dc4d9ad7" x="573.189479" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m83ea8634f5" x="573.189479" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_21"> <g id="text_21">
<!-- 750 --> <!-- 750 -->
<g transform="translate(563.645729 332.318438) scale(0.1 -0.1)"> <g transform="translate(563.645729 371.198438) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-37"/> <use xlink:href="#DejaVuSans-37"/>
<use xlink:href="#DejaVuSans-35" x="63.623047"/> <use xlink:href="#DejaVuSans-35" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/> <use xlink:href="#DejaVuSans-30" x="127.246094"/>
@@ -923,12 +923,12 @@ z
<g id="xtick_13"> <g id="xtick_13">
<g id="line2d_29"> <g id="line2d_29">
<g> <g>
<use xlink:href="#mb0dc4d9ad7" x="613.385666" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m83ea8634f5" x="613.385666" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_22"> <g id="text_22">
<!-- 1000 --> <!-- 1000 -->
<g transform="translate(600.660666 332.318438) scale(0.1 -0.1)"> <g transform="translate(600.660666 371.198438) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-31"/> <use xlink:href="#DejaVuSans-31"/>
<use xlink:href="#DejaVuSans-30" x="63.623047"/> <use xlink:href="#DejaVuSans-30" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/> <use xlink:href="#DejaVuSans-30" x="127.246094"/>
@@ -939,12 +939,12 @@ z
<g id="xtick_14"> <g id="xtick_14">
<g id="line2d_30"> <g id="line2d_30">
<g> <g>
<use xlink:href="#mb0dc4d9ad7" x="653.581853" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m83ea8634f5" x="653.581853" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_23"> <g id="text_23">
<!-- 1250 --> <!-- 1250 -->
<g transform="translate(640.856853 332.318438) scale(0.1 -0.1)"> <g transform="translate(640.856853 371.198438) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-31"/> <use xlink:href="#DejaVuSans-31"/>
<use xlink:href="#DejaVuSans-32" x="63.623047"/> <use xlink:href="#DejaVuSans-32" x="63.623047"/>
<use xlink:href="#DejaVuSans-35" x="127.246094"/> <use xlink:href="#DejaVuSans-35" x="127.246094"/>
@@ -955,12 +955,12 @@ z
<g id="xtick_15"> <g id="xtick_15">
<g id="line2d_31"> <g id="line2d_31">
<g> <g>
<use xlink:href="#mb0dc4d9ad7" x="693.778041" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m83ea8634f5" x="693.778041" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_24"> <g id="text_24">
<!-- 1500 --> <!-- 1500 -->
<g transform="translate(681.053041 332.318438) scale(0.1 -0.1)"> <g transform="translate(681.053041 371.198438) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-31"/> <use xlink:href="#DejaVuSans-31"/>
<use xlink:href="#DejaVuSans-35" x="63.623047"/> <use xlink:href="#DejaVuSans-35" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/> <use xlink:href="#DejaVuSans-30" x="127.246094"/>
@@ -973,63 +973,63 @@ z
<g id="ytick_11"> <g id="ytick_11">
<g id="line2d_32"> <g id="line2d_32">
<g> <g>
<use xlink:href="#m4be76cfd17" x="498.9632" y="306.243894" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m7feb10dc94" x="498.9632" y="343.475486" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
<g id="ytick_12"> <g id="ytick_12">
<g id="line2d_33"> <g id="line2d_33">
<g> <g>
<use xlink:href="#m4be76cfd17" x="498.9632" y="246.852409" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m7feb10dc94" x="498.9632" y="275.553112" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
<g id="ytick_13"> <g id="ytick_13">
<g id="line2d_34"> <g id="line2d_34">
<g> <g>
<use xlink:href="#m4be76cfd17" x="498.9632" y="187.460923" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m7feb10dc94" x="498.9632" y="207.630738" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
<g id="ytick_14"> <g id="ytick_14">
<g id="line2d_35"> <g id="line2d_35">
<g> <g>
<use xlink:href="#m4be76cfd17" x="498.9632" y="128.069438" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m7feb10dc94" x="498.9632" y="139.708364" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
<g id="ytick_15"> <g id="ytick_15">
<g id="line2d_36"> <g id="line2d_36">
<g> <g>
<use xlink:href="#m4be76cfd17" x="498.9632" y="68.677952" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m7feb10dc94" x="498.9632" y="71.785989" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
</g> </g>
<g id="line2d_37"/> <g id="line2d_37"/>
<g id="line2d_38"> <g id="line2d_38">
<path d="M 604.542505 317.72 <path d="M 604.542505 356.6
L 604.542505 47.04 L 604.542505 47.04
" clip-path="url(#pd1e4755823)" style="fill: none; stroke-dasharray: 5.55,2.4; stroke-dashoffset: 0; stroke: #000000; stroke-width: 1.5"/> " clip-path="url(#p4f7e62fde8)" style="fill: none; stroke-dasharray: 5.55,2.4; stroke-dashoffset: 0; stroke: #000000; stroke-width: 1.5"/>
</g> </g>
<g id="line2d_39"> <g id="line2d_39">
<path d="M 556.174433 317.72 <path d="M 556.174433 356.6
L 556.174433 47.04 L 556.174433 47.04
" clip-path="url(#pd1e4755823)" style="fill: none; stroke-dasharray: 1.5,2.475; stroke-dashoffset: 0; stroke: #00008b; stroke-opacity: 0.8; stroke-width: 1.5"/> " clip-path="url(#p4f7e62fde8)" style="fill: none; stroke-dasharray: 1.5,2.475; stroke-dashoffset: 0; stroke: #00008b; stroke-opacity: 0.8; stroke-width: 1.5"/>
</g> </g>
<g id="patch_13"> <g id="patch_13">
<path d="M 498.9632 317.72 <path d="M 498.9632 356.6
L 498.9632 47.04 L 498.9632 47.04
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_14"> <g id="patch_14">
<path d="M 706.423761 317.72 <path d="M 706.423761 356.6
L 706.423761 47.04 L 706.423761 47.04
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_15"> <g id="patch_15">
<path d="M 498.9632 317.72 <path d="M 498.9632 356.6
L 706.423761 317.72 L 706.423761 356.6
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_16"> <g id="patch_16">
@@ -1409,27 +1409,27 @@ z
</g> </g>
<g id="legend_1"> <g id="legend_1">
<g id="patch_17"> <g id="patch_17">
<path d="M 117.271094 427 <path d="M 117.271094 405.4
L 602.728906 427 L 602.728906 405.4
Q 604.728906 427 604.728906 425 Q 604.728906 405.4 604.728906 403.4
L 604.728906 411.321875 L 604.728906 389.721875
Q 604.728906 409.321875 602.728906 409.321875 Q 604.728906 387.721875 602.728906 387.721875
L 117.271094 409.321875 L 117.271094 387.721875
Q 115.271094 409.321875 115.271094 411.321875 Q 115.271094 387.721875 115.271094 389.721875
L 115.271094 425 L 115.271094 403.4
Q 115.271094 427 117.271094 427 Q 115.271094 405.4 117.271094 405.4
z z
" style="fill: #ffffff; opacity: 0.8; stroke: #cccccc; stroke-linejoin: miter"/> " style="fill: #ffffff; opacity: 0.8; stroke: #cccccc; stroke-linejoin: miter"/>
</g> </g>
<g id="line2d_40"> <g id="line2d_40">
<path d="M 119.271094 417.420313 <path d="M 119.271094 395.820312
L 129.271094 417.420313 L 129.271094 395.820312
L 139.271094 417.420313 L 139.271094 395.820312
" style="fill: none; stroke: #1f77b4; stroke-width: 1.5; stroke-linecap: square"/> " style="fill: none; stroke: #1f77b4; stroke-width: 1.5; stroke-linecap: square"/>
</g> </g>
<g id="text_28"> <g id="text_28">
<!-- power of stimulus peak --> <!-- power of stimulus peak -->
<g transform="translate(147.271094 420.920313) scale(0.1 -0.1)"> <g transform="translate(147.271094 399.320312) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-6b" d="M 581 4863 <path id="DejaVuSans-6b" d="M 581 4863
L 1159 4863 L 1159 4863
@@ -1471,14 +1471,14 @@ z
</g> </g>
</g> </g>
<g id="line2d_41"> <g id="line2d_41">
<path d="M 284.085156 417.420313 <path d="M 284.085156 395.820312
L 294.085156 417.420313 L 294.085156 395.820312
L 304.085156 417.420313 L 304.085156 395.820312
" style="fill: none; stroke-dasharray: 5.55,2.4; stroke-dashoffset: 0; stroke: #000000; stroke-width: 1.5"/> " style="fill: none; stroke-dasharray: 5.55,2.4; stroke-dashoffset: 0; stroke: #000000; stroke-width: 1.5"/>
</g> </g>
<g id="text_29"> <g id="text_29">
<!-- EODf of awake fish --> <!-- EODf of awake fish -->
<g transform="translate(312.085156 420.920313) scale(0.1 -0.1)"> <g transform="translate(312.085156 399.320312) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-45" d="M 628 4666 <path id="DejaVuSans-45" d="M 628 4666
L 3578 4666 L 3578 4666
@@ -1576,14 +1576,14 @@ z
</g> </g>
</g> </g>
<g id="line2d_42"> <g id="line2d_42">
<path d="M 426.530469 417.420313 <path d="M 426.530469 395.820312
L 436.530469 417.420313 L 436.530469 395.820312
L 446.530469 417.420313 L 446.530469 395.820312
" style="fill: none; stroke-dasharray: 1.5,2.475; stroke-dashoffset: 0; stroke: #00008b; stroke-opacity: 0.8; stroke-width: 1.5"/> " style="fill: none; stroke-dasharray: 1.5,2.475; stroke-dashoffset: 0; stroke: #00008b; stroke-opacity: 0.8; stroke-width: 1.5"/>
</g> </g>
<g id="text_30"> <g id="text_30">
<!-- 1st harmonic of current EODf --> <!-- 1st harmonic of current EODf -->
<g transform="translate(454.530469 420.920313) scale(0.1 -0.1)"> <g transform="translate(454.530469 399.320312) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-31"/> <use xlink:href="#DejaVuSans-31"/>
<use xlink:href="#DejaVuSans-73" x="63.623047"/> <use xlink:href="#DejaVuSans-73" x="63.623047"/>
<use xlink:href="#DejaVuSans-74" x="115.722656"/> <use xlink:href="#DejaVuSans-74" x="115.722656"/>
@@ -1617,14 +1617,14 @@ L 446.530469 417.420313
</g> </g>
</g> </g>
<defs> <defs>
<clipPath id="p3e74e39ae1"> <clipPath id="p94eab1ecbc">
<rect x="49.8896" y="47.04" width="207.460561" height="270.68"/> <rect x="49.8896" y="47.04" width="207.460561" height="309.56"/>
</clipPath> </clipPath>
<clipPath id="p495abc9a41"> <clipPath id="p09e1a6e53b">
<rect x="274.4264" y="47.04" width="207.460561" height="270.68"/> <rect x="274.4264" y="47.04" width="207.460561" height="309.56"/>
</clipPath> </clipPath>
<clipPath id="pd1e4755823"> <clipPath id="p4f7e62fde8">
<rect x="498.9632" y="47.04" width="207.460561" height="270.68"/> <rect x="498.9632" y="47.04" width="207.460561" height="309.56"/>
</clipPath> </clipPath>
</defs> </defs>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 43 KiB

After

Width:  |  Height:  |  Size: 43 KiB

View File

@@ -6,7 +6,7 @@
<rdf:RDF xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:RDF xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<cc:Work> <cc:Work>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<dc:date>2024-10-25T15:19:53.099574</dc:date> <dc:date>2024-10-25T16:36:09.311587</dc:date>
<dc:format>image/svg+xml</dc:format> <dc:format>image/svg+xml</dc:format>
<dc:creator> <dc:creator>
<cc:Agent> <cc:Agent>
@@ -30,8 +30,8 @@ z
</g> </g>
<g id="axes_1"> <g id="axes_1">
<g id="patch_2"> <g id="patch_2">
<path d="M 49.8896 317.72 <path d="M 49.8896 356.6
L 260.1264 317.72 L 260.1264 356.6
L 260.1264 47.04 L 260.1264 47.04
L 49.8896 47.04 L 49.8896 47.04
z z
@@ -41,17 +41,17 @@ z
<g id="xtick_1"> <g id="xtick_1">
<g id="line2d_1"> <g id="line2d_1">
<defs> <defs>
<path id="mc3ae17f553" d="M 0 0 <path id="mf641765019" d="M 0 0
L 0 3.5 L 0 3.5
" style="stroke: #000000; stroke-width: 0.8"/> " style="stroke: #000000; stroke-width: 0.8"/>
</defs> </defs>
<g> <g>
<use xlink:href="#mc3ae17f553" x="72.745709" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mf641765019" x="72.745709" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_1"> <g id="text_1">
<!-- 400 --> <!-- 400 -->
<g transform="translate(63.201959 332.318438) scale(0.1 -0.1)"> <g transform="translate(63.201959 371.198438) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-34" d="M 2419 4116 <path id="DejaVuSans-34" d="M 2419 4116
L 825 1625 L 825 1625
@@ -103,12 +103,12 @@ z
<g id="xtick_2"> <g id="xtick_2">
<g id="line2d_2"> <g id="line2d_2">
<g> <g>
<use xlink:href="#mc3ae17f553" x="122.004566" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mf641765019" x="122.004566" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_2"> <g id="text_2">
<!-- 600 --> <!-- 600 -->
<g transform="translate(112.460816 332.318438) scale(0.1 -0.1)"> <g transform="translate(112.460816 371.198438) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-36" d="M 2113 2584 <path id="DejaVuSans-36" d="M 2113 2584
Q 1688 2584 1439 2293 Q 1688 2584 1439 2293
@@ -150,12 +150,12 @@ z
<g id="xtick_3"> <g id="xtick_3">
<g id="line2d_3"> <g id="line2d_3">
<g> <g>
<use xlink:href="#mc3ae17f553" x="171.263423" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mf641765019" x="171.263423" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_3"> <g id="text_3">
<!-- 800 --> <!-- 800 -->
<g transform="translate(161.719673 332.318438) scale(0.1 -0.1)"> <g transform="translate(161.719673 371.198438) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-38" d="M 2034 2216 <path id="DejaVuSans-38" d="M 2034 2216
Q 1584 2216 1326 1975 Q 1584 2216 1326 1975
@@ -206,12 +206,12 @@ z
<g id="xtick_4"> <g id="xtick_4">
<g id="line2d_4"> <g id="line2d_4">
<g> <g>
<use xlink:href="#mc3ae17f553" x="220.522279" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mf641765019" x="220.522279" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_4"> <g id="text_4">
<!-- 1000 --> <!-- 1000 -->
<g transform="translate(207.797279 332.318438) scale(0.1 -0.1)"> <g transform="translate(207.797279 371.198438) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-31" d="M 794 531 <path id="DejaVuSans-31" d="M 794 531
L 1825 531 L 1825 531
@@ -240,17 +240,17 @@ z
<g id="ytick_1"> <g id="ytick_1">
<g id="line2d_5"> <g id="line2d_5">
<defs> <defs>
<path id="mc232447a08" d="M 0 0 <path id="m7b0e49db7f" d="M 0 0
L -3.5 0 L -3.5 0
" style="stroke: #000000; stroke-width: 0.8"/> " style="stroke: #000000; stroke-width: 0.8"/>
</defs> </defs>
<g> <g>
<use xlink:href="#mc232447a08" x="49.8896" y="306.754879" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m7b0e49db7f" x="49.8896" y="344.059868" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_5"> <g id="text_5">
<!-- 0 --> <!-- 0 -->
<g transform="translate(36.5271 310.554098) scale(0.1 -0.1)"> <g transform="translate(36.5271 347.859087) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-30"/> <use xlink:href="#DejaVuSans-30"/>
</g> </g>
</g> </g>
@@ -258,12 +258,12 @@ L -3.5 0
<g id="ytick_2"> <g id="ytick_2">
<g id="line2d_6"> <g id="line2d_6">
<g> <g>
<use xlink:href="#mc232447a08" x="49.8896" y="253.438357" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m7b0e49db7f" x="49.8896" y="283.085055" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_6"> <g id="text_6">
<!-- 1 --> <!-- 1 -->
<g transform="translate(36.5271 257.237576) scale(0.1 -0.1)"> <g transform="translate(36.5271 286.884273) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-31"/> <use xlink:href="#DejaVuSans-31"/>
</g> </g>
</g> </g>
@@ -271,12 +271,12 @@ L -3.5 0
<g id="ytick_3"> <g id="ytick_3">
<g id="line2d_7"> <g id="line2d_7">
<g> <g>
<use xlink:href="#mc232447a08" x="49.8896" y="200.121835" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m7b0e49db7f" x="49.8896" y="222.110241" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_7"> <g id="text_7">
<!-- 2 --> <!-- 2 -->
<g transform="translate(36.5271 203.921054) scale(0.1 -0.1)"> <g transform="translate(36.5271 225.90946) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-32" d="M 1228 531 <path id="DejaVuSans-32" d="M 1228 531
L 3431 531 L 3431 531
@@ -310,12 +310,12 @@ z
<g id="ytick_4"> <g id="ytick_4">
<g id="line2d_8"> <g id="line2d_8">
<g> <g>
<use xlink:href="#mc232447a08" x="49.8896" y="146.805313" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m7b0e49db7f" x="49.8896" y="161.135427" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_8"> <g id="text_8">
<!-- 3 --> <!-- 3 -->
<g transform="translate(36.5271 150.604532) scale(0.1 -0.1)"> <g transform="translate(36.5271 164.934646) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-33" d="M 2597 2516 <path id="DejaVuSans-33" d="M 2597 2516
Q 3050 2419 3304 2112 Q 3050 2419 3304 2112
@@ -357,19 +357,19 @@ z
<g id="ytick_5"> <g id="ytick_5">
<g id="line2d_9"> <g id="line2d_9">
<g> <g>
<use xlink:href="#mc232447a08" x="49.8896" y="93.488791" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m7b0e49db7f" x="49.8896" y="100.160614" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_9"> <g id="text_9">
<!-- 4 --> <!-- 4 -->
<g transform="translate(36.5271 97.28801) scale(0.1 -0.1)"> <g transform="translate(36.5271 103.959832) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-34"/> <use xlink:href="#DejaVuSans-34"/>
</g> </g>
</g> </g>
</g> </g>
<g id="text_10"> <g id="text_10">
<!-- power [$\frac{\mathrm{mV^2}}{\mathrm{Hz}}$] --> <!-- power [$\frac{\mathrm{mV^2}}{\mathrm{Hz}}$] -->
<g transform="translate(27.8471 217.3) rotate(-90) scale(0.12 -0.12)"> <g transform="translate(27.8471 236.74) rotate(-90) scale(0.12 -0.12)">
<defs> <defs>
<path id="DejaVuSans-70" d="M 1159 525 <path id="DejaVuSans-70" d="M 1159 525
L 1159 -1331 L 1159 -1331
@@ -635,63 +635,63 @@ z
</g> </g>
</g> </g>
<g id="line2d_10"> <g id="line2d_10">
<path d="M 59.445818 292.131451 <path d="M 59.445818 327.335957
L 65.603175 303.160109 L 65.603175 339.948752
L 71.760532 290.823958 L 71.760532 325.840658
L 77.917889 287.339016 L 77.917889 321.855145
L 84.075246 260.887485 L 84.075246 291.604162
L 90.232604 214.750254 L 90.232604 238.83986
L 96.389961 249.086926 L 96.389961 278.108591
L 102.547318 248.92245 L 102.547318 277.920491
L 108.704675 218.794705 L 108.704675 243.46525
L 114.862032 59.343636 L 114.862032 61.110909
L 121.019389 243.272914 L 121.019389 271.459466
L 127.176746 230.028097 L 127.176746 256.312185
L 133.334103 290.512767 L 133.334103 325.484768
L 139.49146 279.459855 L 139.49146 312.844235
L 145.648817 262.380323 L 145.648817 293.311428
L 151.806174 279.283288 L 151.806174 312.642306
L 157.963531 281.861025 L 157.963531 315.590305
L 164.120888 219.235137 L 164.120888 243.968944
L 170.278246 236.837312 L 170.278246 264.099465
L 176.435603 267.049591 L 176.435603 298.651382
L 182.59296 275.178823 L 182.59296 307.948284
L 188.996611 253.208345 L 188.996611 282.822004
L 195.153968 295.189249 L 195.153968 330.832971
L 201.311325 302.646058 L 201.311325 339.360864
L 207.468682 289.58758 L 207.468682 324.426689
L 213.626039 226.747088 L 213.626039 252.559898
L 219.783396 263.347352 L 219.783396 294.41736
L 225.940754 255.699706 L 225.940754 285.671219
L 232.098111 227.933045 L 232.098111 253.916204
L 238.255468 294.069899 L 238.255468 329.55284
L 244.412825 302.241335 L 244.412825 338.898007
L 250.570182 295.399324 L 250.570182 331.073222
" clip-path="url(#pe4479e5606)" style="fill: none; stroke: #1f77b4; stroke-width: 1.5; stroke-linecap: square"/> " clip-path="url(#p52bfb320c4)" style="fill: none; stroke: #1f77b4; stroke-width: 1.5; stroke-linecap: square"/>
</g> </g>
<g id="line2d_11"> <g id="line2d_11">
<path d="M 206.976094 317.72 <path d="M 206.976094 356.6
L 206.976094 47.04 L 206.976094 47.04
" clip-path="url(#pe4479e5606)" style="fill: none; stroke-dasharray: 5.55,2.4; stroke-dashoffset: 0; stroke: #000000; stroke-width: 1.5"/> " clip-path="url(#p52bfb320c4)" style="fill: none; stroke-dasharray: 5.55,2.4; stroke-dashoffset: 0; stroke: #000000; stroke-width: 1.5"/>
</g> </g>
<g id="line2d_12"> <g id="line2d_12">
<path d="M 132.600948 317.72 <path d="M 132.600948 356.6
L 132.600948 47.04 L 132.600948 47.04
" clip-path="url(#pe4479e5606)" style="fill: none; stroke-dasharray: 1.5,2.475; stroke-dashoffset: 0; stroke: #00008b; stroke-opacity: 0.8; stroke-width: 1.5"/> " clip-path="url(#p52bfb320c4)" style="fill: none; stroke-dasharray: 1.5,2.475; stroke-dashoffset: 0; stroke: #00008b; stroke-opacity: 0.8; stroke-width: 1.5"/>
</g> </g>
<g id="patch_3"> <g id="patch_3">
<path d="M 49.8896 317.72 <path d="M 49.8896 356.6
L 49.8896 47.04 L 49.8896 47.04
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_4"> <g id="patch_4">
<path d="M 260.1264 317.72 <path d="M 260.1264 356.6
L 260.1264 47.04 L 260.1264 47.04
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_5"> <g id="patch_5">
<path d="M 49.8896 317.72 <path d="M 49.8896 356.6
L 260.1264 317.72 L 260.1264 356.6
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_6"> <g id="patch_6">
@@ -709,8 +709,8 @@ L 260.1264 47.04
</g> </g>
<g id="axes_2"> <g id="axes_2">
<g id="patch_7"> <g id="patch_7">
<path d="M 274.4264 317.72 <path d="M 274.4264 356.6
L 484.6632 317.72 L 484.6632 356.6
L 484.6632 47.04 L 484.6632 47.04
L 274.4264 47.04 L 274.4264 47.04
z z
@@ -720,12 +720,12 @@ z
<g id="xtick_5"> <g id="xtick_5">
<g id="line2d_13"> <g id="line2d_13">
<g> <g>
<use xlink:href="#mc3ae17f553" x="297.282509" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mf641765019" x="297.282509" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_13"> <g id="text_13">
<!-- 400 --> <!-- 400 -->
<g transform="translate(287.738759 332.318438) scale(0.1 -0.1)"> <g transform="translate(287.738759 371.198438) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-34"/> <use xlink:href="#DejaVuSans-34"/>
<use xlink:href="#DejaVuSans-30" x="63.623047"/> <use xlink:href="#DejaVuSans-30" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/> <use xlink:href="#DejaVuSans-30" x="127.246094"/>
@@ -735,12 +735,12 @@ z
<g id="xtick_6"> <g id="xtick_6">
<g id="line2d_14"> <g id="line2d_14">
<g> <g>
<use xlink:href="#mc3ae17f553" x="346.541366" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mf641765019" x="346.541366" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_14"> <g id="text_14">
<!-- 600 --> <!-- 600 -->
<g transform="translate(336.997616 332.318438) scale(0.1 -0.1)"> <g transform="translate(336.997616 371.198438) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-36"/> <use xlink:href="#DejaVuSans-36"/>
<use xlink:href="#DejaVuSans-30" x="63.623047"/> <use xlink:href="#DejaVuSans-30" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/> <use xlink:href="#DejaVuSans-30" x="127.246094"/>
@@ -750,12 +750,12 @@ z
<g id="xtick_7"> <g id="xtick_7">
<g id="line2d_15"> <g id="line2d_15">
<g> <g>
<use xlink:href="#mc3ae17f553" x="395.800223" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mf641765019" x="395.800223" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_15"> <g id="text_15">
<!-- 800 --> <!-- 800 -->
<g transform="translate(386.256473 332.318438) scale(0.1 -0.1)"> <g transform="translate(386.256473 371.198438) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-38"/> <use xlink:href="#DejaVuSans-38"/>
<use xlink:href="#DejaVuSans-30" x="63.623047"/> <use xlink:href="#DejaVuSans-30" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/> <use xlink:href="#DejaVuSans-30" x="127.246094"/>
@@ -765,12 +765,12 @@ z
<g id="xtick_8"> <g id="xtick_8">
<g id="line2d_16"> <g id="line2d_16">
<g> <g>
<use xlink:href="#mc3ae17f553" x="445.059079" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mf641765019" x="445.059079" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_16"> <g id="text_16">
<!-- 1000 --> <!-- 1000 -->
<g transform="translate(432.334079 332.318438) scale(0.1 -0.1)"> <g transform="translate(432.334079 371.198438) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-31"/> <use xlink:href="#DejaVuSans-31"/>
<use xlink:href="#DejaVuSans-30" x="63.623047"/> <use xlink:href="#DejaVuSans-30" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/> <use xlink:href="#DejaVuSans-30" x="127.246094"/>
@@ -783,76 +783,76 @@ z
<g id="ytick_6"> <g id="ytick_6">
<g id="line2d_17"> <g id="line2d_17">
<g> <g>
<use xlink:href="#mc232447a08" x="274.4264" y="306.754879" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m7b0e49db7f" x="274.4264" y="344.059868" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
<g id="ytick_7"> <g id="ytick_7">
<g id="line2d_18"> <g id="line2d_18">
<g> <g>
<use xlink:href="#mc232447a08" x="274.4264" y="253.438357" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m7b0e49db7f" x="274.4264" y="283.085055" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
<g id="ytick_8"> <g id="ytick_8">
<g id="line2d_19"> <g id="line2d_19">
<g> <g>
<use xlink:href="#mc232447a08" x="274.4264" y="200.121835" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m7b0e49db7f" x="274.4264" y="222.110241" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
<g id="ytick_9"> <g id="ytick_9">
<g id="line2d_20"> <g id="line2d_20">
<g> <g>
<use xlink:href="#mc232447a08" x="274.4264" y="146.805313" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m7b0e49db7f" x="274.4264" y="161.135427" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
<g id="ytick_10"> <g id="ytick_10">
<g id="line2d_21"> <g id="line2d_21">
<g> <g>
<use xlink:href="#mc232447a08" x="274.4264" y="93.488791" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m7b0e49db7f" x="274.4264" y="100.160614" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
</g> </g>
<g id="line2d_22"> <g id="line2d_22">
<path d="M 284.228912 297.508604 <path d="M 284.228912 333.485475
L 290.38627 302.872619 L 290.38627 339.619967
L 296.543627 305.416364 L 296.543627 342.529091
L 302.700984 298.590459 L 302.700984 334.722725
L 308.858341 304.688824 L 308.858341 341.697049
L 315.015698 302.523415 L 315.015698 339.220604
L 321.173055 289.647419 L 321.173055 324.495123
L 327.330412 286.779453 L 327.330412 321.215208
L 333.487769 295.68645 L 333.487769 331.40159
L 339.645126 300.076965 L 339.645126 336.42275
L 345.802483 304.771263 L 345.802483 341.79133
" clip-path="url(#pe48a8718eb)" style="fill: none; stroke: #1f77b4; stroke-width: 1.5; stroke-linecap: square"/> " clip-path="url(#pc56bb97fe6)" style="fill: none; stroke: #1f77b4; stroke-width: 1.5; stroke-linecap: square"/>
</g> </g>
<g id="line2d_23"> <g id="line2d_23">
<path d="M 431.512894 317.72 <path d="M 431.512894 356.6
L 431.512894 47.04 L 431.512894 47.04
" clip-path="url(#pe48a8718eb)" style="fill: none; stroke-dasharray: 5.55,2.4; stroke-dashoffset: 0; stroke: #000000; stroke-width: 1.5"/> " clip-path="url(#pc56bb97fe6)" style="fill: none; stroke-dasharray: 5.55,2.4; stroke-dashoffset: 0; stroke: #000000; stroke-width: 1.5"/>
</g> </g>
<g id="line2d_24"> <g id="line2d_24">
<path d="M 357.137748 317.72 <path d="M 357.137748 356.6
L 357.137748 47.04 L 357.137748 47.04
" clip-path="url(#pe48a8718eb)" style="fill: none; stroke-dasharray: 1.5,2.475; stroke-dashoffset: 0; stroke: #00008b; stroke-opacity: 0.8; stroke-width: 1.5"/> " clip-path="url(#pc56bb97fe6)" style="fill: none; stroke-dasharray: 1.5,2.475; stroke-dashoffset: 0; stroke: #00008b; stroke-opacity: 0.8; stroke-width: 1.5"/>
</g> </g>
<g id="patch_8"> <g id="patch_8">
<path d="M 274.4264 317.72 <path d="M 274.4264 356.6
L 274.4264 47.04 L 274.4264 47.04
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_9"> <g id="patch_9">
<path d="M 484.6632 317.72 <path d="M 484.6632 356.6
L 484.6632 47.04 L 484.6632 47.04
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_10"> <g id="patch_10">
<path d="M 274.4264 317.72 <path d="M 274.4264 356.6
L 484.6632 317.72 L 484.6632 356.6
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_11"> <g id="patch_11">
@@ -870,8 +870,8 @@ L 484.6632 47.04
</g> </g>
<g id="axes_3"> <g id="axes_3">
<g id="patch_12"> <g id="patch_12">
<path d="M 498.9632 317.72 <path d="M 498.9632 356.6
L 709.2 317.72 L 709.2 356.6
L 709.2 47.04 L 709.2 47.04
L 498.9632 47.04 L 498.9632 47.04
z z
@@ -881,12 +881,12 @@ z
<g id="xtick_9"> <g id="xtick_9">
<g id="line2d_25"> <g id="line2d_25">
<g> <g>
<use xlink:href="#mc3ae17f553" x="521.819309" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mf641765019" x="521.819309" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_18"> <g id="text_18">
<!-- 400 --> <!-- 400 -->
<g transform="translate(512.275559 332.318438) scale(0.1 -0.1)"> <g transform="translate(512.275559 371.198438) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-34"/> <use xlink:href="#DejaVuSans-34"/>
<use xlink:href="#DejaVuSans-30" x="63.623047"/> <use xlink:href="#DejaVuSans-30" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/> <use xlink:href="#DejaVuSans-30" x="127.246094"/>
@@ -896,12 +896,12 @@ z
<g id="xtick_10"> <g id="xtick_10">
<g id="line2d_26"> <g id="line2d_26">
<g> <g>
<use xlink:href="#mc3ae17f553" x="571.078166" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mf641765019" x="571.078166" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_19"> <g id="text_19">
<!-- 600 --> <!-- 600 -->
<g transform="translate(561.534416 332.318438) scale(0.1 -0.1)"> <g transform="translate(561.534416 371.198438) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-36"/> <use xlink:href="#DejaVuSans-36"/>
<use xlink:href="#DejaVuSans-30" x="63.623047"/> <use xlink:href="#DejaVuSans-30" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/> <use xlink:href="#DejaVuSans-30" x="127.246094"/>
@@ -911,12 +911,12 @@ z
<g id="xtick_11"> <g id="xtick_11">
<g id="line2d_27"> <g id="line2d_27">
<g> <g>
<use xlink:href="#mc3ae17f553" x="620.337023" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mf641765019" x="620.337023" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_20"> <g id="text_20">
<!-- 800 --> <!-- 800 -->
<g transform="translate(610.793273 332.318438) scale(0.1 -0.1)"> <g transform="translate(610.793273 371.198438) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-38"/> <use xlink:href="#DejaVuSans-38"/>
<use xlink:href="#DejaVuSans-30" x="63.623047"/> <use xlink:href="#DejaVuSans-30" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/> <use xlink:href="#DejaVuSans-30" x="127.246094"/>
@@ -926,12 +926,12 @@ z
<g id="xtick_12"> <g id="xtick_12">
<g id="line2d_28"> <g id="line2d_28">
<g> <g>
<use xlink:href="#mc3ae17f553" x="669.595879" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mf641765019" x="669.595879" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_21"> <g id="text_21">
<!-- 1000 --> <!-- 1000 -->
<g transform="translate(656.870879 332.318438) scale(0.1 -0.1)"> <g transform="translate(656.870879 371.198438) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-31"/> <use xlink:href="#DejaVuSans-31"/>
<use xlink:href="#DejaVuSans-30" x="63.623047"/> <use xlink:href="#DejaVuSans-30" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/> <use xlink:href="#DejaVuSans-30" x="127.246094"/>
@@ -944,63 +944,63 @@ z
<g id="ytick_11"> <g id="ytick_11">
<g id="line2d_29"> <g id="line2d_29">
<g> <g>
<use xlink:href="#mc232447a08" x="498.9632" y="306.754879" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m7b0e49db7f" x="498.9632" y="344.059868" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
<g id="ytick_12"> <g id="ytick_12">
<g id="line2d_30"> <g id="line2d_30">
<g> <g>
<use xlink:href="#mc232447a08" x="498.9632" y="253.438357" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m7b0e49db7f" x="498.9632" y="283.085055" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
<g id="ytick_13"> <g id="ytick_13">
<g id="line2d_31"> <g id="line2d_31">
<g> <g>
<use xlink:href="#mc232447a08" x="498.9632" y="200.121835" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m7b0e49db7f" x="498.9632" y="222.110241" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
<g id="ytick_14"> <g id="ytick_14">
<g id="line2d_32"> <g id="line2d_32">
<g> <g>
<use xlink:href="#mc232447a08" x="498.9632" y="146.805313" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m7b0e49db7f" x="498.9632" y="161.135427" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
<g id="ytick_15"> <g id="ytick_15">
<g id="line2d_33"> <g id="line2d_33">
<g> <g>
<use xlink:href="#mc232447a08" x="498.9632" y="93.488791" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m7b0e49db7f" x="498.9632" y="100.160614" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
</g> </g>
<g id="line2d_34"/> <g id="line2d_34"/>
<g id="line2d_35"> <g id="line2d_35">
<path d="M 656.049694 317.72 <path d="M 656.049694 356.6
L 656.049694 47.04 L 656.049694 47.04
" clip-path="url(#p9a73ac8615)" style="fill: none; stroke-dasharray: 5.55,2.4; stroke-dashoffset: 0; stroke: #000000; stroke-width: 1.5"/> " clip-path="url(#pd6953d296d)" style="fill: none; stroke-dasharray: 5.55,2.4; stroke-dashoffset: 0; stroke: #000000; stroke-width: 1.5"/>
</g> </g>
<g id="line2d_36"> <g id="line2d_36">
<path d="M 581.674548 317.72 <path d="M 581.674548 356.6
L 581.674548 47.04 L 581.674548 47.04
" clip-path="url(#p9a73ac8615)" style="fill: none; stroke-dasharray: 1.5,2.475; stroke-dashoffset: 0; stroke: #00008b; stroke-opacity: 0.8; stroke-width: 1.5"/> " clip-path="url(#pd6953d296d)" style="fill: none; stroke-dasharray: 1.5,2.475; stroke-dashoffset: 0; stroke: #00008b; stroke-opacity: 0.8; stroke-width: 1.5"/>
</g> </g>
<g id="patch_13"> <g id="patch_13">
<path d="M 498.9632 317.72 <path d="M 498.9632 356.6
L 498.9632 47.04 L 498.9632 47.04
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_14"> <g id="patch_14">
<path d="M 709.2 317.72 <path d="M 709.2 356.6
L 709.2 47.04 L 709.2 47.04
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_15"> <g id="patch_15">
<path d="M 498.9632 317.72 <path d="M 498.9632 356.6
L 709.2 317.72 L 709.2 356.6
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_16"> <g id="patch_16">
@@ -1324,27 +1324,27 @@ z
</g> </g>
<g id="legend_1"> <g id="legend_1">
<g id="patch_17"> <g id="patch_17">
<path d="M 117.271094 427 <path d="M 117.271094 405.4
L 602.728906 427 L 602.728906 405.4
Q 604.728906 427 604.728906 425 Q 604.728906 405.4 604.728906 403.4
L 604.728906 411.321875 L 604.728906 389.721875
Q 604.728906 409.321875 602.728906 409.321875 Q 604.728906 387.721875 602.728906 387.721875
L 117.271094 409.321875 L 117.271094 387.721875
Q 115.271094 409.321875 115.271094 411.321875 Q 115.271094 387.721875 115.271094 389.721875
L 115.271094 425 L 115.271094 403.4
Q 115.271094 427 117.271094 427 Q 115.271094 405.4 117.271094 405.4
z z
" style="fill: #ffffff; opacity: 0.8; stroke: #cccccc; stroke-linejoin: miter"/> " style="fill: #ffffff; opacity: 0.8; stroke: #cccccc; stroke-linejoin: miter"/>
</g> </g>
<g id="line2d_37"> <g id="line2d_37">
<path d="M 119.271094 417.420313 <path d="M 119.271094 395.820312
L 129.271094 417.420313 L 129.271094 395.820312
L 139.271094 417.420313 L 139.271094 395.820312
" style="fill: none; stroke: #1f77b4; stroke-width: 1.5; stroke-linecap: square"/> " style="fill: none; stroke: #1f77b4; stroke-width: 1.5; stroke-linecap: square"/>
</g> </g>
<g id="text_25"> <g id="text_25">
<!-- power of stimulus peak --> <!-- power of stimulus peak -->
<g transform="translate(147.271094 420.920313) scale(0.1 -0.1)"> <g transform="translate(147.271094 399.320312) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-6b" d="M 581 4863 <path id="DejaVuSans-6b" d="M 581 4863
L 1159 4863 L 1159 4863
@@ -1386,14 +1386,14 @@ z
</g> </g>
</g> </g>
<g id="line2d_38"> <g id="line2d_38">
<path d="M 284.085156 417.420313 <path d="M 284.085156 395.820312
L 294.085156 417.420313 L 294.085156 395.820312
L 304.085156 417.420313 L 304.085156 395.820312
" style="fill: none; stroke-dasharray: 5.55,2.4; stroke-dashoffset: 0; stroke: #000000; stroke-width: 1.5"/> " style="fill: none; stroke-dasharray: 5.55,2.4; stroke-dashoffset: 0; stroke: #000000; stroke-width: 1.5"/>
</g> </g>
<g id="text_26"> <g id="text_26">
<!-- EODf of awake fish --> <!-- EODf of awake fish -->
<g transform="translate(312.085156 420.920313) scale(0.1 -0.1)"> <g transform="translate(312.085156 399.320312) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-45" d="M 628 4666 <path id="DejaVuSans-45" d="M 628 4666
L 3578 4666 L 3578 4666
@@ -1491,14 +1491,14 @@ z
</g> </g>
</g> </g>
<g id="line2d_39"> <g id="line2d_39">
<path d="M 426.530469 417.420313 <path d="M 426.530469 395.820312
L 436.530469 417.420313 L 436.530469 395.820312
L 446.530469 417.420313 L 446.530469 395.820312
" style="fill: none; stroke-dasharray: 1.5,2.475; stroke-dashoffset: 0; stroke: #00008b; stroke-opacity: 0.8; stroke-width: 1.5"/> " style="fill: none; stroke-dasharray: 1.5,2.475; stroke-dashoffset: 0; stroke: #00008b; stroke-opacity: 0.8; stroke-width: 1.5"/>
</g> </g>
<g id="text_27"> <g id="text_27">
<!-- 1st harmonic of current EODf --> <!-- 1st harmonic of current EODf -->
<g transform="translate(454.530469 420.920313) scale(0.1 -0.1)"> <g transform="translate(454.530469 399.320312) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-31"/> <use xlink:href="#DejaVuSans-31"/>
<use xlink:href="#DejaVuSans-73" x="63.623047"/> <use xlink:href="#DejaVuSans-73" x="63.623047"/>
<use xlink:href="#DejaVuSans-74" x="115.722656"/> <use xlink:href="#DejaVuSans-74" x="115.722656"/>
@@ -1532,14 +1532,14 @@ L 446.530469 417.420313
</g> </g>
</g> </g>
<defs> <defs>
<clipPath id="pe4479e5606"> <clipPath id="p52bfb320c4">
<rect x="49.8896" y="47.04" width="210.2368" height="270.68"/> <rect x="49.8896" y="47.04" width="210.2368" height="309.56"/>
</clipPath> </clipPath>
<clipPath id="pe48a8718eb"> <clipPath id="pc56bb97fe6">
<rect x="274.4264" y="47.04" width="210.2368" height="270.68"/> <rect x="274.4264" y="47.04" width="210.2368" height="309.56"/>
</clipPath> </clipPath>
<clipPath id="p9a73ac8615"> <clipPath id="pd6953d296d">
<rect x="498.9632" y="47.04" width="210.2368" height="270.68"/> <rect x="498.9632" y="47.04" width="210.2368" height="309.56"/>
</clipPath> </clipPath>
</defs> </defs>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 41 KiB

After

Width:  |  Height:  |  Size: 41 KiB

View File

@@ -6,7 +6,7 @@
<rdf:RDF xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:RDF xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<cc:Work> <cc:Work>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<dc:date>2024-10-25T15:20:36.875045</dc:date> <dc:date>2024-10-25T16:36:51.206259</dc:date>
<dc:format>image/svg+xml</dc:format> <dc:format>image/svg+xml</dc:format>
<dc:creator> <dc:creator>
<cc:Agent> <cc:Agent>
@@ -30,8 +30,8 @@ z
</g> </g>
<g id="axes_1"> <g id="axes_1">
<g id="patch_2"> <g id="patch_2">
<path d="M 49.8896 317.72 <path d="M 49.8896 356.6
L 257.218854 317.72 L 257.218854 356.6
L 257.218854 47.04 L 257.218854 47.04
L 49.8896 47.04 L 49.8896 47.04
z z
@@ -41,17 +41,17 @@ z
<g id="xtick_1"> <g id="xtick_1">
<g id="line2d_1"> <g id="line2d_1">
<defs> <defs>
<path id="m74c1b2cbc9" d="M 0 0 <path id="m9466860cd2" d="M 0 0
L 0 3.5 L 0 3.5
" style="stroke: #000000; stroke-width: 0.8"/> " style="stroke: #000000; stroke-width: 0.8"/>
</defs> </defs>
<g> <g>
<use xlink:href="#m74c1b2cbc9" x="84.337536" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m9466860cd2" x="84.337536" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_1"> <g id="text_1">
<!-- 500 --> <!-- 500 -->
<g transform="translate(74.793786 332.318438) scale(0.1 -0.1)"> <g transform="translate(74.793786 371.198438) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-35" d="M 691 4666 <path id="DejaVuSans-35" d="M 691 4666
L 3169 4666 L 3169 4666
@@ -109,12 +109,12 @@ z
<g id="xtick_2"> <g id="xtick_2">
<g id="line2d_2"> <g id="line2d_2">
<g> <g>
<use xlink:href="#m74c1b2cbc9" x="124.439906" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m9466860cd2" x="124.439906" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_2"> <g id="text_2">
<!-- 750 --> <!-- 750 -->
<g transform="translate(114.896156 332.318438) scale(0.1 -0.1)"> <g transform="translate(114.896156 371.198438) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-37" d="M 525 4666 <path id="DejaVuSans-37" d="M 525 4666
L 3525 4666 L 3525 4666
@@ -136,12 +136,12 @@ z
<g id="xtick_3"> <g id="xtick_3">
<g id="line2d_3"> <g id="line2d_3">
<g> <g>
<use xlink:href="#m74c1b2cbc9" x="164.542277" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m9466860cd2" x="164.542277" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_3"> <g id="text_3">
<!-- 1000 --> <!-- 1000 -->
<g transform="translate(151.817277 332.318438) scale(0.1 -0.1)"> <g transform="translate(151.817277 371.198438) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-31" d="M 794 531 <path id="DejaVuSans-31" d="M 794 531
L 1825 531 L 1825 531
@@ -168,12 +168,12 @@ z
<g id="xtick_4"> <g id="xtick_4">
<g id="line2d_4"> <g id="line2d_4">
<g> <g>
<use xlink:href="#m74c1b2cbc9" x="204.644647" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m9466860cd2" x="204.644647" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_4"> <g id="text_4">
<!-- 1250 --> <!-- 1250 -->
<g transform="translate(191.919647 332.318438) scale(0.1 -0.1)"> <g transform="translate(191.919647 371.198438) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-32" d="M 1228 531 <path id="DejaVuSans-32" d="M 1228 531
L 3431 531 L 3431 531
@@ -210,12 +210,12 @@ z
<g id="xtick_5"> <g id="xtick_5">
<g id="line2d_5"> <g id="line2d_5">
<g> <g>
<use xlink:href="#m74c1b2cbc9" x="244.747017" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m9466860cd2" x="244.747017" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_5"> <g id="text_5">
<!-- 1500 --> <!-- 1500 -->
<g transform="translate(232.022017 332.318438) scale(0.1 -0.1)"> <g transform="translate(232.022017 371.198438) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-31"/> <use xlink:href="#DejaVuSans-31"/>
<use xlink:href="#DejaVuSans-35" x="63.623047"/> <use xlink:href="#DejaVuSans-35" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/> <use xlink:href="#DejaVuSans-30" x="127.246094"/>
@@ -228,17 +228,17 @@ z
<g id="ytick_1"> <g id="ytick_1">
<g id="line2d_6"> <g id="line2d_6">
<defs> <defs>
<path id="m094e0870cd" d="M 0 0 <path id="ma5602f5983" d="M 0 0
L -3.5 0 L -3.5 0
" style="stroke: #000000; stroke-width: 0.8"/> " style="stroke: #000000; stroke-width: 0.8"/>
</defs> </defs>
<g> <g>
<use xlink:href="#m094e0870cd" x="49.8896" y="305.55235" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#ma5602f5983" x="49.8896" y="342.68461" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_6"> <g id="text_6">
<!-- 0 --> <!-- 0 -->
<g transform="translate(36.5271 309.351569) scale(0.1 -0.1)"> <g transform="translate(36.5271 346.483829) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-30"/> <use xlink:href="#DejaVuSans-30"/>
</g> </g>
</g> </g>
@@ -246,12 +246,12 @@ L -3.5 0
<g id="ytick_2"> <g id="ytick_2">
<g id="line2d_7"> <g id="line2d_7">
<g> <g>
<use xlink:href="#m094e0870cd" x="49.8896" y="264.752076" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#ma5602f5983" x="49.8896" y="296.023857" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_7"> <g id="text_7">
<!-- 1 --> <!-- 1 -->
<g transform="translate(36.5271 268.551295) scale(0.1 -0.1)"> <g transform="translate(36.5271 299.823076) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-31"/> <use xlink:href="#DejaVuSans-31"/>
</g> </g>
</g> </g>
@@ -259,12 +259,12 @@ L -3.5 0
<g id="ytick_3"> <g id="ytick_3">
<g id="line2d_8"> <g id="line2d_8">
<g> <g>
<use xlink:href="#m094e0870cd" x="49.8896" y="223.951802" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#ma5602f5983" x="49.8896" y="249.363103" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_8"> <g id="text_8">
<!-- 2 --> <!-- 2 -->
<g transform="translate(36.5271 227.751021) scale(0.1 -0.1)"> <g transform="translate(36.5271 253.162322) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-32"/> <use xlink:href="#DejaVuSans-32"/>
</g> </g>
</g> </g>
@@ -272,12 +272,12 @@ L -3.5 0
<g id="ytick_4"> <g id="ytick_4">
<g id="line2d_9"> <g id="line2d_9">
<g> <g>
<use xlink:href="#m094e0870cd" x="49.8896" y="183.151529" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#ma5602f5983" x="49.8896" y="202.70235" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_9"> <g id="text_9">
<!-- 3 --> <!-- 3 -->
<g transform="translate(36.5271 186.950747) scale(0.1 -0.1)"> <g transform="translate(36.5271 206.501568) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-33" d="M 2597 2516 <path id="DejaVuSans-33" d="M 2597 2516
Q 3050 2419 3304 2112 Q 3050 2419 3304 2112
@@ -319,12 +319,12 @@ z
<g id="ytick_5"> <g id="ytick_5">
<g id="line2d_10"> <g id="line2d_10">
<g> <g>
<use xlink:href="#m094e0870cd" x="49.8896" y="142.351255" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#ma5602f5983" x="49.8896" y="156.041596" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_10"> <g id="text_10">
<!-- 4 --> <!-- 4 -->
<g transform="translate(36.5271 146.150473) scale(0.1 -0.1)"> <g transform="translate(36.5271 159.840815) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-34" d="M 2419 4116 <path id="DejaVuSans-34" d="M 2419 4116
L 825 1625 L 825 1625
@@ -353,12 +353,12 @@ z
<g id="ytick_6"> <g id="ytick_6">
<g id="line2d_11"> <g id="line2d_11">
<g> <g>
<use xlink:href="#m094e0870cd" x="49.8896" y="101.550981" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#ma5602f5983" x="49.8896" y="109.380842" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_11"> <g id="text_11">
<!-- 5 --> <!-- 5 -->
<g transform="translate(36.5271 105.3502) scale(0.1 -0.1)"> <g transform="translate(36.5271 113.180061) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-35"/> <use xlink:href="#DejaVuSans-35"/>
</g> </g>
</g> </g>
@@ -366,12 +366,12 @@ z
<g id="ytick_7"> <g id="ytick_7">
<g id="line2d_12"> <g id="line2d_12">
<g> <g>
<use xlink:href="#m094e0870cd" x="49.8896" y="60.750707" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#ma5602f5983" x="49.8896" y="62.720089" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_12"> <g id="text_12">
<!-- 6 --> <!-- 6 -->
<g transform="translate(36.5271 64.549926) scale(0.1 -0.1)"> <g transform="translate(36.5271 66.519308) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-36" d="M 2113 2584 <path id="DejaVuSans-36" d="M 2113 2584
Q 1688 2584 1439 2293 Q 1688 2584 1439 2293
@@ -410,7 +410,7 @@ z
</g> </g>
<g id="text_13"> <g id="text_13">
<!-- power [$\frac{\mathrm{mV^2}}{\mathrm{Hz}}$] --> <!-- power [$\frac{\mathrm{mV^2}}{\mathrm{Hz}}$] -->
<g transform="translate(27.8471 217.3) rotate(-90) scale(0.12 -0.12)"> <g transform="translate(27.8471 236.74) rotate(-90) scale(0.12 -0.12)">
<defs> <defs>
<path id="DejaVuSans-70" d="M 1159 525 <path id="DejaVuSans-70" d="M 1159 525
L 1159 -1331 L 1159 -1331
@@ -651,63 +651,63 @@ z
</g> </g>
</g> </g>
<g id="line2d_13"> <g id="line2d_13">
<path d="M 59.634476 303.471561 <path d="M 59.634476 340.30494
L 63.644713 303.780383 L 63.644713 340.658121
L 67.65495 303.534249 L 67.65495 340.376632
L 71.665187 299.942473 L 71.665187 336.26894
L 75.675424 298.438021 L 75.675424 334.548392
L 79.685661 300.493429 L 79.685661 336.899034
L 83.695898 297.317709 L 83.695898 333.26716
L 87.706135 283.109159 L 87.706135 317.017719
L 91.716372 282.685915 L 91.716372 316.53368
L 95.726609 284.349298 L 95.726609 318.435989
L 99.736846 279.090886 L 99.736846 312.422268
L 103.747083 275.626239 L 103.747083 308.459965
L 107.75732 290.309974 L 107.75732 325.252846
L 111.767557 283.807293 L 111.767557 317.816131
L 115.777794 261.856687 L 115.777794 292.712579
L 119.788031 262.972638 L 119.788031 293.988823
L 123.798268 253.673233 L 123.798268 283.353667
L 127.808505 232.964129 L 127.808505 259.669944
L 131.818742 225.48921 L 131.818742 251.121342
L 135.828979 229.707933 L 135.828979 255.946035
L 139.839216 196.69544 L 139.839216 218.191684
L 143.849454 129.813076 L 143.849454 141.702456
L 147.859691 59.343636 L 147.859691 61.110909
L 151.869928 184.957418 L 151.869928 204.767634
L 155.880165 273.079417 L 155.880165 305.547322
L 159.890402 304.316933 L 159.890402 341.27174
L 163.900639 275.870517 L 163.900639 308.73933
L 167.910876 302.063441 L 167.910876 338.69456
L 171.921113 300.577583 L 171.921113 336.995276
L 175.93135 303.14511 L 175.93135 339.931598
L 179.941587 284.735125 L 179.941587 318.877236
L 183.951824 277.504505 L 183.951824 310.608022
" clip-path="url(#p9de685a70b)" style="fill: none; stroke: #1f77b4; stroke-width: 1.5; stroke-linecap: square"/> " clip-path="url(#pf82a77cab1)" style="fill: none; stroke: #1f77b4; stroke-width: 1.5; stroke-linecap: square"/>
</g> </g>
<g id="line2d_14"> <g id="line2d_14">
<path d="M 155.719755 317.72 <path d="M 155.719755 356.6
L 155.719755 47.04 L 155.719755 47.04
" clip-path="url(#p9de685a70b)" style="fill: none; stroke-dasharray: 5.55,2.4; stroke-dashoffset: 0; stroke: #000000; stroke-width: 1.5"/> " clip-path="url(#pf82a77cab1)" style="fill: none; stroke-dasharray: 5.55,2.4; stroke-dashoffset: 0; stroke: #000000; stroke-width: 1.5"/>
</g> </g>
<g id="line2d_15"> <g id="line2d_15">
<path d="M 106.682075 317.72 <path d="M 106.682075 356.6
L 106.682075 47.04 L 106.682075 47.04
" clip-path="url(#p9de685a70b)" style="fill: none; stroke-dasharray: 1.5,2.475; stroke-dashoffset: 0; stroke: #00008b; stroke-opacity: 0.8; stroke-width: 1.5"/> " clip-path="url(#pf82a77cab1)" style="fill: none; stroke-dasharray: 1.5,2.475; stroke-dashoffset: 0; stroke: #00008b; stroke-opacity: 0.8; stroke-width: 1.5"/>
</g> </g>
<g id="patch_3"> <g id="patch_3">
<path d="M 49.8896 317.72 <path d="M 49.8896 356.6
L 49.8896 47.04 L 49.8896 47.04
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_4"> <g id="patch_4">
<path d="M 257.218854 317.72 <path d="M 257.218854 356.6
L 257.218854 47.04 L 257.218854 47.04
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_5"> <g id="patch_5">
<path d="M 49.8896 317.72 <path d="M 49.8896 356.6
L 257.218854 317.72 L 257.218854 356.6
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_6"> <g id="patch_6">
@@ -725,8 +725,8 @@ L 257.218854 47.04
</g> </g>
<g id="axes_2"> <g id="axes_2">
<g id="patch_7"> <g id="patch_7">
<path d="M 274.4264 317.72 <path d="M 274.4264 356.6
L 481.755654 317.72 L 481.755654 356.6
L 481.755654 47.04 L 481.755654 47.04
L 274.4264 47.04 L 274.4264 47.04
z z
@@ -736,12 +736,12 @@ z
<g id="xtick_6"> <g id="xtick_6">
<g id="line2d_16"> <g id="line2d_16">
<g> <g>
<use xlink:href="#m74c1b2cbc9" x="308.874336" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m9466860cd2" x="308.874336" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_16"> <g id="text_16">
<!-- 500 --> <!-- 500 -->
<g transform="translate(299.330586 332.318438) scale(0.1 -0.1)"> <g transform="translate(299.330586 371.198438) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-35"/> <use xlink:href="#DejaVuSans-35"/>
<use xlink:href="#DejaVuSans-30" x="63.623047"/> <use xlink:href="#DejaVuSans-30" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/> <use xlink:href="#DejaVuSans-30" x="127.246094"/>
@@ -751,12 +751,12 @@ z
<g id="xtick_7"> <g id="xtick_7">
<g id="line2d_17"> <g id="line2d_17">
<g> <g>
<use xlink:href="#m74c1b2cbc9" x="348.976706" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m9466860cd2" x="348.976706" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_17"> <g id="text_17">
<!-- 750 --> <!-- 750 -->
<g transform="translate(339.432956 332.318438) scale(0.1 -0.1)"> <g transform="translate(339.432956 371.198438) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-37"/> <use xlink:href="#DejaVuSans-37"/>
<use xlink:href="#DejaVuSans-35" x="63.623047"/> <use xlink:href="#DejaVuSans-35" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/> <use xlink:href="#DejaVuSans-30" x="127.246094"/>
@@ -766,12 +766,12 @@ z
<g id="xtick_8"> <g id="xtick_8">
<g id="line2d_18"> <g id="line2d_18">
<g> <g>
<use xlink:href="#m74c1b2cbc9" x="389.079077" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m9466860cd2" x="389.079077" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_18"> <g id="text_18">
<!-- 1000 --> <!-- 1000 -->
<g transform="translate(376.354077 332.318438) scale(0.1 -0.1)"> <g transform="translate(376.354077 371.198438) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-31"/> <use xlink:href="#DejaVuSans-31"/>
<use xlink:href="#DejaVuSans-30" x="63.623047"/> <use xlink:href="#DejaVuSans-30" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/> <use xlink:href="#DejaVuSans-30" x="127.246094"/>
@@ -782,12 +782,12 @@ z
<g id="xtick_9"> <g id="xtick_9">
<g id="line2d_19"> <g id="line2d_19">
<g> <g>
<use xlink:href="#m74c1b2cbc9" x="429.181447" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m9466860cd2" x="429.181447" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_19"> <g id="text_19">
<!-- 1250 --> <!-- 1250 -->
<g transform="translate(416.456447 332.318438) scale(0.1 -0.1)"> <g transform="translate(416.456447 371.198438) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-31"/> <use xlink:href="#DejaVuSans-31"/>
<use xlink:href="#DejaVuSans-32" x="63.623047"/> <use xlink:href="#DejaVuSans-32" x="63.623047"/>
<use xlink:href="#DejaVuSans-35" x="127.246094"/> <use xlink:href="#DejaVuSans-35" x="127.246094"/>
@@ -798,12 +798,12 @@ z
<g id="xtick_10"> <g id="xtick_10">
<g id="line2d_20"> <g id="line2d_20">
<g> <g>
<use xlink:href="#m74c1b2cbc9" x="469.283817" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m9466860cd2" x="469.283817" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_20"> <g id="text_20">
<!-- 1500 --> <!-- 1500 -->
<g transform="translate(456.558817 332.318438) scale(0.1 -0.1)"> <g transform="translate(456.558817 371.198438) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-31"/> <use xlink:href="#DejaVuSans-31"/>
<use xlink:href="#DejaVuSans-35" x="63.623047"/> <use xlink:href="#DejaVuSans-35" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/> <use xlink:href="#DejaVuSans-30" x="127.246094"/>
@@ -816,127 +816,127 @@ z
<g id="ytick_8"> <g id="ytick_8">
<g id="line2d_21"> <g id="line2d_21">
<g> <g>
<use xlink:href="#m094e0870cd" x="274.4264" y="305.55235" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#ma5602f5983" x="274.4264" y="342.68461" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
<g id="ytick_9"> <g id="ytick_9">
<g id="line2d_22"> <g id="line2d_22">
<g> <g>
<use xlink:href="#m094e0870cd" x="274.4264" y="264.752076" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#ma5602f5983" x="274.4264" y="296.023857" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
<g id="ytick_10"> <g id="ytick_10">
<g id="line2d_23"> <g id="line2d_23">
<g> <g>
<use xlink:href="#m094e0870cd" x="274.4264" y="223.951802" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#ma5602f5983" x="274.4264" y="249.363103" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
<g id="ytick_11"> <g id="ytick_11">
<g id="line2d_24"> <g id="line2d_24">
<g> <g>
<use xlink:href="#m094e0870cd" x="274.4264" y="183.151529" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#ma5602f5983" x="274.4264" y="202.70235" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
<g id="ytick_12"> <g id="ytick_12">
<g id="line2d_25"> <g id="line2d_25">
<g> <g>
<use xlink:href="#m094e0870cd" x="274.4264" y="142.351255" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#ma5602f5983" x="274.4264" y="156.041596" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
<g id="ytick_13"> <g id="ytick_13">
<g id="line2d_26"> <g id="line2d_26">
<g> <g>
<use xlink:href="#m094e0870cd" x="274.4264" y="101.550981" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#ma5602f5983" x="274.4264" y="109.380842" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
<g id="ytick_14"> <g id="ytick_14">
<g id="line2d_27"> <g id="line2d_27">
<g> <g>
<use xlink:href="#m094e0870cd" x="274.4264" y="60.750707" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#ma5602f5983" x="274.4264" y="62.720089" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
</g> </g>
<g id="line2d_28"> <g id="line2d_28">
<path d="M 284.171276 305.119472 <path d="M 284.171276 342.189554
L 288.021104 304.94732 L 288.021104 341.992674
L 292.031341 304.682976 L 292.031341 341.690361
L 296.041578 304.356194 L 296.041578 341.316641
L 300.051815 304.239718 L 300.051815 341.183434
L 304.062052 302.770167 L 304.062052 339.5028
L 308.072289 302.93245 L 308.072289 339.688392
L 312.082526 303.167806 L 312.082526 339.957555
L 316.092763 301.706482 L 316.092763 338.286328
L 320.103 303.736666 L 320.103 340.608125
L 324.113237 302.300702 L 324.113237 338.965901
L 327.963064 300.667028 L 327.963064 337.097569
L 331.973301 300.908162 L 331.973301 337.373339
L 335.983538 300.050689 L 335.983538 336.3927
L 340.154185 300.998224 L 340.154185 337.476338
L 344.004012 300.710329 L 344.004012 337.14709
L 348.174659 293.411871 L 348.174659 328.800295
L 352.184896 288.646833 L 352.184896 323.350814
L 356.034723 281.123458 L 356.034723 314.746795
L 360.04496 277.166671 L 360.04496 310.221662
L 364.055198 277.78139 L 364.055198 310.924679
L 368.065435 288.346464 L 368.065435 323.007301
L 372.075672 293.756367 L 372.075672 329.194273
L 376.085909 287.469824 L 376.085909 322.004742
L 380.096146 288.83745 L 380.096146 323.568811
L 384.106383 286.879251 L 384.106383 321.32934
L 388.11662 287.986538 L 388.11662 322.595676
L 392.126857 292.021207 L 392.126857 327.209877
L 396.137094 295.349102 L 396.137094 331.015786
L 400.147331 288.602913 L 400.147331 323.300586
L 404.157568 292.962894 L 404.157568 328.286826
L 408.167805 291.980384 L 408.167805 327.163191
L 412.338451 267.544654 L 412.338451 299.217555
L 416.348688 280.658103 L 416.348688 314.214597
L 420.358925 283.786786 L 420.358925 317.792678
L 424.369162 289.942544 L 424.369162 324.832639
L 428.379399 288.423652 L 428.379399 323.095576
L 432.389636 297.254419 L 432.389636 333.194779
L 436.399873 299.320562 L 436.399873 335.557699
L 440.41011 305.109403 L 440.41011 342.178038
L 444.420347 304.85796 L 444.420347 341.890479
L 448.430585 301.720559 L 448.430585 338.302427
L 452.440822 290.21516 L 452.440822 325.144413
L 456.451059 298.282885 L 456.451059 334.370972
L 460.461296 302.878537 L 460.461296 339.626736
L 464.471533 279.985333 L 464.471533 313.445192
L 468.48177 287.23321 L 468.48177 321.734141
L 472.331597 303.890594 L 472.331597 340.784162
" clip-path="url(#p1d35cbc365)" style="fill: none; stroke: #1f77b4; stroke-width: 1.5; stroke-linecap: square"/> " clip-path="url(#p332c08cb60)" style="fill: none; stroke: #1f77b4; stroke-width: 1.5; stroke-linecap: square"/>
</g> </g>
<g id="line2d_29"> <g id="line2d_29">
<path d="M 380.256555 317.72 <path d="M 380.256555 356.6
L 380.256555 47.04 L 380.256555 47.04
" clip-path="url(#p1d35cbc365)" style="fill: none; stroke-dasharray: 5.55,2.4; stroke-dashoffset: 0; stroke: #000000; stroke-width: 1.5"/> " clip-path="url(#p332c08cb60)" style="fill: none; stroke-dasharray: 5.55,2.4; stroke-dashoffset: 0; stroke: #000000; stroke-width: 1.5"/>
</g> </g>
<g id="line2d_30"> <g id="line2d_30">
<path d="M 331.218875 317.72 <path d="M 331.218875 356.6
L 331.218875 47.04 L 331.218875 47.04
" clip-path="url(#p1d35cbc365)" style="fill: none; stroke-dasharray: 1.5,2.475; stroke-dashoffset: 0; stroke: #00008b; stroke-opacity: 0.8; stroke-width: 1.5"/> " clip-path="url(#p332c08cb60)" style="fill: none; stroke-dasharray: 1.5,2.475; stroke-dashoffset: 0; stroke: #00008b; stroke-opacity: 0.8; stroke-width: 1.5"/>
</g> </g>
<g id="patch_8"> <g id="patch_8">
<path d="M 274.4264 317.72 <path d="M 274.4264 356.6
L 274.4264 47.04 L 274.4264 47.04
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_9"> <g id="patch_9">
<path d="M 481.755654 317.72 <path d="M 481.755654 356.6
L 481.755654 47.04 L 481.755654 47.04
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_10"> <g id="patch_10">
<path d="M 274.4264 317.72 <path d="M 274.4264 356.6
L 481.755654 317.72 L 481.755654 356.6
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_11"> <g id="patch_11">
@@ -954,8 +954,8 @@ L 481.755654 47.04
</g> </g>
<g id="axes_3"> <g id="axes_3">
<g id="patch_12"> <g id="patch_12">
<path d="M 498.9632 317.72 <path d="M 498.9632 356.6
L 706.292454 317.72 L 706.292454 356.6
L 706.292454 47.04 L 706.292454 47.04
L 498.9632 47.04 L 498.9632 47.04
z z
@@ -965,12 +965,12 @@ z
<g id="xtick_11"> <g id="xtick_11">
<g id="line2d_31"> <g id="line2d_31">
<g> <g>
<use xlink:href="#m74c1b2cbc9" x="533.411136" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m9466860cd2" x="533.411136" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_22"> <g id="text_22">
<!-- 500 --> <!-- 500 -->
<g transform="translate(523.867386 332.318438) scale(0.1 -0.1)"> <g transform="translate(523.867386 371.198438) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-35"/> <use xlink:href="#DejaVuSans-35"/>
<use xlink:href="#DejaVuSans-30" x="63.623047"/> <use xlink:href="#DejaVuSans-30" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/> <use xlink:href="#DejaVuSans-30" x="127.246094"/>
@@ -980,12 +980,12 @@ z
<g id="xtick_12"> <g id="xtick_12">
<g id="line2d_32"> <g id="line2d_32">
<g> <g>
<use xlink:href="#m74c1b2cbc9" x="573.513506" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m9466860cd2" x="573.513506" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_23"> <g id="text_23">
<!-- 750 --> <!-- 750 -->
<g transform="translate(563.969756 332.318438) scale(0.1 -0.1)"> <g transform="translate(563.969756 371.198438) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-37"/> <use xlink:href="#DejaVuSans-37"/>
<use xlink:href="#DejaVuSans-35" x="63.623047"/> <use xlink:href="#DejaVuSans-35" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/> <use xlink:href="#DejaVuSans-30" x="127.246094"/>
@@ -995,12 +995,12 @@ z
<g id="xtick_13"> <g id="xtick_13">
<g id="line2d_33"> <g id="line2d_33">
<g> <g>
<use xlink:href="#m74c1b2cbc9" x="613.615877" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m9466860cd2" x="613.615877" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_24"> <g id="text_24">
<!-- 1000 --> <!-- 1000 -->
<g transform="translate(600.890877 332.318438) scale(0.1 -0.1)"> <g transform="translate(600.890877 371.198438) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-31"/> <use xlink:href="#DejaVuSans-31"/>
<use xlink:href="#DejaVuSans-30" x="63.623047"/> <use xlink:href="#DejaVuSans-30" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/> <use xlink:href="#DejaVuSans-30" x="127.246094"/>
@@ -1011,12 +1011,12 @@ z
<g id="xtick_14"> <g id="xtick_14">
<g id="line2d_34"> <g id="line2d_34">
<g> <g>
<use xlink:href="#m74c1b2cbc9" x="653.718247" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m9466860cd2" x="653.718247" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_25"> <g id="text_25">
<!-- 1250 --> <!-- 1250 -->
<g transform="translate(640.993247 332.318438) scale(0.1 -0.1)"> <g transform="translate(640.993247 371.198438) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-31"/> <use xlink:href="#DejaVuSans-31"/>
<use xlink:href="#DejaVuSans-32" x="63.623047"/> <use xlink:href="#DejaVuSans-32" x="63.623047"/>
<use xlink:href="#DejaVuSans-35" x="127.246094"/> <use xlink:href="#DejaVuSans-35" x="127.246094"/>
@@ -1027,12 +1027,12 @@ z
<g id="xtick_15"> <g id="xtick_15">
<g id="line2d_35"> <g id="line2d_35">
<g> <g>
<use xlink:href="#m74c1b2cbc9" x="693.820617" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m9466860cd2" x="693.820617" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_26"> <g id="text_26">
<!-- 1500 --> <!-- 1500 -->
<g transform="translate(681.095617 332.318438) scale(0.1 -0.1)"> <g transform="translate(681.095617 371.198438) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-31"/> <use xlink:href="#DejaVuSans-31"/>
<use xlink:href="#DejaVuSans-35" x="63.623047"/> <use xlink:href="#DejaVuSans-35" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/> <use xlink:href="#DejaVuSans-30" x="127.246094"/>
@@ -1045,127 +1045,127 @@ z
<g id="ytick_15"> <g id="ytick_15">
<g id="line2d_36"> <g id="line2d_36">
<g> <g>
<use xlink:href="#m094e0870cd" x="498.9632" y="305.55235" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#ma5602f5983" x="498.9632" y="342.68461" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
<g id="ytick_16"> <g id="ytick_16">
<g id="line2d_37"> <g id="line2d_37">
<g> <g>
<use xlink:href="#m094e0870cd" x="498.9632" y="264.752076" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#ma5602f5983" x="498.9632" y="296.023857" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
<g id="ytick_17"> <g id="ytick_17">
<g id="line2d_38"> <g id="line2d_38">
<g> <g>
<use xlink:href="#m094e0870cd" x="498.9632" y="223.951802" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#ma5602f5983" x="498.9632" y="249.363103" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
<g id="ytick_18"> <g id="ytick_18">
<g id="line2d_39"> <g id="line2d_39">
<g> <g>
<use xlink:href="#m094e0870cd" x="498.9632" y="183.151529" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#ma5602f5983" x="498.9632" y="202.70235" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
<g id="ytick_19"> <g id="ytick_19">
<g id="line2d_40"> <g id="line2d_40">
<g> <g>
<use xlink:href="#m094e0870cd" x="498.9632" y="142.351255" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#ma5602f5983" x="498.9632" y="156.041596" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
<g id="ytick_20"> <g id="ytick_20">
<g id="line2d_41"> <g id="line2d_41">
<g> <g>
<use xlink:href="#m094e0870cd" x="498.9632" y="101.550981" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#ma5602f5983" x="498.9632" y="109.380842" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
<g id="ytick_21"> <g id="ytick_21">
<g id="line2d_42"> <g id="line2d_42">
<g> <g>
<use xlink:href="#m094e0870cd" x="498.9632" y="60.750707" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#ma5602f5983" x="498.9632" y="62.720089" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
</g> </g>
<g id="line2d_43"> <g id="line2d_43">
<path d="M 508.387257 305.416364 <path d="M 508.387257 342.529091
L 512.397494 305.403722 L 512.397494 342.514633
L 516.407731 305.280902 L 516.407731 342.374171
L 520.417968 304.762949 L 520.417968 341.781821
L 524.428205 304.780934 L 524.428205 341.802389
L 528.438442 305.146485 L 528.438442 342.220447
L 532.448679 305.195939 L 532.448679 342.277005
L 536.458916 302.75638 L 536.458916 339.487032
L 540.469153 304.8882 L 540.469153 341.925063
L 544.47939 304.891785 L 544.47939 341.929163
L 548.489627 304.448815 L 548.489627 341.422566
L 552.499864 304.155022 L 552.499864 341.086572
L 556.510101 304.253553 L 556.510101 341.199256
L 560.520338 303.984059 L 560.520338 340.891052
L 564.690985 303.941785 L 564.690985 340.842706
L 568.701222 303.607645 L 568.701222 340.460571
L 572.711459 299.464982 L 572.711459 335.722863
L 576.721696 301.512266 L 576.721696 338.064215
L 580.731933 303.013011 L 580.731933 339.780525
L 584.74217 301.43285 L 584.74217 337.973393
L 588.591998 294.329152 L 588.591998 329.849332
L 592.602235 302.079937 L 592.602235 338.713425
L 596.612472 302.410638 L 596.612472 339.091628
L 600.622709 301.71896 L 600.622709 338.300599
L 604.632946 300.429357 L 604.632946 336.82576
L 608.643183 299.625703 L 608.643183 335.90667
L 612.65342 300.401398 L 612.65342 336.793784
L 616.663657 304.817175 L 616.663657 341.843835
L 620.513484 302.544467 L 620.513484 339.24468
L 624.523721 302.11841 L 624.523721 338.757425
L 628.533958 301.091156 L 628.533958 337.582618
L 632.544195 302.511244 L 632.544195 339.206685
L 636.714842 296.059538 L 636.714842 331.828267
L 640.564669 287.654759 L 640.564669 322.216241
L 644.574906 304.409906 L 644.574906 341.378067
L 648.585143 298.102072 L 648.585143 334.164187
L 652.59538 299.749951 L 652.59538 336.048765
L 656.605617 304.605305 L 656.605617 341.601533
L 660.615854 305.081979 L 660.615854 342.146676
L 664.626092 303.219118 L 664.626092 340.016236
L 668.636329 304.708292 L 668.636329 341.719313
L 672.646566 302.63535 L 672.646566 339.348617
L 676.656803 301.079336 L 676.656803 337.5691
L 680.66704 303.676297 L 680.66704 340.539084
L 684.677277 302.950561 L 684.677277 339.709105
L 688.687514 297.945563 L 688.687514 333.985198
L 692.85816 300.229398 L 692.85816 336.597079
L 696.868397 304.365882 L 696.868397 341.32772
" clip-path="url(#p3bee31a013)" style="fill: none; stroke: #1f77b4; stroke-width: 1.5; stroke-linecap: square"/> " clip-path="url(#pfe4b952092)" style="fill: none; stroke: #1f77b4; stroke-width: 1.5; stroke-linecap: square"/>
</g> </g>
<g id="line2d_44"> <g id="line2d_44">
<path d="M 604.793355 317.72 <path d="M 604.793355 356.6
L 604.793355 47.04 L 604.793355 47.04
" clip-path="url(#p3bee31a013)" style="fill: none; stroke-dasharray: 5.55,2.4; stroke-dashoffset: 0; stroke: #000000; stroke-width: 1.5"/> " clip-path="url(#pfe4b952092)" style="fill: none; stroke-dasharray: 5.55,2.4; stroke-dashoffset: 0; stroke: #000000; stroke-width: 1.5"/>
</g> </g>
<g id="line2d_45"> <g id="line2d_45">
<path d="M 555.755675 317.72 <path d="M 555.755675 356.6
L 555.755675 47.04 L 555.755675 47.04
" clip-path="url(#p3bee31a013)" style="fill: none; stroke-dasharray: 1.5,2.475; stroke-dashoffset: 0; stroke: #00008b; stroke-opacity: 0.8; stroke-width: 1.5"/> " clip-path="url(#pfe4b952092)" style="fill: none; stroke-dasharray: 1.5,2.475; stroke-dashoffset: 0; stroke: #00008b; stroke-opacity: 0.8; stroke-width: 1.5"/>
</g> </g>
<g id="patch_13"> <g id="patch_13">
<path d="M 498.9632 317.72 <path d="M 498.9632 356.6
L 498.9632 47.04 L 498.9632 47.04
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_14"> <g id="patch_14">
<path d="M 706.292454 317.72 <path d="M 706.292454 356.6
L 706.292454 47.04 L 706.292454 47.04
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_15"> <g id="patch_15">
<path d="M 498.9632 317.72 <path d="M 498.9632 356.6
L 706.292454 317.72 L 706.292454 356.6
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_16"> <g id="patch_16">
@@ -1489,27 +1489,27 @@ z
</g> </g>
<g id="legend_1"> <g id="legend_1">
<g id="patch_17"> <g id="patch_17">
<path d="M 117.271094 427 <path d="M 117.271094 405.4
L 602.728906 427 L 602.728906 405.4
Q 604.728906 427 604.728906 425 Q 604.728906 405.4 604.728906 403.4
L 604.728906 411.321875 L 604.728906 389.721875
Q 604.728906 409.321875 602.728906 409.321875 Q 604.728906 387.721875 602.728906 387.721875
L 117.271094 409.321875 L 117.271094 387.721875
Q 115.271094 409.321875 115.271094 411.321875 Q 115.271094 387.721875 115.271094 389.721875
L 115.271094 425 L 115.271094 403.4
Q 115.271094 427 117.271094 427 Q 115.271094 405.4 117.271094 405.4
z z
" style="fill: #ffffff; opacity: 0.8; stroke: #cccccc; stroke-linejoin: miter"/> " style="fill: #ffffff; opacity: 0.8; stroke: #cccccc; stroke-linejoin: miter"/>
</g> </g>
<g id="line2d_46"> <g id="line2d_46">
<path d="M 119.271094 417.420313 <path d="M 119.271094 395.820312
L 129.271094 417.420313 L 129.271094 395.820312
L 139.271094 417.420313 L 139.271094 395.820312
" style="fill: none; stroke: #1f77b4; stroke-width: 1.5; stroke-linecap: square"/> " style="fill: none; stroke: #1f77b4; stroke-width: 1.5; stroke-linecap: square"/>
</g> </g>
<g id="text_30"> <g id="text_30">
<!-- power of stimulus peak --> <!-- power of stimulus peak -->
<g transform="translate(147.271094 420.920313) scale(0.1 -0.1)"> <g transform="translate(147.271094 399.320312) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-6b" d="M 581 4863 <path id="DejaVuSans-6b" d="M 581 4863
L 1159 4863 L 1159 4863
@@ -1551,14 +1551,14 @@ z
</g> </g>
</g> </g>
<g id="line2d_47"> <g id="line2d_47">
<path d="M 284.085156 417.420313 <path d="M 284.085156 395.820312
L 294.085156 417.420313 L 294.085156 395.820312
L 304.085156 417.420313 L 304.085156 395.820312
" style="fill: none; stroke-dasharray: 5.55,2.4; stroke-dashoffset: 0; stroke: #000000; stroke-width: 1.5"/> " style="fill: none; stroke-dasharray: 5.55,2.4; stroke-dashoffset: 0; stroke: #000000; stroke-width: 1.5"/>
</g> </g>
<g id="text_31"> <g id="text_31">
<!-- EODf of awake fish --> <!-- EODf of awake fish -->
<g transform="translate(312.085156 420.920313) scale(0.1 -0.1)"> <g transform="translate(312.085156 399.320312) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-45" d="M 628 4666 <path id="DejaVuSans-45" d="M 628 4666
L 3578 4666 L 3578 4666
@@ -1656,14 +1656,14 @@ z
</g> </g>
</g> </g>
<g id="line2d_48"> <g id="line2d_48">
<path d="M 426.530469 417.420313 <path d="M 426.530469 395.820312
L 436.530469 417.420313 L 436.530469 395.820312
L 446.530469 417.420313 L 446.530469 395.820312
" style="fill: none; stroke-dasharray: 1.5,2.475; stroke-dashoffset: 0; stroke: #00008b; stroke-opacity: 0.8; stroke-width: 1.5"/> " style="fill: none; stroke-dasharray: 1.5,2.475; stroke-dashoffset: 0; stroke: #00008b; stroke-opacity: 0.8; stroke-width: 1.5"/>
</g> </g>
<g id="text_32"> <g id="text_32">
<!-- 1st harmonic of current EODf --> <!-- 1st harmonic of current EODf -->
<g transform="translate(454.530469 420.920313) scale(0.1 -0.1)"> <g transform="translate(454.530469 399.320312) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-31"/> <use xlink:href="#DejaVuSans-31"/>
<use xlink:href="#DejaVuSans-73" x="63.623047"/> <use xlink:href="#DejaVuSans-73" x="63.623047"/>
<use xlink:href="#DejaVuSans-74" x="115.722656"/> <use xlink:href="#DejaVuSans-74" x="115.722656"/>
@@ -1697,14 +1697,14 @@ L 446.530469 417.420313
</g> </g>
</g> </g>
<defs> <defs>
<clipPath id="p9de685a70b"> <clipPath id="pf82a77cab1">
<rect x="49.8896" y="47.04" width="207.329254" height="270.68"/> <rect x="49.8896" y="47.04" width="207.329254" height="309.56"/>
</clipPath> </clipPath>
<clipPath id="p1d35cbc365"> <clipPath id="p332c08cb60">
<rect x="274.4264" y="47.04" width="207.329254" height="270.68"/> <rect x="274.4264" y="47.04" width="207.329254" height="309.56"/>
</clipPath> </clipPath>
<clipPath id="p3bee31a013"> <clipPath id="pfe4b952092">
<rect x="498.9632" y="47.04" width="207.329254" height="270.68"/> <rect x="498.9632" y="47.04" width="207.329254" height="309.56"/>
</clipPath> </clipPath>
</defs> </defs>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 46 KiB

After

Width:  |  Height:  |  Size: 46 KiB

View File

@@ -6,7 +6,7 @@
<rdf:RDF xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:RDF xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<cc:Work> <cc:Work>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<dc:date>2024-10-25T15:21:01.572081</dc:date> <dc:date>2024-10-25T16:37:15.698034</dc:date>
<dc:format>image/svg+xml</dc:format> <dc:format>image/svg+xml</dc:format>
<dc:creator> <dc:creator>
<cc:Agent> <cc:Agent>
@@ -30,8 +30,8 @@ z
</g> </g>
<g id="axes_1"> <g id="axes_1">
<g id="patch_2"> <g id="patch_2">
<path d="M 59.4296 317.72 <path d="M 59.4296 356.6
L 262.816993 317.72 L 262.816993 356.6
L 262.816993 47.04 L 262.816993 47.04
L 59.4296 47.04 L 59.4296 47.04
z z
@@ -41,17 +41,17 @@ z
<g id="xtick_1"> <g id="xtick_1">
<g id="line2d_1"> <g id="line2d_1">
<defs> <defs>
<path id="m3496b98adf" d="M 0 0 <path id="md80749150d" d="M 0 0
L 0 3.5 L 0 3.5
" style="stroke: #000000; stroke-width: 0.8"/> " style="stroke: #000000; stroke-width: 0.8"/>
</defs> </defs>
<g> <g>
<use xlink:href="#m3496b98adf" x="94.16675" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#md80749150d" x="94.16675" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_1"> <g id="text_1">
<!-- 500 --> <!-- 500 -->
<g transform="translate(84.623 332.318438) scale(0.1 -0.1)"> <g transform="translate(84.623 371.198438) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-35" d="M 691 4666 <path id="DejaVuSans-35" d="M 691 4666
L 3169 4666 L 3169 4666
@@ -109,12 +109,12 @@ z
<g id="xtick_2"> <g id="xtick_2">
<g id="line2d_2"> <g id="line2d_2">
<g> <g>
<use xlink:href="#m3496b98adf" x="133.506672" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#md80749150d" x="133.506672" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_2"> <g id="text_2">
<!-- 750 --> <!-- 750 -->
<g transform="translate(123.962922 332.318438) scale(0.1 -0.1)"> <g transform="translate(123.962922 371.198438) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-37" d="M 525 4666 <path id="DejaVuSans-37" d="M 525 4666
L 3525 4666 L 3525 4666
@@ -136,12 +136,12 @@ z
<g id="xtick_3"> <g id="xtick_3">
<g id="line2d_3"> <g id="line2d_3">
<g> <g>
<use xlink:href="#m3496b98adf" x="172.846593" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#md80749150d" x="172.846593" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_3"> <g id="text_3">
<!-- 1000 --> <!-- 1000 -->
<g transform="translate(160.121593 332.318438) scale(0.1 -0.1)"> <g transform="translate(160.121593 371.198438) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-31" d="M 794 531 <path id="DejaVuSans-31" d="M 794 531
L 1825 531 L 1825 531
@@ -168,12 +168,12 @@ z
<g id="xtick_4"> <g id="xtick_4">
<g id="line2d_4"> <g id="line2d_4">
<g> <g>
<use xlink:href="#m3496b98adf" x="212.186514" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#md80749150d" x="212.186514" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_4"> <g id="text_4">
<!-- 1250 --> <!-- 1250 -->
<g transform="translate(199.461514 332.318438) scale(0.1 -0.1)"> <g transform="translate(199.461514 371.198438) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-32" d="M 1228 531 <path id="DejaVuSans-32" d="M 1228 531
L 3431 531 L 3431 531
@@ -210,12 +210,12 @@ z
<g id="xtick_5"> <g id="xtick_5">
<g id="line2d_5"> <g id="line2d_5">
<g> <g>
<use xlink:href="#m3496b98adf" x="251.526435" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#md80749150d" x="251.526435" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_5"> <g id="text_5">
<!-- 1500 --> <!-- 1500 -->
<g transform="translate(238.801435 332.318438) scale(0.1 -0.1)"> <g transform="translate(238.801435 371.198438) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-31"/> <use xlink:href="#DejaVuSans-31"/>
<use xlink:href="#DejaVuSans-35" x="63.623047"/> <use xlink:href="#DejaVuSans-35" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/> <use xlink:href="#DejaVuSans-30" x="127.246094"/>
@@ -228,17 +228,17 @@ z
<g id="ytick_1"> <g id="ytick_1">
<g id="line2d_6"> <g id="line2d_6">
<defs> <defs>
<path id="me13cc3a1e2" d="M 0 0 <path id="mef1747ed03" d="M 0 0
L -3.5 0 L -3.5 0
" style="stroke: #000000; stroke-width: 0.8"/> " style="stroke: #000000; stroke-width: 0.8"/>
</defs> </defs>
<g> <g>
<use xlink:href="#me13cc3a1e2" x="59.4296" y="317.318452" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mef1747ed03" x="59.4296" y="356.140774" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_6"> <g id="text_6">
<!-- 0.0 --> <!-- 0.0 -->
<g transform="translate(36.526475 321.117671) scale(0.1 -0.1)"> <g transform="translate(36.526475 359.939993) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-2e" d="M 684 794 <path id="DejaVuSans-2e" d="M 684 794
L 1344 794 L 1344 794
@@ -257,12 +257,12 @@ z
<g id="ytick_2"> <g id="ytick_2">
<g id="line2d_7"> <g id="line2d_7">
<g> <g>
<use xlink:href="#me13cc3a1e2" x="59.4296" y="275.948917" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mef1747ed03" x="59.4296" y="308.828992" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_7"> <g id="text_7">
<!-- 0.5 --> <!-- 0.5 -->
<g transform="translate(36.526475 279.748136) scale(0.1 -0.1)"> <g transform="translate(36.526475 312.628211) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-30"/> <use xlink:href="#DejaVuSans-30"/>
<use xlink:href="#DejaVuSans-2e" x="63.623047"/> <use xlink:href="#DejaVuSans-2e" x="63.623047"/>
<use xlink:href="#DejaVuSans-35" x="95.410156"/> <use xlink:href="#DejaVuSans-35" x="95.410156"/>
@@ -272,12 +272,12 @@ z
<g id="ytick_3"> <g id="ytick_3">
<g id="line2d_8"> <g id="line2d_8">
<g> <g>
<use xlink:href="#me13cc3a1e2" x="59.4296" y="234.579382" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mef1747ed03" x="59.4296" y="261.517209" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_8"> <g id="text_8">
<!-- 1.0 --> <!-- 1.0 -->
<g transform="translate(36.526475 238.378601) scale(0.1 -0.1)"> <g transform="translate(36.526475 265.316428) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-31"/> <use xlink:href="#DejaVuSans-31"/>
<use xlink:href="#DejaVuSans-2e" x="63.623047"/> <use xlink:href="#DejaVuSans-2e" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="95.410156"/> <use xlink:href="#DejaVuSans-30" x="95.410156"/>
@@ -287,12 +287,12 @@ z
<g id="ytick_4"> <g id="ytick_4">
<g id="line2d_9"> <g id="line2d_9">
<g> <g>
<use xlink:href="#me13cc3a1e2" x="59.4296" y="193.209847" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mef1747ed03" x="59.4296" y="214.205427" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_9"> <g id="text_9">
<!-- 1.5 --> <!-- 1.5 -->
<g transform="translate(36.526475 197.009066) scale(0.1 -0.1)"> <g transform="translate(36.526475 218.004646) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-31"/> <use xlink:href="#DejaVuSans-31"/>
<use xlink:href="#DejaVuSans-2e" x="63.623047"/> <use xlink:href="#DejaVuSans-2e" x="63.623047"/>
<use xlink:href="#DejaVuSans-35" x="95.410156"/> <use xlink:href="#DejaVuSans-35" x="95.410156"/>
@@ -302,12 +302,12 @@ z
<g id="ytick_5"> <g id="ytick_5">
<g id="line2d_10"> <g id="line2d_10">
<g> <g>
<use xlink:href="#me13cc3a1e2" x="59.4296" y="151.840312" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mef1747ed03" x="59.4296" y="166.893645" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_10"> <g id="text_10">
<!-- 2.0 --> <!-- 2.0 -->
<g transform="translate(36.526475 155.639531) scale(0.1 -0.1)"> <g transform="translate(36.526475 170.692864) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-32"/> <use xlink:href="#DejaVuSans-32"/>
<use xlink:href="#DejaVuSans-2e" x="63.623047"/> <use xlink:href="#DejaVuSans-2e" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="95.410156"/> <use xlink:href="#DejaVuSans-30" x="95.410156"/>
@@ -317,12 +317,12 @@ z
<g id="ytick_6"> <g id="ytick_6">
<g id="line2d_11"> <g id="line2d_11">
<g> <g>
<use xlink:href="#me13cc3a1e2" x="59.4296" y="110.470777" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mef1747ed03" x="59.4296" y="119.581863" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_11"> <g id="text_11">
<!-- 2.5 --> <!-- 2.5 -->
<g transform="translate(36.526475 114.269996) scale(0.1 -0.1)"> <g transform="translate(36.526475 123.381081) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-32"/> <use xlink:href="#DejaVuSans-32"/>
<use xlink:href="#DejaVuSans-2e" x="63.623047"/> <use xlink:href="#DejaVuSans-2e" x="63.623047"/>
<use xlink:href="#DejaVuSans-35" x="95.410156"/> <use xlink:href="#DejaVuSans-35" x="95.410156"/>
@@ -332,12 +332,12 @@ z
<g id="ytick_7"> <g id="ytick_7">
<g id="line2d_12"> <g id="line2d_12">
<g> <g>
<use xlink:href="#me13cc3a1e2" x="59.4296" y="69.101242" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mef1747ed03" x="59.4296" y="72.27008" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_12"> <g id="text_12">
<!-- 3.0 --> <!-- 3.0 -->
<g transform="translate(36.526475 72.900461) scale(0.1 -0.1)"> <g transform="translate(36.526475 76.069299) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-33" d="M 2597 2516 <path id="DejaVuSans-33" d="M 2597 2516
Q 3050 2419 3304 2112 Q 3050 2419 3304 2112
@@ -380,7 +380,7 @@ z
</g> </g>
<g id="text_13"> <g id="text_13">
<!-- power [$\frac{\mathrm{mV^2}}{\mathrm{Hz}}$] --> <!-- power [$\frac{\mathrm{mV^2}}{\mathrm{Hz}}$] -->
<g transform="translate(27.846475 217.3) rotate(-90) scale(0.12 -0.12)"> <g transform="translate(27.846475 236.74) rotate(-90) scale(0.12 -0.12)">
<defs> <defs>
<path id="DejaVuSans-70" d="M 1159 525 <path id="DejaVuSans-70" d="M 1159 525
L 1159 -1331 L 1159 -1331
@@ -651,63 +651,63 @@ z
</g> </g>
</g> </g>
<g id="line2d_13"> <g id="line2d_13">
<path d="M 69.61864 288.604702 <path d="M 69.61864 323.302632
L 73.552632 281.259416 L 73.552632 314.902281
L 77.486624 266.895432 L 77.486624 298.475081
L 81.420616 264.463207 L 81.420616 295.693495
L 85.354608 271.530416 L 85.354608 303.775825
L 89.2886 278.422652 L 89.2886 311.65805
L 93.222592 280.531198 L 93.222592 314.069463
L 97.156584 266.624321 L 97.156584 298.165028
L 101.090577 290.515019 L 101.090577 325.487343
L 104.867209 264.071171 L 104.867209 295.245148
L 108.801201 269.379655 L 108.801201 301.316133
L 112.735193 293.463386 L 112.735193 328.859209
L 116.669185 289.949174 L 116.669185 324.840221
L 120.603178 278.882192 L 120.603178 312.183598
L 124.53717 283.015462 L 124.53717 316.910563
L 128.471162 278.099384 L 128.471162 311.288349
L 132.405154 266.756904 L 132.405154 298.316654
L 136.339146 276.280955 L 136.339146 309.208723
L 140.273138 282.30837 L 140.273138 316.101906
L 144.049771 288.257924 L 144.049771 322.906044
L 147.983763 272.371144 L 147.983763 304.737314
L 151.917755 292.62293 L 151.917755 327.898031
L 155.851747 290.811972 L 155.851747 325.82695
L 159.785739 267.351667 L 159.785739 298.996848
L 163.719731 291.563249 L 163.719731 326.686139
L 167.653723 253.449795 L 167.653723 283.098136
L 171.587715 302.007116 L 171.587715 338.630145
L 175.521708 278.952994 L 175.521708 312.26457
L 179.4557 289.434633 L 179.4557 324.251773
L 183.389692 261.115994 L 183.389692 291.865494
L 187.323684 259.188254 L 187.323684 289.660857
L 191.257676 261.608665 L 191.257676 292.428931
" clip-path="url(#pa449a11be7)" style="fill: none; stroke: #1f77b4; stroke-width: 1.5; stroke-linecap: square"/> " clip-path="url(#p72bd87130c)" style="fill: none; stroke: #1f77b4; stroke-width: 1.5; stroke-linecap: square"/>
</g> </g>
<g id="line2d_14"> <g id="line2d_14">
<path d="M 164.19181 317.72 <path d="M 164.19181 356.6
L 164.19181 47.04 L 164.19181 47.04
" clip-path="url(#pa449a11be7)" style="fill: none; stroke-dasharray: 5.55,2.4; stroke-dashoffset: 0; stroke: #000000; stroke-width: 1.5"/> " clip-path="url(#p72bd87130c)" style="fill: none; stroke-dasharray: 5.55,2.4; stroke-dashoffset: 0; stroke: #000000; stroke-width: 1.5"/>
</g> </g>
<g id="line2d_15"> <g id="line2d_15">
<path d="M 114.539912 317.72 <path d="M 114.539912 356.6
L 114.539912 47.04 L 114.539912 47.04
" clip-path="url(#pa449a11be7)" style="fill: none; stroke-dasharray: 1.5,2.475; stroke-dashoffset: 0; stroke: #00008b; stroke-opacity: 0.8; stroke-width: 1.5"/> " clip-path="url(#p72bd87130c)" style="fill: none; stroke-dasharray: 1.5,2.475; stroke-dashoffset: 0; stroke: #00008b; stroke-opacity: 0.8; stroke-width: 1.5"/>
</g> </g>
<g id="patch_3"> <g id="patch_3">
<path d="M 59.4296 317.72 <path d="M 59.4296 356.6
L 59.4296 47.04 L 59.4296 47.04
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_4"> <g id="patch_4">
<path d="M 262.816993 317.72 <path d="M 262.816993 356.6
L 262.816993 47.04 L 262.816993 47.04
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_5"> <g id="patch_5">
<path d="M 59.4296 317.72 <path d="M 59.4296 356.6
L 262.816993 317.72 L 262.816993 356.6
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_6"> <g id="patch_6">
@@ -725,8 +725,8 @@ L 262.816993 47.04
</g> </g>
<g id="axes_2"> <g id="axes_2">
<g id="patch_7"> <g id="patch_7">
<path d="M 280.7864 317.72 <path d="M 280.7864 356.6
L 484.173793 317.72 L 484.173793 356.6
L 484.173793 47.04 L 484.173793 47.04
L 280.7864 47.04 L 280.7864 47.04
z z
@@ -736,12 +736,12 @@ z
<g id="xtick_6"> <g id="xtick_6">
<g id="line2d_16"> <g id="line2d_16">
<g> <g>
<use xlink:href="#m3496b98adf" x="315.52355" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#md80749150d" x="315.52355" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_16"> <g id="text_16">
<!-- 500 --> <!-- 500 -->
<g transform="translate(305.9798 332.318438) scale(0.1 -0.1)"> <g transform="translate(305.9798 371.198438) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-35"/> <use xlink:href="#DejaVuSans-35"/>
<use xlink:href="#DejaVuSans-30" x="63.623047"/> <use xlink:href="#DejaVuSans-30" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/> <use xlink:href="#DejaVuSans-30" x="127.246094"/>
@@ -751,12 +751,12 @@ z
<g id="xtick_7"> <g id="xtick_7">
<g id="line2d_17"> <g id="line2d_17">
<g> <g>
<use xlink:href="#m3496b98adf" x="354.863472" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#md80749150d" x="354.863472" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_17"> <g id="text_17">
<!-- 750 --> <!-- 750 -->
<g transform="translate(345.319722 332.318438) scale(0.1 -0.1)"> <g transform="translate(345.319722 371.198438) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-37"/> <use xlink:href="#DejaVuSans-37"/>
<use xlink:href="#DejaVuSans-35" x="63.623047"/> <use xlink:href="#DejaVuSans-35" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/> <use xlink:href="#DejaVuSans-30" x="127.246094"/>
@@ -766,12 +766,12 @@ z
<g id="xtick_8"> <g id="xtick_8">
<g id="line2d_18"> <g id="line2d_18">
<g> <g>
<use xlink:href="#m3496b98adf" x="394.203393" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#md80749150d" x="394.203393" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_18"> <g id="text_18">
<!-- 1000 --> <!-- 1000 -->
<g transform="translate(381.478393 332.318438) scale(0.1 -0.1)"> <g transform="translate(381.478393 371.198438) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-31"/> <use xlink:href="#DejaVuSans-31"/>
<use xlink:href="#DejaVuSans-30" x="63.623047"/> <use xlink:href="#DejaVuSans-30" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/> <use xlink:href="#DejaVuSans-30" x="127.246094"/>
@@ -782,12 +782,12 @@ z
<g id="xtick_9"> <g id="xtick_9">
<g id="line2d_19"> <g id="line2d_19">
<g> <g>
<use xlink:href="#m3496b98adf" x="433.543314" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#md80749150d" x="433.543314" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_19"> <g id="text_19">
<!-- 1250 --> <!-- 1250 -->
<g transform="translate(420.818314 332.318438) scale(0.1 -0.1)"> <g transform="translate(420.818314 371.198438) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-31"/> <use xlink:href="#DejaVuSans-31"/>
<use xlink:href="#DejaVuSans-32" x="63.623047"/> <use xlink:href="#DejaVuSans-32" x="63.623047"/>
<use xlink:href="#DejaVuSans-35" x="127.246094"/> <use xlink:href="#DejaVuSans-35" x="127.246094"/>
@@ -798,12 +798,12 @@ z
<g id="xtick_10"> <g id="xtick_10">
<g id="line2d_20"> <g id="line2d_20">
<g> <g>
<use xlink:href="#m3496b98adf" x="472.883235" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#md80749150d" x="472.883235" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_20"> <g id="text_20">
<!-- 1500 --> <!-- 1500 -->
<g transform="translate(460.158235 332.318438) scale(0.1 -0.1)"> <g transform="translate(460.158235 371.198438) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-31"/> <use xlink:href="#DejaVuSans-31"/>
<use xlink:href="#DejaVuSans-35" x="63.623047"/> <use xlink:href="#DejaVuSans-35" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/> <use xlink:href="#DejaVuSans-30" x="127.246094"/>
@@ -816,127 +816,127 @@ z
<g id="ytick_8"> <g id="ytick_8">
<g id="line2d_21"> <g id="line2d_21">
<g> <g>
<use xlink:href="#me13cc3a1e2" x="280.7864" y="317.318452" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mef1747ed03" x="280.7864" y="356.140774" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
<g id="ytick_9"> <g id="ytick_9">
<g id="line2d_22"> <g id="line2d_22">
<g> <g>
<use xlink:href="#me13cc3a1e2" x="280.7864" y="275.948917" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mef1747ed03" x="280.7864" y="308.828992" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
<g id="ytick_10"> <g id="ytick_10">
<g id="line2d_23"> <g id="line2d_23">
<g> <g>
<use xlink:href="#me13cc3a1e2" x="280.7864" y="234.579382" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mef1747ed03" x="280.7864" y="261.517209" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
<g id="ytick_11"> <g id="ytick_11">
<g id="line2d_24"> <g id="line2d_24">
<g> <g>
<use xlink:href="#me13cc3a1e2" x="280.7864" y="193.209847" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mef1747ed03" x="280.7864" y="214.205427" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
<g id="ytick_12"> <g id="ytick_12">
<g id="line2d_25"> <g id="line2d_25">
<g> <g>
<use xlink:href="#me13cc3a1e2" x="280.7864" y="151.840312" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mef1747ed03" x="280.7864" y="166.893645" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
<g id="ytick_13"> <g id="ytick_13">
<g id="line2d_26"> <g id="line2d_26">
<g> <g>
<use xlink:href="#me13cc3a1e2" x="280.7864" y="110.470777" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mef1747ed03" x="280.7864" y="119.581863" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
<g id="ytick_14"> <g id="ytick_14">
<g id="line2d_27"> <g id="line2d_27">
<g> <g>
<use xlink:href="#me13cc3a1e2" x="280.7864" y="69.101242" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mef1747ed03" x="280.7864" y="72.27008" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
</g> </g>
<g id="line2d_28"> <g id="line2d_28">
<path d="M 290.66072 274.878567 <path d="M 290.66072 307.604899
L 294.594712 281.412705 L 294.594712 315.077589
L 298.528704 273.561178 L 298.528704 306.098282
L 302.462697 287.718779 L 302.462697 322.289456
L 306.396689 280.141285 L 306.396689 313.623544
L 310.330681 227.325433 L 310.330681 253.221316
L 314.264673 294.291798 L 314.264673 329.806612
L 318.198665 280.054491 L 318.198665 313.524284
L 322.132657 284.52508 L 322.132657 318.63702
L 326.066649 268.889794 L 326.066649 300.755909
L 330.000641 269.151562 L 330.000641 301.055276
L 333.777274 291.785686 L 333.777274 326.940526
L 337.711266 296.008386 L 337.711266 331.769767
L 341.645258 293.512869 L 341.645258 328.9158
L 345.57925 285.349465 L 345.57925 319.579819
L 349.513242 277.76848 L 349.513242 310.909914
L 353.447235 296.091859 L 353.447235 331.865231
L 357.223867 299.919326 L 357.223867 336.242468
L 361.157859 149.459039 L 361.157859 164.17033
L 365.091851 166.884223 L 365.091851 184.098436
L 368.868484 286.9382 L 368.868484 321.396756
L 372.802476 289.43222 L 372.802476 324.249013
L 376.736468 275.244514 L 376.736468 308.02341
L 380.67046 293.902709 L 380.67046 329.361635
L 384.604452 287.883269 L 384.604452 322.477574
L 388.538444 287.231241 L 388.538444 321.731889
L 392.472436 305.416364 L 392.472436 342.529091
L 396.406429 304.677697 L 396.406429 341.684323
L 400.340421 289.098094 L 400.340421 323.866893
L 404.274413 300.390656 L 404.274413 336.7815
L 408.208405 285.060597 L 408.208405 319.249457
L 412.142397 289.67414 L 412.142397 324.525681
L 416.076389 290.017061 L 416.076389 324.917859
L 420.010381 288.69768 L 420.010381 323.408965
L 423.944373 278.403311 L 423.944373 311.63593
L 427.878365 291.032689 L 427.878365 326.079371
L 431.812358 280.766476 L 431.812358 314.338536
L 435.74635 268.041305 L 435.74635 299.785544
L 439.680342 293.862384 L 439.680342 329.315518
L 443.614334 269.405097 L 443.614334 301.345229
L 447.390966 289.858137 L 447.390966 324.736108
L 451.324959 277.828677 L 451.324959 310.978757
L 455.258951 285.768977 L 455.258951 320.059588
L 459.192943 289.101006 L 459.192943 323.870224
L 463.126935 274.552007 L 463.126935 307.231432
L 467.060927 268.037556 L 467.060927 299.781257
L 470.994919 279.612467 L 470.994919 313.018768
L 474.928911 294.00223 L 474.928911 329.475451
" clip-path="url(#p5760ec64b8)" style="fill: none; stroke: #1f77b4; stroke-width: 1.5; stroke-linecap: square"/> " clip-path="url(#pf71fba15a7)" style="fill: none; stroke: #1f77b4; stroke-width: 1.5; stroke-linecap: square"/>
</g> </g>
<g id="line2d_29"> <g id="line2d_29">
<path d="M 385.54861 317.72 <path d="M 385.54861 356.6
L 385.54861 47.04 L 385.54861 47.04
" clip-path="url(#p5760ec64b8)" style="fill: none; stroke-dasharray: 5.55,2.4; stroke-dashoffset: 0; stroke: #000000; stroke-width: 1.5"/> " clip-path="url(#pf71fba15a7)" style="fill: none; stroke-dasharray: 5.55,2.4; stroke-dashoffset: 0; stroke: #000000; stroke-width: 1.5"/>
</g> </g>
<g id="line2d_30"> <g id="line2d_30">
<path d="M 335.896712 317.72 <path d="M 335.896712 356.6
L 335.896712 47.04 L 335.896712 47.04
" clip-path="url(#p5760ec64b8)" style="fill: none; stroke-dasharray: 1.5,2.475; stroke-dashoffset: 0; stroke: #00008b; stroke-opacity: 0.8; stroke-width: 1.5"/> " clip-path="url(#pf71fba15a7)" style="fill: none; stroke-dasharray: 1.5,2.475; stroke-dashoffset: 0; stroke: #00008b; stroke-opacity: 0.8; stroke-width: 1.5"/>
</g> </g>
<g id="patch_8"> <g id="patch_8">
<path d="M 280.7864 317.72 <path d="M 280.7864 356.6
L 280.7864 47.04 L 280.7864 47.04
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_9"> <g id="patch_9">
<path d="M 484.173793 317.72 <path d="M 484.173793 356.6
L 484.173793 47.04 L 484.173793 47.04
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_10"> <g id="patch_10">
<path d="M 280.7864 317.72 <path d="M 280.7864 356.6
L 484.173793 317.72 L 484.173793 356.6
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_11"> <g id="patch_11">
@@ -954,8 +954,8 @@ L 484.173793 47.04
</g> </g>
<g id="axes_3"> <g id="axes_3">
<g id="patch_12"> <g id="patch_12">
<path d="M 502.1432 317.72 <path d="M 502.1432 356.6
L 705.530593 317.72 L 705.530593 356.6
L 705.530593 47.04 L 705.530593 47.04
L 502.1432 47.04 L 502.1432 47.04
z z
@@ -965,12 +965,12 @@ z
<g id="xtick_11"> <g id="xtick_11">
<g id="line2d_31"> <g id="line2d_31">
<g> <g>
<use xlink:href="#m3496b98adf" x="536.88035" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#md80749150d" x="536.88035" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_22"> <g id="text_22">
<!-- 500 --> <!-- 500 -->
<g transform="translate(527.3366 332.318438) scale(0.1 -0.1)"> <g transform="translate(527.3366 371.198438) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-35"/> <use xlink:href="#DejaVuSans-35"/>
<use xlink:href="#DejaVuSans-30" x="63.623047"/> <use xlink:href="#DejaVuSans-30" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/> <use xlink:href="#DejaVuSans-30" x="127.246094"/>
@@ -980,12 +980,12 @@ z
<g id="xtick_12"> <g id="xtick_12">
<g id="line2d_32"> <g id="line2d_32">
<g> <g>
<use xlink:href="#m3496b98adf" x="576.220272" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#md80749150d" x="576.220272" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_23"> <g id="text_23">
<!-- 750 --> <!-- 750 -->
<g transform="translate(566.676522 332.318438) scale(0.1 -0.1)"> <g transform="translate(566.676522 371.198438) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-37"/> <use xlink:href="#DejaVuSans-37"/>
<use xlink:href="#DejaVuSans-35" x="63.623047"/> <use xlink:href="#DejaVuSans-35" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/> <use xlink:href="#DejaVuSans-30" x="127.246094"/>
@@ -995,12 +995,12 @@ z
<g id="xtick_13"> <g id="xtick_13">
<g id="line2d_33"> <g id="line2d_33">
<g> <g>
<use xlink:href="#m3496b98adf" x="615.560193" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#md80749150d" x="615.560193" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_24"> <g id="text_24">
<!-- 1000 --> <!-- 1000 -->
<g transform="translate(602.835193 332.318438) scale(0.1 -0.1)"> <g transform="translate(602.835193 371.198438) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-31"/> <use xlink:href="#DejaVuSans-31"/>
<use xlink:href="#DejaVuSans-30" x="63.623047"/> <use xlink:href="#DejaVuSans-30" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/> <use xlink:href="#DejaVuSans-30" x="127.246094"/>
@@ -1011,12 +1011,12 @@ z
<g id="xtick_14"> <g id="xtick_14">
<g id="line2d_34"> <g id="line2d_34">
<g> <g>
<use xlink:href="#m3496b98adf" x="654.900114" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#md80749150d" x="654.900114" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_25"> <g id="text_25">
<!-- 1250 --> <!-- 1250 -->
<g transform="translate(642.175114 332.318438) scale(0.1 -0.1)"> <g transform="translate(642.175114 371.198438) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-31"/> <use xlink:href="#DejaVuSans-31"/>
<use xlink:href="#DejaVuSans-32" x="63.623047"/> <use xlink:href="#DejaVuSans-32" x="63.623047"/>
<use xlink:href="#DejaVuSans-35" x="127.246094"/> <use xlink:href="#DejaVuSans-35" x="127.246094"/>
@@ -1027,12 +1027,12 @@ z
<g id="xtick_15"> <g id="xtick_15">
<g id="line2d_35"> <g id="line2d_35">
<g> <g>
<use xlink:href="#m3496b98adf" x="694.240035" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#md80749150d" x="694.240035" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_26"> <g id="text_26">
<!-- 1500 --> <!-- 1500 -->
<g transform="translate(681.515035 332.318438) scale(0.1 -0.1)"> <g transform="translate(681.515035 371.198438) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-31"/> <use xlink:href="#DejaVuSans-31"/>
<use xlink:href="#DejaVuSans-35" x="63.623047"/> <use xlink:href="#DejaVuSans-35" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/> <use xlink:href="#DejaVuSans-30" x="127.246094"/>
@@ -1045,127 +1045,127 @@ z
<g id="ytick_15"> <g id="ytick_15">
<g id="line2d_36"> <g id="line2d_36">
<g> <g>
<use xlink:href="#me13cc3a1e2" x="502.1432" y="317.318452" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mef1747ed03" x="502.1432" y="356.140774" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
<g id="ytick_16"> <g id="ytick_16">
<g id="line2d_37"> <g id="line2d_37">
<g> <g>
<use xlink:href="#me13cc3a1e2" x="502.1432" y="275.948917" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mef1747ed03" x="502.1432" y="308.828992" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
<g id="ytick_17"> <g id="ytick_17">
<g id="line2d_38"> <g id="line2d_38">
<g> <g>
<use xlink:href="#me13cc3a1e2" x="502.1432" y="234.579382" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mef1747ed03" x="502.1432" y="261.517209" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
<g id="ytick_18"> <g id="ytick_18">
<g id="line2d_39"> <g id="line2d_39">
<g> <g>
<use xlink:href="#me13cc3a1e2" x="502.1432" y="193.209847" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mef1747ed03" x="502.1432" y="214.205427" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
<g id="ytick_19"> <g id="ytick_19">
<g id="line2d_40"> <g id="line2d_40">
<g> <g>
<use xlink:href="#me13cc3a1e2" x="502.1432" y="151.840312" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mef1747ed03" x="502.1432" y="166.893645" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
<g id="ytick_20"> <g id="ytick_20">
<g id="line2d_41"> <g id="line2d_41">
<g> <g>
<use xlink:href="#me13cc3a1e2" x="502.1432" y="110.470777" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mef1747ed03" x="502.1432" y="119.581863" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
<g id="ytick_21"> <g id="ytick_21">
<g id="line2d_42"> <g id="line2d_42">
<g> <g>
<use xlink:href="#me13cc3a1e2" x="502.1432" y="69.101242" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mef1747ed03" x="502.1432" y="72.27008" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
</g> </g>
<g id="line2d_43"> <g id="line2d_43">
<path d="M 511.388081 285.338575 <path d="M 511.388081 319.567364
L 515.322074 286.790183 L 515.322074 321.227478
L 519.256066 278.190805 L 519.256066 311.392901
L 523.190058 290.344764 L 523.190058 325.292633
L 527.12405 278.694182 L 527.12405 311.968582
L 531.058042 282.889954 L 531.058042 316.767027
L 534.992034 283.921556 L 534.992034 317.946807
L 538.926026 287.97531 L 538.926026 322.582835
L 542.860018 283.194284 L 542.860018 317.11507
L 546.794011 288.585015 L 546.794011 323.280117
L 550.728003 278.599049 L 550.728003 311.859784
L 554.661995 286.834165 L 554.661995 321.277777
L 558.595987 293.829469 L 558.595987 329.277875
L 562.529979 290.95335 L 562.529979 325.988635
L 566.463971 292.583208 L 566.463971 327.852604
L 570.397963 288.004716 L 570.397963 322.616464
L 574.331955 277.379525 L 574.331955 310.46509
L 578.265948 287.522259 L 578.265948 322.064709
L 582.19994 300.316052 L 582.19994 336.696179
L 586.133932 59.343636 L 586.133932 61.110909
L 590.067924 300.517114 L 590.067924 336.926122
L 594.001916 289.688391 L 594.001916 324.54198
L 597.935908 284.686489 L 597.935908 318.821614
L 601.8699 290.624872 L 601.8699 325.612975
L 605.803892 270.626102 L 605.803892 302.741618
L 609.895244 304.659232 L 609.895244 341.663206
L 613.671877 291.944366 L 613.671877 327.122
L 617.605869 291.915233 L 617.605869 327.088682
L 621.539861 284.488184 L 621.539861 318.594824
L 625.473853 263.035816 L 625.473853 294.061075
L 629.407845 295.114982 L 629.407845 330.748036
L 633.341837 281.409384 L 633.341837 315.073791
L 637.275829 283.052798 L 637.275829 316.953262
L 641.209822 292.00279 L 641.209822 327.188815
L 644.986454 282.116111 L 644.986454 315.882031
L 648.920446 299.873134 L 648.920446 336.189641
L 652.854438 289.605005 L 652.854438 324.446617
L 656.78843 285.813282 L 656.78843 320.110257
L 660.722422 298.323354 L 660.722422 334.417254
L 664.656415 276.257266 L 664.656415 309.181631
L 668.590407 283.763115 L 668.590407 317.765608
L 672.367039 285.680184 L 672.367039 319.958041
L 676.301031 292.399989 L 676.301031 327.643067
L 680.235023 285.685652 L 680.235023 319.964294
L 684.169016 303.402727 L 684.169016 340.226219
L 688.103008 288.48996 L 688.103008 323.171408
L 691.87964 286.219778 L 691.87964 320.575142
L 695.813632 276.038794 L 695.813632 308.931779
" clip-path="url(#p1bd40dd4f4)" style="fill: none; stroke: #1f77b4; stroke-width: 1.5; stroke-linecap: square"/> " clip-path="url(#p2de00631bb)" style="fill: none; stroke: #1f77b4; stroke-width: 1.5; stroke-linecap: square"/>
</g> </g>
<g id="line2d_44"> <g id="line2d_44">
<path d="M 606.90541 317.72 <path d="M 606.90541 356.6
L 606.90541 47.04 L 606.90541 47.04
" clip-path="url(#p1bd40dd4f4)" style="fill: none; stroke-dasharray: 5.55,2.4; stroke-dashoffset: 0; stroke: #000000; stroke-width: 1.5"/> " clip-path="url(#p2de00631bb)" style="fill: none; stroke-dasharray: 5.55,2.4; stroke-dashoffset: 0; stroke: #000000; stroke-width: 1.5"/>
</g> </g>
<g id="line2d_45"> <g id="line2d_45">
<path d="M 557.253512 317.72 <path d="M 557.253512 356.6
L 557.253512 47.04 L 557.253512 47.04
" clip-path="url(#p1bd40dd4f4)" style="fill: none; stroke-dasharray: 1.5,2.475; stroke-dashoffset: 0; stroke: #00008b; stroke-opacity: 0.8; stroke-width: 1.5"/> " clip-path="url(#p2de00631bb)" style="fill: none; stroke-dasharray: 1.5,2.475; stroke-dashoffset: 0; stroke: #00008b; stroke-opacity: 0.8; stroke-width: 1.5"/>
</g> </g>
<g id="patch_13"> <g id="patch_13">
<path d="M 502.1432 317.72 <path d="M 502.1432 356.6
L 502.1432 47.04 L 502.1432 47.04
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_14"> <g id="patch_14">
<path d="M 705.530593 317.72 <path d="M 705.530593 356.6
L 705.530593 47.04 L 705.530593 47.04
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_15"> <g id="patch_15">
<path d="M 502.1432 317.72 <path d="M 502.1432 356.6
L 705.530593 317.72 L 705.530593 356.6
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_16"> <g id="patch_16">
@@ -1542,27 +1542,27 @@ z
</g> </g>
<g id="legend_1"> <g id="legend_1">
<g id="patch_17"> <g id="patch_17">
<path d="M 117.271094 427 <path d="M 117.271094 405.4
L 602.728906 427 L 602.728906 405.4
Q 604.728906 427 604.728906 425 Q 604.728906 405.4 604.728906 403.4
L 604.728906 411.321875 L 604.728906 389.721875
Q 604.728906 409.321875 602.728906 409.321875 Q 604.728906 387.721875 602.728906 387.721875
L 117.271094 409.321875 L 117.271094 387.721875
Q 115.271094 409.321875 115.271094 411.321875 Q 115.271094 387.721875 115.271094 389.721875
L 115.271094 425 L 115.271094 403.4
Q 115.271094 427 117.271094 427 Q 115.271094 405.4 117.271094 405.4
z z
" style="fill: #ffffff; opacity: 0.8; stroke: #cccccc; stroke-linejoin: miter"/> " style="fill: #ffffff; opacity: 0.8; stroke: #cccccc; stroke-linejoin: miter"/>
</g> </g>
<g id="line2d_46"> <g id="line2d_46">
<path d="M 119.271094 417.420313 <path d="M 119.271094 395.820312
L 129.271094 417.420313 L 129.271094 395.820312
L 139.271094 417.420313 L 139.271094 395.820312
" style="fill: none; stroke: #1f77b4; stroke-width: 1.5; stroke-linecap: square"/> " style="fill: none; stroke: #1f77b4; stroke-width: 1.5; stroke-linecap: square"/>
</g> </g>
<g id="text_30"> <g id="text_30">
<!-- power of stimulus peak --> <!-- power of stimulus peak -->
<g transform="translate(147.271094 420.920313) scale(0.1 -0.1)"> <g transform="translate(147.271094 399.320312) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-6b" d="M 581 4863 <path id="DejaVuSans-6b" d="M 581 4863
L 1159 4863 L 1159 4863
@@ -1604,14 +1604,14 @@ z
</g> </g>
</g> </g>
<g id="line2d_47"> <g id="line2d_47">
<path d="M 284.085156 417.420313 <path d="M 284.085156 395.820312
L 294.085156 417.420313 L 294.085156 395.820312
L 304.085156 417.420313 L 304.085156 395.820312
" style="fill: none; stroke-dasharray: 5.55,2.4; stroke-dashoffset: 0; stroke: #000000; stroke-width: 1.5"/> " style="fill: none; stroke-dasharray: 5.55,2.4; stroke-dashoffset: 0; stroke: #000000; stroke-width: 1.5"/>
</g> </g>
<g id="text_31"> <g id="text_31">
<!-- EODf of awake fish --> <!-- EODf of awake fish -->
<g transform="translate(312.085156 420.920313) scale(0.1 -0.1)"> <g transform="translate(312.085156 399.320312) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-45" d="M 628 4666 <path id="DejaVuSans-45" d="M 628 4666
L 3578 4666 L 3578 4666
@@ -1709,14 +1709,14 @@ z
</g> </g>
</g> </g>
<g id="line2d_48"> <g id="line2d_48">
<path d="M 426.530469 417.420313 <path d="M 426.530469 395.820312
L 436.530469 417.420313 L 436.530469 395.820312
L 446.530469 417.420313 L 446.530469 395.820312
" style="fill: none; stroke-dasharray: 1.5,2.475; stroke-dashoffset: 0; stroke: #00008b; stroke-opacity: 0.8; stroke-width: 1.5"/> " style="fill: none; stroke-dasharray: 1.5,2.475; stroke-dashoffset: 0; stroke: #00008b; stroke-opacity: 0.8; stroke-width: 1.5"/>
</g> </g>
<g id="text_32"> <g id="text_32">
<!-- 1st harmonic of current EODf --> <!-- 1st harmonic of current EODf -->
<g transform="translate(454.530469 420.920313) scale(0.1 -0.1)"> <g transform="translate(454.530469 399.320312) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-31"/> <use xlink:href="#DejaVuSans-31"/>
<use xlink:href="#DejaVuSans-73" x="63.623047"/> <use xlink:href="#DejaVuSans-73" x="63.623047"/>
<use xlink:href="#DejaVuSans-74" x="115.722656"/> <use xlink:href="#DejaVuSans-74" x="115.722656"/>
@@ -1750,14 +1750,14 @@ L 446.530469 417.420313
</g> </g>
</g> </g>
<defs> <defs>
<clipPath id="pa449a11be7"> <clipPath id="p72bd87130c">
<rect x="59.4296" y="47.04" width="203.387393" height="270.68"/> <rect x="59.4296" y="47.04" width="203.387393" height="309.56"/>
</clipPath> </clipPath>
<clipPath id="p5760ec64b8"> <clipPath id="pf71fba15a7">
<rect x="280.7864" y="47.04" width="203.387393" height="270.68"/> <rect x="280.7864" y="47.04" width="203.387393" height="309.56"/>
</clipPath> </clipPath>
<clipPath id="p1bd40dd4f4"> <clipPath id="p2de00631bb">
<rect x="502.1432" y="47.04" width="203.387393" height="270.68"/> <rect x="502.1432" y="47.04" width="203.387393" height="309.56"/>
</clipPath> </clipPath>
</defs> </defs>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 47 KiB

After

Width:  |  Height:  |  Size: 47 KiB

View File

@@ -6,7 +6,7 @@
<rdf:RDF xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:RDF xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<cc:Work> <cc:Work>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<dc:date>2024-10-25T15:21:03.061269</dc:date> <dc:date>2024-10-25T16:37:17.491117</dc:date>
<dc:format>image/svg+xml</dc:format> <dc:format>image/svg+xml</dc:format>
<dc:creator> <dc:creator>
<cc:Agent> <cc:Agent>
@@ -30,8 +30,8 @@ z
</g> </g>
<g id="axes_1"> <g id="axes_1">
<g id="patch_2"> <g id="patch_2">
<path d="M 59.4296 317.72 <path d="M 59.4296 356.6
L 266.4864 317.72 L 266.4864 356.6
L 266.4864 47.04 L 266.4864 47.04
L 59.4296 47.04 L 59.4296 47.04
z z
@@ -41,17 +41,17 @@ z
<g id="xtick_1"> <g id="xtick_1">
<g id="line2d_1"> <g id="line2d_1">
<defs> <defs>
<path id="m3afc1d4f57" d="M 0 0 <path id="m690c759388" d="M 0 0
L 0 3.5 L 0 3.5
" style="stroke: #000000; stroke-width: 0.8"/> " style="stroke: #000000; stroke-width: 0.8"/>
</defs> </defs>
<g> <g>
<use xlink:href="#m3afc1d4f57" x="97.28153" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m690c759388" x="97.28153" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_1"> <g id="text_1">
<!-- 400 --> <!-- 400 -->
<g transform="translate(87.73778 332.318438) scale(0.1 -0.1)"> <g transform="translate(87.73778 371.198438) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-34" d="M 2419 4116 <path id="DejaVuSans-34" d="M 2419 4116
L 825 1625 L 825 1625
@@ -103,12 +103,12 @@ z
<g id="xtick_2"> <g id="xtick_2">
<g id="line2d_2"> <g id="line2d_2">
<g> <g>
<use xlink:href="#m3afc1d4f57" x="155.921235" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m690c759388" x="155.921235" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_2"> <g id="text_2">
<!-- 600 --> <!-- 600 -->
<g transform="translate(146.377485 332.318438) scale(0.1 -0.1)"> <g transform="translate(146.377485 371.198438) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-36" d="M 2113 2584 <path id="DejaVuSans-36" d="M 2113 2584
Q 1688 2584 1439 2293 Q 1688 2584 1439 2293
@@ -150,12 +150,12 @@ z
<g id="xtick_3"> <g id="xtick_3">
<g id="line2d_3"> <g id="line2d_3">
<g> <g>
<use xlink:href="#m3afc1d4f57" x="214.560941" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m690c759388" x="214.560941" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_3"> <g id="text_3">
<!-- 800 --> <!-- 800 -->
<g transform="translate(205.017191 332.318438) scale(0.1 -0.1)"> <g transform="translate(205.017191 371.198438) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-38" d="M 2034 2216 <path id="DejaVuSans-38" d="M 2034 2216
Q 1584 2216 1326 1975 Q 1584 2216 1326 1975
@@ -208,17 +208,17 @@ z
<g id="ytick_1"> <g id="ytick_1">
<g id="line2d_4"> <g id="line2d_4">
<defs> <defs>
<path id="m5c31f3e8ab" d="M 0 0 <path id="m7919c27371" d="M 0 0
L -3.5 0 L -3.5 0
" style="stroke: #000000; stroke-width: 0.8"/> " style="stroke: #000000; stroke-width: 0.8"/>
</defs> </defs>
<g> <g>
<use xlink:href="#m5c31f3e8ab" x="59.4296" y="288.828908" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m7919c27371" x="59.4296" y="323.559042" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_4"> <g id="text_4">
<!-- 0.5 --> <!-- 0.5 -->
<g transform="translate(36.526475 292.628126) scale(0.1 -0.1)"> <g transform="translate(36.526475 327.358261) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-2e" d="M 684 794 <path id="DejaVuSans-2e" d="M 684 794
L 1344 794 L 1344 794
@@ -262,12 +262,12 @@ z
<g id="ytick_2"> <g id="ytick_2">
<g id="line2d_5"> <g id="line2d_5">
<g> <g>
<use xlink:href="#m5c31f3e8ab" x="59.4296" y="258.563634" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m7919c27371" x="59.4296" y="288.946518" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_5"> <g id="text_5">
<!-- 1.0 --> <!-- 1.0 -->
<g transform="translate(36.526475 262.362853) scale(0.1 -0.1)"> <g transform="translate(36.526475 292.745736) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-31" d="M 794 531 <path id="DejaVuSans-31" d="M 794 531
L 1825 531 L 1825 531
@@ -293,12 +293,12 @@ z
<g id="ytick_3"> <g id="ytick_3">
<g id="line2d_6"> <g id="line2d_6">
<g> <g>
<use xlink:href="#m5c31f3e8ab" x="59.4296" y="228.29836" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m7919c27371" x="59.4296" y="254.333993" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_6"> <g id="text_6">
<!-- 1.5 --> <!-- 1.5 -->
<g transform="translate(36.526475 232.097579) scale(0.1 -0.1)"> <g transform="translate(36.526475 258.133212) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-31"/> <use xlink:href="#DejaVuSans-31"/>
<use xlink:href="#DejaVuSans-2e" x="63.623047"/> <use xlink:href="#DejaVuSans-2e" x="63.623047"/>
<use xlink:href="#DejaVuSans-35" x="95.410156"/> <use xlink:href="#DejaVuSans-35" x="95.410156"/>
@@ -308,12 +308,12 @@ z
<g id="ytick_4"> <g id="ytick_4">
<g id="line2d_7"> <g id="line2d_7">
<g> <g>
<use xlink:href="#m5c31f3e8ab" x="59.4296" y="198.033087" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m7919c27371" x="59.4296" y="219.721469" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_7"> <g id="text_7">
<!-- 2.0 --> <!-- 2.0 -->
<g transform="translate(36.526475 201.832306) scale(0.1 -0.1)"> <g transform="translate(36.526475 223.520687) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-32" d="M 1228 531 <path id="DejaVuSans-32" d="M 1228 531
L 3431 531 L 3431 531
@@ -349,12 +349,12 @@ z
<g id="ytick_5"> <g id="ytick_5">
<g id="line2d_8"> <g id="line2d_8">
<g> <g>
<use xlink:href="#m5c31f3e8ab" x="59.4296" y="167.767813" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m7919c27371" x="59.4296" y="185.108944" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_8"> <g id="text_8">
<!-- 2.5 --> <!-- 2.5 -->
<g transform="translate(36.526475 171.567032) scale(0.1 -0.1)"> <g transform="translate(36.526475 188.908163) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-32"/> <use xlink:href="#DejaVuSans-32"/>
<use xlink:href="#DejaVuSans-2e" x="63.623047"/> <use xlink:href="#DejaVuSans-2e" x="63.623047"/>
<use xlink:href="#DejaVuSans-35" x="95.410156"/> <use xlink:href="#DejaVuSans-35" x="95.410156"/>
@@ -364,12 +364,12 @@ z
<g id="ytick_6"> <g id="ytick_6">
<g id="line2d_9"> <g id="line2d_9">
<g> <g>
<use xlink:href="#m5c31f3e8ab" x="59.4296" y="137.50254" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m7919c27371" x="59.4296" y="150.49642" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_9"> <g id="text_9">
<!-- 3.0 --> <!-- 3.0 -->
<g transform="translate(36.526475 141.301758) scale(0.1 -0.1)"> <g transform="translate(36.526475 154.295639) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-33" d="M 2597 2516 <path id="DejaVuSans-33" d="M 2597 2516
Q 3050 2419 3304 2112 Q 3050 2419 3304 2112
@@ -413,12 +413,12 @@ z
<g id="ytick_7"> <g id="ytick_7">
<g id="line2d_10"> <g id="line2d_10">
<g> <g>
<use xlink:href="#m5c31f3e8ab" x="59.4296" y="107.237266" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m7919c27371" x="59.4296" y="115.883895" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_10"> <g id="text_10">
<!-- 3.5 --> <!-- 3.5 -->
<g transform="translate(36.526475 111.036485) scale(0.1 -0.1)"> <g transform="translate(36.526475 119.683114) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-33"/> <use xlink:href="#DejaVuSans-33"/>
<use xlink:href="#DejaVuSans-2e" x="63.623047"/> <use xlink:href="#DejaVuSans-2e" x="63.623047"/>
<use xlink:href="#DejaVuSans-35" x="95.410156"/> <use xlink:href="#DejaVuSans-35" x="95.410156"/>
@@ -428,12 +428,12 @@ z
<g id="ytick_8"> <g id="ytick_8">
<g id="line2d_11"> <g id="line2d_11">
<g> <g>
<use xlink:href="#m5c31f3e8ab" x="59.4296" y="76.971992" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m7919c27371" x="59.4296" y="81.271371" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_11"> <g id="text_11">
<!-- 4.0 --> <!-- 4.0 -->
<g transform="translate(36.526475 80.771211) scale(0.1 -0.1)"> <g transform="translate(36.526475 85.07059) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-34"/> <use xlink:href="#DejaVuSans-34"/>
<use xlink:href="#DejaVuSans-2e" x="63.623047"/> <use xlink:href="#DejaVuSans-2e" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="95.410156"/> <use xlink:href="#DejaVuSans-30" x="95.410156"/>
@@ -442,7 +442,7 @@ z
</g> </g>
<g id="text_12"> <g id="text_12">
<!-- power [$\frac{\mathrm{mV^2}}{\mathrm{Hz}}$] --> <!-- power [$\frac{\mathrm{mV^2}}{\mathrm{Hz}}$] -->
<g transform="translate(27.846475 217.3) rotate(-90) scale(0.12 -0.12)"> <g transform="translate(27.846475 236.74) rotate(-90) scale(0.12 -0.12)">
<defs> <defs>
<path id="DejaVuSans-70" d="M 1159 525 <path id="DejaVuSans-70" d="M 1159 525
L 1159 -1331 L 1159 -1331
@@ -683,44 +683,44 @@ z
</g> </g>
</g> </g>
<g id="line2d_12"> <g id="line2d_12">
<path d="M 68.841273 191.471861 <path d="M 68.841273 212.2178
L 76.171236 126.296866 L 76.171236 137.681184
L 83.501199 119.381731 L 83.501199 129.77277
L 90.831162 234.582958 L 90.831162 261.521299
L 98.161125 59.343636 L 98.161125 61.110909
L 105.491089 192.90367 L 105.491089 213.855272
L 112.821052 234.749538 L 112.821052 261.711807
L 120.151015 261.707974 L 120.151015 292.542505
L 127.480978 250.560573 L 127.480978 279.793911
L 134.810941 277.81634 L 134.810941 310.964649
L 142.140905 271.538807 L 142.140905 303.785422
L 149.470868 263.344156 L 149.470868 294.413705
L 157.094029 305.416364 L 157.094029 342.529091
" clip-path="url(#p6319fac182)" style="fill: none; stroke: #1f77b4; stroke-width: 1.5; stroke-linecap: square"/> " clip-path="url(#pedda087112)" style="fill: none; stroke: #1f77b4; stroke-width: 1.5; stroke-linecap: square"/>
</g> </g>
<g id="line2d_13"> <g id="line2d_13">
<path d="M 257.074727 317.72 <path d="M 257.074727 356.6
L 257.074727 47.04 L 257.074727 47.04
" clip-path="url(#p6319fac182)" style="fill: none; stroke-dasharray: 5.55,2.4; stroke-dashoffset: 0; stroke: #000000; stroke-width: 1.5"/> " clip-path="url(#pedda087112)" style="fill: none; stroke-dasharray: 5.55,2.4; stroke-dashoffset: 0; stroke: #000000; stroke-width: 1.5"/>
</g> </g>
<g id="line2d_14"> <g id="line2d_14">
<path d="M 143.065608 317.72 <path d="M 143.065608 356.6
L 143.065608 47.04 L 143.065608 47.04
" clip-path="url(#p6319fac182)" style="fill: none; stroke-dasharray: 1.5,2.475; stroke-dashoffset: 0; stroke: #00008b; stroke-opacity: 0.8; stroke-width: 1.5"/> " clip-path="url(#pedda087112)" style="fill: none; stroke-dasharray: 1.5,2.475; stroke-dashoffset: 0; stroke: #00008b; stroke-opacity: 0.8; stroke-width: 1.5"/>
</g> </g>
<g id="patch_3"> <g id="patch_3">
<path d="M 59.4296 317.72 <path d="M 59.4296 356.6
L 59.4296 47.04 L 59.4296 47.04
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_4"> <g id="patch_4">
<path d="M 266.4864 317.72 <path d="M 266.4864 356.6
L 266.4864 47.04 L 266.4864 47.04
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_5"> <g id="patch_5">
<path d="M 59.4296 317.72 <path d="M 59.4296 356.6
L 266.4864 317.72 L 266.4864 356.6
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_6"> <g id="patch_6">
@@ -738,8 +738,8 @@ L 266.4864 47.04
</g> </g>
<g id="axes_2"> <g id="axes_2">
<g id="patch_7"> <g id="patch_7">
<path d="M 280.7864 317.72 <path d="M 280.7864 356.6
L 487.8432 317.72 L 487.8432 356.6
L 487.8432 47.04 L 487.8432 47.04
L 280.7864 47.04 L 280.7864 47.04
z z
@@ -749,12 +749,12 @@ z
<g id="xtick_4"> <g id="xtick_4">
<g id="line2d_15"> <g id="line2d_15">
<g> <g>
<use xlink:href="#m3afc1d4f57" x="318.63833" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m690c759388" x="318.63833" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_15"> <g id="text_15">
<!-- 400 --> <!-- 400 -->
<g transform="translate(309.09458 332.318438) scale(0.1 -0.1)"> <g transform="translate(309.09458 371.198438) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-34"/> <use xlink:href="#DejaVuSans-34"/>
<use xlink:href="#DejaVuSans-30" x="63.623047"/> <use xlink:href="#DejaVuSans-30" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/> <use xlink:href="#DejaVuSans-30" x="127.246094"/>
@@ -764,12 +764,12 @@ z
<g id="xtick_5"> <g id="xtick_5">
<g id="line2d_16"> <g id="line2d_16">
<g> <g>
<use xlink:href="#m3afc1d4f57" x="377.278035" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m690c759388" x="377.278035" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_16"> <g id="text_16">
<!-- 600 --> <!-- 600 -->
<g transform="translate(367.734285 332.318438) scale(0.1 -0.1)"> <g transform="translate(367.734285 371.198438) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-36"/> <use xlink:href="#DejaVuSans-36"/>
<use xlink:href="#DejaVuSans-30" x="63.623047"/> <use xlink:href="#DejaVuSans-30" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/> <use xlink:href="#DejaVuSans-30" x="127.246094"/>
@@ -779,12 +779,12 @@ z
<g id="xtick_6"> <g id="xtick_6">
<g id="line2d_17"> <g id="line2d_17">
<g> <g>
<use xlink:href="#m3afc1d4f57" x="435.917741" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m690c759388" x="435.917741" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_17"> <g id="text_17">
<!-- 800 --> <!-- 800 -->
<g transform="translate(426.373991 332.318438) scale(0.1 -0.1)"> <g transform="translate(426.373991 371.198438) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-38"/> <use xlink:href="#DejaVuSans-38"/>
<use xlink:href="#DejaVuSans-30" x="63.623047"/> <use xlink:href="#DejaVuSans-30" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/> <use xlink:href="#DejaVuSans-30" x="127.246094"/>
@@ -796,84 +796,84 @@ z
<g id="ytick_9"> <g id="ytick_9">
<g id="line2d_18"> <g id="line2d_18">
<g> <g>
<use xlink:href="#m5c31f3e8ab" x="280.7864" y="288.828908" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m7919c27371" x="280.7864" y="323.559042" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
<g id="ytick_10"> <g id="ytick_10">
<g id="line2d_19"> <g id="line2d_19">
<g> <g>
<use xlink:href="#m5c31f3e8ab" x="280.7864" y="258.563634" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m7919c27371" x="280.7864" y="288.946518" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
<g id="ytick_11"> <g id="ytick_11">
<g id="line2d_20"> <g id="line2d_20">
<g> <g>
<use xlink:href="#m5c31f3e8ab" x="280.7864" y="228.29836" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m7919c27371" x="280.7864" y="254.333993" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
<g id="ytick_12"> <g id="ytick_12">
<g id="line2d_21"> <g id="line2d_21">
<g> <g>
<use xlink:href="#m5c31f3e8ab" x="280.7864" y="198.033087" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m7919c27371" x="280.7864" y="219.721469" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
<g id="ytick_13"> <g id="ytick_13">
<g id="line2d_22"> <g id="line2d_22">
<g> <g>
<use xlink:href="#m5c31f3e8ab" x="280.7864" y="167.767813" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m7919c27371" x="280.7864" y="185.108944" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
<g id="ytick_14"> <g id="ytick_14">
<g id="line2d_23"> <g id="line2d_23">
<g> <g>
<use xlink:href="#m5c31f3e8ab" x="280.7864" y="137.50254" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m7919c27371" x="280.7864" y="150.49642" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
<g id="ytick_15"> <g id="ytick_15">
<g id="line2d_24"> <g id="line2d_24">
<g> <g>
<use xlink:href="#m5c31f3e8ab" x="280.7864" y="107.237266" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m7919c27371" x="280.7864" y="115.883895" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
<g id="ytick_16"> <g id="ytick_16">
<g id="line2d_25"> <g id="line2d_25">
<g> <g>
<use xlink:href="#m5c31f3e8ab" x="280.7864" y="76.971992" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m7919c27371" x="280.7864" y="81.271371" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
</g> </g>
<g id="line2d_26"/> <g id="line2d_26"/>
<g id="line2d_27"> <g id="line2d_27">
<path d="M 478.431527 317.72 <path d="M 478.431527 356.6
L 478.431527 47.04 L 478.431527 47.04
" clip-path="url(#p2c4a13ce22)" style="fill: none; stroke-dasharray: 5.55,2.4; stroke-dashoffset: 0; stroke: #000000; stroke-width: 1.5"/> " clip-path="url(#pe9cce6b5ac)" style="fill: none; stroke-dasharray: 5.55,2.4; stroke-dashoffset: 0; stroke: #000000; stroke-width: 1.5"/>
</g> </g>
<g id="line2d_28"> <g id="line2d_28">
<path d="M 364.422408 317.72 <path d="M 364.422408 356.6
L 364.422408 47.04 L 364.422408 47.04
" clip-path="url(#p2c4a13ce22)" style="fill: none; stroke-dasharray: 1.5,2.475; stroke-dashoffset: 0; stroke: #00008b; stroke-opacity: 0.8; stroke-width: 1.5"/> " clip-path="url(#pe9cce6b5ac)" style="fill: none; stroke-dasharray: 1.5,2.475; stroke-dashoffset: 0; stroke: #00008b; stroke-opacity: 0.8; stroke-width: 1.5"/>
</g> </g>
<g id="patch_8"> <g id="patch_8">
<path d="M 280.7864 317.72 <path d="M 280.7864 356.6
L 280.7864 47.04 L 280.7864 47.04
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_9"> <g id="patch_9">
<path d="M 487.8432 317.72 <path d="M 487.8432 356.6
L 487.8432 47.04 L 487.8432 47.04
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_10"> <g id="patch_10">
<path d="M 280.7864 317.72 <path d="M 280.7864 356.6
L 487.8432 317.72 L 487.8432 356.6
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_11"> <g id="patch_11">
@@ -891,8 +891,8 @@ L 487.8432 47.04
</g> </g>
<g id="axes_3"> <g id="axes_3">
<g id="patch_12"> <g id="patch_12">
<path d="M 502.1432 317.72 <path d="M 502.1432 356.6
L 709.2 317.72 L 709.2 356.6
L 709.2 47.04 L 709.2 47.04
L 502.1432 47.04 L 502.1432 47.04
z z
@@ -902,12 +902,12 @@ z
<g id="xtick_7"> <g id="xtick_7">
<g id="line2d_29"> <g id="line2d_29">
<g> <g>
<use xlink:href="#m3afc1d4f57" x="539.99513" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m690c759388" x="539.99513" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_19"> <g id="text_19">
<!-- 400 --> <!-- 400 -->
<g transform="translate(530.45138 332.318438) scale(0.1 -0.1)"> <g transform="translate(530.45138 371.198438) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-34"/> <use xlink:href="#DejaVuSans-34"/>
<use xlink:href="#DejaVuSans-30" x="63.623047"/> <use xlink:href="#DejaVuSans-30" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/> <use xlink:href="#DejaVuSans-30" x="127.246094"/>
@@ -917,12 +917,12 @@ z
<g id="xtick_8"> <g id="xtick_8">
<g id="line2d_30"> <g id="line2d_30">
<g> <g>
<use xlink:href="#m3afc1d4f57" x="598.634835" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m690c759388" x="598.634835" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_20"> <g id="text_20">
<!-- 600 --> <!-- 600 -->
<g transform="translate(589.091085 332.318438) scale(0.1 -0.1)"> <g transform="translate(589.091085 371.198438) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-36"/> <use xlink:href="#DejaVuSans-36"/>
<use xlink:href="#DejaVuSans-30" x="63.623047"/> <use xlink:href="#DejaVuSans-30" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/> <use xlink:href="#DejaVuSans-30" x="127.246094"/>
@@ -932,12 +932,12 @@ z
<g id="xtick_9"> <g id="xtick_9">
<g id="line2d_31"> <g id="line2d_31">
<g> <g>
<use xlink:href="#m3afc1d4f57" x="657.274541" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m690c759388" x="657.274541" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_21"> <g id="text_21">
<!-- 800 --> <!-- 800 -->
<g transform="translate(647.730791 332.318438) scale(0.1 -0.1)"> <g transform="translate(647.730791 371.198438) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-38"/> <use xlink:href="#DejaVuSans-38"/>
<use xlink:href="#DejaVuSans-30" x="63.623047"/> <use xlink:href="#DejaVuSans-30" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/> <use xlink:href="#DejaVuSans-30" x="127.246094"/>
@@ -949,84 +949,84 @@ z
<g id="ytick_17"> <g id="ytick_17">
<g id="line2d_32"> <g id="line2d_32">
<g> <g>
<use xlink:href="#m5c31f3e8ab" x="502.1432" y="288.828908" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m7919c27371" x="502.1432" y="323.559042" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
<g id="ytick_18"> <g id="ytick_18">
<g id="line2d_33"> <g id="line2d_33">
<g> <g>
<use xlink:href="#m5c31f3e8ab" x="502.1432" y="258.563634" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m7919c27371" x="502.1432" y="288.946518" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
<g id="ytick_19"> <g id="ytick_19">
<g id="line2d_34"> <g id="line2d_34">
<g> <g>
<use xlink:href="#m5c31f3e8ab" x="502.1432" y="228.29836" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m7919c27371" x="502.1432" y="254.333993" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
<g id="ytick_20"> <g id="ytick_20">
<g id="line2d_35"> <g id="line2d_35">
<g> <g>
<use xlink:href="#m5c31f3e8ab" x="502.1432" y="198.033087" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m7919c27371" x="502.1432" y="219.721469" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
<g id="ytick_21"> <g id="ytick_21">
<g id="line2d_36"> <g id="line2d_36">
<g> <g>
<use xlink:href="#m5c31f3e8ab" x="502.1432" y="167.767813" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m7919c27371" x="502.1432" y="185.108944" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
<g id="ytick_22"> <g id="ytick_22">
<g id="line2d_37"> <g id="line2d_37">
<g> <g>
<use xlink:href="#m5c31f3e8ab" x="502.1432" y="137.50254" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m7919c27371" x="502.1432" y="150.49642" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
<g id="ytick_23"> <g id="ytick_23">
<g id="line2d_38"> <g id="line2d_38">
<g> <g>
<use xlink:href="#m5c31f3e8ab" x="502.1432" y="107.237266" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m7919c27371" x="502.1432" y="115.883895" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
<g id="ytick_24"> <g id="ytick_24">
<g id="line2d_39"> <g id="line2d_39">
<g> <g>
<use xlink:href="#m5c31f3e8ab" x="502.1432" y="76.971992" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m7919c27371" x="502.1432" y="81.271371" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
</g> </g>
<g id="line2d_40"/> <g id="line2d_40"/>
<g id="line2d_41"> <g id="line2d_41">
<path d="M 699.788327 317.72 <path d="M 699.788327 356.6
L 699.788327 47.04 L 699.788327 47.04
" clip-path="url(#p24c65832b9)" style="fill: none; stroke-dasharray: 5.55,2.4; stroke-dashoffset: 0; stroke: #000000; stroke-width: 1.5"/> " clip-path="url(#pf9ee2bda0d)" style="fill: none; stroke-dasharray: 5.55,2.4; stroke-dashoffset: 0; stroke: #000000; stroke-width: 1.5"/>
</g> </g>
<g id="line2d_42"> <g id="line2d_42">
<path d="M 585.779208 317.72 <path d="M 585.779208 356.6
L 585.779208 47.04 L 585.779208 47.04
" clip-path="url(#p24c65832b9)" style="fill: none; stroke-dasharray: 1.5,2.475; stroke-dashoffset: 0; stroke: #00008b; stroke-opacity: 0.8; stroke-width: 1.5"/> " clip-path="url(#pf9ee2bda0d)" style="fill: none; stroke-dasharray: 1.5,2.475; stroke-dashoffset: 0; stroke: #00008b; stroke-opacity: 0.8; stroke-width: 1.5"/>
</g> </g>
<g id="patch_13"> <g id="patch_13">
<path d="M 502.1432 317.72 <path d="M 502.1432 356.6
L 502.1432 47.04 L 502.1432 47.04
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_14"> <g id="patch_14">
<path d="M 709.2 317.72 <path d="M 709.2 356.6
L 709.2 47.04 L 709.2 47.04
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_15"> <g id="patch_15">
<path d="M 502.1432 317.72 <path d="M 502.1432 356.6
L 709.2 317.72 L 709.2 356.6
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_16"> <g id="patch_16">
@@ -1350,27 +1350,27 @@ z
</g> </g>
<g id="legend_1"> <g id="legend_1">
<g id="patch_17"> <g id="patch_17">
<path d="M 117.271094 427 <path d="M 117.271094 405.4
L 602.728906 427 L 602.728906 405.4
Q 604.728906 427 604.728906 425 Q 604.728906 405.4 604.728906 403.4
L 604.728906 411.321875 L 604.728906 389.721875
Q 604.728906 409.321875 602.728906 409.321875 Q 604.728906 387.721875 602.728906 387.721875
L 117.271094 409.321875 L 117.271094 387.721875
Q 115.271094 409.321875 115.271094 411.321875 Q 115.271094 387.721875 115.271094 389.721875
L 115.271094 425 L 115.271094 403.4
Q 115.271094 427 117.271094 427 Q 115.271094 405.4 117.271094 405.4
z z
" style="fill: #ffffff; opacity: 0.8; stroke: #cccccc; stroke-linejoin: miter"/> " style="fill: #ffffff; opacity: 0.8; stroke: #cccccc; stroke-linejoin: miter"/>
</g> </g>
<g id="line2d_43"> <g id="line2d_43">
<path d="M 119.271094 417.420313 <path d="M 119.271094 395.820312
L 129.271094 417.420313 L 129.271094 395.820312
L 139.271094 417.420313 L 139.271094 395.820312
" style="fill: none; stroke: #1f77b4; stroke-width: 1.5; stroke-linecap: square"/> " style="fill: none; stroke: #1f77b4; stroke-width: 1.5; stroke-linecap: square"/>
</g> </g>
<g id="text_25"> <g id="text_25">
<!-- power of stimulus peak --> <!-- power of stimulus peak -->
<g transform="translate(147.271094 420.920313) scale(0.1 -0.1)"> <g transform="translate(147.271094 399.320312) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-6b" d="M 581 4863 <path id="DejaVuSans-6b" d="M 581 4863
L 1159 4863 L 1159 4863
@@ -1412,14 +1412,14 @@ z
</g> </g>
</g> </g>
<g id="line2d_44"> <g id="line2d_44">
<path d="M 284.085156 417.420313 <path d="M 284.085156 395.820312
L 294.085156 417.420313 L 294.085156 395.820312
L 304.085156 417.420313 L 304.085156 395.820312
" style="fill: none; stroke-dasharray: 5.55,2.4; stroke-dashoffset: 0; stroke: #000000; stroke-width: 1.5"/> " style="fill: none; stroke-dasharray: 5.55,2.4; stroke-dashoffset: 0; stroke: #000000; stroke-width: 1.5"/>
</g> </g>
<g id="text_26"> <g id="text_26">
<!-- EODf of awake fish --> <!-- EODf of awake fish -->
<g transform="translate(312.085156 420.920313) scale(0.1 -0.1)"> <g transform="translate(312.085156 399.320312) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-45" d="M 628 4666 <path id="DejaVuSans-45" d="M 628 4666
L 3578 4666 L 3578 4666
@@ -1517,14 +1517,14 @@ z
</g> </g>
</g> </g>
<g id="line2d_45"> <g id="line2d_45">
<path d="M 426.530469 417.420313 <path d="M 426.530469 395.820312
L 436.530469 417.420313 L 436.530469 395.820312
L 446.530469 417.420313 L 446.530469 395.820312
" style="fill: none; stroke-dasharray: 1.5,2.475; stroke-dashoffset: 0; stroke: #00008b; stroke-opacity: 0.8; stroke-width: 1.5"/> " style="fill: none; stroke-dasharray: 1.5,2.475; stroke-dashoffset: 0; stroke: #00008b; stroke-opacity: 0.8; stroke-width: 1.5"/>
</g> </g>
<g id="text_27"> <g id="text_27">
<!-- 1st harmonic of current EODf --> <!-- 1st harmonic of current EODf -->
<g transform="translate(454.530469 420.920313) scale(0.1 -0.1)"> <g transform="translate(454.530469 399.320312) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-31"/> <use xlink:href="#DejaVuSans-31"/>
<use xlink:href="#DejaVuSans-73" x="63.623047"/> <use xlink:href="#DejaVuSans-73" x="63.623047"/>
<use xlink:href="#DejaVuSans-74" x="115.722656"/> <use xlink:href="#DejaVuSans-74" x="115.722656"/>
@@ -1558,14 +1558,14 @@ L 446.530469 417.420313
</g> </g>
</g> </g>
<defs> <defs>
<clipPath id="p6319fac182"> <clipPath id="pedda087112">
<rect x="59.4296" y="47.04" width="207.0568" height="270.68"/> <rect x="59.4296" y="47.04" width="207.0568" height="309.56"/>
</clipPath> </clipPath>
<clipPath id="p2c4a13ce22"> <clipPath id="pe9cce6b5ac">
<rect x="280.7864" y="47.04" width="207.0568" height="270.68"/> <rect x="280.7864" y="47.04" width="207.0568" height="309.56"/>
</clipPath> </clipPath>
<clipPath id="p24c65832b9"> <clipPath id="pf9ee2bda0d">
<rect x="502.1432" y="47.04" width="207.0568" height="270.68"/> <rect x="502.1432" y="47.04" width="207.0568" height="309.56"/>
</clipPath> </clipPath>
</defs> </defs>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 42 KiB

After

Width:  |  Height:  |  Size: 41 KiB

View File

@@ -6,7 +6,7 @@
<rdf:RDF xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:RDF xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<cc:Work> <cc:Work>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<dc:date>2024-10-25T15:21:03.847456</dc:date> <dc:date>2024-10-25T16:37:18.540462</dc:date>
<dc:format>image/svg+xml</dc:format> <dc:format>image/svg+xml</dc:format>
<dc:creator> <dc:creator>
<cc:Agent> <cc:Agent>
@@ -30,8 +30,8 @@ z
</g> </g>
<g id="axes_1"> <g id="axes_1">
<g id="patch_2"> <g id="patch_2">
<path d="M 74.1896 317.72 <path d="M 74.1896 356.6
L 276.3264 317.72 L 276.3264 356.6
L 276.3264 47.04 L 276.3264 47.04
L 74.1896 47.04 L 74.1896 47.04
z z
@@ -41,17 +41,17 @@ z
<g id="xtick_1"> <g id="xtick_1">
<g id="line2d_1"> <g id="line2d_1">
<defs> <defs>
<path id="m16cfcf70b3" d="M 0 0 <path id="mb06c1fa688" d="M 0 0
L 0 3.5 L 0 3.5
" style="stroke: #000000; stroke-width: 0.8"/> " style="stroke: #000000; stroke-width: 0.8"/>
</defs> </defs>
<g> <g>
<use xlink:href="#m16cfcf70b3" x="87.752892" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mb06c1fa688" x="87.752892" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_1"> <g id="text_1">
<!-- 900 --> <!-- 900 -->
<g transform="translate(78.209142 332.318438) scale(0.1 -0.1)"> <g transform="translate(78.209142 371.198438) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-39" d="M 703 97 <path id="DejaVuSans-39" d="M 703 97
L 703 672 L 703 672
@@ -114,12 +114,12 @@ z
<g id="xtick_2"> <g id="xtick_2">
<g id="line2d_2"> <g id="line2d_2">
<g> <g>
<use xlink:href="#m16cfcf70b3" x="126.644051" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mb06c1fa688" x="126.644051" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_2"> <g id="text_2">
<!-- 920 --> <!-- 920 -->
<g transform="translate(117.100301 332.318438) scale(0.1 -0.1)"> <g transform="translate(117.100301 371.198438) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-32" d="M 1228 531 <path id="DejaVuSans-32" d="M 1228 531
L 3431 531 L 3431 531
@@ -155,12 +155,12 @@ z
<g id="xtick_3"> <g id="xtick_3">
<g id="line2d_3"> <g id="line2d_3">
<g> <g>
<use xlink:href="#m16cfcf70b3" x="165.53521" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mb06c1fa688" x="165.53521" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_3"> <g id="text_3">
<!-- 940 --> <!-- 940 -->
<g transform="translate(155.99146 332.318438) scale(0.1 -0.1)"> <g transform="translate(155.99146 371.198438) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-34" d="M 2419 4116 <path id="DejaVuSans-34" d="M 2419 4116
L 825 1625 L 825 1625
@@ -191,12 +191,12 @@ z
<g id="xtick_4"> <g id="xtick_4">
<g id="line2d_4"> <g id="line2d_4">
<g> <g>
<use xlink:href="#m16cfcf70b3" x="204.426369" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mb06c1fa688" x="204.426369" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_4"> <g id="text_4">
<!-- 960 --> <!-- 960 -->
<g transform="translate(194.882619 332.318438) scale(0.1 -0.1)"> <g transform="translate(194.882619 371.198438) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-36" d="M 2113 2584 <path id="DejaVuSans-36" d="M 2113 2584
Q 1688 2584 1439 2293 Q 1688 2584 1439 2293
@@ -238,12 +238,12 @@ z
<g id="xtick_5"> <g id="xtick_5">
<g id="line2d_5"> <g id="line2d_5">
<g> <g>
<use xlink:href="#m16cfcf70b3" x="243.317529" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mb06c1fa688" x="243.317529" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_5"> <g id="text_5">
<!-- 980 --> <!-- 980 -->
<g transform="translate(233.773779 332.318438) scale(0.1 -0.1)"> <g transform="translate(233.773779 371.198438) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-38" d="M 2034 2216 <path id="DejaVuSans-38" d="M 2034 2216
Q 1584 2216 1326 1975 Q 1584 2216 1326 1975
@@ -296,17 +296,17 @@ z
<g id="ytick_1"> <g id="ytick_1">
<g id="line2d_6"> <g id="line2d_6">
<defs> <defs>
<path id="m1f99b5a726" d="M 0 0 <path id="m1f7762b3e6" d="M 0 0
L -3.5 0 L -3.5 0
" style="stroke: #000000; stroke-width: 0.8"/> " style="stroke: #000000; stroke-width: 0.8"/>
</defs> </defs>
<g> <g>
<use xlink:href="#m1f99b5a726" x="74.1896" y="280.809091" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m1f7762b3e6" x="74.1896" y="314.387273" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_6"> <g id="text_6">
<!-- 0.04 --> <!-- 0.04 -->
<g transform="translate(36.544288 284.60831) scale(0.1 -0.1)"> <g transform="translate(36.544288 318.186491) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-2212" d="M 678 2272 <path id="DejaVuSans-2212" d="M 678 2272
L 4684 2272 L 4684 2272
@@ -334,12 +334,12 @@ z
<g id="ytick_2"> <g id="ytick_2">
<g id="line2d_7"> <g id="line2d_7">
<g> <g>
<use xlink:href="#m1f99b5a726" x="74.1896" y="231.594545" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m1f7762b3e6" x="74.1896" y="258.103636" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_7"> <g id="text_7">
<!-- 0.02 --> <!-- 0.02 -->
<g transform="translate(36.544288 235.393764) scale(0.1 -0.1)"> <g transform="translate(36.544288 261.902855) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-2212"/> <use xlink:href="#DejaVuSans-2212"/>
<use xlink:href="#DejaVuSans-30" x="83.789062"/> <use xlink:href="#DejaVuSans-30" x="83.789062"/>
<use xlink:href="#DejaVuSans-2e" x="147.412109"/> <use xlink:href="#DejaVuSans-2e" x="147.412109"/>
@@ -351,12 +351,12 @@ z
<g id="ytick_3"> <g id="ytick_3">
<g id="line2d_8"> <g id="line2d_8">
<g> <g>
<use xlink:href="#m1f99b5a726" x="74.1896" y="182.38" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m1f7762b3e6" x="74.1896" y="201.82" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_8"> <g id="text_8">
<!-- 0.00 --> <!-- 0.00 -->
<g transform="translate(44.923975 186.179219) scale(0.1 -0.1)"> <g transform="translate(44.923975 205.619219) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-30"/> <use xlink:href="#DejaVuSans-30"/>
<use xlink:href="#DejaVuSans-2e" x="63.623047"/> <use xlink:href="#DejaVuSans-2e" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="95.410156"/> <use xlink:href="#DejaVuSans-30" x="95.410156"/>
@@ -367,12 +367,12 @@ z
<g id="ytick_4"> <g id="ytick_4">
<g id="line2d_9"> <g id="line2d_9">
<g> <g>
<use xlink:href="#m1f99b5a726" x="74.1896" y="133.165455" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m1f7762b3e6" x="74.1896" y="145.536364" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_9"> <g id="text_9">
<!-- 0.02 --> <!-- 0.02 -->
<g transform="translate(44.923975 136.964673) scale(0.1 -0.1)"> <g transform="translate(44.923975 149.335582) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-30"/> <use xlink:href="#DejaVuSans-30"/>
<use xlink:href="#DejaVuSans-2e" x="63.623047"/> <use xlink:href="#DejaVuSans-2e" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="95.410156"/> <use xlink:href="#DejaVuSans-30" x="95.410156"/>
@@ -383,12 +383,12 @@ z
<g id="ytick_5"> <g id="ytick_5">
<g id="line2d_10"> <g id="line2d_10">
<g> <g>
<use xlink:href="#m1f99b5a726" x="74.1896" y="83.950909" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m1f7762b3e6" x="74.1896" y="89.252727" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_10"> <g id="text_10">
<!-- 0.04 --> <!-- 0.04 -->
<g transform="translate(44.923975 87.750128) scale(0.1 -0.1)"> <g transform="translate(44.923975 93.051946) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-30"/> <use xlink:href="#DejaVuSans-30"/>
<use xlink:href="#DejaVuSans-2e" x="63.623047"/> <use xlink:href="#DejaVuSans-2e" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="95.410156"/> <use xlink:href="#DejaVuSans-30" x="95.410156"/>
@@ -398,7 +398,7 @@ z
</g> </g>
<g id="text_11"> <g id="text_11">
<!-- power [$\frac{\mathrm{mV^2}}{\mathrm{Hz}}$] --> <!-- power [$\frac{\mathrm{mV^2}}{\mathrm{Hz}}$] -->
<g transform="translate(27.864288 217.3) rotate(-90) scale(0.12 -0.12)"> <g transform="translate(27.864288 236.74) rotate(-90) scale(0.12 -0.12)">
<defs> <defs>
<path id="DejaVuSans-70" d="M 1159 525 <path id="DejaVuSans-70" d="M 1159 525
L 1159 -1331 L 1159 -1331
@@ -622,26 +622,26 @@ z
</g> </g>
<g id="line2d_11"/> <g id="line2d_11"/>
<g id="line2d_12"> <g id="line2d_12">
<path d="M 175.258 317.72 <path d="M 175.258 356.6
L 175.258 47.04 L 175.258 47.04
" clip-path="url(#pa5ccb7cece)" style="fill: none; stroke-dasharray: 5.55,2.4; stroke-dashoffset: 0; stroke: #000000; stroke-width: 1.5"/> " clip-path="url(#p8497f646d0)" style="fill: none; stroke-dasharray: 5.55,2.4; stroke-dashoffset: 0; stroke: #000000; stroke-width: 1.5"/>
</g> </g>
<g id="line2d_13"> <g id="line2d_13">
<path clip-path="url(#pa5ccb7cece)" style="fill: none; stroke-dasharray: 1.5,2.475; stroke-dashoffset: 0; stroke: #00008b; stroke-opacity: 0.8; stroke-width: 1.5"/> <path clip-path="url(#p8497f646d0)" style="fill: none; stroke-dasharray: 1.5,2.475; stroke-dashoffset: 0; stroke: #00008b; stroke-opacity: 0.8; stroke-width: 1.5"/>
</g> </g>
<g id="patch_3"> <g id="patch_3">
<path d="M 74.1896 317.72 <path d="M 74.1896 356.6
L 74.1896 47.04 L 74.1896 47.04
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_4"> <g id="patch_4">
<path d="M 276.3264 317.72 <path d="M 276.3264 356.6
L 276.3264 47.04 L 276.3264 47.04
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_5"> <g id="patch_5">
<path d="M 74.1896 317.72 <path d="M 74.1896 356.6
L 276.3264 317.72 L 276.3264 356.6
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_6"> <g id="patch_6">
@@ -659,8 +659,8 @@ L 276.3264 47.04
</g> </g>
<g id="axes_2"> <g id="axes_2">
<g id="patch_7"> <g id="patch_7">
<path d="M 290.6264 317.72 <path d="M 290.6264 356.6
L 492.7632 317.72 L 492.7632 356.6
L 492.7632 47.04 L 492.7632 47.04
L 290.6264 47.04 L 290.6264 47.04
z z
@@ -670,12 +670,12 @@ z
<g id="xtick_6"> <g id="xtick_6">
<g id="line2d_14"> <g id="line2d_14">
<g> <g>
<use xlink:href="#m16cfcf70b3" x="304.189692" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mb06c1fa688" x="304.189692" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_13"> <g id="text_13">
<!-- 900 --> <!-- 900 -->
<g transform="translate(294.645942 332.318438) scale(0.1 -0.1)"> <g transform="translate(294.645942 371.198438) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-39"/> <use xlink:href="#DejaVuSans-39"/>
<use xlink:href="#DejaVuSans-30" x="63.623047"/> <use xlink:href="#DejaVuSans-30" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/> <use xlink:href="#DejaVuSans-30" x="127.246094"/>
@@ -685,12 +685,12 @@ z
<g id="xtick_7"> <g id="xtick_7">
<g id="line2d_15"> <g id="line2d_15">
<g> <g>
<use xlink:href="#m16cfcf70b3" x="343.080851" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mb06c1fa688" x="343.080851" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_14"> <g id="text_14">
<!-- 920 --> <!-- 920 -->
<g transform="translate(333.537101 332.318438) scale(0.1 -0.1)"> <g transform="translate(333.537101 371.198438) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-39"/> <use xlink:href="#DejaVuSans-39"/>
<use xlink:href="#DejaVuSans-32" x="63.623047"/> <use xlink:href="#DejaVuSans-32" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/> <use xlink:href="#DejaVuSans-30" x="127.246094"/>
@@ -700,12 +700,12 @@ z
<g id="xtick_8"> <g id="xtick_8">
<g id="line2d_16"> <g id="line2d_16">
<g> <g>
<use xlink:href="#m16cfcf70b3" x="381.97201" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mb06c1fa688" x="381.97201" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_15"> <g id="text_15">
<!-- 940 --> <!-- 940 -->
<g transform="translate(372.42826 332.318438) scale(0.1 -0.1)"> <g transform="translate(372.42826 371.198438) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-39"/> <use xlink:href="#DejaVuSans-39"/>
<use xlink:href="#DejaVuSans-34" x="63.623047"/> <use xlink:href="#DejaVuSans-34" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/> <use xlink:href="#DejaVuSans-30" x="127.246094"/>
@@ -715,12 +715,12 @@ z
<g id="xtick_9"> <g id="xtick_9">
<g id="line2d_17"> <g id="line2d_17">
<g> <g>
<use xlink:href="#m16cfcf70b3" x="420.863169" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mb06c1fa688" x="420.863169" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_16"> <g id="text_16">
<!-- 960 --> <!-- 960 -->
<g transform="translate(411.319419 332.318438) scale(0.1 -0.1)"> <g transform="translate(411.319419 371.198438) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-39"/> <use xlink:href="#DejaVuSans-39"/>
<use xlink:href="#DejaVuSans-36" x="63.623047"/> <use xlink:href="#DejaVuSans-36" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/> <use xlink:href="#DejaVuSans-30" x="127.246094"/>
@@ -730,12 +730,12 @@ z
<g id="xtick_10"> <g id="xtick_10">
<g id="line2d_18"> <g id="line2d_18">
<g> <g>
<use xlink:href="#m16cfcf70b3" x="459.754329" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mb06c1fa688" x="459.754329" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_17"> <g id="text_17">
<!-- 980 --> <!-- 980 -->
<g transform="translate(450.210579 332.318438) scale(0.1 -0.1)"> <g transform="translate(450.210579 371.198438) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-39"/> <use xlink:href="#DejaVuSans-39"/>
<use xlink:href="#DejaVuSans-38" x="63.623047"/> <use xlink:href="#DejaVuSans-38" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/> <use xlink:href="#DejaVuSans-30" x="127.246094"/>
@@ -747,61 +747,61 @@ z
<g id="ytick_6"> <g id="ytick_6">
<g id="line2d_19"> <g id="line2d_19">
<g> <g>
<use xlink:href="#m1f99b5a726" x="290.6264" y="280.809091" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m1f7762b3e6" x="290.6264" y="314.387273" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
<g id="ytick_7"> <g id="ytick_7">
<g id="line2d_20"> <g id="line2d_20">
<g> <g>
<use xlink:href="#m1f99b5a726" x="290.6264" y="231.594545" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m1f7762b3e6" x="290.6264" y="258.103636" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
<g id="ytick_8"> <g id="ytick_8">
<g id="line2d_21"> <g id="line2d_21">
<g> <g>
<use xlink:href="#m1f99b5a726" x="290.6264" y="182.38" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m1f7762b3e6" x="290.6264" y="201.82" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
<g id="ytick_9"> <g id="ytick_9">
<g id="line2d_22"> <g id="line2d_22">
<g> <g>
<use xlink:href="#m1f99b5a726" x="290.6264" y="133.165455" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m1f7762b3e6" x="290.6264" y="145.536364" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
<g id="ytick_10"> <g id="ytick_10">
<g id="line2d_23"> <g id="line2d_23">
<g> <g>
<use xlink:href="#m1f99b5a726" x="290.6264" y="83.950909" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m1f7762b3e6" x="290.6264" y="89.252727" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
</g> </g>
<g id="line2d_24"/> <g id="line2d_24"/>
<g id="line2d_25"> <g id="line2d_25">
<path d="M 391.6948 317.72 <path d="M 391.6948 356.6
L 391.6948 47.04 L 391.6948 47.04
" clip-path="url(#p153050b661)" style="fill: none; stroke-dasharray: 5.55,2.4; stroke-dashoffset: 0; stroke: #000000; stroke-width: 1.5"/> " clip-path="url(#p75283d6597)" style="fill: none; stroke-dasharray: 5.55,2.4; stroke-dashoffset: 0; stroke: #000000; stroke-width: 1.5"/>
</g> </g>
<g id="line2d_26"> <g id="line2d_26">
<path clip-path="url(#p153050b661)" style="fill: none; stroke-dasharray: 1.5,2.475; stroke-dashoffset: 0; stroke: #00008b; stroke-opacity: 0.8; stroke-width: 1.5"/> <path clip-path="url(#p75283d6597)" style="fill: none; stroke-dasharray: 1.5,2.475; stroke-dashoffset: 0; stroke: #00008b; stroke-opacity: 0.8; stroke-width: 1.5"/>
</g> </g>
<g id="patch_8"> <g id="patch_8">
<path d="M 290.6264 317.72 <path d="M 290.6264 356.6
L 290.6264 47.04 L 290.6264 47.04
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_9"> <g id="patch_9">
<path d="M 492.7632 317.72 <path d="M 492.7632 356.6
L 492.7632 47.04 L 492.7632 47.04
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_10"> <g id="patch_10">
<path d="M 290.6264 317.72 <path d="M 290.6264 356.6
L 492.7632 317.72 L 492.7632 356.6
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_11"> <g id="patch_11">
@@ -835,8 +835,8 @@ z
</g> </g>
<g id="axes_3"> <g id="axes_3">
<g id="patch_12"> <g id="patch_12">
<path d="M 507.0632 317.72 <path d="M 507.0632 356.6
L 709.2 317.72 L 709.2 356.6
L 709.2 47.04 L 709.2 47.04
L 507.0632 47.04 L 507.0632 47.04
z z
@@ -846,12 +846,12 @@ z
<g id="xtick_11"> <g id="xtick_11">
<g id="line2d_27"> <g id="line2d_27">
<g> <g>
<use xlink:href="#m16cfcf70b3" x="520.626492" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mb06c1fa688" x="520.626492" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_19"> <g id="text_19">
<!-- 900 --> <!-- 900 -->
<g transform="translate(511.082742 332.318438) scale(0.1 -0.1)"> <g transform="translate(511.082742 371.198438) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-39"/> <use xlink:href="#DejaVuSans-39"/>
<use xlink:href="#DejaVuSans-30" x="63.623047"/> <use xlink:href="#DejaVuSans-30" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/> <use xlink:href="#DejaVuSans-30" x="127.246094"/>
@@ -861,12 +861,12 @@ z
<g id="xtick_12"> <g id="xtick_12">
<g id="line2d_28"> <g id="line2d_28">
<g> <g>
<use xlink:href="#m16cfcf70b3" x="559.517651" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mb06c1fa688" x="559.517651" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_20"> <g id="text_20">
<!-- 920 --> <!-- 920 -->
<g transform="translate(549.973901 332.318438) scale(0.1 -0.1)"> <g transform="translate(549.973901 371.198438) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-39"/> <use xlink:href="#DejaVuSans-39"/>
<use xlink:href="#DejaVuSans-32" x="63.623047"/> <use xlink:href="#DejaVuSans-32" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/> <use xlink:href="#DejaVuSans-30" x="127.246094"/>
@@ -876,12 +876,12 @@ z
<g id="xtick_13"> <g id="xtick_13">
<g id="line2d_29"> <g id="line2d_29">
<g> <g>
<use xlink:href="#m16cfcf70b3" x="598.40881" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mb06c1fa688" x="598.40881" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_21"> <g id="text_21">
<!-- 940 --> <!-- 940 -->
<g transform="translate(588.86506 332.318438) scale(0.1 -0.1)"> <g transform="translate(588.86506 371.198438) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-39"/> <use xlink:href="#DejaVuSans-39"/>
<use xlink:href="#DejaVuSans-34" x="63.623047"/> <use xlink:href="#DejaVuSans-34" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/> <use xlink:href="#DejaVuSans-30" x="127.246094"/>
@@ -891,12 +891,12 @@ z
<g id="xtick_14"> <g id="xtick_14">
<g id="line2d_30"> <g id="line2d_30">
<g> <g>
<use xlink:href="#m16cfcf70b3" x="637.299969" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mb06c1fa688" x="637.299969" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_22"> <g id="text_22">
<!-- 960 --> <!-- 960 -->
<g transform="translate(627.756219 332.318438) scale(0.1 -0.1)"> <g transform="translate(627.756219 371.198438) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-39"/> <use xlink:href="#DejaVuSans-39"/>
<use xlink:href="#DejaVuSans-36" x="63.623047"/> <use xlink:href="#DejaVuSans-36" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/> <use xlink:href="#DejaVuSans-30" x="127.246094"/>
@@ -906,12 +906,12 @@ z
<g id="xtick_15"> <g id="xtick_15">
<g id="line2d_31"> <g id="line2d_31">
<g> <g>
<use xlink:href="#m16cfcf70b3" x="676.191129" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mb06c1fa688" x="676.191129" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_23"> <g id="text_23">
<!-- 980 --> <!-- 980 -->
<g transform="translate(666.647379 332.318438) scale(0.1 -0.1)"> <g transform="translate(666.647379 371.198438) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-39"/> <use xlink:href="#DejaVuSans-39"/>
<use xlink:href="#DejaVuSans-38" x="63.623047"/> <use xlink:href="#DejaVuSans-38" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/> <use xlink:href="#DejaVuSans-30" x="127.246094"/>
@@ -923,61 +923,61 @@ z
<g id="ytick_11"> <g id="ytick_11">
<g id="line2d_32"> <g id="line2d_32">
<g> <g>
<use xlink:href="#m1f99b5a726" x="507.0632" y="280.809091" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m1f7762b3e6" x="507.0632" y="314.387273" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
<g id="ytick_12"> <g id="ytick_12">
<g id="line2d_33"> <g id="line2d_33">
<g> <g>
<use xlink:href="#m1f99b5a726" x="507.0632" y="231.594545" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m1f7762b3e6" x="507.0632" y="258.103636" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
<g id="ytick_13"> <g id="ytick_13">
<g id="line2d_34"> <g id="line2d_34">
<g> <g>
<use xlink:href="#m1f99b5a726" x="507.0632" y="182.38" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m1f7762b3e6" x="507.0632" y="201.82" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
<g id="ytick_14"> <g id="ytick_14">
<g id="line2d_35"> <g id="line2d_35">
<g> <g>
<use xlink:href="#m1f99b5a726" x="507.0632" y="133.165455" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m1f7762b3e6" x="507.0632" y="145.536364" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
<g id="ytick_15"> <g id="ytick_15">
<g id="line2d_36"> <g id="line2d_36">
<g> <g>
<use xlink:href="#m1f99b5a726" x="507.0632" y="83.950909" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m1f7762b3e6" x="507.0632" y="89.252727" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
</g> </g>
<g id="line2d_37"/> <g id="line2d_37"/>
<g id="line2d_38"> <g id="line2d_38">
<path d="M 608.1316 317.72 <path d="M 608.1316 356.6
L 608.1316 47.04 L 608.1316 47.04
" clip-path="url(#p3067a9755a)" style="fill: none; stroke-dasharray: 5.55,2.4; stroke-dashoffset: 0; stroke: #000000; stroke-width: 1.5"/> " clip-path="url(#pcc47495776)" style="fill: none; stroke-dasharray: 5.55,2.4; stroke-dashoffset: 0; stroke: #000000; stroke-width: 1.5"/>
</g> </g>
<g id="line2d_39"> <g id="line2d_39">
<path clip-path="url(#p3067a9755a)" style="fill: none; stroke-dasharray: 1.5,2.475; stroke-dashoffset: 0; stroke: #00008b; stroke-opacity: 0.8; stroke-width: 1.5"/> <path clip-path="url(#pcc47495776)" style="fill: none; stroke-dasharray: 1.5,2.475; stroke-dashoffset: 0; stroke: #00008b; stroke-opacity: 0.8; stroke-width: 1.5"/>
</g> </g>
<g id="patch_13"> <g id="patch_13">
<path d="M 507.0632 317.72 <path d="M 507.0632 356.6
L 507.0632 47.04 L 507.0632 47.04
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_14"> <g id="patch_14">
<path d="M 709.2 317.72 <path d="M 709.2 356.6
L 709.2 47.04 L 709.2 47.04
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_15"> <g id="patch_15">
<path d="M 507.0632 317.72 <path d="M 507.0632 356.6
L 709.2 317.72 L 709.2 356.6
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_16"> <g id="patch_16">
@@ -1347,27 +1347,27 @@ z
</g> </g>
<g id="legend_1"> <g id="legend_1">
<g id="patch_17"> <g id="patch_17">
<path d="M 117.271094 427 <path d="M 117.271094 405.4
L 602.728906 427 L 602.728906 405.4
Q 604.728906 427 604.728906 425 Q 604.728906 405.4 604.728906 403.4
L 604.728906 411.321875 L 604.728906 389.721875
Q 604.728906 409.321875 602.728906 409.321875 Q 604.728906 387.721875 602.728906 387.721875
L 117.271094 409.321875 L 117.271094 387.721875
Q 115.271094 409.321875 115.271094 411.321875 Q 115.271094 387.721875 115.271094 389.721875
L 115.271094 425 L 115.271094 403.4
Q 115.271094 427 117.271094 427 Q 115.271094 405.4 117.271094 405.4
z z
" style="fill: #ffffff; opacity: 0.8; stroke: #cccccc; stroke-linejoin: miter"/> " style="fill: #ffffff; opacity: 0.8; stroke: #cccccc; stroke-linejoin: miter"/>
</g> </g>
<g id="line2d_40"> <g id="line2d_40">
<path d="M 119.271094 417.420313 <path d="M 119.271094 395.820312
L 129.271094 417.420313 L 129.271094 395.820312
L 139.271094 417.420313 L 139.271094 395.820312
" style="fill: none; stroke: #1f77b4; stroke-width: 1.5; stroke-linecap: square"/> " style="fill: none; stroke: #1f77b4; stroke-width: 1.5; stroke-linecap: square"/>
</g> </g>
<g id="text_27"> <g id="text_27">
<!-- power of stimulus peak --> <!-- power of stimulus peak -->
<g transform="translate(147.271094 420.920313) scale(0.1 -0.1)"> <g transform="translate(147.271094 399.320312) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-6b" d="M 581 4863 <path id="DejaVuSans-6b" d="M 581 4863
L 1159 4863 L 1159 4863
@@ -1409,14 +1409,14 @@ z
</g> </g>
</g> </g>
<g id="line2d_41"> <g id="line2d_41">
<path d="M 284.085156 417.420313 <path d="M 284.085156 395.820312
L 294.085156 417.420313 L 294.085156 395.820312
L 304.085156 417.420313 L 304.085156 395.820312
" style="fill: none; stroke-dasharray: 5.55,2.4; stroke-dashoffset: 0; stroke: #000000; stroke-width: 1.5"/> " style="fill: none; stroke-dasharray: 5.55,2.4; stroke-dashoffset: 0; stroke: #000000; stroke-width: 1.5"/>
</g> </g>
<g id="text_28"> <g id="text_28">
<!-- EODf of awake fish --> <!-- EODf of awake fish -->
<g transform="translate(312.085156 420.920313) scale(0.1 -0.1)"> <g transform="translate(312.085156 399.320312) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-45" d="M 628 4666 <path id="DejaVuSans-45" d="M 628 4666
L 3578 4666 L 3578 4666
@@ -1514,14 +1514,14 @@ z
</g> </g>
</g> </g>
<g id="line2d_42"> <g id="line2d_42">
<path d="M 426.530469 417.420313 <path d="M 426.530469 395.820312
L 436.530469 417.420313 L 436.530469 395.820312
L 446.530469 417.420313 L 446.530469 395.820312
" style="fill: none; stroke-dasharray: 1.5,2.475; stroke-dashoffset: 0; stroke: #00008b; stroke-opacity: 0.8; stroke-width: 1.5"/> " style="fill: none; stroke-dasharray: 1.5,2.475; stroke-dashoffset: 0; stroke: #00008b; stroke-opacity: 0.8; stroke-width: 1.5"/>
</g> </g>
<g id="text_29"> <g id="text_29">
<!-- 1st harmonic of current EODf --> <!-- 1st harmonic of current EODf -->
<g transform="translate(454.530469 420.920313) scale(0.1 -0.1)"> <g transform="translate(454.530469 399.320312) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-31"/> <use xlink:href="#DejaVuSans-31"/>
<use xlink:href="#DejaVuSans-73" x="63.623047"/> <use xlink:href="#DejaVuSans-73" x="63.623047"/>
<use xlink:href="#DejaVuSans-74" x="115.722656"/> <use xlink:href="#DejaVuSans-74" x="115.722656"/>
@@ -1555,14 +1555,14 @@ L 446.530469 417.420313
</g> </g>
</g> </g>
<defs> <defs>
<clipPath id="pa5ccb7cece"> <clipPath id="p8497f646d0">
<rect x="74.1896" y="47.04" width="202.1368" height="270.68"/> <rect x="74.1896" y="47.04" width="202.1368" height="309.56"/>
</clipPath> </clipPath>
<clipPath id="p153050b661"> <clipPath id="p75283d6597">
<rect x="290.6264" y="47.04" width="202.1368" height="270.68"/> <rect x="290.6264" y="47.04" width="202.1368" height="309.56"/>
</clipPath> </clipPath>
<clipPath id="p3067a9755a"> <clipPath id="pcc47495776">
<rect x="507.0632" y="47.04" width="202.1368" height="270.68"/> <rect x="507.0632" y="47.04" width="202.1368" height="309.56"/>
</clipPath> </clipPath>
</defs> </defs>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 42 KiB

After

Width:  |  Height:  |  Size: 41 KiB

View File

@@ -6,7 +6,7 @@
<rdf:RDF xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:RDF xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<cc:Work> <cc:Work>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<dc:date>2024-10-25T15:21:34.822656</dc:date> <dc:date>2024-10-25T16:37:49.123317</dc:date>
<dc:format>image/svg+xml</dc:format> <dc:format>image/svg+xml</dc:format>
<dc:creator> <dc:creator>
<cc:Agent> <cc:Agent>
@@ -30,8 +30,8 @@ z
</g> </g>
<g id="axes_1"> <g id="axes_1">
<g id="patch_2"> <g id="patch_2">
<path d="M 59.4296 317.72 <path d="M 59.4296 356.6
L 258.626755 317.72 L 258.626755 356.6
L 258.626755 47.04 L 258.626755 47.04
L 59.4296 47.04 L 59.4296 47.04
z z
@@ -41,17 +41,17 @@ z
<g id="xtick_1"> <g id="xtick_1">
<g id="line2d_1"> <g id="line2d_1">
<defs> <defs>
<path id="m5f7f2309ed" d="M 0 0 <path id="mda8331527a" d="M 0 0
L 0 3.5 L 0 3.5
" style="stroke: #000000; stroke-width: 0.8"/> " style="stroke: #000000; stroke-width: 0.8"/>
</defs> </defs>
<g> <g>
<use xlink:href="#m5f7f2309ed" x="60.007541" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mda8331527a" x="60.007541" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_1"> <g id="text_1">
<!-- 250 --> <!-- 250 -->
<g transform="translate(50.463791 332.318438) scale(0.1 -0.1)"> <g transform="translate(50.463791 371.198438) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-32" d="M 1228 531 <path id="DejaVuSans-32" d="M 1228 531
L 3431 531 L 3431 531
@@ -133,12 +133,12 @@ z
<g id="xtick_2"> <g id="xtick_2">
<g id="line2d_2"> <g id="line2d_2">
<g> <g>
<use xlink:href="#m5f7f2309ed" x="98.536972" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mda8331527a" x="98.536972" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_2"> <g id="text_2">
<!-- 500 --> <!-- 500 -->
<g transform="translate(88.993222 332.318438) scale(0.1 -0.1)"> <g transform="translate(88.993222 371.198438) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-35"/> <use xlink:href="#DejaVuSans-35"/>
<use xlink:href="#DejaVuSans-30" x="63.623047"/> <use xlink:href="#DejaVuSans-30" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/> <use xlink:href="#DejaVuSans-30" x="127.246094"/>
@@ -148,12 +148,12 @@ z
<g id="xtick_3"> <g id="xtick_3">
<g id="line2d_3"> <g id="line2d_3">
<g> <g>
<use xlink:href="#m5f7f2309ed" x="137.066402" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mda8331527a" x="137.066402" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_3"> <g id="text_3">
<!-- 750 --> <!-- 750 -->
<g transform="translate(127.522652 332.318438) scale(0.1 -0.1)"> <g transform="translate(127.522652 371.198438) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-37" d="M 525 4666 <path id="DejaVuSans-37" d="M 525 4666
L 3525 4666 L 3525 4666
@@ -175,12 +175,12 @@ z
<g id="xtick_4"> <g id="xtick_4">
<g id="line2d_4"> <g id="line2d_4">
<g> <g>
<use xlink:href="#m5f7f2309ed" x="175.595833" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mda8331527a" x="175.595833" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_4"> <g id="text_4">
<!-- 1000 --> <!-- 1000 -->
<g transform="translate(162.870833 332.318438) scale(0.1 -0.1)"> <g transform="translate(162.870833 371.198438) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-31" d="M 794 531 <path id="DejaVuSans-31" d="M 794 531
L 1825 531 L 1825 531
@@ -207,12 +207,12 @@ z
<g id="xtick_5"> <g id="xtick_5">
<g id="line2d_5"> <g id="line2d_5">
<g> <g>
<use xlink:href="#m5f7f2309ed" x="214.125263" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mda8331527a" x="214.125263" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_5"> <g id="text_5">
<!-- 1250 --> <!-- 1250 -->
<g transform="translate(201.400263 332.318438) scale(0.1 -0.1)"> <g transform="translate(201.400263 371.198438) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-31"/> <use xlink:href="#DejaVuSans-31"/>
<use xlink:href="#DejaVuSans-32" x="63.623047"/> <use xlink:href="#DejaVuSans-32" x="63.623047"/>
<use xlink:href="#DejaVuSans-35" x="127.246094"/> <use xlink:href="#DejaVuSans-35" x="127.246094"/>
@@ -223,12 +223,12 @@ z
<g id="xtick_6"> <g id="xtick_6">
<g id="line2d_6"> <g id="line2d_6">
<g> <g>
<use xlink:href="#m5f7f2309ed" x="252.654693" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mda8331527a" x="252.654693" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_6"> <g id="text_6">
<!-- 1500 --> <!-- 1500 -->
<g transform="translate(239.929693 332.318438) scale(0.1 -0.1)"> <g transform="translate(239.929693 371.198438) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-31"/> <use xlink:href="#DejaVuSans-31"/>
<use xlink:href="#DejaVuSans-35" x="63.623047"/> <use xlink:href="#DejaVuSans-35" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/> <use xlink:href="#DejaVuSans-30" x="127.246094"/>
@@ -241,17 +241,17 @@ z
<g id="ytick_1"> <g id="ytick_1">
<g id="line2d_7"> <g id="line2d_7">
<defs> <defs>
<path id="mf2325767db" d="M 0 0 <path id="m5b54807337" d="M 0 0
L -3.5 0 L -3.5 0
" style="stroke: #000000; stroke-width: 0.8"/> " style="stroke: #000000; stroke-width: 0.8"/>
</defs> </defs>
<g> <g>
<use xlink:href="#mf2325767db" x="59.4296" y="307.695134" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m5b54807337" x="59.4296" y="345.13518" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_7"> <g id="text_7">
<!-- 0.0 --> <!-- 0.0 -->
<g transform="translate(36.526475 311.494353) scale(0.1 -0.1)"> <g transform="translate(36.526475 348.934399) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-2e" d="M 684 794 <path id="DejaVuSans-2e" d="M 684 794
L 1344 794 L 1344 794
@@ -270,12 +270,12 @@ z
<g id="ytick_2"> <g id="ytick_2">
<g id="line2d_8"> <g id="line2d_8">
<g> <g>
<use xlink:href="#mf2325767db" x="59.4296" y="268.722702" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m5b54807337" x="59.4296" y="300.564816" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_8"> <g id="text_8">
<!-- 0.5 --> <!-- 0.5 -->
<g transform="translate(36.526475 272.52192) scale(0.1 -0.1)"> <g transform="translate(36.526475 304.364034) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-30"/> <use xlink:href="#DejaVuSans-30"/>
<use xlink:href="#DejaVuSans-2e" x="63.623047"/> <use xlink:href="#DejaVuSans-2e" x="63.623047"/>
<use xlink:href="#DejaVuSans-35" x="95.410156"/> <use xlink:href="#DejaVuSans-35" x="95.410156"/>
@@ -285,12 +285,12 @@ z
<g id="ytick_3"> <g id="ytick_3">
<g id="line2d_9"> <g id="line2d_9">
<g> <g>
<use xlink:href="#mf2325767db" x="59.4296" y="229.750269" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m5b54807337" x="59.4296" y="255.994451" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_9"> <g id="text_9">
<!-- 1.0 --> <!-- 1.0 -->
<g transform="translate(36.526475 233.549487) scale(0.1 -0.1)"> <g transform="translate(36.526475 259.79367) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-31"/> <use xlink:href="#DejaVuSans-31"/>
<use xlink:href="#DejaVuSans-2e" x="63.623047"/> <use xlink:href="#DejaVuSans-2e" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="95.410156"/> <use xlink:href="#DejaVuSans-30" x="95.410156"/>
@@ -300,12 +300,12 @@ z
<g id="ytick_4"> <g id="ytick_4">
<g id="line2d_10"> <g id="line2d_10">
<g> <g>
<use xlink:href="#mf2325767db" x="59.4296" y="190.777836" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m5b54807337" x="59.4296" y="211.424086" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_10"> <g id="text_10">
<!-- 1.5 --> <!-- 1.5 -->
<g transform="translate(36.526475 194.577055) scale(0.1 -0.1)"> <g transform="translate(36.526475 215.223305) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-31"/> <use xlink:href="#DejaVuSans-31"/>
<use xlink:href="#DejaVuSans-2e" x="63.623047"/> <use xlink:href="#DejaVuSans-2e" x="63.623047"/>
<use xlink:href="#DejaVuSans-35" x="95.410156"/> <use xlink:href="#DejaVuSans-35" x="95.410156"/>
@@ -315,12 +315,12 @@ z
<g id="ytick_5"> <g id="ytick_5">
<g id="line2d_11"> <g id="line2d_11">
<g> <g>
<use xlink:href="#mf2325767db" x="59.4296" y="151.805403" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m5b54807337" x="59.4296" y="166.853721" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_11"> <g id="text_11">
<!-- 2.0 --> <!-- 2.0 -->
<g transform="translate(36.526475 155.604622) scale(0.1 -0.1)"> <g transform="translate(36.526475 170.65294) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-32"/> <use xlink:href="#DejaVuSans-32"/>
<use xlink:href="#DejaVuSans-2e" x="63.623047"/> <use xlink:href="#DejaVuSans-2e" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="95.410156"/> <use xlink:href="#DejaVuSans-30" x="95.410156"/>
@@ -330,12 +330,12 @@ z
<g id="ytick_6"> <g id="ytick_6">
<g id="line2d_12"> <g id="line2d_12">
<g> <g>
<use xlink:href="#mf2325767db" x="59.4296" y="112.83297" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m5b54807337" x="59.4296" y="122.283357" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_12"> <g id="text_12">
<!-- 2.5 --> <!-- 2.5 -->
<g transform="translate(36.526475 116.632189) scale(0.1 -0.1)"> <g transform="translate(36.526475 126.082575) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-32"/> <use xlink:href="#DejaVuSans-32"/>
<use xlink:href="#DejaVuSans-2e" x="63.623047"/> <use xlink:href="#DejaVuSans-2e" x="63.623047"/>
<use xlink:href="#DejaVuSans-35" x="95.410156"/> <use xlink:href="#DejaVuSans-35" x="95.410156"/>
@@ -345,12 +345,12 @@ z
<g id="ytick_7"> <g id="ytick_7">
<g id="line2d_13"> <g id="line2d_13">
<g> <g>
<use xlink:href="#mf2325767db" x="59.4296" y="73.860537" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m5b54807337" x="59.4296" y="77.712992" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_13"> <g id="text_13">
<!-- 3.0 --> <!-- 3.0 -->
<g transform="translate(36.526475 77.659756) scale(0.1 -0.1)"> <g transform="translate(36.526475 81.512211) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-33" d="M 2597 2516 <path id="DejaVuSans-33" d="M 2597 2516
Q 3050 2419 3304 2112 Q 3050 2419 3304 2112
@@ -393,7 +393,7 @@ z
</g> </g>
<g id="text_14"> <g id="text_14">
<!-- power [$\frac{\mathrm{mV^2}}{\mathrm{Hz}}$] --> <!-- power [$\frac{\mathrm{mV^2}}{\mathrm{Hz}}$] -->
<g transform="translate(27.846475 217.3) rotate(-90) scale(0.12 -0.12)"> <g transform="translate(27.846475 236.74) rotate(-90) scale(0.12 -0.12)">
<defs> <defs>
<path id="DejaVuSans-70" d="M 1159 525 <path id="DejaVuSans-70" d="M 1159 525
L 1159 -1331 L 1159 -1331
@@ -664,63 +664,63 @@ z
</g> </g>
</g> </g>
<g id="line2d_14"> <g id="line2d_14">
<path d="M 68.484016 305.416364 <path d="M 68.484016 342.529091
L 72.336959 303.870455 L 72.336959 340.76113
L 76.189902 304.463558 L 76.189902 341.439426
L 80.042845 132.191469 L 80.042845 144.422477
L 83.895788 281.942279 L 83.895788 315.68323
L 87.748731 300.658707 L 87.748731 337.088053
L 91.601674 300.964549 L 91.601674 337.437825
L 95.454617 302.51354 L 95.454617 339.209311
L 99.30756 304.112834 L 99.30756 341.038324
L 103.160503 300.740156 L 103.160503 337.181201
L 107.013447 293.984516 L 107.013447 329.455193
L 110.86639 86.388063 L 110.86639 92.03995
L 114.719333 255.570887 L 114.719333 285.523898
L 118.572276 298.956676 L 118.572276 335.141546
L 122.425219 293.465853 L 122.425219 328.862029
L 126.278162 293.261612 L 126.278162 328.628452
L 130.131105 301.099056 L 130.131105 337.591653
L 133.984048 300.77847 L 133.984048 337.225018
L 137.836991 299.404816 L 137.836991 335.654055
L 141.689934 293.087142 L 141.689934 328.428921
L 145.542877 267.731766 L 145.542877 299.431544
L 149.39582 277.805313 L 149.39582 310.952038
L 153.248763 248.890275 L 153.248763 277.883694
L 157.101706 221.746379 L 157.101706 246.840896
L 160.954649 217.673808 L 160.954649 242.183349
L 164.807592 227.773343 L 164.807592 253.733563
L 168.660535 285.392009 L 168.660535 319.628474
L 172.513478 281.989471 L 172.513478 315.7372
L 176.366421 256.214657 L 176.366421 286.260137
L 180.219364 246.939382 L 180.219364 275.652579
L 184.072307 222.012394 L 184.072307 247.145122
L 187.92525 249.63183 L 187.92525 278.731765
" clip-path="url(#p328e5bd095)" style="fill: none; stroke: #1f77b4; stroke-width: 1.5; stroke-linecap: square"/> " clip-path="url(#p8ff807e884)" style="fill: none; stroke: #1f77b4; stroke-width: 1.5; stroke-linecap: square"/>
</g> </g>
<g id="line2d_15"> <g id="line2d_15">
<path d="M 167.119358 317.72 <path d="M 167.119358 356.6
L 167.119358 47.04 L 167.119358 47.04
" clip-path="url(#p328e5bd095)" style="fill: none; stroke-dasharray: 5.55,2.4; stroke-dashoffset: 0; stroke: #000000; stroke-width: 1.5"/> " clip-path="url(#p8ff807e884)" style="fill: none; stroke-dasharray: 5.55,2.4; stroke-dashoffset: 0; stroke: #000000; stroke-width: 1.5"/>
</g> </g>
<g id="line2d_16"> <g id="line2d_16">
<path d="M 107.719017 317.72 <path d="M 107.719017 356.6
L 107.719017 47.04 L 107.719017 47.04
" clip-path="url(#p328e5bd095)" style="fill: none; stroke-dasharray: 1.5,2.475; stroke-dashoffset: 0; stroke: #00008b; stroke-opacity: 0.8; stroke-width: 1.5"/> " clip-path="url(#p8ff807e884)" style="fill: none; stroke-dasharray: 1.5,2.475; stroke-dashoffset: 0; stroke: #00008b; stroke-opacity: 0.8; stroke-width: 1.5"/>
</g> </g>
<g id="patch_3"> <g id="patch_3">
<path d="M 59.4296 317.72 <path d="M 59.4296 356.6
L 59.4296 47.04 L 59.4296 47.04
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_4"> <g id="patch_4">
<path d="M 258.626755 317.72 <path d="M 258.626755 356.6
L 258.626755 47.04 L 258.626755 47.04
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_5"> <g id="patch_5">
<path d="M 59.4296 317.72 <path d="M 59.4296 356.6
L 258.626755 317.72 L 258.626755 356.6
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_6"> <g id="patch_6">
@@ -738,8 +738,8 @@ L 258.626755 47.04
</g> </g>
<g id="axes_2"> <g id="axes_2">
<g id="patch_7"> <g id="patch_7">
<path d="M 280.7864 317.72 <path d="M 280.7864 356.6
L 479.983555 317.72 L 479.983555 356.6
L 479.983555 47.04 L 479.983555 47.04
L 280.7864 47.04 L 280.7864 47.04
z z
@@ -749,12 +749,12 @@ z
<g id="xtick_7"> <g id="xtick_7">
<g id="line2d_17"> <g id="line2d_17">
<g> <g>
<use xlink:href="#m5f7f2309ed" x="281.364341" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mda8331527a" x="281.364341" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_17"> <g id="text_17">
<!-- 250 --> <!-- 250 -->
<g transform="translate(271.820591 332.318438) scale(0.1 -0.1)"> <g transform="translate(271.820591 371.198438) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-32"/> <use xlink:href="#DejaVuSans-32"/>
<use xlink:href="#DejaVuSans-35" x="63.623047"/> <use xlink:href="#DejaVuSans-35" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/> <use xlink:href="#DejaVuSans-30" x="127.246094"/>
@@ -764,12 +764,12 @@ z
<g id="xtick_8"> <g id="xtick_8">
<g id="line2d_18"> <g id="line2d_18">
<g> <g>
<use xlink:href="#m5f7f2309ed" x="319.893772" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mda8331527a" x="319.893772" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_18"> <g id="text_18">
<!-- 500 --> <!-- 500 -->
<g transform="translate(310.350022 332.318438) scale(0.1 -0.1)"> <g transform="translate(310.350022 371.198438) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-35"/> <use xlink:href="#DejaVuSans-35"/>
<use xlink:href="#DejaVuSans-30" x="63.623047"/> <use xlink:href="#DejaVuSans-30" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/> <use xlink:href="#DejaVuSans-30" x="127.246094"/>
@@ -779,12 +779,12 @@ z
<g id="xtick_9"> <g id="xtick_9">
<g id="line2d_19"> <g id="line2d_19">
<g> <g>
<use xlink:href="#m5f7f2309ed" x="358.423202" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mda8331527a" x="358.423202" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_19"> <g id="text_19">
<!-- 750 --> <!-- 750 -->
<g transform="translate(348.879452 332.318438) scale(0.1 -0.1)"> <g transform="translate(348.879452 371.198438) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-37"/> <use xlink:href="#DejaVuSans-37"/>
<use xlink:href="#DejaVuSans-35" x="63.623047"/> <use xlink:href="#DejaVuSans-35" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/> <use xlink:href="#DejaVuSans-30" x="127.246094"/>
@@ -794,12 +794,12 @@ z
<g id="xtick_10"> <g id="xtick_10">
<g id="line2d_20"> <g id="line2d_20">
<g> <g>
<use xlink:href="#m5f7f2309ed" x="396.952633" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mda8331527a" x="396.952633" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_20"> <g id="text_20">
<!-- 1000 --> <!-- 1000 -->
<g transform="translate(384.227633 332.318438) scale(0.1 -0.1)"> <g transform="translate(384.227633 371.198438) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-31"/> <use xlink:href="#DejaVuSans-31"/>
<use xlink:href="#DejaVuSans-30" x="63.623047"/> <use xlink:href="#DejaVuSans-30" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/> <use xlink:href="#DejaVuSans-30" x="127.246094"/>
@@ -810,12 +810,12 @@ z
<g id="xtick_11"> <g id="xtick_11">
<g id="line2d_21"> <g id="line2d_21">
<g> <g>
<use xlink:href="#m5f7f2309ed" x="435.482063" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mda8331527a" x="435.482063" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_21"> <g id="text_21">
<!-- 1250 --> <!-- 1250 -->
<g transform="translate(422.757063 332.318438) scale(0.1 -0.1)"> <g transform="translate(422.757063 371.198438) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-31"/> <use xlink:href="#DejaVuSans-31"/>
<use xlink:href="#DejaVuSans-32" x="63.623047"/> <use xlink:href="#DejaVuSans-32" x="63.623047"/>
<use xlink:href="#DejaVuSans-35" x="127.246094"/> <use xlink:href="#DejaVuSans-35" x="127.246094"/>
@@ -826,12 +826,12 @@ z
<g id="xtick_12"> <g id="xtick_12">
<g id="line2d_22"> <g id="line2d_22">
<g> <g>
<use xlink:href="#m5f7f2309ed" x="474.011493" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mda8331527a" x="474.011493" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_22"> <g id="text_22">
<!-- 1500 --> <!-- 1500 -->
<g transform="translate(461.286493 332.318438) scale(0.1 -0.1)"> <g transform="translate(461.286493 371.198438) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-31"/> <use xlink:href="#DejaVuSans-31"/>
<use xlink:href="#DejaVuSans-35" x="63.623047"/> <use xlink:href="#DejaVuSans-35" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/> <use xlink:href="#DejaVuSans-30" x="127.246094"/>
@@ -844,127 +844,127 @@ z
<g id="ytick_8"> <g id="ytick_8">
<g id="line2d_23"> <g id="line2d_23">
<g> <g>
<use xlink:href="#mf2325767db" x="280.7864" y="307.695134" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m5b54807337" x="280.7864" y="345.13518" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
<g id="ytick_9"> <g id="ytick_9">
<g id="line2d_24"> <g id="line2d_24">
<g> <g>
<use xlink:href="#mf2325767db" x="280.7864" y="268.722702" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m5b54807337" x="280.7864" y="300.564816" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
<g id="ytick_10"> <g id="ytick_10">
<g id="line2d_25"> <g id="line2d_25">
<g> <g>
<use xlink:href="#mf2325767db" x="280.7864" y="229.750269" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m5b54807337" x="280.7864" y="255.994451" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
<g id="ytick_11"> <g id="ytick_11">
<g id="line2d_26"> <g id="line2d_26">
<g> <g>
<use xlink:href="#mf2325767db" x="280.7864" y="190.777836" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m5b54807337" x="280.7864" y="211.424086" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
<g id="ytick_12"> <g id="ytick_12">
<g id="line2d_27"> <g id="line2d_27">
<g> <g>
<use xlink:href="#mf2325767db" x="280.7864" y="151.805403" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m5b54807337" x="280.7864" y="166.853721" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
<g id="ytick_13"> <g id="ytick_13">
<g id="line2d_28"> <g id="line2d_28">
<g> <g>
<use xlink:href="#mf2325767db" x="280.7864" y="112.83297" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m5b54807337" x="280.7864" y="122.283357" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
<g id="ytick_14"> <g id="ytick_14">
<g id="line2d_29"> <g id="line2d_29">
<g> <g>
<use xlink:href="#mf2325767db" x="280.7864" y="73.860537" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m5b54807337" x="280.7864" y="77.712992" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
</g> </g>
<g id="line2d_30"> <g id="line2d_30">
<path d="M 289.840816 302.081837 <path d="M 289.840816 338.715598
L 293.693759 302.783552 L 293.693759 339.518107
L 297.392584 288.875015 L 297.392584 323.611771
L 301.245528 290.465999 L 301.245528 325.431283
L 305.098471 293.922607 L 305.098471 329.384391
L 308.951414 293.59172 L 308.951414 329.005976
L 312.804357 292.564061 L 312.804357 327.830706
L 316.6573 227.684915 L 316.6573 253.632433
L 320.510243 101.894629 L 320.510243 109.773852
L 324.363186 185.141788 L 324.363186 204.978487
L 328.216129 287.201252 L 328.216129 321.697593
L 332.069072 293.843812 L 332.069072 329.294278
L 335.922015 289.723359 L 335.922015 324.581971
L 339.774958 274.603646 L 339.774958 307.290489
L 343.627901 258.06449 L 343.627901 288.375678
L 347.480844 265.159289 L 347.480844 296.48956
L 351.333787 253.370207 L 351.333787 283.007116
L 355.18673 267.148444 L 355.18673 298.764434
L 359.039673 279.799662 L 359.039673 313.232851
L 362.892616 273.958699 L 362.892616 306.552903
L 366.745559 271.816262 L 366.745559 304.102729
L 370.598502 256.467802 L 370.598502 286.549644
L 374.451445 227.606149 L 374.451445 253.542354
L 378.304388 253.353263 L 378.304388 282.987737
L 382.311449 194.97758 L 382.311449 216.227074
L 386.164392 206.127749 L 386.164392 228.978834
L 390.017335 177.318821 L 390.017335 196.031842
L 393.870278 252.542179 L 393.870278 282.060151
L 397.723221 201.660247 L 397.723221 223.869627
L 401.576164 245.027655 L 401.576164 273.466254
L 405.27499 280.237314 L 405.27499 313.733367
L 409.127933 274.756194 L 409.127933 307.464948
L 412.980876 256.78711 L 412.980876 286.914817
L 416.833819 282.005197 L 416.833819 315.755185
L 420.686762 237.555485 L 420.686762 264.920794
L 424.693822 253.250293 L 424.693822 282.869978
L 428.546765 233.507618 L 428.546765 260.291499
L 432.399708 226.741565 L 432.399708 252.553582
L 436.252652 225.79971 L 436.252652 251.47644
L 440.105595 253.441333 L 440.105595 283.088458
L 443.958538 244.603981 L 443.958538 272.981725
L 447.811481 264.831552 L 447.811481 296.114748
L 451.664424 233.246535 L 451.664424 259.992915
L 455.517367 239.545182 L 455.517367 267.196288
L 459.37031 241.291988 L 459.37031 269.194002
L 463.223253 270.358522 L 463.223253 302.435603
L 467.076196 267.284669 L 467.076196 298.920227
L 470.929139 268.610439 L 470.929139 300.436427
" clip-path="url(#p2c21acfc8b)" style="fill: none; stroke: #1f77b4; stroke-width: 1.5; stroke-linecap: square"/> " clip-path="url(#p0a68f6394d)" style="fill: none; stroke: #1f77b4; stroke-width: 1.5; stroke-linecap: square"/>
</g> </g>
<g id="line2d_31"> <g id="line2d_31">
<path d="M 388.476158 317.72 <path d="M 388.476158 356.6
L 388.476158 47.04 L 388.476158 47.04
" clip-path="url(#p2c21acfc8b)" style="fill: none; stroke-dasharray: 5.55,2.4; stroke-dashoffset: 0; stroke: #000000; stroke-width: 1.5"/> " clip-path="url(#p0a68f6394d)" style="fill: none; stroke-dasharray: 5.55,2.4; stroke-dashoffset: 0; stroke: #000000; stroke-width: 1.5"/>
</g> </g>
<g id="line2d_32"> <g id="line2d_32">
<path d="M 329.075817 317.72 <path d="M 329.075817 356.6
L 329.075817 47.04 L 329.075817 47.04
" clip-path="url(#p2c21acfc8b)" style="fill: none; stroke-dasharray: 1.5,2.475; stroke-dashoffset: 0; stroke: #00008b; stroke-opacity: 0.8; stroke-width: 1.5"/> " clip-path="url(#p0a68f6394d)" style="fill: none; stroke-dasharray: 1.5,2.475; stroke-dashoffset: 0; stroke: #00008b; stroke-opacity: 0.8; stroke-width: 1.5"/>
</g> </g>
<g id="patch_8"> <g id="patch_8">
<path d="M 280.7864 317.72 <path d="M 280.7864 356.6
L 280.7864 47.04 L 280.7864 47.04
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_9"> <g id="patch_9">
<path d="M 479.983555 317.72 <path d="M 479.983555 356.6
L 479.983555 47.04 L 479.983555 47.04
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_10"> <g id="patch_10">
<path d="M 280.7864 317.72 <path d="M 280.7864 356.6
L 479.983555 317.72 L 479.983555 356.6
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_11"> <g id="patch_11">
@@ -982,8 +982,8 @@ L 479.983555 47.04
</g> </g>
<g id="axes_3"> <g id="axes_3">
<g id="patch_12"> <g id="patch_12">
<path d="M 502.1432 317.72 <path d="M 502.1432 356.6
L 701.340355 317.72 L 701.340355 356.6
L 701.340355 47.04 L 701.340355 47.04
L 502.1432 47.04 L 502.1432 47.04
z z
@@ -993,12 +993,12 @@ z
<g id="xtick_13"> <g id="xtick_13">
<g id="line2d_33"> <g id="line2d_33">
<g> <g>
<use xlink:href="#m5f7f2309ed" x="502.721141" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mda8331527a" x="502.721141" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_24"> <g id="text_24">
<!-- 250 --> <!-- 250 -->
<g transform="translate(493.177391 332.318438) scale(0.1 -0.1)"> <g transform="translate(493.177391 371.198438) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-32"/> <use xlink:href="#DejaVuSans-32"/>
<use xlink:href="#DejaVuSans-35" x="63.623047"/> <use xlink:href="#DejaVuSans-35" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/> <use xlink:href="#DejaVuSans-30" x="127.246094"/>
@@ -1008,12 +1008,12 @@ z
<g id="xtick_14"> <g id="xtick_14">
<g id="line2d_34"> <g id="line2d_34">
<g> <g>
<use xlink:href="#m5f7f2309ed" x="541.250572" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mda8331527a" x="541.250572" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_25"> <g id="text_25">
<!-- 500 --> <!-- 500 -->
<g transform="translate(531.706822 332.318438) scale(0.1 -0.1)"> <g transform="translate(531.706822 371.198438) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-35"/> <use xlink:href="#DejaVuSans-35"/>
<use xlink:href="#DejaVuSans-30" x="63.623047"/> <use xlink:href="#DejaVuSans-30" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/> <use xlink:href="#DejaVuSans-30" x="127.246094"/>
@@ -1023,12 +1023,12 @@ z
<g id="xtick_15"> <g id="xtick_15">
<g id="line2d_35"> <g id="line2d_35">
<g> <g>
<use xlink:href="#m5f7f2309ed" x="579.780002" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mda8331527a" x="579.780002" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_26"> <g id="text_26">
<!-- 750 --> <!-- 750 -->
<g transform="translate(570.236252 332.318438) scale(0.1 -0.1)"> <g transform="translate(570.236252 371.198438) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-37"/> <use xlink:href="#DejaVuSans-37"/>
<use xlink:href="#DejaVuSans-35" x="63.623047"/> <use xlink:href="#DejaVuSans-35" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/> <use xlink:href="#DejaVuSans-30" x="127.246094"/>
@@ -1038,12 +1038,12 @@ z
<g id="xtick_16"> <g id="xtick_16">
<g id="line2d_36"> <g id="line2d_36">
<g> <g>
<use xlink:href="#m5f7f2309ed" x="618.309433" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mda8331527a" x="618.309433" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_27"> <g id="text_27">
<!-- 1000 --> <!-- 1000 -->
<g transform="translate(605.584433 332.318438) scale(0.1 -0.1)"> <g transform="translate(605.584433 371.198438) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-31"/> <use xlink:href="#DejaVuSans-31"/>
<use xlink:href="#DejaVuSans-30" x="63.623047"/> <use xlink:href="#DejaVuSans-30" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/> <use xlink:href="#DejaVuSans-30" x="127.246094"/>
@@ -1054,12 +1054,12 @@ z
<g id="xtick_17"> <g id="xtick_17">
<g id="line2d_37"> <g id="line2d_37">
<g> <g>
<use xlink:href="#m5f7f2309ed" x="656.838863" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mda8331527a" x="656.838863" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_28"> <g id="text_28">
<!-- 1250 --> <!-- 1250 -->
<g transform="translate(644.113863 332.318438) scale(0.1 -0.1)"> <g transform="translate(644.113863 371.198438) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-31"/> <use xlink:href="#DejaVuSans-31"/>
<use xlink:href="#DejaVuSans-32" x="63.623047"/> <use xlink:href="#DejaVuSans-32" x="63.623047"/>
<use xlink:href="#DejaVuSans-35" x="127.246094"/> <use xlink:href="#DejaVuSans-35" x="127.246094"/>
@@ -1070,12 +1070,12 @@ z
<g id="xtick_18"> <g id="xtick_18">
<g id="line2d_38"> <g id="line2d_38">
<g> <g>
<use xlink:href="#m5f7f2309ed" x="695.368293" y="317.72" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mda8331527a" x="695.368293" y="356.6" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_29"> <g id="text_29">
<!-- 1500 --> <!-- 1500 -->
<g transform="translate(682.643293 332.318438) scale(0.1 -0.1)"> <g transform="translate(682.643293 371.198438) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-31"/> <use xlink:href="#DejaVuSans-31"/>
<use xlink:href="#DejaVuSans-35" x="63.623047"/> <use xlink:href="#DejaVuSans-35" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/> <use xlink:href="#DejaVuSans-30" x="127.246094"/>
@@ -1088,127 +1088,127 @@ z
<g id="ytick_15"> <g id="ytick_15">
<g id="line2d_39"> <g id="line2d_39">
<g> <g>
<use xlink:href="#mf2325767db" x="502.1432" y="307.695134" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m5b54807337" x="502.1432" y="345.13518" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
<g id="ytick_16"> <g id="ytick_16">
<g id="line2d_40"> <g id="line2d_40">
<g> <g>
<use xlink:href="#mf2325767db" x="502.1432" y="268.722702" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m5b54807337" x="502.1432" y="300.564816" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
<g id="ytick_17"> <g id="ytick_17">
<g id="line2d_41"> <g id="line2d_41">
<g> <g>
<use xlink:href="#mf2325767db" x="502.1432" y="229.750269" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m5b54807337" x="502.1432" y="255.994451" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
<g id="ytick_18"> <g id="ytick_18">
<g id="line2d_42"> <g id="line2d_42">
<g> <g>
<use xlink:href="#mf2325767db" x="502.1432" y="190.777836" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m5b54807337" x="502.1432" y="211.424086" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
<g id="ytick_19"> <g id="ytick_19">
<g id="line2d_43"> <g id="line2d_43">
<g> <g>
<use xlink:href="#mf2325767db" x="502.1432" y="151.805403" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m5b54807337" x="502.1432" y="166.853721" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
<g id="ytick_20"> <g id="ytick_20">
<g id="line2d_44"> <g id="line2d_44">
<g> <g>
<use xlink:href="#mf2325767db" x="502.1432" y="112.83297" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m5b54807337" x="502.1432" y="122.283357" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
<g id="ytick_21"> <g id="ytick_21">
<g id="line2d_45"> <g id="line2d_45">
<g> <g>
<use xlink:href="#mf2325767db" x="502.1432" y="73.860537" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m5b54807337" x="502.1432" y="77.712992" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
</g> </g>
</g> </g>
<g id="line2d_46"> <g id="line2d_46">
<path d="M 511.197616 297.235334 <path d="M 511.197616 333.172952
L 515.050559 283.952832 L 515.050559 317.982576
L 518.903502 291.163996 L 518.903502 326.229538
L 522.756445 290.282024 L 522.756445 325.220882
L 526.609388 295.933859 L 526.609388 331.684536
L 530.462331 218.889142 L 530.462331 243.573251
L 534.315274 135.598808 L 534.315274 148.31924
L 538.168217 283.790875 L 538.168217 317.797355
L 542.02116 177.630045 L 542.02116 196.38777
L 545.874103 253.568062 L 545.874103 283.23339
L 549.727047 285.68781 L 549.727047 319.966762
L 553.57999 289.812431 L 553.57999 324.683837
L 557.432933 291.973956 L 557.432933 327.155839
L 561.285876 289.029861 L 561.285876 323.788859
L 565.138819 289.532787 L 565.138819 324.364025
L 568.991762 296.677929 L 568.991762 332.535483
L 572.844705 287.30887 L 572.844705 321.820669
L 576.697648 245.16488 L 576.697648 273.62319
L 580.550591 59.343636 L 580.550591 61.110909
L 584.403534 253.841886 L 584.403534 283.546546
L 588.256477 272.519572 L 588.256477 304.907062
L 592.10942 288.601602 L 592.10942 323.299086
L 595.962363 294.987914 L 595.962363 330.602718
L 599.815306 285.724258 L 599.815306 320.008445
L 603.668249 193.682215 L 603.668249 214.745646
L 607.521192 247.856138 L 607.521192 276.701015
L 611.374135 248.300386 L 611.374135 277.209075
L 615.227078 264.756463 L 615.227078 296.028874
L 619.080021 266.411786 L 619.080021 297.921965
L 622.932964 282.099826 L 622.932964 315.863406
L 626.785907 269.205116 L 626.785907 301.116523
L 630.63885 258.691376 L 630.63885 289.092608
L 634.491793 278.537956 L 634.491793 311.789916
L 638.344736 258.732132 L 638.344736 289.139219
L 642.197679 268.097518 L 642.197679 299.849831
L 646.050622 267.3152 L 646.050622 298.955143
L 649.903565 280.496107 L 649.903565 314.029333
L 653.756508 254.897762 L 653.756508 284.754086
L 657.609452 283.812593 L 657.609452 317.822193
L 661.462395 282.695592 L 661.462395 316.544747
L 665.315338 283.769193 L 665.315338 317.772559
L 669.168281 274.017618 L 669.168281 306.620284
L 673.021224 292.23216 L 673.021224 327.451131
L 676.874167 282.847645 L 676.874167 316.718641
L 680.72711 285.295926 L 680.72711 319.518589
L 684.580053 277.275416 L 684.580053 310.346027
L 688.432996 272.716938 L 688.432996 305.132777
L 692.285939 272.159684 L 692.285939 304.495481
" clip-path="url(#p185b148167)" style="fill: none; stroke: #1f77b4; stroke-width: 1.5; stroke-linecap: square"/> " clip-path="url(#p55f5ea490a)" style="fill: none; stroke: #1f77b4; stroke-width: 1.5; stroke-linecap: square"/>
</g> </g>
<g id="line2d_47"> <g id="line2d_47">
<path d="M 609.832958 317.72 <path d="M 609.832958 356.6
L 609.832958 47.04 L 609.832958 47.04
" clip-path="url(#p185b148167)" style="fill: none; stroke-dasharray: 5.55,2.4; stroke-dashoffset: 0; stroke: #000000; stroke-width: 1.5"/> " clip-path="url(#p55f5ea490a)" style="fill: none; stroke-dasharray: 5.55,2.4; stroke-dashoffset: 0; stroke: #000000; stroke-width: 1.5"/>
</g> </g>
<g id="line2d_48"> <g id="line2d_48">
<path d="M 550.432617 317.72 <path d="M 550.432617 356.6
L 550.432617 47.04 L 550.432617 47.04
" clip-path="url(#p185b148167)" style="fill: none; stroke-dasharray: 1.5,2.475; stroke-dashoffset: 0; stroke: #00008b; stroke-opacity: 0.8; stroke-width: 1.5"/> " clip-path="url(#p55f5ea490a)" style="fill: none; stroke-dasharray: 1.5,2.475; stroke-dashoffset: 0; stroke: #00008b; stroke-opacity: 0.8; stroke-width: 1.5"/>
</g> </g>
<g id="patch_13"> <g id="patch_13">
<path d="M 502.1432 317.72 <path d="M 502.1432 356.6
L 502.1432 47.04 L 502.1432 47.04
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_14"> <g id="patch_14">
<path d="M 701.340355 317.72 <path d="M 701.340355 356.6
L 701.340355 47.04 L 701.340355 47.04
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_15"> <g id="patch_15">
<path d="M 502.1432 317.72 <path d="M 502.1432 356.6
L 701.340355 317.72 L 701.340355 356.6
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_16"> <g id="patch_16">
@@ -1551,27 +1551,27 @@ z
</g> </g>
<g id="legend_1"> <g id="legend_1">
<g id="patch_17"> <g id="patch_17">
<path d="M 117.271094 427 <path d="M 117.271094 405.4
L 602.728906 427 L 602.728906 405.4
Q 604.728906 427 604.728906 425 Q 604.728906 405.4 604.728906 403.4
L 604.728906 411.321875 L 604.728906 389.721875
Q 604.728906 409.321875 602.728906 409.321875 Q 604.728906 387.721875 602.728906 387.721875
L 117.271094 409.321875 L 117.271094 387.721875
Q 115.271094 409.321875 115.271094 411.321875 Q 115.271094 387.721875 115.271094 389.721875
L 115.271094 425 L 115.271094 403.4
Q 115.271094 427 117.271094 427 Q 115.271094 405.4 117.271094 405.4
z z
" style="fill: #ffffff; opacity: 0.8; stroke: #cccccc; stroke-linejoin: miter"/> " style="fill: #ffffff; opacity: 0.8; stroke: #cccccc; stroke-linejoin: miter"/>
</g> </g>
<g id="line2d_49"> <g id="line2d_49">
<path d="M 119.271094 417.420313 <path d="M 119.271094 395.820312
L 129.271094 417.420313 L 129.271094 395.820312
L 139.271094 417.420313 L 139.271094 395.820312
" style="fill: none; stroke: #1f77b4; stroke-width: 1.5; stroke-linecap: square"/> " style="fill: none; stroke: #1f77b4; stroke-width: 1.5; stroke-linecap: square"/>
</g> </g>
<g id="text_33"> <g id="text_33">
<!-- power of stimulus peak --> <!-- power of stimulus peak -->
<g transform="translate(147.271094 420.920313) scale(0.1 -0.1)"> <g transform="translate(147.271094 399.320312) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-6b" d="M 581 4863 <path id="DejaVuSans-6b" d="M 581 4863
L 1159 4863 L 1159 4863
@@ -1613,14 +1613,14 @@ z
</g> </g>
</g> </g>
<g id="line2d_50"> <g id="line2d_50">
<path d="M 284.085156 417.420313 <path d="M 284.085156 395.820312
L 294.085156 417.420313 L 294.085156 395.820312
L 304.085156 417.420313 L 304.085156 395.820312
" style="fill: none; stroke-dasharray: 5.55,2.4; stroke-dashoffset: 0; stroke: #000000; stroke-width: 1.5"/> " style="fill: none; stroke-dasharray: 5.55,2.4; stroke-dashoffset: 0; stroke: #000000; stroke-width: 1.5"/>
</g> </g>
<g id="text_34"> <g id="text_34">
<!-- EODf of awake fish --> <!-- EODf of awake fish -->
<g transform="translate(312.085156 420.920313) scale(0.1 -0.1)"> <g transform="translate(312.085156 399.320312) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-45" d="M 628 4666 <path id="DejaVuSans-45" d="M 628 4666
L 3578 4666 L 3578 4666
@@ -1718,14 +1718,14 @@ z
</g> </g>
</g> </g>
<g id="line2d_51"> <g id="line2d_51">
<path d="M 426.530469 417.420313 <path d="M 426.530469 395.820312
L 436.530469 417.420313 L 436.530469 395.820312
L 446.530469 417.420313 L 446.530469 395.820312
" style="fill: none; stroke-dasharray: 1.5,2.475; stroke-dashoffset: 0; stroke: #00008b; stroke-opacity: 0.8; stroke-width: 1.5"/> " style="fill: none; stroke-dasharray: 1.5,2.475; stroke-dashoffset: 0; stroke: #00008b; stroke-opacity: 0.8; stroke-width: 1.5"/>
</g> </g>
<g id="text_35"> <g id="text_35">
<!-- 1st harmonic of current EODf --> <!-- 1st harmonic of current EODf -->
<g transform="translate(454.530469 420.920313) scale(0.1 -0.1)"> <g transform="translate(454.530469 399.320312) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-31"/> <use xlink:href="#DejaVuSans-31"/>
<use xlink:href="#DejaVuSans-73" x="63.623047"/> <use xlink:href="#DejaVuSans-73" x="63.623047"/>
<use xlink:href="#DejaVuSans-74" x="115.722656"/> <use xlink:href="#DejaVuSans-74" x="115.722656"/>
@@ -1759,14 +1759,14 @@ L 446.530469 417.420313
</g> </g>
</g> </g>
<defs> <defs>
<clipPath id="p328e5bd095"> <clipPath id="p8ff807e884">
<rect x="59.4296" y="47.04" width="199.197155" height="270.68"/> <rect x="59.4296" y="47.04" width="199.197155" height="309.56"/>
</clipPath> </clipPath>
<clipPath id="p2c21acfc8b"> <clipPath id="p0a68f6394d">
<rect x="280.7864" y="47.04" width="199.197155" height="270.68"/> <rect x="280.7864" y="47.04" width="199.197155" height="309.56"/>
</clipPath> </clipPath>
<clipPath id="p185b148167"> <clipPath id="p55f5ea490a">
<rect x="502.1432" y="47.04" width="199.197155" height="270.68"/> <rect x="502.1432" y="47.04" width="199.197155" height="309.56"/>
</clipPath> </clipPath>
</defs> </defs>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 48 KiB

After

Width:  |  Height:  |  Size: 48 KiB

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 50 KiB

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 48 KiB

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 48 KiB

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 52 KiB

View File

@@ -6,7 +6,7 @@
<rdf:RDF xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:RDF xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<cc:Work> <cc:Work>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<dc:date>2024-10-25T15:19:30.358064</dc:date> <dc:date>2024-10-25T16:35:48.212452</dc:date>
<dc:format>image/svg+xml</dc:format> <dc:format>image/svg+xml</dc:format>
<dc:creator> <dc:creator>
<cc:Agent> <cc:Agent>
@@ -30,8 +30,8 @@ z
</g> </g>
<g id="axes_1"> <g id="axes_1">
<g id="patch_2"> <g id="patch_2">
<path d="M 80.8294 251.8 <path d="M 80.8294 282.904
L 437.22 251.8 L 437.22 282.904
L 437.22 25.44 L 437.22 25.44
L 80.8294 25.44 L 80.8294 25.44
z z
@@ -41,17 +41,17 @@ z
<g id="xtick_1"> <g id="xtick_1">
<g id="line2d_1"> <g id="line2d_1">
<defs> <defs>
<path id="mb70c59caf1" d="M 0 0 <path id="m50b605b74e" d="M 0 0
L 0 3.5 L 0 3.5
" style="stroke: #000000; stroke-width: 0.8"/> " style="stroke: #000000; stroke-width: 0.8"/>
</defs> </defs>
<g> <g>
<use xlink:href="#mb70c59caf1" x="80.8294" y="251.8" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m50b605b74e" x="80.8294" y="282.904" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_1"> <g id="text_1">
<!-- 0 --> <!-- 0 -->
<g transform="translate(77.64815 266.398437) scale(0.1 -0.1)"> <g transform="translate(77.64815 297.502437) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-30" d="M 2034 4250 <path id="DejaVuSans-30" d="M 2034 4250
Q 1547 4250 1301 3770 Q 1547 4250 1301 3770
@@ -82,12 +82,12 @@ z
<g id="xtick_2"> <g id="xtick_2">
<g id="line2d_2"> <g id="line2d_2">
<g> <g>
<use xlink:href="#mb70c59caf1" x="125.378225" y="251.8" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m50b605b74e" x="125.378225" y="282.904" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_2"> <g id="text_2">
<!-- 250 --> <!-- 250 -->
<g transform="translate(115.834475 266.398437) scale(0.1 -0.1)"> <g transform="translate(115.834475 297.502437) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-32" d="M 1228 531 <path id="DejaVuSans-32" d="M 1228 531
L 3431 531 L 3431 531
@@ -148,12 +148,12 @@ z
<g id="xtick_3"> <g id="xtick_3">
<g id="line2d_3"> <g id="line2d_3">
<g> <g>
<use xlink:href="#mb70c59caf1" x="169.92705" y="251.8" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m50b605b74e" x="169.92705" y="282.904" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_3"> <g id="text_3">
<!-- 500 --> <!-- 500 -->
<g transform="translate(160.3833 266.398437) scale(0.1 -0.1)"> <g transform="translate(160.3833 297.502437) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-35"/> <use xlink:href="#DejaVuSans-35"/>
<use xlink:href="#DejaVuSans-30" x="63.623047"/> <use xlink:href="#DejaVuSans-30" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/> <use xlink:href="#DejaVuSans-30" x="127.246094"/>
@@ -163,12 +163,12 @@ z
<g id="xtick_4"> <g id="xtick_4">
<g id="line2d_4"> <g id="line2d_4">
<g> <g>
<use xlink:href="#mb70c59caf1" x="214.475875" y="251.8" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m50b605b74e" x="214.475875" y="282.904" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_4"> <g id="text_4">
<!-- 750 --> <!-- 750 -->
<g transform="translate(204.932125 266.398437) scale(0.1 -0.1)"> <g transform="translate(204.932125 297.502437) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-37" d="M 525 4666 <path id="DejaVuSans-37" d="M 525 4666
L 3525 4666 L 3525 4666
@@ -190,12 +190,12 @@ z
<g id="xtick_5"> <g id="xtick_5">
<g id="line2d_5"> <g id="line2d_5">
<g> <g>
<use xlink:href="#mb70c59caf1" x="259.0247" y="251.8" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m50b605b74e" x="259.0247" y="282.904" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_5"> <g id="text_5">
<!-- 1000 --> <!-- 1000 -->
<g transform="translate(246.2997 266.398437) scale(0.1 -0.1)"> <g transform="translate(246.2997 297.502437) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-31" d="M 794 531 <path id="DejaVuSans-31" d="M 794 531
L 1825 531 L 1825 531
@@ -222,12 +222,12 @@ z
<g id="xtick_6"> <g id="xtick_6">
<g id="line2d_6"> <g id="line2d_6">
<g> <g>
<use xlink:href="#mb70c59caf1" x="303.573525" y="251.8" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m50b605b74e" x="303.573525" y="282.904" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_6"> <g id="text_6">
<!-- 1250 --> <!-- 1250 -->
<g transform="translate(290.848525 266.398437) scale(0.1 -0.1)"> <g transform="translate(290.848525 297.502437) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-31"/> <use xlink:href="#DejaVuSans-31"/>
<use xlink:href="#DejaVuSans-32" x="63.623047"/> <use xlink:href="#DejaVuSans-32" x="63.623047"/>
<use xlink:href="#DejaVuSans-35" x="127.246094"/> <use xlink:href="#DejaVuSans-35" x="127.246094"/>
@@ -238,12 +238,12 @@ z
<g id="xtick_7"> <g id="xtick_7">
<g id="line2d_7"> <g id="line2d_7">
<g> <g>
<use xlink:href="#mb70c59caf1" x="348.12235" y="251.8" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m50b605b74e" x="348.12235" y="282.904" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_7"> <g id="text_7">
<!-- 1500 --> <!-- 1500 -->
<g transform="translate(335.39735 266.398437) scale(0.1 -0.1)"> <g transform="translate(335.39735 297.502437) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-31"/> <use xlink:href="#DejaVuSans-31"/>
<use xlink:href="#DejaVuSans-35" x="63.623047"/> <use xlink:href="#DejaVuSans-35" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/> <use xlink:href="#DejaVuSans-30" x="127.246094"/>
@@ -254,12 +254,12 @@ z
<g id="xtick_8"> <g id="xtick_8">
<g id="line2d_8"> <g id="line2d_8">
<g> <g>
<use xlink:href="#mb70c59caf1" x="392.671175" y="251.8" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m50b605b74e" x="392.671175" y="282.904" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_8"> <g id="text_8">
<!-- 1750 --> <!-- 1750 -->
<g transform="translate(379.946175 266.398437) scale(0.1 -0.1)"> <g transform="translate(379.946175 297.502437) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-31"/> <use xlink:href="#DejaVuSans-31"/>
<use xlink:href="#DejaVuSans-37" x="63.623047"/> <use xlink:href="#DejaVuSans-37" x="63.623047"/>
<use xlink:href="#DejaVuSans-35" x="127.246094"/> <use xlink:href="#DejaVuSans-35" x="127.246094"/>
@@ -270,12 +270,12 @@ z
<g id="xtick_9"> <g id="xtick_9">
<g id="line2d_9"> <g id="line2d_9">
<g> <g>
<use xlink:href="#mb70c59caf1" x="437.22" y="251.8" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m50b605b74e" x="437.22" y="282.904" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_9"> <g id="text_9">
<!-- 2000 --> <!-- 2000 -->
<g transform="translate(424.495 266.398437) scale(0.1 -0.1)"> <g transform="translate(424.495 297.502437) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-32"/> <use xlink:href="#DejaVuSans-32"/>
<use xlink:href="#DejaVuSans-30" x="63.623047"/> <use xlink:href="#DejaVuSans-30" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/> <use xlink:href="#DejaVuSans-30" x="127.246094"/>
@@ -285,7 +285,7 @@ z
</g> </g>
<g id="text_10"> <g id="text_10">
<!-- stimulus frequency [Hz] --> <!-- stimulus frequency [Hz] -->
<g transform="translate(199.328606 280.076562) scale(0.1 -0.1)"> <g transform="translate(199.328606 311.180563) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-73" d="M 2834 3397 <path id="DejaVuSans-73" d="M 2834 3397
L 2834 2853 L 2834 2853
@@ -639,17 +639,17 @@ z
<g id="ytick_1"> <g id="ytick_1">
<g id="line2d_10"> <g id="line2d_10">
<defs> <defs>
<path id="m6f30672d32" d="M 0 0 <path id="m2a140fce81" d="M 0 0
L -3.5 0 L -3.5 0
" style="stroke: #000000; stroke-width: 0.8"/> " style="stroke: #000000; stroke-width: 0.8"/>
</defs> </defs>
<g> <g>
<use xlink:href="#m6f30672d32" x="80.8294" y="251.8" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m2a140fce81" x="80.8294" y="282.904" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_11"> <g id="text_11">
<!-- 0.00000 --> <!-- 0.00000 -->
<g transform="translate(32.476275 255.599219) scale(0.1 -0.1)"> <g transform="translate(32.476275 286.703219) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-2e" d="M 684 794 <path id="DejaVuSans-2e" d="M 684 794
L 1344 794 L 1344 794
@@ -672,12 +672,12 @@ z
<g id="ytick_2"> <g id="ytick_2">
<g id="line2d_11"> <g id="line2d_11">
<g> <g>
<use xlink:href="#m6f30672d32" x="80.8294" y="219.462857" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m2a140fce81" x="80.8294" y="246.123429" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_12"> <g id="text_12">
<!-- 0.00002 --> <!-- 0.00002 -->
<g transform="translate(32.476275 223.262076) scale(0.1 -0.1)"> <g transform="translate(32.476275 249.922647) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-30"/> <use xlink:href="#DejaVuSans-30"/>
<use xlink:href="#DejaVuSans-2e" x="63.623047"/> <use xlink:href="#DejaVuSans-2e" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="95.410156"/> <use xlink:href="#DejaVuSans-30" x="95.410156"/>
@@ -691,12 +691,12 @@ z
<g id="ytick_3"> <g id="ytick_3">
<g id="line2d_12"> <g id="line2d_12">
<g> <g>
<use xlink:href="#m6f30672d32" x="80.8294" y="187.125714" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m2a140fce81" x="80.8294" y="209.342857" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_13"> <g id="text_13">
<!-- 0.00004 --> <!-- 0.00004 -->
<g transform="translate(32.476275 190.924933) scale(0.1 -0.1)"> <g transform="translate(32.476275 213.142076) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-34" d="M 2419 4116 <path id="DejaVuSans-34" d="M 2419 4116
L 825 1625 L 825 1625
@@ -731,12 +731,12 @@ z
<g id="ytick_4"> <g id="ytick_4">
<g id="line2d_13"> <g id="line2d_13">
<g> <g>
<use xlink:href="#m6f30672d32" x="80.8294" y="154.788571" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m2a140fce81" x="80.8294" y="172.562286" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_14"> <g id="text_14">
<!-- 0.00006 --> <!-- 0.00006 -->
<g transform="translate(32.476275 158.58779) scale(0.1 -0.1)"> <g transform="translate(32.476275 176.361504) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-36" d="M 2113 2584 <path id="DejaVuSans-36" d="M 2113 2584
Q 1688 2584 1439 2293 Q 1688 2584 1439 2293
@@ -782,12 +782,12 @@ z
<g id="ytick_5"> <g id="ytick_5">
<g id="line2d_14"> <g id="line2d_14">
<g> <g>
<use xlink:href="#m6f30672d32" x="80.8294" y="122.451429" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m2a140fce81" x="80.8294" y="135.781714" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_15"> <g id="text_15">
<!-- 0.00008 --> <!-- 0.00008 -->
<g transform="translate(32.476275 126.250647) scale(0.1 -0.1)"> <g transform="translate(32.476275 139.580933) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-38" d="M 2034 2216 <path id="DejaVuSans-38" d="M 2034 2216
Q 1584 2216 1326 1975 Q 1584 2216 1326 1975
@@ -842,12 +842,12 @@ z
<g id="ytick_6"> <g id="ytick_6">
<g id="line2d_15"> <g id="line2d_15">
<g> <g>
<use xlink:href="#m6f30672d32" x="80.8294" y="90.114286" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m2a140fce81" x="80.8294" y="99.001143" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_16"> <g id="text_16">
<!-- 0.00010 --> <!-- 0.00010 -->
<g transform="translate(32.476275 93.913504) scale(0.1 -0.1)"> <g transform="translate(32.476275 102.800362) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-30"/> <use xlink:href="#DejaVuSans-30"/>
<use xlink:href="#DejaVuSans-2e" x="63.623047"/> <use xlink:href="#DejaVuSans-2e" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="95.410156"/> <use xlink:href="#DejaVuSans-30" x="95.410156"/>
@@ -861,12 +861,12 @@ z
<g id="ytick_7"> <g id="ytick_7">
<g id="line2d_16"> <g id="line2d_16">
<g> <g>
<use xlink:href="#m6f30672d32" x="80.8294" y="57.777143" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m2a140fce81" x="80.8294" y="62.220571" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_17"> <g id="text_17">
<!-- 0.00012 --> <!-- 0.00012 -->
<g transform="translate(32.476275 61.576362) scale(0.1 -0.1)"> <g transform="translate(32.476275 66.01979) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-30"/> <use xlink:href="#DejaVuSans-30"/>
<use xlink:href="#DejaVuSans-2e" x="63.623047"/> <use xlink:href="#DejaVuSans-2e" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="95.410156"/> <use xlink:href="#DejaVuSans-30" x="95.410156"/>
@@ -880,7 +880,7 @@ z
<g id="ytick_8"> <g id="ytick_8">
<g id="line2d_17"> <g id="line2d_17">
<g> <g>
<use xlink:href="#m6f30672d32" x="80.8294" y="25.44" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m2a140fce81" x="80.8294" y="25.44" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_18"> <g id="text_18">
@@ -898,7 +898,7 @@ z
</g> </g>
<g id="text_19"> <g id="text_19">
<!-- power [$\frac{\mathrm{mV^2}}{\mathrm{Hz}}$] --> <!-- power [$\frac{\mathrm{mV^2}}{\mathrm{Hz}}$] -->
<g transform="translate(24.576275 169.32) rotate(-90) scale(0.1 -0.1)"> <g transform="translate(24.576275 184.872) rotate(-90) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-70" d="M 1159 525 <path id="DejaVuSans-70" d="M 1159 525
L 1159 -1331 L 1159 -1331
@@ -1001,26 +1001,26 @@ z
<g id="line2d_18"/> <g id="line2d_18"/>
<g id="line2d_19"/> <g id="line2d_19"/>
<g id="line2d_20"> <g id="line2d_20">
<path d="M 249.223958 251.8 <path d="M 249.223958 282.904
L 249.223958 25.44 L 249.223958 25.44
" clip-path="url(#p545f77033a)" style="fill: none; stroke-dasharray: 5.55,2.4; stroke-dashoffset: 0; stroke: #000000; stroke-opacity: 0.8; stroke-width: 1.5"/> " clip-path="url(#pb052de5396)" style="fill: none; stroke-dasharray: 5.55,2.4; stroke-dashoffset: 0; stroke: #000000; stroke-opacity: 0.8; stroke-width: 1.5"/>
</g> </g>
<g id="line2d_21"> <g id="line2d_21">
<path clip-path="url(#p545f77033a)" style="fill: none; stroke-dasharray: 1.5,2.475; stroke-dashoffset: 0; stroke: #000000; stroke-opacity: 0.8; stroke-width: 1.5"/> <path clip-path="url(#pb052de5396)" style="fill: none; stroke-dasharray: 1.5,2.475; stroke-dashoffset: 0; stroke: #000000; stroke-opacity: 0.8; stroke-width: 1.5"/>
</g> </g>
<g id="patch_3"> <g id="patch_3">
<path d="M 80.8294 251.8 <path d="M 80.8294 282.904
L 80.8294 25.44 L 80.8294 25.44
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_4"> <g id="patch_4">
<path d="M 437.22 251.8 <path d="M 437.22 282.904
L 437.22 25.44 L 437.22 25.44
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_5"> <g id="patch_5">
<path d="M 80.8294 251.8 <path d="M 80.8294 282.904
L 437.22 251.8 L 437.22 282.904
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_6"> <g id="patch_6">
@@ -1457,8 +1457,8 @@ z
</g> </g>
</g> </g>
<defs> <defs>
<clipPath id="p545f77033a"> <clipPath id="pb052de5396">
<rect x="80.8294" y="25.44" width="356.3906" height="226.36"/> <rect x="80.8294" y="25.44" width="356.3906" height="257.464"/>
</clipPath> </clipPath>
</defs> </defs>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 38 KiB

After

Width:  |  Height:  |  Size: 38 KiB

View File

@@ -6,7 +6,7 @@
<rdf:RDF xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:RDF xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<cc:Work> <cc:Work>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<dc:date>2024-10-25T15:19:47.462989</dc:date> <dc:date>2024-10-25T16:36:03.888939</dc:date>
<dc:format>image/svg+xml</dc:format> <dc:format>image/svg+xml</dc:format>
<dc:creator> <dc:creator>
<cc:Agent> <cc:Agent>
@@ -30,8 +30,8 @@ z
</g> </g>
<g id="axes_1"> <g id="axes_1">
<g id="patch_2"> <g id="patch_2">
<path d="M 80.8294 251.8 <path d="M 80.8294 282.904
L 450 251.8 L 450 282.904
L 450 25.44 L 450 25.44
L 80.8294 25.44 L 80.8294 25.44
z z
@@ -41,17 +41,17 @@ z
<g id="xtick_1"> <g id="xtick_1">
<g id="line2d_1"> <g id="line2d_1">
<defs> <defs>
<path id="mb0439224e0" d="M 0 0 <path id="mfa0c22df11" d="M 0 0
L 0 3.5 L 0 3.5
" style="stroke: #000000; stroke-width: 0.8"/> " style="stroke: #000000; stroke-width: 0.8"/>
</defs> </defs>
<g> <g>
<use xlink:href="#mb0439224e0" x="80.8294" y="251.8" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mfa0c22df11" x="80.8294" y="282.904" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_1"> <g id="text_1">
<!-- 0 --> <!-- 0 -->
<g transform="translate(77.64815 266.398437) scale(0.1 -0.1)"> <g transform="translate(77.64815 297.502437) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-30" d="M 2034 4250 <path id="DejaVuSans-30" d="M 2034 4250
Q 1547 4250 1301 3770 Q 1547 4250 1301 3770
@@ -82,12 +82,12 @@ z
<g id="xtick_2"> <g id="xtick_2">
<g id="line2d_2"> <g id="line2d_2">
<g> <g>
<use xlink:href="#mb0439224e0" x="129.404479" y="251.8" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mfa0c22df11" x="129.404479" y="282.904" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_2"> <g id="text_2">
<!-- 200 --> <!-- 200 -->
<g transform="translate(119.860729 266.398437) scale(0.1 -0.1)"> <g transform="translate(119.860729 297.502437) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-32" d="M 1228 531 <path id="DejaVuSans-32" d="M 1228 531
L 3431 531 L 3431 531
@@ -123,12 +123,12 @@ z
<g id="xtick_3"> <g id="xtick_3">
<g id="line2d_3"> <g id="line2d_3">
<g> <g>
<use xlink:href="#mb0439224e0" x="177.979558" y="251.8" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mfa0c22df11" x="177.979558" y="282.904" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_3"> <g id="text_3">
<!-- 400 --> <!-- 400 -->
<g transform="translate(168.435808 266.398437) scale(0.1 -0.1)"> <g transform="translate(168.435808 297.502437) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-34" d="M 2419 4116 <path id="DejaVuSans-34" d="M 2419 4116
L 825 1625 L 825 1625
@@ -159,12 +159,12 @@ z
<g id="xtick_4"> <g id="xtick_4">
<g id="line2d_4"> <g id="line2d_4">
<g> <g>
<use xlink:href="#mb0439224e0" x="226.554637" y="251.8" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mfa0c22df11" x="226.554637" y="282.904" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_4"> <g id="text_4">
<!-- 600 --> <!-- 600 -->
<g transform="translate(217.010887 266.398437) scale(0.1 -0.1)"> <g transform="translate(217.010887 297.502437) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-36" d="M 2113 2584 <path id="DejaVuSans-36" d="M 2113 2584
Q 1688 2584 1439 2293 Q 1688 2584 1439 2293
@@ -206,12 +206,12 @@ z
<g id="xtick_5"> <g id="xtick_5">
<g id="line2d_5"> <g id="line2d_5">
<g> <g>
<use xlink:href="#mb0439224e0" x="275.129716" y="251.8" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mfa0c22df11" x="275.129716" y="282.904" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_5"> <g id="text_5">
<!-- 800 --> <!-- 800 -->
<g transform="translate(265.585966 266.398437) scale(0.1 -0.1)"> <g transform="translate(265.585966 297.502437) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-38" d="M 2034 2216 <path id="DejaVuSans-38" d="M 2034 2216
Q 1584 2216 1326 1975 Q 1584 2216 1326 1975
@@ -262,12 +262,12 @@ z
<g id="xtick_6"> <g id="xtick_6">
<g id="line2d_6"> <g id="line2d_6">
<g> <g>
<use xlink:href="#mb0439224e0" x="323.704795" y="251.8" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mfa0c22df11" x="323.704795" y="282.904" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_6"> <g id="text_6">
<!-- 1000 --> <!-- 1000 -->
<g transform="translate(310.979795 266.398437) scale(0.1 -0.1)"> <g transform="translate(310.979795 297.502437) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-31" d="M 794 531 <path id="DejaVuSans-31" d="M 794 531
L 1825 531 L 1825 531
@@ -294,12 +294,12 @@ z
<g id="xtick_7"> <g id="xtick_7">
<g id="line2d_7"> <g id="line2d_7">
<g> <g>
<use xlink:href="#mb0439224e0" x="372.279874" y="251.8" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mfa0c22df11" x="372.279874" y="282.904" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_7"> <g id="text_7">
<!-- 1200 --> <!-- 1200 -->
<g transform="translate(359.554874 266.398437) scale(0.1 -0.1)"> <g transform="translate(359.554874 297.502437) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-31"/> <use xlink:href="#DejaVuSans-31"/>
<use xlink:href="#DejaVuSans-32" x="63.623047"/> <use xlink:href="#DejaVuSans-32" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/> <use xlink:href="#DejaVuSans-30" x="127.246094"/>
@@ -310,12 +310,12 @@ z
<g id="xtick_8"> <g id="xtick_8">
<g id="line2d_8"> <g id="line2d_8">
<g> <g>
<use xlink:href="#mb0439224e0" x="420.854953" y="251.8" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mfa0c22df11" x="420.854953" y="282.904" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_8"> <g id="text_8">
<!-- 1400 --> <!-- 1400 -->
<g transform="translate(408.129953 266.398437) scale(0.1 -0.1)"> <g transform="translate(408.129953 297.502437) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-31"/> <use xlink:href="#DejaVuSans-31"/>
<use xlink:href="#DejaVuSans-34" x="63.623047"/> <use xlink:href="#DejaVuSans-34" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/> <use xlink:href="#DejaVuSans-30" x="127.246094"/>
@@ -325,7 +325,7 @@ z
</g> </g>
<g id="text_9"> <g id="text_9">
<!-- stimulus frequency [Hz] --> <!-- stimulus frequency [Hz] -->
<g transform="translate(205.718606 280.076562) scale(0.1 -0.1)"> <g transform="translate(205.718606 311.180563) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-73" d="M 2834 3397 <path id="DejaVuSans-73" d="M 2834 3397
L 2834 2853 L 2834 2853
@@ -679,17 +679,17 @@ z
<g id="ytick_1"> <g id="ytick_1">
<g id="line2d_9"> <g id="line2d_9">
<defs> <defs>
<path id="m9888a6631c" d="M 0 0 <path id="m6f1ef18758" d="M 0 0
L -3.5 0 L -3.5 0
" style="stroke: #000000; stroke-width: 0.8"/> " style="stroke: #000000; stroke-width: 0.8"/>
</defs> </defs>
<g> <g>
<use xlink:href="#m9888a6631c" x="80.8294" y="251.8" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m6f1ef18758" x="80.8294" y="282.904" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_10"> <g id="text_10">
<!-- 0.00000 --> <!-- 0.00000 -->
<g transform="translate(32.476275 255.599219) scale(0.1 -0.1)"> <g transform="translate(32.476275 286.703219) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-2e" d="M 684 794 <path id="DejaVuSans-2e" d="M 684 794
L 1344 794 L 1344 794
@@ -712,12 +712,12 @@ z
<g id="ytick_2"> <g id="ytick_2">
<g id="line2d_10"> <g id="line2d_10">
<g> <g>
<use xlink:href="#m9888a6631c" x="80.8294" y="219.462857" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m6f1ef18758" x="80.8294" y="246.123429" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_11"> <g id="text_11">
<!-- 0.00002 --> <!-- 0.00002 -->
<g transform="translate(32.476275 223.262076) scale(0.1 -0.1)"> <g transform="translate(32.476275 249.922647) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-30"/> <use xlink:href="#DejaVuSans-30"/>
<use xlink:href="#DejaVuSans-2e" x="63.623047"/> <use xlink:href="#DejaVuSans-2e" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="95.410156"/> <use xlink:href="#DejaVuSans-30" x="95.410156"/>
@@ -731,12 +731,12 @@ z
<g id="ytick_3"> <g id="ytick_3">
<g id="line2d_11"> <g id="line2d_11">
<g> <g>
<use xlink:href="#m9888a6631c" x="80.8294" y="187.125714" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m6f1ef18758" x="80.8294" y="209.342857" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_12"> <g id="text_12">
<!-- 0.00004 --> <!-- 0.00004 -->
<g transform="translate(32.476275 190.924933) scale(0.1 -0.1)"> <g transform="translate(32.476275 213.142076) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-30"/> <use xlink:href="#DejaVuSans-30"/>
<use xlink:href="#DejaVuSans-2e" x="63.623047"/> <use xlink:href="#DejaVuSans-2e" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="95.410156"/> <use xlink:href="#DejaVuSans-30" x="95.410156"/>
@@ -750,12 +750,12 @@ z
<g id="ytick_4"> <g id="ytick_4">
<g id="line2d_12"> <g id="line2d_12">
<g> <g>
<use xlink:href="#m9888a6631c" x="80.8294" y="154.788571" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m6f1ef18758" x="80.8294" y="172.562286" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_13"> <g id="text_13">
<!-- 0.00006 --> <!-- 0.00006 -->
<g transform="translate(32.476275 158.58779) scale(0.1 -0.1)"> <g transform="translate(32.476275 176.361504) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-30"/> <use xlink:href="#DejaVuSans-30"/>
<use xlink:href="#DejaVuSans-2e" x="63.623047"/> <use xlink:href="#DejaVuSans-2e" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="95.410156"/> <use xlink:href="#DejaVuSans-30" x="95.410156"/>
@@ -769,12 +769,12 @@ z
<g id="ytick_5"> <g id="ytick_5">
<g id="line2d_13"> <g id="line2d_13">
<g> <g>
<use xlink:href="#m9888a6631c" x="80.8294" y="122.451429" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m6f1ef18758" x="80.8294" y="135.781714" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_14"> <g id="text_14">
<!-- 0.00008 --> <!-- 0.00008 -->
<g transform="translate(32.476275 126.250647) scale(0.1 -0.1)"> <g transform="translate(32.476275 139.580933) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-30"/> <use xlink:href="#DejaVuSans-30"/>
<use xlink:href="#DejaVuSans-2e" x="63.623047"/> <use xlink:href="#DejaVuSans-2e" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="95.410156"/> <use xlink:href="#DejaVuSans-30" x="95.410156"/>
@@ -788,12 +788,12 @@ z
<g id="ytick_6"> <g id="ytick_6">
<g id="line2d_14"> <g id="line2d_14">
<g> <g>
<use xlink:href="#m9888a6631c" x="80.8294" y="90.114286" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m6f1ef18758" x="80.8294" y="99.001143" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_15"> <g id="text_15">
<!-- 0.00010 --> <!-- 0.00010 -->
<g transform="translate(32.476275 93.913504) scale(0.1 -0.1)"> <g transform="translate(32.476275 102.800362) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-30"/> <use xlink:href="#DejaVuSans-30"/>
<use xlink:href="#DejaVuSans-2e" x="63.623047"/> <use xlink:href="#DejaVuSans-2e" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="95.410156"/> <use xlink:href="#DejaVuSans-30" x="95.410156"/>
@@ -807,12 +807,12 @@ z
<g id="ytick_7"> <g id="ytick_7">
<g id="line2d_15"> <g id="line2d_15">
<g> <g>
<use xlink:href="#m9888a6631c" x="80.8294" y="57.777143" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m6f1ef18758" x="80.8294" y="62.220571" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_16"> <g id="text_16">
<!-- 0.00012 --> <!-- 0.00012 -->
<g transform="translate(32.476275 61.576362) scale(0.1 -0.1)"> <g transform="translate(32.476275 66.01979) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-30"/> <use xlink:href="#DejaVuSans-30"/>
<use xlink:href="#DejaVuSans-2e" x="63.623047"/> <use xlink:href="#DejaVuSans-2e" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="95.410156"/> <use xlink:href="#DejaVuSans-30" x="95.410156"/>
@@ -826,7 +826,7 @@ z
<g id="ytick_8"> <g id="ytick_8">
<g id="line2d_16"> <g id="line2d_16">
<g> <g>
<use xlink:href="#m9888a6631c" x="80.8294" y="25.44" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m6f1ef18758" x="80.8294" y="25.44" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_17"> <g id="text_17">
@@ -844,7 +844,7 @@ z
</g> </g>
<g id="text_18"> <g id="text_18">
<!-- power [$\frac{\mathrm{mV^2}}{\mathrm{Hz}}$] --> <!-- power [$\frac{\mathrm{mV^2}}{\mathrm{Hz}}$] -->
<g transform="translate(24.576275 169.32) rotate(-90) scale(0.1 -0.1)"> <g transform="translate(24.576275 184.872) rotate(-90) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-70" d="M 1159 525 <path id="DejaVuSans-70" d="M 1159 525
L 1159 -1331 L 1159 -1331
@@ -945,114 +945,114 @@ z
</g> </g>
</g> </g>
<g id="line2d_17"> <g id="line2d_17">
<path d="M 165.107162 249.65489 <path d="M 165.107162 280.464131
L 171.179047 250.917193 L 171.179047 281.899887
L 177.250932 246.981749 L 177.250932 277.423675
L 183.322817 248.452395 L 183.322817 279.096403
L 189.394701 244.132051 L 189.394701 274.182403
L 195.466586 229.555519 L 195.466586 257.602917
L 201.538471 230.408823 L 201.538471 258.573474
L 207.610356 225.264456 L 207.610356 252.722222
L 213.682241 223.471043 L 213.682241 250.682376
L 219.754126 219.935022 L 219.754126 246.660473
L 225.826011 229.437861 L 225.826011 257.469092
L 231.897896 227.540459 L 231.897896 255.310969
L 238.212656 233.506241 L 238.212656 262.096505
L 244.284541 245.579202 L 244.284541 275.828405
L 250.356426 232.420481 L 250.356426 260.861552
L 256.42831 227.469214 L 256.42831 255.229934
L 262.500195 222.464691 L 262.500195 249.537743
L 268.57208 204.413081 L 268.57208 229.005671
L 274.643965 184.584566 L 274.643965 206.452532
L 280.71585 213.704448 L 280.71585 239.57376
L 286.787735 227.00605 L 286.787735 254.703127
L 292.85962 220.011032 L 292.85962 246.746928
L 298.931504 227.921411 L 298.931504 255.744267
L 305.003389 230.191199 L 305.003389 258.325946
L 311.075274 229.394898 L 311.075274 257.420226
L 317.147159 235.720041 L 317.147159 264.614503
L 323.219044 244.578355 L 323.219044 274.690033
L 329.290929 242.718518 L 329.290929 272.574637
L 335.362814 245.710096 L 335.362814 275.977285
L 341.434699 248.438642 L 341.434699 279.08076
L 347.506583 242.947722 L 347.506583 272.835335
L 353.578468 231.820834 L 353.578468 260.179508
" clip-path="url(#pa1d1b94d0d)" style="fill: none; stroke: #1f77b4; stroke-width: 1.5; stroke-linecap: square"/> " clip-path="url(#p6ab47a6e89)" style="fill: none; stroke: #1f77b4; stroke-width: 1.5; stroke-linecap: square"/>
</g> </g>
<g id="line2d_18"> <g id="line2d_18">
<path d="M 165.350037 250.865353 <path d="M 165.350037 281.840924
L 171.421922 251.574715 L 171.421922 282.647759
L 177.493807 251.45172 L 177.493807 282.507863
L 183.565692 249.579064 L 183.565692 280.377886
L 189.637577 243.027802 L 189.637577 272.926419
L 195.709462 237.030872 L 195.709462 266.105454
L 201.781347 228.390407 L 201.781347 256.277708
L 207.853231 221.521139 L 207.853231 248.464537
L 213.925116 222.681139 L 213.925116 249.783933
L 219.997001 243.709878 L 219.997001 273.702218
L 226.068886 236.994657 L 226.068886 266.064263
L 232.140771 240.849084 L 232.140771 270.448324
L 237.96978 209.354049 L 237.96978 234.625575
L 244.041665 251.190378 L 244.041665 282.21061
L 250.11355 247.620245 L 250.11355 278.149907
L 256.185435 235.45902 L 256.185435 264.317616
L 262.25732 227.151011 L 262.25732 254.868007
L 268.329205 216.035667 L 268.329205 242.225311
L 274.40109 221.597706 L 274.40109 248.551626
L 280.472974 229.122834 L 280.472974 257.110777
L 286.544859 225.415407 L 286.544859 252.893915
L 292.616744 231.041234 L 292.616744 259.292783
L 298.688629 231.357099 L 298.688629 259.652051
L 304.760514 234.087739 L 304.760514 262.757907
L 310.832399 239.960922 L 310.832399 269.438121
L 316.904284 240.840428 L 316.904284 270.438479
L 322.976169 244.998983 L 322.976169 275.168459
L 328.805178 249.829339 L 328.805178 280.662552
L 334.877063 246.821134 L 334.877063 277.240991
L 340.948948 239.460176 L 340.948948 268.868568
L 347.020833 242.116585 L 347.020833 271.889992
L 353.092717 241.013305 L 353.092717 270.635112
L 359.164602 242.888746 L 359.164602 272.768256
L 365.236487 234.415152 L 365.236487 263.13031
L 371.308372 232.257384 L 371.308372 260.676044
L 377.380257 240.277508 L 377.380257 269.798209
L 383.452142 249.521446 L 383.452142 280.312351
L 389.524027 251.088354 L 389.524027 282.094567
L 395.595912 251.322797 L 395.595912 282.361225
L 401.667796 251.356402 L 401.667796 282.399447
L 407.739681 251.162575 L 407.739681 282.178987
L 413.811566 251.132041 L 413.811566 282.144257
L 419.883451 248.094792 L 419.883451 278.689661
L 425.955336 246.585675 L 425.955336 276.973178
L 431.784345 251.315973 L 431.784345 282.353463
L 437.85623 251.078479 L 437.85623 282.083335
L 443.928115 249.304121 L 443.928115 280.065164
L 450 250.209644 L 450 281.095114
" clip-path="url(#pa1d1b94d0d)" style="fill: none; stroke: #ff7f0e; stroke-width: 1.5; stroke-linecap: square"/> " clip-path="url(#p6ab47a6e89)" style="fill: none; stroke: #ff7f0e; stroke-width: 1.5; stroke-linecap: square"/>
</g> </g>
<g id="line2d_19"> <g id="line2d_19">
<path d="M 310.346648 251.8 <path d="M 310.346648 282.904
L 310.346648 25.44 L 310.346648 25.44
" clip-path="url(#pa1d1b94d0d)" style="fill: none; stroke-dasharray: 5.55,2.4; stroke-dashoffset: 0; stroke: #000000; stroke-opacity: 0.8; stroke-width: 1.5"/> " clip-path="url(#p6ab47a6e89)" style="fill: none; stroke-dasharray: 5.55,2.4; stroke-dashoffset: 0; stroke: #000000; stroke-opacity: 0.8; stroke-width: 1.5"/>
</g> </g>
<g id="line2d_20"> <g id="line2d_20">
<path d="M 237.283657 251.8 <path d="M 237.283657 282.904
L 237.283657 25.44 L 237.283657 25.44
" clip-path="url(#pa1d1b94d0d)" style="fill: none; stroke-dasharray: 1.5,2.475; stroke-dashoffset: 0; stroke: #000000; stroke-opacity: 0.8; stroke-width: 1.5"/> " clip-path="url(#p6ab47a6e89)" style="fill: none; stroke-dasharray: 1.5,2.475; stroke-dashoffset: 0; stroke: #000000; stroke-opacity: 0.8; stroke-width: 1.5"/>
</g> </g>
<g id="patch_3"> <g id="patch_3">
<path d="M 80.8294 251.8 <path d="M 80.8294 282.904
L 80.8294 25.44 L 80.8294 25.44
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_4"> <g id="patch_4">
<path d="M 450 251.8 <path d="M 450 282.904
L 450 25.44 L 450 25.44
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_5"> <g id="patch_5">
<path d="M 80.8294 251.8 <path d="M 80.8294 282.904
L 450 251.8 L 450 282.904
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_6"> <g id="patch_6">
@@ -1490,8 +1490,8 @@ z
</g> </g>
</g> </g>
<defs> <defs>
<clipPath id="pa1d1b94d0d"> <clipPath id="p6ab47a6e89">
<rect x="80.8294" y="25.44" width="369.1706" height="226.36"/> <rect x="80.8294" y="25.44" width="369.1706" height="257.464"/>
</clipPath> </clipPath>
</defs> </defs>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 39 KiB

After

Width:  |  Height:  |  Size: 39 KiB

View File

@@ -6,7 +6,7 @@
<rdf:RDF xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:RDF xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<cc:Work> <cc:Work>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<dc:date>2024-10-25T15:19:52.704307</dc:date> <dc:date>2024-10-25T16:36:08.973716</dc:date>
<dc:format>image/svg+xml</dc:format> <dc:format>image/svg+xml</dc:format>
<dc:creator> <dc:creator>
<cc:Agent> <cc:Agent>
@@ -30,8 +30,8 @@ z
</g> </g>
<g id="axes_1"> <g id="axes_1">
<g id="patch_2"> <g id="patch_2">
<path d="M 80.8294 251.8 <path d="M 80.8294 282.904
L 450 251.8 L 450 282.904
L 450 25.44 L 450 25.44
L 80.8294 25.44 L 80.8294 25.44
z z
@@ -41,17 +41,17 @@ z
<g id="xtick_1"> <g id="xtick_1">
<g id="line2d_1"> <g id="line2d_1">
<defs> <defs>
<path id="mc2cc5cfce5" d="M 0 0 <path id="m518dcd047e" d="M 0 0
L 0 3.5 L 0 3.5
" style="stroke: #000000; stroke-width: 0.8"/> " style="stroke: #000000; stroke-width: 0.8"/>
</defs> </defs>
<g> <g>
<use xlink:href="#mc2cc5cfce5" x="80.8294" y="251.8" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m518dcd047e" x="80.8294" y="282.904" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_1"> <g id="text_1">
<!-- 0 --> <!-- 0 -->
<g transform="translate(77.64815 266.398437) scale(0.1 -0.1)"> <g transform="translate(77.64815 297.502437) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-30" d="M 2034 4250 <path id="DejaVuSans-30" d="M 2034 4250
Q 1547 4250 1301 3770 Q 1547 4250 1301 3770
@@ -82,12 +82,12 @@ z
<g id="xtick_2"> <g id="xtick_2">
<g id="line2d_2"> <g id="line2d_2">
<g> <g>
<use xlink:href="#mc2cc5cfce5" x="142.667021" y="251.8" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m518dcd047e" x="142.667021" y="282.904" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_2"> <g id="text_2">
<!-- 100 --> <!-- 100 -->
<g transform="translate(133.123271 266.398437) scale(0.1 -0.1)"> <g transform="translate(133.123271 297.502437) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-31" d="M 794 531 <path id="DejaVuSans-31" d="M 794 531
L 1825 531 L 1825 531
@@ -113,12 +113,12 @@ z
<g id="xtick_3"> <g id="xtick_3">
<g id="line2d_3"> <g id="line2d_3">
<g> <g>
<use xlink:href="#mc2cc5cfce5" x="204.504643" y="251.8" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m518dcd047e" x="204.504643" y="282.904" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_3"> <g id="text_3">
<!-- 200 --> <!-- 200 -->
<g transform="translate(194.960893 266.398437) scale(0.1 -0.1)"> <g transform="translate(194.960893 297.502437) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-32" d="M 1228 531 <path id="DejaVuSans-32" d="M 1228 531
L 3431 531 L 3431 531
@@ -154,12 +154,12 @@ z
<g id="xtick_4"> <g id="xtick_4">
<g id="line2d_4"> <g id="line2d_4">
<g> <g>
<use xlink:href="#mc2cc5cfce5" x="266.342264" y="251.8" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m518dcd047e" x="266.342264" y="282.904" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_4"> <g id="text_4">
<!-- 300 --> <!-- 300 -->
<g transform="translate(256.798514 266.398437) scale(0.1 -0.1)"> <g transform="translate(256.798514 297.502437) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-33" d="M 2597 2516 <path id="DejaVuSans-33" d="M 2597 2516
Q 3050 2419 3304 2112 Q 3050 2419 3304 2112
@@ -203,12 +203,12 @@ z
<g id="xtick_5"> <g id="xtick_5">
<g id="line2d_5"> <g id="line2d_5">
<g> <g>
<use xlink:href="#mc2cc5cfce5" x="328.179886" y="251.8" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m518dcd047e" x="328.179886" y="282.904" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_5"> <g id="text_5">
<!-- 400 --> <!-- 400 -->
<g transform="translate(318.636136 266.398437) scale(0.1 -0.1)"> <g transform="translate(318.636136 297.502437) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-34" d="M 2419 4116 <path id="DejaVuSans-34" d="M 2419 4116
L 825 1625 L 825 1625
@@ -239,12 +239,12 @@ z
<g id="xtick_6"> <g id="xtick_6">
<g id="line2d_6"> <g id="line2d_6">
<g> <g>
<use xlink:href="#mc2cc5cfce5" x="390.017507" y="251.8" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m518dcd047e" x="390.017507" y="282.904" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_6"> <g id="text_6">
<!-- 500 --> <!-- 500 -->
<g transform="translate(380.473757 266.398437) scale(0.1 -0.1)"> <g transform="translate(380.473757 297.502437) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-35" d="M 691 4666 <path id="DejaVuSans-35" d="M 691 4666
L 3169 4666 L 3169 4666
@@ -280,7 +280,7 @@ z
</g> </g>
<g id="text_7"> <g id="text_7">
<!-- stimulus frequency [Hz] --> <!-- stimulus frequency [Hz] -->
<g transform="translate(205.718606 280.076562) scale(0.1 -0.1)"> <g transform="translate(205.718606 311.180563) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-73" d="M 2834 3397 <path id="DejaVuSans-73" d="M 2834 3397
L 2834 2853 L 2834 2853
@@ -634,17 +634,17 @@ z
<g id="ytick_1"> <g id="ytick_1">
<g id="line2d_7"> <g id="line2d_7">
<defs> <defs>
<path id="mb2cf7d37e5" d="M 0 0 <path id="mfb3affa4a4" d="M 0 0
L -3.5 0 L -3.5 0
" style="stroke: #000000; stroke-width: 0.8"/> " style="stroke: #000000; stroke-width: 0.8"/>
</defs> </defs>
<g> <g>
<use xlink:href="#mb2cf7d37e5" x="80.8294" y="251.8" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mfb3affa4a4" x="80.8294" y="282.904" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_8"> <g id="text_8">
<!-- 0.00000 --> <!-- 0.00000 -->
<g transform="translate(32.476275 255.599219) scale(0.1 -0.1)"> <g transform="translate(32.476275 286.703219) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-2e" d="M 684 794 <path id="DejaVuSans-2e" d="M 684 794
L 1344 794 L 1344 794
@@ -667,12 +667,12 @@ z
<g id="ytick_2"> <g id="ytick_2">
<g id="line2d_8"> <g id="line2d_8">
<g> <g>
<use xlink:href="#mb2cf7d37e5" x="80.8294" y="219.462857" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mfb3affa4a4" x="80.8294" y="246.123429" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_9"> <g id="text_9">
<!-- 0.00002 --> <!-- 0.00002 -->
<g transform="translate(32.476275 223.262076) scale(0.1 -0.1)"> <g transform="translate(32.476275 249.922647) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-30"/> <use xlink:href="#DejaVuSans-30"/>
<use xlink:href="#DejaVuSans-2e" x="63.623047"/> <use xlink:href="#DejaVuSans-2e" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="95.410156"/> <use xlink:href="#DejaVuSans-30" x="95.410156"/>
@@ -686,12 +686,12 @@ z
<g id="ytick_3"> <g id="ytick_3">
<g id="line2d_9"> <g id="line2d_9">
<g> <g>
<use xlink:href="#mb2cf7d37e5" x="80.8294" y="187.125714" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mfb3affa4a4" x="80.8294" y="209.342857" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_10"> <g id="text_10">
<!-- 0.00004 --> <!-- 0.00004 -->
<g transform="translate(32.476275 190.924933) scale(0.1 -0.1)"> <g transform="translate(32.476275 213.142076) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-30"/> <use xlink:href="#DejaVuSans-30"/>
<use xlink:href="#DejaVuSans-2e" x="63.623047"/> <use xlink:href="#DejaVuSans-2e" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="95.410156"/> <use xlink:href="#DejaVuSans-30" x="95.410156"/>
@@ -705,12 +705,12 @@ z
<g id="ytick_4"> <g id="ytick_4">
<g id="line2d_10"> <g id="line2d_10">
<g> <g>
<use xlink:href="#mb2cf7d37e5" x="80.8294" y="154.788571" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mfb3affa4a4" x="80.8294" y="172.562286" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_11"> <g id="text_11">
<!-- 0.00006 --> <!-- 0.00006 -->
<g transform="translate(32.476275 158.58779) scale(0.1 -0.1)"> <g transform="translate(32.476275 176.361504) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-36" d="M 2113 2584 <path id="DejaVuSans-36" d="M 2113 2584
Q 1688 2584 1439 2293 Q 1688 2584 1439 2293
@@ -756,12 +756,12 @@ z
<g id="ytick_5"> <g id="ytick_5">
<g id="line2d_11"> <g id="line2d_11">
<g> <g>
<use xlink:href="#mb2cf7d37e5" x="80.8294" y="122.451429" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mfb3affa4a4" x="80.8294" y="135.781714" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_12"> <g id="text_12">
<!-- 0.00008 --> <!-- 0.00008 -->
<g transform="translate(32.476275 126.250647) scale(0.1 -0.1)"> <g transform="translate(32.476275 139.580933) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-38" d="M 2034 2216 <path id="DejaVuSans-38" d="M 2034 2216
Q 1584 2216 1326 1975 Q 1584 2216 1326 1975
@@ -816,12 +816,12 @@ z
<g id="ytick_6"> <g id="ytick_6">
<g id="line2d_12"> <g id="line2d_12">
<g> <g>
<use xlink:href="#mb2cf7d37e5" x="80.8294" y="90.114286" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mfb3affa4a4" x="80.8294" y="99.001143" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_13"> <g id="text_13">
<!-- 0.00010 --> <!-- 0.00010 -->
<g transform="translate(32.476275 93.913504) scale(0.1 -0.1)"> <g transform="translate(32.476275 102.800362) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-30"/> <use xlink:href="#DejaVuSans-30"/>
<use xlink:href="#DejaVuSans-2e" x="63.623047"/> <use xlink:href="#DejaVuSans-2e" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="95.410156"/> <use xlink:href="#DejaVuSans-30" x="95.410156"/>
@@ -835,12 +835,12 @@ z
<g id="ytick_7"> <g id="ytick_7">
<g id="line2d_13"> <g id="line2d_13">
<g> <g>
<use xlink:href="#mb2cf7d37e5" x="80.8294" y="57.777143" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mfb3affa4a4" x="80.8294" y="62.220571" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_14"> <g id="text_14">
<!-- 0.00012 --> <!-- 0.00012 -->
<g transform="translate(32.476275 61.576362) scale(0.1 -0.1)"> <g transform="translate(32.476275 66.01979) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-30"/> <use xlink:href="#DejaVuSans-30"/>
<use xlink:href="#DejaVuSans-2e" x="63.623047"/> <use xlink:href="#DejaVuSans-2e" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="95.410156"/> <use xlink:href="#DejaVuSans-30" x="95.410156"/>
@@ -854,7 +854,7 @@ z
<g id="ytick_8"> <g id="ytick_8">
<g id="line2d_14"> <g id="line2d_14">
<g> <g>
<use xlink:href="#mb2cf7d37e5" x="80.8294" y="25.44" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mfb3affa4a4" x="80.8294" y="25.44" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_15"> <g id="text_15">
@@ -872,7 +872,7 @@ z
</g> </g>
<g id="text_16"> <g id="text_16">
<!-- power [$\frac{\mathrm{mV^2}}{\mathrm{Hz}}$] --> <!-- power [$\frac{\mathrm{mV^2}}{\mathrm{Hz}}$] -->
<g transform="translate(24.576275 169.32) rotate(-90) scale(0.1 -0.1)"> <g transform="translate(24.576275 184.872) rotate(-90) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-70" d="M 1159 525 <path id="DejaVuSans-70" d="M 1159 525
L 1159 -1331 L 1159 -1331
@@ -973,53 +973,53 @@ z
</g> </g>
</g> </g>
<g id="line2d_15"> <g id="line2d_15">
<path d="M 294.78757 247.365353 <path d="M 294.78757 277.859991
L 310.246976 250.709863 L 310.246976 281.664068
L 325.706381 246.968848 L 325.706381 277.409002
L 341.165786 245.912017 L 341.165786 276.206953
L 356.625192 237.890424 L 356.625192 267.083117
L 372.084597 223.899017 L 372.084597 251.169159
L 387.544002 234.31183 L 387.544002 263.01279
L 403.003408 234.261951 L 403.003408 262.956058
L 418.462813 225.125523 L 418.462813 252.564198
L 433.922218 176.770981 L 433.922218 197.565286
L 449.381624 232.548694 L 449.381624 261.007383
L 461.8 229.322222 L 461.8 257.337564
" clip-path="url(#p1235bf9adb)" style="fill: none; stroke: #1f77b4; stroke-width: 1.5; stroke-linecap: square"/> " clip-path="url(#p08d75b4fe6)" style="fill: none; stroke: #1f77b4; stroke-width: 1.5; stroke-linecap: square"/>
</g> </g>
<g id="line2d_16"> <g id="line2d_16">
<path d="M 295.405946 248.996009 <path d="M 295.405946 279.714714
L 310.865352 250.62268 L 310.865352 281.564905
L 326.324757 251.394087 L 326.324757 282.442311
L 341.784162 249.324088 L 341.784162 280.087875
L 357.243568 251.173456 L 357.243568 282.191363
L 372.702973 250.516782 L 372.702973 281.444456
L 388.162379 246.612055 L 388.162379 277.003182
L 403.621784 245.742326 L 403.621784 276.013945
L 419.081189 248.443429 L 419.081189 279.086205
L 434.540595 249.77488 L 434.540595 280.60061
L 450 251.198456 L 450 282.219798
" clip-path="url(#p1235bf9adb)" style="fill: none; stroke: #ff7f0e; stroke-width: 1.5; stroke-linecap: square"/> " clip-path="url(#p08d75b4fe6)" style="fill: none; stroke: #ff7f0e; stroke-width: 1.5; stroke-linecap: square"/>
</g> </g>
<g id="line2d_17"> <g id="line2d_17">
<path clip-path="url(#p1235bf9adb)" style="fill: none; stroke-dasharray: 5.55,2.4; stroke-dashoffset: 0; stroke: #000000; stroke-opacity: 0.8; stroke-width: 1.5"/> <path clip-path="url(#p08d75b4fe6)" style="fill: none; stroke-dasharray: 5.55,2.4; stroke-dashoffset: 0; stroke: #000000; stroke-opacity: 0.8; stroke-width: 1.5"/>
</g> </g>
<g id="line2d_18"> <g id="line2d_18">
<path clip-path="url(#p1235bf9adb)" style="fill: none; stroke-dasharray: 1.5,2.475; stroke-dashoffset: 0; stroke: #000000; stroke-opacity: 0.8; stroke-width: 1.5"/> <path clip-path="url(#p08d75b4fe6)" style="fill: none; stroke-dasharray: 1.5,2.475; stroke-dashoffset: 0; stroke: #000000; stroke-opacity: 0.8; stroke-width: 1.5"/>
</g> </g>
<g id="patch_3"> <g id="patch_3">
<path d="M 80.8294 251.8 <path d="M 80.8294 282.904
L 80.8294 25.44 L 80.8294 25.44
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_4"> <g id="patch_4">
<path d="M 450 251.8 <path d="M 450 282.904
L 450 25.44 L 450 25.44
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_5"> <g id="patch_5">
<path d="M 80.8294 251.8 <path d="M 80.8294 282.904
L 450 251.8 L 450 282.904
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_6"> <g id="patch_6">
@@ -1430,8 +1430,8 @@ z
</g> </g>
</g> </g>
<defs> <defs>
<clipPath id="p1235bf9adb"> <clipPath id="p08d75b4fe6">
<rect x="80.8294" y="25.44" width="369.1706" height="226.36"/> <rect x="80.8294" y="25.44" width="369.1706" height="257.464"/>
</clipPath> </clipPath>
</defs> </defs>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 37 KiB

After

Width:  |  Height:  |  Size: 37 KiB

View File

@@ -6,7 +6,7 @@
<rdf:RDF xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:RDF xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<cc:Work> <cc:Work>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<dc:date>2024-10-25T15:20:36.523737</dc:date> <dc:date>2024-10-25T16:36:50.843031</dc:date>
<dc:format>image/svg+xml</dc:format> <dc:format>image/svg+xml</dc:format>
<dc:creator> <dc:creator>
<cc:Agent> <cc:Agent>
@@ -30,8 +30,8 @@ z
</g> </g>
<g id="axes_1"> <g id="axes_1">
<g id="patch_2"> <g id="patch_2">
<path d="M 80.8294 251.8 <path d="M 80.8294 282.904
L 450 251.8 L 450 282.904
L 450 25.44 L 450 25.44
L 80.8294 25.44 L 80.8294 25.44
z z
@@ -41,17 +41,17 @@ z
<g id="xtick_1"> <g id="xtick_1">
<g id="line2d_1"> <g id="line2d_1">
<defs> <defs>
<path id="mbd6e0f9b3c" d="M 0 0 <path id="m80ce22d859" d="M 0 0
L 0 3.5 L 0 3.5
" style="stroke: #000000; stroke-width: 0.8"/> " style="stroke: #000000; stroke-width: 0.8"/>
</defs> </defs>
<g> <g>
<use xlink:href="#mbd6e0f9b3c" x="80.8294" y="251.8" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m80ce22d859" x="80.8294" y="282.904" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_1"> <g id="text_1">
<!-- 0 --> <!-- 0 -->
<g transform="translate(77.64815 266.398437) scale(0.1 -0.1)"> <g transform="translate(77.64815 297.502437) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-30" d="M 2034 4250 <path id="DejaVuSans-30" d="M 2034 4250
Q 1547 4250 1301 3770 Q 1547 4250 1301 3770
@@ -82,12 +82,12 @@ z
<g id="xtick_2"> <g id="xtick_2">
<g id="line2d_2"> <g id="line2d_2">
<g> <g>
<use xlink:href="#mbd6e0f9b3c" x="129.436457" y="251.8" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m80ce22d859" x="129.436457" y="282.904" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_2"> <g id="text_2">
<!-- 200 --> <!-- 200 -->
<g transform="translate(119.892707 266.398437) scale(0.1 -0.1)"> <g transform="translate(119.892707 297.502437) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-32" d="M 1228 531 <path id="DejaVuSans-32" d="M 1228 531
L 3431 531 L 3431 531
@@ -123,12 +123,12 @@ z
<g id="xtick_3"> <g id="xtick_3">
<g id="line2d_3"> <g id="line2d_3">
<g> <g>
<use xlink:href="#mbd6e0f9b3c" x="178.043515" y="251.8" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m80ce22d859" x="178.043515" y="282.904" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_3"> <g id="text_3">
<!-- 400 --> <!-- 400 -->
<g transform="translate(168.499765 266.398437) scale(0.1 -0.1)"> <g transform="translate(168.499765 297.502437) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-34" d="M 2419 4116 <path id="DejaVuSans-34" d="M 2419 4116
L 825 1625 L 825 1625
@@ -159,12 +159,12 @@ z
<g id="xtick_4"> <g id="xtick_4">
<g id="line2d_4"> <g id="line2d_4">
<g> <g>
<use xlink:href="#mbd6e0f9b3c" x="226.650572" y="251.8" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m80ce22d859" x="226.650572" y="282.904" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_4"> <g id="text_4">
<!-- 600 --> <!-- 600 -->
<g transform="translate(217.106822 266.398437) scale(0.1 -0.1)"> <g transform="translate(217.106822 297.502437) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-36" d="M 2113 2584 <path id="DejaVuSans-36" d="M 2113 2584
Q 1688 2584 1439 2293 Q 1688 2584 1439 2293
@@ -206,12 +206,12 @@ z
<g id="xtick_5"> <g id="xtick_5">
<g id="line2d_5"> <g id="line2d_5">
<g> <g>
<use xlink:href="#mbd6e0f9b3c" x="275.257629" y="251.8" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m80ce22d859" x="275.257629" y="282.904" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_5"> <g id="text_5">
<!-- 800 --> <!-- 800 -->
<g transform="translate(265.713879 266.398437) scale(0.1 -0.1)"> <g transform="translate(265.713879 297.502437) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-38" d="M 2034 2216 <path id="DejaVuSans-38" d="M 2034 2216
Q 1584 2216 1326 1975 Q 1584 2216 1326 1975
@@ -262,12 +262,12 @@ z
<g id="xtick_6"> <g id="xtick_6">
<g id="line2d_6"> <g id="line2d_6">
<g> <g>
<use xlink:href="#mbd6e0f9b3c" x="323.864686" y="251.8" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m80ce22d859" x="323.864686" y="282.904" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_6"> <g id="text_6">
<!-- 1000 --> <!-- 1000 -->
<g transform="translate(311.139686 266.398437) scale(0.1 -0.1)"> <g transform="translate(311.139686 297.502437) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-31" d="M 794 531 <path id="DejaVuSans-31" d="M 794 531
L 1825 531 L 1825 531
@@ -294,12 +294,12 @@ z
<g id="xtick_7"> <g id="xtick_7">
<g id="line2d_7"> <g id="line2d_7">
<g> <g>
<use xlink:href="#mbd6e0f9b3c" x="372.471744" y="251.8" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m80ce22d859" x="372.471744" y="282.904" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_7"> <g id="text_7">
<!-- 1200 --> <!-- 1200 -->
<g transform="translate(359.746744 266.398437) scale(0.1 -0.1)"> <g transform="translate(359.746744 297.502437) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-31"/> <use xlink:href="#DejaVuSans-31"/>
<use xlink:href="#DejaVuSans-32" x="63.623047"/> <use xlink:href="#DejaVuSans-32" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/> <use xlink:href="#DejaVuSans-30" x="127.246094"/>
@@ -310,12 +310,12 @@ z
<g id="xtick_8"> <g id="xtick_8">
<g id="line2d_8"> <g id="line2d_8">
<g> <g>
<use xlink:href="#mbd6e0f9b3c" x="421.078801" y="251.8" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m80ce22d859" x="421.078801" y="282.904" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_8"> <g id="text_8">
<!-- 1400 --> <!-- 1400 -->
<g transform="translate(408.353801 266.398437) scale(0.1 -0.1)"> <g transform="translate(408.353801 297.502437) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-31"/> <use xlink:href="#DejaVuSans-31"/>
<use xlink:href="#DejaVuSans-34" x="63.623047"/> <use xlink:href="#DejaVuSans-34" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/> <use xlink:href="#DejaVuSans-30" x="127.246094"/>
@@ -325,7 +325,7 @@ z
</g> </g>
<g id="text_9"> <g id="text_9">
<!-- stimulus frequency [Hz] --> <!-- stimulus frequency [Hz] -->
<g transform="translate(205.718606 280.076562) scale(0.1 -0.1)"> <g transform="translate(205.718606 311.180563) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-73" d="M 2834 3397 <path id="DejaVuSans-73" d="M 2834 3397
L 2834 2853 L 2834 2853
@@ -679,17 +679,17 @@ z
<g id="ytick_1"> <g id="ytick_1">
<g id="line2d_9"> <g id="line2d_9">
<defs> <defs>
<path id="mbb09e61a20" d="M 0 0 <path id="m8734df6f9a" d="M 0 0
L -3.5 0 L -3.5 0
" style="stroke: #000000; stroke-width: 0.8"/> " style="stroke: #000000; stroke-width: 0.8"/>
</defs> </defs>
<g> <g>
<use xlink:href="#mbb09e61a20" x="80.8294" y="251.8" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m8734df6f9a" x="80.8294" y="282.904" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_10"> <g id="text_10">
<!-- 0.00000 --> <!-- 0.00000 -->
<g transform="translate(32.476275 255.599219) scale(0.1 -0.1)"> <g transform="translate(32.476275 286.703219) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-2e" d="M 684 794 <path id="DejaVuSans-2e" d="M 684 794
L 1344 794 L 1344 794
@@ -712,12 +712,12 @@ z
<g id="ytick_2"> <g id="ytick_2">
<g id="line2d_10"> <g id="line2d_10">
<g> <g>
<use xlink:href="#mbb09e61a20" x="80.8294" y="219.462857" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m8734df6f9a" x="80.8294" y="246.123429" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_11"> <g id="text_11">
<!-- 0.00002 --> <!-- 0.00002 -->
<g transform="translate(32.476275 223.262076) scale(0.1 -0.1)"> <g transform="translate(32.476275 249.922647) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-30"/> <use xlink:href="#DejaVuSans-30"/>
<use xlink:href="#DejaVuSans-2e" x="63.623047"/> <use xlink:href="#DejaVuSans-2e" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="95.410156"/> <use xlink:href="#DejaVuSans-30" x="95.410156"/>
@@ -731,12 +731,12 @@ z
<g id="ytick_3"> <g id="ytick_3">
<g id="line2d_11"> <g id="line2d_11">
<g> <g>
<use xlink:href="#mbb09e61a20" x="80.8294" y="187.125714" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m8734df6f9a" x="80.8294" y="209.342857" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_12"> <g id="text_12">
<!-- 0.00004 --> <!-- 0.00004 -->
<g transform="translate(32.476275 190.924933) scale(0.1 -0.1)"> <g transform="translate(32.476275 213.142076) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-30"/> <use xlink:href="#DejaVuSans-30"/>
<use xlink:href="#DejaVuSans-2e" x="63.623047"/> <use xlink:href="#DejaVuSans-2e" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="95.410156"/> <use xlink:href="#DejaVuSans-30" x="95.410156"/>
@@ -750,12 +750,12 @@ z
<g id="ytick_4"> <g id="ytick_4">
<g id="line2d_12"> <g id="line2d_12">
<g> <g>
<use xlink:href="#mbb09e61a20" x="80.8294" y="154.788571" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m8734df6f9a" x="80.8294" y="172.562286" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_13"> <g id="text_13">
<!-- 0.00006 --> <!-- 0.00006 -->
<g transform="translate(32.476275 158.58779) scale(0.1 -0.1)"> <g transform="translate(32.476275 176.361504) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-30"/> <use xlink:href="#DejaVuSans-30"/>
<use xlink:href="#DejaVuSans-2e" x="63.623047"/> <use xlink:href="#DejaVuSans-2e" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="95.410156"/> <use xlink:href="#DejaVuSans-30" x="95.410156"/>
@@ -769,12 +769,12 @@ z
<g id="ytick_5"> <g id="ytick_5">
<g id="line2d_13"> <g id="line2d_13">
<g> <g>
<use xlink:href="#mbb09e61a20" x="80.8294" y="122.451429" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m8734df6f9a" x="80.8294" y="135.781714" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_14"> <g id="text_14">
<!-- 0.00008 --> <!-- 0.00008 -->
<g transform="translate(32.476275 126.250647) scale(0.1 -0.1)"> <g transform="translate(32.476275 139.580933) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-30"/> <use xlink:href="#DejaVuSans-30"/>
<use xlink:href="#DejaVuSans-2e" x="63.623047"/> <use xlink:href="#DejaVuSans-2e" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="95.410156"/> <use xlink:href="#DejaVuSans-30" x="95.410156"/>
@@ -788,12 +788,12 @@ z
<g id="ytick_6"> <g id="ytick_6">
<g id="line2d_14"> <g id="line2d_14">
<g> <g>
<use xlink:href="#mbb09e61a20" x="80.8294" y="90.114286" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m8734df6f9a" x="80.8294" y="99.001143" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_15"> <g id="text_15">
<!-- 0.00010 --> <!-- 0.00010 -->
<g transform="translate(32.476275 93.913504) scale(0.1 -0.1)"> <g transform="translate(32.476275 102.800362) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-30"/> <use xlink:href="#DejaVuSans-30"/>
<use xlink:href="#DejaVuSans-2e" x="63.623047"/> <use xlink:href="#DejaVuSans-2e" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="95.410156"/> <use xlink:href="#DejaVuSans-30" x="95.410156"/>
@@ -807,12 +807,12 @@ z
<g id="ytick_7"> <g id="ytick_7">
<g id="line2d_15"> <g id="line2d_15">
<g> <g>
<use xlink:href="#mbb09e61a20" x="80.8294" y="57.777143" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m8734df6f9a" x="80.8294" y="62.220571" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_16"> <g id="text_16">
<!-- 0.00012 --> <!-- 0.00012 -->
<g transform="translate(32.476275 61.576362) scale(0.1 -0.1)"> <g transform="translate(32.476275 66.01979) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-30"/> <use xlink:href="#DejaVuSans-30"/>
<use xlink:href="#DejaVuSans-2e" x="63.623047"/> <use xlink:href="#DejaVuSans-2e" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="95.410156"/> <use xlink:href="#DejaVuSans-30" x="95.410156"/>
@@ -826,7 +826,7 @@ z
<g id="ytick_8"> <g id="ytick_8">
<g id="line2d_16"> <g id="line2d_16">
<g> <g>
<use xlink:href="#mbb09e61a20" x="80.8294" y="25.44" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m8734df6f9a" x="80.8294" y="25.44" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_17"> <g id="text_17">
@@ -844,7 +844,7 @@ z
</g> </g>
<g id="text_18"> <g id="text_18">
<!-- power [$\frac{\mathrm{mV^2}}{\mathrm{Hz}}$] --> <!-- power [$\frac{\mathrm{mV^2}}{\mathrm{Hz}}$] -->
<g transform="translate(24.576275 169.32) rotate(-90) scale(0.1 -0.1)"> <g transform="translate(24.576275 184.872) rotate(-90) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-70" d="M 1159 525 <path id="DejaVuSans-70" d="M 1159 525
L 1159 -1331 L 1159 -1331
@@ -945,165 +945,165 @@ z
</g> </g>
</g> </g>
<g id="line2d_17"> <g id="line2d_17">
<path d="M 164.919609 250.975413 <path d="M 164.919609 281.966107
L 170.995491 251.097794 L 170.995491 282.105305
L 177.071373 251.000255 L 177.071373 281.994362
L 183.147256 249.576885 L 183.147256 280.375408
L 189.223138 248.980692 L 189.223138 279.697292
L 195.29902 249.795221 L 195.29902 280.623745
L 201.374902 248.536728 L 201.374902 279.192324
L 207.450784 242.906081 L 207.450784 272.787972
L 213.526666 242.738355 L 213.526666 272.5972
L 219.602549 243.39753 L 219.602549 273.346952
L 225.678431 241.313696 L 225.678431 270.976779
L 231.754313 239.940705 L 231.754313 269.415126
L 237.830195 245.759662 L 237.830195 276.033663
L 243.906077 243.182741 L 243.906077 273.102649
L 249.981959 234.484027 L 249.981959 263.208648
L 256.057841 234.926262 L 256.057841 263.711652
L 262.133724 231.241039 L 262.133724 259.520044
L 268.209606 223.034315 L 268.209606 250.185638
L 274.285488 220.07211 L 274.285488 246.816399
L 280.36137 221.74393 L 280.36137 248.717943
L 286.437252 208.661546 L 286.437252 233.837916
L 292.513134 182.157012 L 292.513134 203.691408
L 298.589017 154.230969 L 298.589017 171.928064
L 304.664899 204.009934 L 304.664899 228.547128
L 310.740781 238.931436 L 310.740781 268.267174
L 316.816663 251.310422 L 316.816663 282.347149
L 322.892545 240.037509 L 322.892545 269.525232
L 328.968427 250.417395 L 328.968427 281.331411
L 335.04431 249.82857 L 335.04431 280.661677
L 341.120192 250.846045 L 341.120192 281.818962
L 347.196074 243.550428 L 347.196074 273.520859
L 353.271956 240.685036 L 353.271956 270.261735
" clip-path="url(#p243a774d57)" style="fill: none; stroke: #1f77b4; stroke-width: 1.5; stroke-linecap: square"/> " clip-path="url(#ped58e94cc8)" style="fill: none; stroke: #1f77b4; stroke-width: 1.5; stroke-linecap: square"/>
</g> </g>
<g id="line2d_18"> <g id="line2d_18">
<path d="M 164.919609 251.628457 <path d="M 164.919609 282.708885
L 170.752456 251.560235 L 170.752456 282.631289
L 176.828338 251.455479 L 176.828338 282.512139
L 182.90422 251.32598 L 182.90422 282.364846
L 188.980102 251.279822 L 188.980102 282.312345
L 195.055985 250.69746 L 195.055985 281.649961
L 201.131867 250.76177 L 201.131867 281.723108
L 207.207749 250.855039 L 207.207749 281.829192
L 213.283631 250.275937 L 213.283631 281.170516
L 219.359513 251.08047 L 219.359513 282.0856
L 225.435395 250.511418 L 225.435395 281.438354
L 231.268242 249.864016 L 231.268242 280.701993
L 237.344124 249.959574 L 237.344124 280.810682
L 243.420007 249.619769 L 243.420007 280.424185
L 249.738924 249.995264 L 249.738924 280.851277
L 255.571771 249.881175 L 255.571771 280.721511
L 261.890688 246.9889 L 261.890688 277.431809
L 267.966571 245.100583 L 267.966571 275.284019
L 273.799417 242.119176 L 273.799417 271.892939
L 279.8753 240.551157 L 279.8753 270.109459
L 285.951182 240.794761 L 285.951182 270.386538
L 292.027064 244.981551 L 292.027064 275.148632
L 298.102946 247.125419 L 298.102946 277.587087
L 304.178828 244.634151 L 304.178828 274.753495
L 310.25471 245.176121 L 310.25471 275.369938
L 316.330592 244.400115 L 316.330592 274.487301
L 322.406475 244.838917 L 322.406475 274.986399
L 328.482357 246.437799 L 328.482357 276.804982
L 334.558239 247.756597 L 334.558239 278.304995
L 340.634121 245.083178 L 340.634121 275.264223
L 346.710003 246.810976 L 346.710003 277.229438
L 352.785885 246.421622 L 352.785885 276.786582
L 359.104803 236.738087 L 359.104803 265.772438
L 365.180685 241.934762 L 365.180685 271.683185
L 371.256567 243.174615 L 371.256567 273.093405
L 377.332449 245.614054 L 377.332449 275.868047
L 383.408332 245.012139 L 383.408332 275.183423
L 389.484214 248.511647 L 389.484214 279.163797
L 395.560096 249.33043 L 395.560096 280.095088
L 401.635978 251.624466 L 401.635978 282.704346
L 407.71186 251.524823 L 407.71186 282.591011
L 413.787742 250.281515 L 413.787742 281.176861
L 419.863624 245.722088 L 419.863624 275.990926
L 425.939507 248.919214 L 425.939507 279.627367
L 432.015389 250.740406 L 432.015389 281.698807
L 438.091271 241.668153 L 438.091271 271.379941
L 444.167153 244.540384 L 444.167153 274.646844
L 450 251.141469 L 450 282.154981
" clip-path="url(#p243a774d57)" style="fill: none; stroke: #ff7f0e; stroke-width: 1.5; stroke-linecap: square"/> " clip-path="url(#ped58e94cc8)" style="fill: none; stroke: #ff7f0e; stroke-width: 1.5; stroke-linecap: square"/>
</g> </g>
<g id="line2d_19"> <g id="line2d_19">
<path d="M 164.433539 251.74611 <path d="M 164.433539 282.842705
L 170.509421 251.741101 L 170.509421 282.837007
L 176.585303 251.692429 L 176.585303 282.781647
L 182.661185 251.487171 L 182.661185 282.548186
L 188.737067 251.494298 L 188.737067 282.556292
L 194.812949 251.639161 L 194.812949 282.72106
L 200.888831 251.658759 L 200.888831 282.743351
L 206.964714 250.691997 L 206.964714 281.643746
L 213.040596 251.536807 L 213.040596 282.604641
L 219.116478 251.538227 L 219.116478 282.606257
L 225.19236 251.362685 L 225.19236 282.406593
L 231.268242 251.246259 L 231.268242 282.274169
L 237.344124 251.285305 L 237.344124 282.318581
L 243.420007 251.178508 L 243.420007 282.197109
L 249.738924 251.161756 L 249.738924 282.178055
L 255.814806 251.029341 L 255.814806 282.027445
L 261.890688 249.387662 L 261.890688 280.160184
L 267.966571 250.198972 L 267.966571 281.082975
L 274.042453 250.793696 L 274.042453 281.75942
L 280.118335 250.167501 L 280.118335 281.04718
L 285.951182 247.352405 L 285.951182 277.845264
L 292.027064 250.423932 L 292.027064 281.338847
L 298.102946 250.554984 L 298.102946 281.487907
L 304.178828 250.280882 L 304.178828 281.17614
L 310.25471 249.76983 L 310.25471 280.594866
L 316.330592 249.451354 L 316.330592 280.232627
L 322.406475 249.75875 L 322.406475 280.582264
L 328.482357 251.50866 L 328.482357 282.572627
L 334.315204 250.608019 L 334.315204 281.548229
L 340.391086 250.439178 L 340.391086 281.356188
L 346.466968 250.032092 L 346.466968 280.893165
L 352.54285 250.594853 L 352.54285 281.533254
L 358.861768 248.038133 L 358.861768 278.625217
L 364.694614 244.707438 L 364.694614 274.836853
L 370.770497 251.347265 L 370.770497 282.389055
L 376.846379 248.84756 L 376.846379 279.545867
L 382.922261 249.500591 L 382.922261 280.288631
L 388.998143 251.424699 L 388.998143 282.477129
L 395.074025 251.613599 L 395.074025 282.691985
L 401.149907 250.875373 L 401.149907 281.85232
L 407.22579 251.465511 L 407.22579 282.52355
L 413.301672 250.644034 L 413.301672 281.589193
L 419.377554 250.027408 L 419.377554 280.887837
L 425.453436 251.056547 L 425.453436 282.058389
L 431.529318 250.768948 L 431.529318 281.731272
L 437.6052 248.785538 L 437.6052 279.475322
L 443.924118 249.690589 L 443.924118 280.504736
L 450 251.329819 L 450 282.369212
" clip-path="url(#p243a774d57)" style="fill: none; stroke: #2ca02c; stroke-width: 1.5; stroke-linecap: square"/> " clip-path="url(#ped58e94cc8)" style="fill: none; stroke: #2ca02c; stroke-width: 1.5; stroke-linecap: square"/>
</g> </g>
<g id="line2d_20"> <g id="line2d_20">
<path d="M 310.497746 251.8 <path d="M 310.497746 282.904
L 310.497746 25.44 L 310.497746 25.44
" clip-path="url(#p243a774d57)" style="fill: none; stroke-dasharray: 5.55,2.4; stroke-dashoffset: 0; stroke: #000000; stroke-opacity: 0.8; stroke-width: 1.5"/> " clip-path="url(#ped58e94cc8)" style="fill: none; stroke-dasharray: 5.55,2.4; stroke-dashoffset: 0; stroke: #000000; stroke-opacity: 0.8; stroke-width: 1.5"/>
</g> </g>
<g id="line2d_21"> <g id="line2d_21">
<path d="M 236.201099 251.8 <path d="M 236.201099 282.904
L 236.201099 25.44 L 236.201099 25.44
" clip-path="url(#p243a774d57)" style="fill: none; stroke-dasharray: 1.5,2.475; stroke-dashoffset: 0; stroke: #000000; stroke-opacity: 0.8; stroke-width: 1.5"/> " clip-path="url(#ped58e94cc8)" style="fill: none; stroke-dasharray: 1.5,2.475; stroke-dashoffset: 0; stroke: #000000; stroke-opacity: 0.8; stroke-width: 1.5"/>
</g> </g>
<g id="patch_3"> <g id="patch_3">
<path d="M 80.8294 251.8 <path d="M 80.8294 282.904
L 80.8294 25.44 L 80.8294 25.44
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_4"> <g id="patch_4">
<path d="M 450 251.8 <path d="M 450 282.904
L 450 25.44 L 450 25.44
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_5"> <g id="patch_5">
<path d="M 80.8294 251.8 <path d="M 80.8294 282.904
L 450 251.8 L 450 282.904
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_6"> <g id="patch_6">
@@ -1580,8 +1580,8 @@ L 293.436719 316.342187
</g> </g>
</g> </g>
<defs> <defs>
<clipPath id="p243a774d57"> <clipPath id="ped58e94cc8">
<rect x="80.8294" y="25.44" width="369.1706" height="226.36"/> <rect x="80.8294" y="25.44" width="369.1706" height="257.464"/>
</clipPath> </clipPath>
</defs> </defs>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 42 KiB

After

Width:  |  Height:  |  Size: 42 KiB

View File

@@ -6,7 +6,7 @@
<rdf:RDF xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:RDF xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<cc:Work> <cc:Work>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<dc:date>2024-10-25T15:21:01.218138</dc:date> <dc:date>2024-10-25T16:37:15.336467</dc:date>
<dc:format>image/svg+xml</dc:format> <dc:format>image/svg+xml</dc:format>
<dc:creator> <dc:creator>
<cc:Agent> <cc:Agent>
@@ -30,8 +30,8 @@ z
</g> </g>
<g id="axes_1"> <g id="axes_1">
<g id="patch_2"> <g id="patch_2">
<path d="M 80.8294 251.8 <path d="M 80.8294 282.904
L 450 251.8 L 450 282.904
L 450 25.44 L 450 25.44
L 80.8294 25.44 L 80.8294 25.44
z z
@@ -41,17 +41,17 @@ z
<g id="xtick_1"> <g id="xtick_1">
<g id="line2d_1"> <g id="line2d_1">
<defs> <defs>
<path id="m07be9e41ee" d="M 0 0 <path id="m16cca1c127" d="M 0 0
L 0 3.5 L 0 3.5
" style="stroke: #000000; stroke-width: 0.8"/> " style="stroke: #000000; stroke-width: 0.8"/>
</defs> </defs>
<g> <g>
<use xlink:href="#m07be9e41ee" x="80.8294" y="251.8" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m16cca1c127" x="80.8294" y="282.904" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_1"> <g id="text_1">
<!-- 0 --> <!-- 0 -->
<g transform="translate(77.64815 266.398437) scale(0.1 -0.1)"> <g transform="translate(77.64815 297.502437) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-30" d="M 2034 4250 <path id="DejaVuSans-30" d="M 2034 4250
Q 1547 4250 1301 3770 Q 1547 4250 1301 3770
@@ -82,12 +82,12 @@ z
<g id="xtick_2"> <g id="xtick_2">
<g id="line2d_2"> <g id="line2d_2">
<g> <g>
<use xlink:href="#m07be9e41ee" x="129.726168" y="251.8" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m16cca1c127" x="129.726168" y="282.904" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_2"> <g id="text_2">
<!-- 200 --> <!-- 200 -->
<g transform="translate(120.182418 266.398437) scale(0.1 -0.1)"> <g transform="translate(120.182418 297.502437) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-32" d="M 1228 531 <path id="DejaVuSans-32" d="M 1228 531
L 3431 531 L 3431 531
@@ -123,12 +123,12 @@ z
<g id="xtick_3"> <g id="xtick_3">
<g id="line2d_3"> <g id="line2d_3">
<g> <g>
<use xlink:href="#m07be9e41ee" x="178.622936" y="251.8" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m16cca1c127" x="178.622936" y="282.904" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_3"> <g id="text_3">
<!-- 400 --> <!-- 400 -->
<g transform="translate(169.079186 266.398437) scale(0.1 -0.1)"> <g transform="translate(169.079186 297.502437) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-34" d="M 2419 4116 <path id="DejaVuSans-34" d="M 2419 4116
L 825 1625 L 825 1625
@@ -159,12 +159,12 @@ z
<g id="xtick_4"> <g id="xtick_4">
<g id="line2d_4"> <g id="line2d_4">
<g> <g>
<use xlink:href="#m07be9e41ee" x="227.519705" y="251.8" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m16cca1c127" x="227.519705" y="282.904" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_4"> <g id="text_4">
<!-- 600 --> <!-- 600 -->
<g transform="translate(217.975955 266.398437) scale(0.1 -0.1)"> <g transform="translate(217.975955 297.502437) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-36" d="M 2113 2584 <path id="DejaVuSans-36" d="M 2113 2584
Q 1688 2584 1439 2293 Q 1688 2584 1439 2293
@@ -206,12 +206,12 @@ z
<g id="xtick_5"> <g id="xtick_5">
<g id="line2d_5"> <g id="line2d_5">
<g> <g>
<use xlink:href="#m07be9e41ee" x="276.416473" y="251.8" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m16cca1c127" x="276.416473" y="282.904" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_5"> <g id="text_5">
<!-- 800 --> <!-- 800 -->
<g transform="translate(266.872723 266.398437) scale(0.1 -0.1)"> <g transform="translate(266.872723 297.502437) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-38" d="M 2034 2216 <path id="DejaVuSans-38" d="M 2034 2216
Q 1584 2216 1326 1975 Q 1584 2216 1326 1975
@@ -262,12 +262,12 @@ z
<g id="xtick_6"> <g id="xtick_6">
<g id="line2d_6"> <g id="line2d_6">
<g> <g>
<use xlink:href="#m07be9e41ee" x="325.313241" y="251.8" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m16cca1c127" x="325.313241" y="282.904" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_6"> <g id="text_6">
<!-- 1000 --> <!-- 1000 -->
<g transform="translate(312.588241 266.398437) scale(0.1 -0.1)"> <g transform="translate(312.588241 297.502437) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-31" d="M 794 531 <path id="DejaVuSans-31" d="M 794 531
L 1825 531 L 1825 531
@@ -294,12 +294,12 @@ z
<g id="xtick_7"> <g id="xtick_7">
<g id="line2d_7"> <g id="line2d_7">
<g> <g>
<use xlink:href="#m07be9e41ee" x="374.210009" y="251.8" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m16cca1c127" x="374.210009" y="282.904" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_7"> <g id="text_7">
<!-- 1200 --> <!-- 1200 -->
<g transform="translate(361.485009 266.398437) scale(0.1 -0.1)"> <g transform="translate(361.485009 297.502437) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-31"/> <use xlink:href="#DejaVuSans-31"/>
<use xlink:href="#DejaVuSans-32" x="63.623047"/> <use xlink:href="#DejaVuSans-32" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/> <use xlink:href="#DejaVuSans-30" x="127.246094"/>
@@ -310,12 +310,12 @@ z
<g id="xtick_8"> <g id="xtick_8">
<g id="line2d_8"> <g id="line2d_8">
<g> <g>
<use xlink:href="#m07be9e41ee" x="423.106777" y="251.8" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m16cca1c127" x="423.106777" y="282.904" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_8"> <g id="text_8">
<!-- 1400 --> <!-- 1400 -->
<g transform="translate(410.381777 266.398437) scale(0.1 -0.1)"> <g transform="translate(410.381777 297.502437) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-31"/> <use xlink:href="#DejaVuSans-31"/>
<use xlink:href="#DejaVuSans-34" x="63.623047"/> <use xlink:href="#DejaVuSans-34" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/> <use xlink:href="#DejaVuSans-30" x="127.246094"/>
@@ -325,7 +325,7 @@ z
</g> </g>
<g id="text_9"> <g id="text_9">
<!-- stimulus frequency [Hz] --> <!-- stimulus frequency [Hz] -->
<g transform="translate(205.718606 280.076562) scale(0.1 -0.1)"> <g transform="translate(205.718606 311.180563) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-73" d="M 2834 3397 <path id="DejaVuSans-73" d="M 2834 3397
L 2834 2853 L 2834 2853
@@ -679,17 +679,17 @@ z
<g id="ytick_1"> <g id="ytick_1">
<g id="line2d_9"> <g id="line2d_9">
<defs> <defs>
<path id="m438167de80" d="M 0 0 <path id="m8939a22e03" d="M 0 0
L -3.5 0 L -3.5 0
" style="stroke: #000000; stroke-width: 0.8"/> " style="stroke: #000000; stroke-width: 0.8"/>
</defs> </defs>
<g> <g>
<use xlink:href="#m438167de80" x="80.8294" y="251.8" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m8939a22e03" x="80.8294" y="282.904" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_10"> <g id="text_10">
<!-- 0.00000 --> <!-- 0.00000 -->
<g transform="translate(32.476275 255.599219) scale(0.1 -0.1)"> <g transform="translate(32.476275 286.703219) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-2e" d="M 684 794 <path id="DejaVuSans-2e" d="M 684 794
L 1344 794 L 1344 794
@@ -712,12 +712,12 @@ z
<g id="ytick_2"> <g id="ytick_2">
<g id="line2d_10"> <g id="line2d_10">
<g> <g>
<use xlink:href="#m438167de80" x="80.8294" y="219.462857" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m8939a22e03" x="80.8294" y="246.123429" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_11"> <g id="text_11">
<!-- 0.00002 --> <!-- 0.00002 -->
<g transform="translate(32.476275 223.262076) scale(0.1 -0.1)"> <g transform="translate(32.476275 249.922647) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-30"/> <use xlink:href="#DejaVuSans-30"/>
<use xlink:href="#DejaVuSans-2e" x="63.623047"/> <use xlink:href="#DejaVuSans-2e" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="95.410156"/> <use xlink:href="#DejaVuSans-30" x="95.410156"/>
@@ -731,12 +731,12 @@ z
<g id="ytick_3"> <g id="ytick_3">
<g id="line2d_11"> <g id="line2d_11">
<g> <g>
<use xlink:href="#m438167de80" x="80.8294" y="187.125714" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m8939a22e03" x="80.8294" y="209.342857" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_12"> <g id="text_12">
<!-- 0.00004 --> <!-- 0.00004 -->
<g transform="translate(32.476275 190.924933) scale(0.1 -0.1)"> <g transform="translate(32.476275 213.142076) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-30"/> <use xlink:href="#DejaVuSans-30"/>
<use xlink:href="#DejaVuSans-2e" x="63.623047"/> <use xlink:href="#DejaVuSans-2e" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="95.410156"/> <use xlink:href="#DejaVuSans-30" x="95.410156"/>
@@ -750,12 +750,12 @@ z
<g id="ytick_4"> <g id="ytick_4">
<g id="line2d_12"> <g id="line2d_12">
<g> <g>
<use xlink:href="#m438167de80" x="80.8294" y="154.788571" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m8939a22e03" x="80.8294" y="172.562286" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_13"> <g id="text_13">
<!-- 0.00006 --> <!-- 0.00006 -->
<g transform="translate(32.476275 158.58779) scale(0.1 -0.1)"> <g transform="translate(32.476275 176.361504) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-30"/> <use xlink:href="#DejaVuSans-30"/>
<use xlink:href="#DejaVuSans-2e" x="63.623047"/> <use xlink:href="#DejaVuSans-2e" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="95.410156"/> <use xlink:href="#DejaVuSans-30" x="95.410156"/>
@@ -769,12 +769,12 @@ z
<g id="ytick_5"> <g id="ytick_5">
<g id="line2d_13"> <g id="line2d_13">
<g> <g>
<use xlink:href="#m438167de80" x="80.8294" y="122.451429" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m8939a22e03" x="80.8294" y="135.781714" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_14"> <g id="text_14">
<!-- 0.00008 --> <!-- 0.00008 -->
<g transform="translate(32.476275 126.250647) scale(0.1 -0.1)"> <g transform="translate(32.476275 139.580933) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-30"/> <use xlink:href="#DejaVuSans-30"/>
<use xlink:href="#DejaVuSans-2e" x="63.623047"/> <use xlink:href="#DejaVuSans-2e" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="95.410156"/> <use xlink:href="#DejaVuSans-30" x="95.410156"/>
@@ -788,12 +788,12 @@ z
<g id="ytick_6"> <g id="ytick_6">
<g id="line2d_14"> <g id="line2d_14">
<g> <g>
<use xlink:href="#m438167de80" x="80.8294" y="90.114286" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m8939a22e03" x="80.8294" y="99.001143" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_15"> <g id="text_15">
<!-- 0.00010 --> <!-- 0.00010 -->
<g transform="translate(32.476275 93.913504) scale(0.1 -0.1)"> <g transform="translate(32.476275 102.800362) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-30"/> <use xlink:href="#DejaVuSans-30"/>
<use xlink:href="#DejaVuSans-2e" x="63.623047"/> <use xlink:href="#DejaVuSans-2e" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="95.410156"/> <use xlink:href="#DejaVuSans-30" x="95.410156"/>
@@ -807,12 +807,12 @@ z
<g id="ytick_7"> <g id="ytick_7">
<g id="line2d_15"> <g id="line2d_15">
<g> <g>
<use xlink:href="#m438167de80" x="80.8294" y="57.777143" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m8939a22e03" x="80.8294" y="62.220571" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_16"> <g id="text_16">
<!-- 0.00012 --> <!-- 0.00012 -->
<g transform="translate(32.476275 61.576362) scale(0.1 -0.1)"> <g transform="translate(32.476275 66.01979) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-30"/> <use xlink:href="#DejaVuSans-30"/>
<use xlink:href="#DejaVuSans-2e" x="63.623047"/> <use xlink:href="#DejaVuSans-2e" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="95.410156"/> <use xlink:href="#DejaVuSans-30" x="95.410156"/>
@@ -826,7 +826,7 @@ z
<g id="ytick_8"> <g id="ytick_8">
<g id="line2d_16"> <g id="line2d_16">
<g> <g>
<use xlink:href="#m438167de80" x="80.8294" y="25.44" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m8939a22e03" x="80.8294" y="25.44" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_17"> <g id="text_17">
@@ -844,7 +844,7 @@ z
</g> </g>
<g id="text_18"> <g id="text_18">
<!-- power [$\frac{\mathrm{mV^2}}{\mathrm{Hz}}$] --> <!-- power [$\frac{\mathrm{mV^2}}{\mathrm{Hz}}$] -->
<g transform="translate(24.576275 169.32) rotate(-90) scale(0.1 -0.1)"> <g transform="translate(24.576275 184.872) rotate(-90) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-70" d="M 1159 525 <path id="DejaVuSans-70" d="M 1159 525
L 1159 -1331 L 1159 -1331
@@ -945,165 +945,165 @@ z
</g> </g>
</g> </g>
<g id="line2d_17"> <g id="line2d_17">
<path d="M 164.931841 251.238886 <path d="M 164.931841 282.265784
L 171.043937 251.095347 L 171.043937 282.102521
L 177.156033 250.814651 L 177.156033 281.783255
L 183.268129 250.767122 L 183.268129 281.729195
L 189.380225 250.905227 L 189.380225 281.886276
L 195.492321 251.039912 L 195.492321 282.039469
L 201.604417 251.081117 L 201.604417 282.086335
L 207.716514 250.809354 L 207.716514 281.777229
L 213.82861 251.276217 L 213.82861 282.308244
L 219.696222 250.759461 L 219.696222 281.720481
L 225.808318 250.863197 L 225.808318 281.838472
L 231.920414 251.333833 L 231.920414 282.373777
L 238.03251 251.265159 L 238.03251 282.295667
L 244.144606 251.048892 L 244.144606 282.049683
L 250.256702 251.129663 L 250.256702 282.141553
L 256.368798 251.033595 L 256.368798 282.032284
L 262.480894 250.811944 L 262.480894 281.780176
L 268.59299 250.99806 L 268.59299 281.991866
L 274.705086 251.115846 L 274.705086 282.125836
L 280.572698 251.23211 L 280.572698 282.258076
L 286.684794 250.921656 L 286.684794 281.904963
L 292.79689 251.317409 L 292.79689 282.355096
L 298.908986 251.28202 L 298.908986 282.314845
L 305.021082 250.823567 L 305.021082 281.793396
L 311.133178 251.296701 L 311.133178 282.331543
L 317.245274 250.551902 L 317.245274 281.484401
L 323.35737 251.500791 L 323.35737 282.563677
L 329.469466 251.050276 L 329.469466 282.051257
L 335.581562 251.255104 L 335.581562 282.284231
L 341.693658 250.701712 L 341.693658 281.654797
L 347.805754 250.664041 L 347.805754 281.611949
L 353.91785 250.711339 L 353.91785 281.665747
" clip-path="url(#peaa4353276)" style="fill: none; stroke: #1f77b4; stroke-width: 1.5; stroke-linecap: square"/> " clip-path="url(#p8425e7a7d8)" style="fill: none; stroke: #1f77b4; stroke-width: 1.5; stroke-linecap: square"/>
</g> </g>
<g id="line2d_18"> <g id="line2d_18">
<path d="M 164.442874 250.970655 <path d="M 164.442874 281.960695
L 170.55497 251.098343 L 170.55497 282.105928
L 176.667066 250.944911 L 176.667066 281.931414
L 182.779162 251.221574 L 182.779162 282.246093
L 188.891258 251.073497 L 188.891258 282.077669
L 195.003354 250.041389 L 195.003354 280.903739
L 201.11545 251.350021 L 201.11545 282.39219
L 207.227546 251.071801 L 207.227546 282.07574
L 213.339642 251.159164 L 213.339642 282.175107
L 219.451738 250.853625 L 219.451738 281.827584
L 225.563834 250.85874 L 225.563834 281.833402
L 231.431446 251.301048 L 231.431446 282.336487
L 237.543542 251.383566 L 237.543542 282.430344
L 243.655638 251.3348 L 243.655638 282.374877
L 249.767734 251.175274 L 249.767734 282.19343
L 255.87983 251.027129 L 255.87983 282.024929
L 261.991926 251.385198 L 261.991926 282.4322
L 267.859538 251.459993 L 267.859538 282.517272
L 273.971634 248.519752 L 273.971634 279.173015
L 280.08373 248.860268 L 280.08373 279.560322
L 285.951343 251.20632 L 285.951343 282.228743
L 292.063439 251.255057 L 292.063439 282.284177
L 298.175535 250.977806 L 298.175535 281.968829
L 304.287631 251.342418 L 304.287631 282.383542
L 310.399727 251.224788 L 310.399727 282.249749
L 316.511823 251.212047 L 316.511823 282.235256
L 322.623919 251.567414 L 322.623919 282.639454
L 328.736015 251.552979 L 328.736015 282.623036
L 334.848111 251.248528 L 334.848111 282.27675
L 340.960207 251.469203 L 340.960207 282.527748
L 347.072303 251.169629 L 347.072303 282.18701
L 353.184399 251.259785 L 353.184399 282.289554
L 359.296495 251.266486 L 359.296495 282.297176
L 365.408591 251.240703 L 365.408591 282.267851
L 371.520687 251.039534 L 371.520687 282.039039
L 377.632783 251.286333 L 377.632783 282.31975
L 383.744879 251.085714 L 383.744879 282.091565
L 389.856975 250.837044 L 389.856975 281.808724
L 395.969071 251.34163 L 395.969071 282.382646
L 402.081167 250.863694 L 402.081167 281.839037
L 407.948779 251.26338 L 407.948779 282.293644
L 414.060875 251.028305 L 414.060875 282.026267
L 420.172971 251.183472 L 420.172971 282.202755
L 426.285067 251.248585 L 426.285067 282.276815
L 432.397163 250.964274 L 432.397163 281.953437
L 438.509259 250.83697 L 438.509259 281.808641
L 444.621355 251.063163 L 444.621355 282.065915
L 450.733452 251.344363 L 450.733452 282.385754
" clip-path="url(#peaa4353276)" style="fill: none; stroke: #ff7f0e; stroke-width: 1.5; stroke-linecap: square"/> " clip-path="url(#p8425e7a7d8)" style="fill: none; stroke: #ff7f0e; stroke-width: 1.5; stroke-linecap: square"/>
</g> </g>
<g id="line2d_19"> <g id="line2d_19">
<path d="M 163.464938 251.175061 <path d="M 163.464938 282.193188
L 169.577034 251.203428 L 169.577034 282.225453
L 175.68913 251.035382 L 175.68913 282.034316
L 181.801226 251.27289 L 181.801226 282.30446
L 187.913322 251.045218 L 187.913322 282.045504
L 194.025418 251.127211 L 194.025418 282.138763
L 200.137514 251.14737 L 200.137514 282.161692
L 206.24961 251.226587 L 206.24961 282.251794
L 212.361706 251.133158 L 212.361706 282.145527
L 218.473803 251.238502 L 218.473803 282.265346
L 224.585899 251.043359 L 224.585899 282.04339
L 230.697995 251.204287 L 230.697995 282.22643
L 236.810091 251.340987 L 236.810091 282.381914
L 242.922187 251.284783 L 242.922187 282.317987
L 249.034283 251.316633 L 249.034283 282.354214
L 255.146379 251.227162 L 255.146379 282.252448
L 261.258475 251.019528 L 261.258475 282.016284
L 267.370571 251.217734 L 267.370571 282.241725
L 273.482667 251.467745 L 273.482667 282.52609
L 279.594763 246.758749 L 279.594763 277.170033
L 285.706859 251.471674 L 285.706859 282.530559
L 291.818955 251.260063 L 291.818955 282.289871
L 297.931051 251.162318 L 297.931051 282.178694
L 304.043147 251.278364 L 304.043147 282.310686
L 310.155243 250.887555 L 310.155243 281.866176
L 316.511823 251.552618 L 316.511823 282.622625
L 322.379435 251.304149 L 322.379435 282.340014
L 328.491531 251.303579 L 328.491531 282.339367
L 334.603627 251.158443 L 334.603627 282.174287
L 340.715723 250.739228 L 340.715723 281.697468
L 346.827819 251.366108 L 346.827819 282.410487
L 352.939915 251.098278 L 352.939915 282.105855
L 359.052011 251.130393 L 359.052011 282.142383
L 365.164107 251.30529 L 365.164107 282.341313
L 371.031719 251.112089 L 371.031719 282.121563
L 377.143815 251.45909 L 377.143815 282.516246
L 383.255911 251.258434 L 383.255911 282.288017
L 389.368007 251.184337 L 389.368007 282.203739
L 395.480103 251.428805 L 395.480103 282.481799
L 401.592199 250.997597 L 401.592199 281.991339
L 407.704295 251.144274 L 407.704295 282.158171
L 413.571908 251.181736 L 413.571908 282.200781
L 419.684004 251.313052 L 419.684004 282.350141
L 425.7961 251.181843 L 425.7961 282.200903
L 431.908196 251.528064 L 431.908196 282.594697
L 438.020292 251.236644 L 438.020292 282.263234
L 443.887904 251.192281 L 443.887904 282.212775
L 450 250.993328 L 450 281.986483
" clip-path="url(#peaa4353276)" style="fill: none; stroke: #2ca02c; stroke-width: 1.5; stroke-linecap: square"/> " clip-path="url(#p8425e7a7d8)" style="fill: none; stroke: #2ca02c; stroke-width: 1.5; stroke-linecap: square"/>
</g> </g>
<g id="line2d_20"> <g id="line2d_20">
<path d="M 311.86663 251.8 <path d="M 311.86663 282.904
L 311.86663 25.44 L 311.86663 25.44
" clip-path="url(#peaa4353276)" style="fill: none; stroke-dasharray: 5.55,2.4; stroke-dashoffset: 0; stroke: #000000; stroke-opacity: 0.8; stroke-width: 1.5"/> " clip-path="url(#p8425e7a7d8)" style="fill: none; stroke-dasharray: 5.55,2.4; stroke-dashoffset: 0; stroke: #000000; stroke-opacity: 0.8; stroke-width: 1.5"/>
</g> </g>
<g id="line2d_21"> <g id="line2d_21">
<path d="M 234.724338 251.8 <path d="M 234.724338 282.904
L 234.724338 25.44 L 234.724338 25.44
" clip-path="url(#peaa4353276)" style="fill: none; stroke-dasharray: 1.5,2.475; stroke-dashoffset: 0; stroke: #000000; stroke-opacity: 0.8; stroke-width: 1.5"/> " clip-path="url(#p8425e7a7d8)" style="fill: none; stroke-dasharray: 1.5,2.475; stroke-dashoffset: 0; stroke: #000000; stroke-opacity: 0.8; stroke-width: 1.5"/>
</g> </g>
<g id="patch_3"> <g id="patch_3">
<path d="M 80.8294 251.8 <path d="M 80.8294 282.904
L 80.8294 25.44 L 80.8294 25.44
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_4"> <g id="patch_4">
<path d="M 450 251.8 <path d="M 450 282.904
L 450 25.44 L 450 25.44
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_5"> <g id="patch_5">
<path d="M 80.8294 251.8 <path d="M 80.8294 282.904
L 450 251.8 L 450 282.904
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_6"> <g id="patch_6">
@@ -1614,8 +1614,8 @@ L 293.436719 316.342187
</g> </g>
</g> </g>
<defs> <defs>
<clipPath id="peaa4353276"> <clipPath id="p8425e7a7d8">
<rect x="80.8294" y="25.44" width="369.1706" height="226.36"/> <rect x="80.8294" y="25.44" width="369.1706" height="257.464"/>
</clipPath> </clipPath>
</defs> </defs>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 43 KiB

After

Width:  |  Height:  |  Size: 43 KiB

View File

@@ -6,7 +6,7 @@
<rdf:RDF xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:RDF xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<cc:Work> <cc:Work>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<dc:date>2024-10-25T15:21:02.714197</dc:date> <dc:date>2024-10-25T16:37:17.138037</dc:date>
<dc:format>image/svg+xml</dc:format> <dc:format>image/svg+xml</dc:format>
<dc:creator> <dc:creator>
<cc:Agent> <cc:Agent>
@@ -30,8 +30,8 @@ z
</g> </g>
<g id="axes_1"> <g id="axes_1">
<g id="patch_2"> <g id="patch_2">
<path d="M 80.8294 251.8 <path d="M 80.8294 282.904
L 437.22 251.8 L 437.22 282.904
L 437.22 25.44 L 437.22 25.44
L 80.8294 25.44 L 80.8294 25.44
z z
@@ -41,17 +41,17 @@ z
<g id="xtick_1"> <g id="xtick_1">
<g id="line2d_1"> <g id="line2d_1">
<defs> <defs>
<path id="m6d80579a7e" d="M 0 0 <path id="me370d34103" d="M 0 0
L 0 3.5 L 0 3.5
" style="stroke: #000000; stroke-width: 0.8"/> " style="stroke: #000000; stroke-width: 0.8"/>
</defs> </defs>
<g> <g>
<use xlink:href="#m6d80579a7e" x="80.8294" y="251.8" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#me370d34103" x="80.8294" y="282.904" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_1"> <g id="text_1">
<!-- 0 --> <!-- 0 -->
<g transform="translate(77.64815 266.398437) scale(0.1 -0.1)"> <g transform="translate(77.64815 297.502437) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-30" d="M 2034 4250 <path id="DejaVuSans-30" d="M 2034 4250
Q 1547 4250 1301 3770 Q 1547 4250 1301 3770
@@ -82,12 +82,12 @@ z
<g id="xtick_2"> <g id="xtick_2">
<g id="line2d_2"> <g id="line2d_2">
<g> <g>
<use xlink:href="#m6d80579a7e" x="125.378225" y="251.8" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#me370d34103" x="125.378225" y="282.904" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_2"> <g id="text_2">
<!-- 250 --> <!-- 250 -->
<g transform="translate(115.834475 266.398437) scale(0.1 -0.1)"> <g transform="translate(115.834475 297.502437) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-32" d="M 1228 531 <path id="DejaVuSans-32" d="M 1228 531
L 3431 531 L 3431 531
@@ -148,12 +148,12 @@ z
<g id="xtick_3"> <g id="xtick_3">
<g id="line2d_3"> <g id="line2d_3">
<g> <g>
<use xlink:href="#m6d80579a7e" x="169.92705" y="251.8" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#me370d34103" x="169.92705" y="282.904" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_3"> <g id="text_3">
<!-- 500 --> <!-- 500 -->
<g transform="translate(160.3833 266.398437) scale(0.1 -0.1)"> <g transform="translate(160.3833 297.502437) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-35"/> <use xlink:href="#DejaVuSans-35"/>
<use xlink:href="#DejaVuSans-30" x="63.623047"/> <use xlink:href="#DejaVuSans-30" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/> <use xlink:href="#DejaVuSans-30" x="127.246094"/>
@@ -163,12 +163,12 @@ z
<g id="xtick_4"> <g id="xtick_4">
<g id="line2d_4"> <g id="line2d_4">
<g> <g>
<use xlink:href="#m6d80579a7e" x="214.475875" y="251.8" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#me370d34103" x="214.475875" y="282.904" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_4"> <g id="text_4">
<!-- 750 --> <!-- 750 -->
<g transform="translate(204.932125 266.398437) scale(0.1 -0.1)"> <g transform="translate(204.932125 297.502437) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-37" d="M 525 4666 <path id="DejaVuSans-37" d="M 525 4666
L 3525 4666 L 3525 4666
@@ -190,12 +190,12 @@ z
<g id="xtick_5"> <g id="xtick_5">
<g id="line2d_5"> <g id="line2d_5">
<g> <g>
<use xlink:href="#m6d80579a7e" x="259.0247" y="251.8" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#me370d34103" x="259.0247" y="282.904" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_5"> <g id="text_5">
<!-- 1000 --> <!-- 1000 -->
<g transform="translate(246.2997 266.398437) scale(0.1 -0.1)"> <g transform="translate(246.2997 297.502437) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-31" d="M 794 531 <path id="DejaVuSans-31" d="M 794 531
L 1825 531 L 1825 531
@@ -222,12 +222,12 @@ z
<g id="xtick_6"> <g id="xtick_6">
<g id="line2d_6"> <g id="line2d_6">
<g> <g>
<use xlink:href="#m6d80579a7e" x="303.573525" y="251.8" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#me370d34103" x="303.573525" y="282.904" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_6"> <g id="text_6">
<!-- 1250 --> <!-- 1250 -->
<g transform="translate(290.848525 266.398437) scale(0.1 -0.1)"> <g transform="translate(290.848525 297.502437) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-31"/> <use xlink:href="#DejaVuSans-31"/>
<use xlink:href="#DejaVuSans-32" x="63.623047"/> <use xlink:href="#DejaVuSans-32" x="63.623047"/>
<use xlink:href="#DejaVuSans-35" x="127.246094"/> <use xlink:href="#DejaVuSans-35" x="127.246094"/>
@@ -238,12 +238,12 @@ z
<g id="xtick_7"> <g id="xtick_7">
<g id="line2d_7"> <g id="line2d_7">
<g> <g>
<use xlink:href="#m6d80579a7e" x="348.12235" y="251.8" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#me370d34103" x="348.12235" y="282.904" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_7"> <g id="text_7">
<!-- 1500 --> <!-- 1500 -->
<g transform="translate(335.39735 266.398437) scale(0.1 -0.1)"> <g transform="translate(335.39735 297.502437) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-31"/> <use xlink:href="#DejaVuSans-31"/>
<use xlink:href="#DejaVuSans-35" x="63.623047"/> <use xlink:href="#DejaVuSans-35" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/> <use xlink:href="#DejaVuSans-30" x="127.246094"/>
@@ -254,12 +254,12 @@ z
<g id="xtick_8"> <g id="xtick_8">
<g id="line2d_8"> <g id="line2d_8">
<g> <g>
<use xlink:href="#m6d80579a7e" x="392.671175" y="251.8" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#me370d34103" x="392.671175" y="282.904" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_8"> <g id="text_8">
<!-- 1750 --> <!-- 1750 -->
<g transform="translate(379.946175 266.398437) scale(0.1 -0.1)"> <g transform="translate(379.946175 297.502437) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-31"/> <use xlink:href="#DejaVuSans-31"/>
<use xlink:href="#DejaVuSans-37" x="63.623047"/> <use xlink:href="#DejaVuSans-37" x="63.623047"/>
<use xlink:href="#DejaVuSans-35" x="127.246094"/> <use xlink:href="#DejaVuSans-35" x="127.246094"/>
@@ -270,12 +270,12 @@ z
<g id="xtick_9"> <g id="xtick_9">
<g id="line2d_9"> <g id="line2d_9">
<g> <g>
<use xlink:href="#m6d80579a7e" x="437.22" y="251.8" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#me370d34103" x="437.22" y="282.904" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_9"> <g id="text_9">
<!-- 2000 --> <!-- 2000 -->
<g transform="translate(424.495 266.398437) scale(0.1 -0.1)"> <g transform="translate(424.495 297.502437) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-32"/> <use xlink:href="#DejaVuSans-32"/>
<use xlink:href="#DejaVuSans-30" x="63.623047"/> <use xlink:href="#DejaVuSans-30" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/> <use xlink:href="#DejaVuSans-30" x="127.246094"/>
@@ -285,7 +285,7 @@ z
</g> </g>
<g id="text_10"> <g id="text_10">
<!-- stimulus frequency [Hz] --> <!-- stimulus frequency [Hz] -->
<g transform="translate(199.328606 280.076562) scale(0.1 -0.1)"> <g transform="translate(199.328606 311.180563) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-73" d="M 2834 3397 <path id="DejaVuSans-73" d="M 2834 3397
L 2834 2853 L 2834 2853
@@ -639,17 +639,17 @@ z
<g id="ytick_1"> <g id="ytick_1">
<g id="line2d_10"> <g id="line2d_10">
<defs> <defs>
<path id="mc35b174bf3" d="M 0 0 <path id="m6042055348" d="M 0 0
L -3.5 0 L -3.5 0
" style="stroke: #000000; stroke-width: 0.8"/> " style="stroke: #000000; stroke-width: 0.8"/>
</defs> </defs>
<g> <g>
<use xlink:href="#mc35b174bf3" x="80.8294" y="251.8" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m6042055348" x="80.8294" y="282.904" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_11"> <g id="text_11">
<!-- 0.00000 --> <!-- 0.00000 -->
<g transform="translate(32.476275 255.599219) scale(0.1 -0.1)"> <g transform="translate(32.476275 286.703219) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-2e" d="M 684 794 <path id="DejaVuSans-2e" d="M 684 794
L 1344 794 L 1344 794
@@ -672,12 +672,12 @@ z
<g id="ytick_2"> <g id="ytick_2">
<g id="line2d_11"> <g id="line2d_11">
<g> <g>
<use xlink:href="#mc35b174bf3" x="80.8294" y="219.462857" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m6042055348" x="80.8294" y="246.123429" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_12"> <g id="text_12">
<!-- 0.00002 --> <!-- 0.00002 -->
<g transform="translate(32.476275 223.262076) scale(0.1 -0.1)"> <g transform="translate(32.476275 249.922647) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-30"/> <use xlink:href="#DejaVuSans-30"/>
<use xlink:href="#DejaVuSans-2e" x="63.623047"/> <use xlink:href="#DejaVuSans-2e" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="95.410156"/> <use xlink:href="#DejaVuSans-30" x="95.410156"/>
@@ -691,12 +691,12 @@ z
<g id="ytick_3"> <g id="ytick_3">
<g id="line2d_12"> <g id="line2d_12">
<g> <g>
<use xlink:href="#mc35b174bf3" x="80.8294" y="187.125714" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m6042055348" x="80.8294" y="209.342857" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_13"> <g id="text_13">
<!-- 0.00004 --> <!-- 0.00004 -->
<g transform="translate(32.476275 190.924933) scale(0.1 -0.1)"> <g transform="translate(32.476275 213.142076) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-34" d="M 2419 4116 <path id="DejaVuSans-34" d="M 2419 4116
L 825 1625 L 825 1625
@@ -731,12 +731,12 @@ z
<g id="ytick_4"> <g id="ytick_4">
<g id="line2d_13"> <g id="line2d_13">
<g> <g>
<use xlink:href="#mc35b174bf3" x="80.8294" y="154.788571" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m6042055348" x="80.8294" y="172.562286" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_14"> <g id="text_14">
<!-- 0.00006 --> <!-- 0.00006 -->
<g transform="translate(32.476275 158.58779) scale(0.1 -0.1)"> <g transform="translate(32.476275 176.361504) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-36" d="M 2113 2584 <path id="DejaVuSans-36" d="M 2113 2584
Q 1688 2584 1439 2293 Q 1688 2584 1439 2293
@@ -782,12 +782,12 @@ z
<g id="ytick_5"> <g id="ytick_5">
<g id="line2d_14"> <g id="line2d_14">
<g> <g>
<use xlink:href="#mc35b174bf3" x="80.8294" y="122.451429" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m6042055348" x="80.8294" y="135.781714" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_15"> <g id="text_15">
<!-- 0.00008 --> <!-- 0.00008 -->
<g transform="translate(32.476275 126.250647) scale(0.1 -0.1)"> <g transform="translate(32.476275 139.580933) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-38" d="M 2034 2216 <path id="DejaVuSans-38" d="M 2034 2216
Q 1584 2216 1326 1975 Q 1584 2216 1326 1975
@@ -842,12 +842,12 @@ z
<g id="ytick_6"> <g id="ytick_6">
<g id="line2d_15"> <g id="line2d_15">
<g> <g>
<use xlink:href="#mc35b174bf3" x="80.8294" y="90.114286" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m6042055348" x="80.8294" y="99.001143" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_16"> <g id="text_16">
<!-- 0.00010 --> <!-- 0.00010 -->
<g transform="translate(32.476275 93.913504) scale(0.1 -0.1)"> <g transform="translate(32.476275 102.800362) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-30"/> <use xlink:href="#DejaVuSans-30"/>
<use xlink:href="#DejaVuSans-2e" x="63.623047"/> <use xlink:href="#DejaVuSans-2e" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="95.410156"/> <use xlink:href="#DejaVuSans-30" x="95.410156"/>
@@ -861,12 +861,12 @@ z
<g id="ytick_7"> <g id="ytick_7">
<g id="line2d_16"> <g id="line2d_16">
<g> <g>
<use xlink:href="#mc35b174bf3" x="80.8294" y="57.777143" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m6042055348" x="80.8294" y="62.220571" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_17"> <g id="text_17">
<!-- 0.00012 --> <!-- 0.00012 -->
<g transform="translate(32.476275 61.576362) scale(0.1 -0.1)"> <g transform="translate(32.476275 66.01979) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-30"/> <use xlink:href="#DejaVuSans-30"/>
<use xlink:href="#DejaVuSans-2e" x="63.623047"/> <use xlink:href="#DejaVuSans-2e" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="95.410156"/> <use xlink:href="#DejaVuSans-30" x="95.410156"/>
@@ -880,7 +880,7 @@ z
<g id="ytick_8"> <g id="ytick_8">
<g id="line2d_17"> <g id="line2d_17">
<g> <g>
<use xlink:href="#mc35b174bf3" x="80.8294" y="25.44" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m6042055348" x="80.8294" y="25.44" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_18"> <g id="text_18">
@@ -898,7 +898,7 @@ z
</g> </g>
<g id="text_19"> <g id="text_19">
<!-- power [$\frac{\mathrm{mV^2}}{\mathrm{Hz}}$] --> <!-- power [$\frac{\mathrm{mV^2}}{\mathrm{Hz}}$] -->
<g transform="translate(24.576275 169.32) rotate(-90) scale(0.1 -0.1)"> <g transform="translate(24.576275 184.872) rotate(-90) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-70" d="M 1159 525 <path id="DejaVuSans-70" d="M 1159 525
L 1159 -1331 L 1159 -1331
@@ -999,45 +999,45 @@ z
</g> </g>
</g> </g>
<g id="line2d_18"> <g id="line2d_18">
<path d="M 134.822576 251.76591 <path d="M 134.822576 282.865226
L 139.277458 251.748501 L 139.277458 282.845425
L 143.732341 251.746654 L 143.732341 282.843324
L 148.187223 251.777426 L 148.187223 282.878324
L 152.642106 251.730617 L 152.642106 282.825083
L 157.096988 251.766293 L 157.096988 282.865661
L 161.551871 251.77747 L 161.551871 282.878375
L 166.006753 251.784671 L 166.006753 282.886565
L 170.461636 251.781694 L 170.461636 282.883178
L 174.916518 251.788974 L 174.916518 282.891459
L 179.371401 251.787297 L 179.371401 282.889552
L 183.826283 251.785108 L 183.826283 282.887062
L 188.459361 251.796346 L 188.459361 282.899844
" clip-path="url(#p3e8bc912f2)" style="fill: none; stroke: #1f77b4; stroke-width: 1.5; stroke-linecap: square"/> " clip-path="url(#p7325166283)" style="fill: none; stroke: #1f77b4; stroke-width: 1.5; stroke-linecap: square"/>
</g> </g>
<g id="line2d_19"/> <g id="line2d_19"/>
<g id="line2d_20"> <g id="line2d_20">
<path d="M 249.223958 251.8 <path d="M 249.223958 282.904
L 249.223958 25.44 L 249.223958 25.44
" clip-path="url(#p3e8bc912f2)" style="fill: none; stroke-dasharray: 5.55,2.4; stroke-dashoffset: 0; stroke: #000000; stroke-opacity: 0.8; stroke-width: 1.5"/> " clip-path="url(#p7325166283)" style="fill: none; stroke-dasharray: 5.55,2.4; stroke-dashoffset: 0; stroke: #000000; stroke-opacity: 0.8; stroke-width: 1.5"/>
</g> </g>
<g id="line2d_21"> <g id="line2d_21">
<path d="M 179.933401 251.8 <path d="M 179.933401 282.904
L 179.933401 25.44 L 179.933401 25.44
" clip-path="url(#p3e8bc912f2)" style="fill: none; stroke-dasharray: 1.5,2.475; stroke-dashoffset: 0; stroke: #000000; stroke-opacity: 0.8; stroke-width: 1.5"/> " clip-path="url(#p7325166283)" style="fill: none; stroke-dasharray: 1.5,2.475; stroke-dashoffset: 0; stroke: #000000; stroke-opacity: 0.8; stroke-width: 1.5"/>
</g> </g>
<g id="patch_3"> <g id="patch_3">
<path d="M 80.8294 251.8 <path d="M 80.8294 282.904
L 80.8294 25.44 L 80.8294 25.44
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_4"> <g id="patch_4">
<path d="M 437.22 251.8 <path d="M 437.22 282.904
L 437.22 25.44 L 437.22 25.44
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_5"> <g id="patch_5">
<path d="M 80.8294 251.8 <path d="M 80.8294 282.904
L 437.22 251.8 L 437.22 282.904
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_6"> <g id="patch_6">
@@ -1448,8 +1448,8 @@ z
</g> </g>
</g> </g>
<defs> <defs>
<clipPath id="p3e8bc912f2"> <clipPath id="p7325166283">
<rect x="80.8294" y="25.44" width="356.3906" height="226.36"/> <rect x="80.8294" y="25.44" width="356.3906" height="257.464"/>
</clipPath> </clipPath>
</defs> </defs>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 38 KiB

After

Width:  |  Height:  |  Size: 38 KiB

View File

@@ -6,7 +6,7 @@
<rdf:RDF xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:RDF xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<cc:Work> <cc:Work>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<dc:date>2024-10-25T15:21:03.509767</dc:date> <dc:date>2024-10-25T16:37:18.190244</dc:date>
<dc:format>image/svg+xml</dc:format> <dc:format>image/svg+xml</dc:format>
<dc:creator> <dc:creator>
<cc:Agent> <cc:Agent>
@@ -30,8 +30,8 @@ z
</g> </g>
<g id="axes_1"> <g id="axes_1">
<g id="patch_2"> <g id="patch_2">
<path d="M 80.8294 251.8 <path d="M 80.8294 282.904
L 437.22 251.8 L 437.22 282.904
L 437.22 25.44 L 437.22 25.44
L 80.8294 25.44 L 80.8294 25.44
z z
@@ -41,17 +41,17 @@ z
<g id="xtick_1"> <g id="xtick_1">
<g id="line2d_1"> <g id="line2d_1">
<defs> <defs>
<path id="mbb27083a6c" d="M 0 0 <path id="mbaa781110f" d="M 0 0
L 0 3.5 L 0 3.5
" style="stroke: #000000; stroke-width: 0.8"/> " style="stroke: #000000; stroke-width: 0.8"/>
</defs> </defs>
<g> <g>
<use xlink:href="#mbb27083a6c" x="80.8294" y="251.8" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mbaa781110f" x="80.8294" y="282.904" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_1"> <g id="text_1">
<!-- 0 --> <!-- 0 -->
<g transform="translate(77.64815 266.398437) scale(0.1 -0.1)"> <g transform="translate(77.64815 297.502437) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-30" d="M 2034 4250 <path id="DejaVuSans-30" d="M 2034 4250
Q 1547 4250 1301 3770 Q 1547 4250 1301 3770
@@ -82,12 +82,12 @@ z
<g id="xtick_2"> <g id="xtick_2">
<g id="line2d_2"> <g id="line2d_2">
<g> <g>
<use xlink:href="#mbb27083a6c" x="125.378225" y="251.8" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mbaa781110f" x="125.378225" y="282.904" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_2"> <g id="text_2">
<!-- 250 --> <!-- 250 -->
<g transform="translate(115.834475 266.398437) scale(0.1 -0.1)"> <g transform="translate(115.834475 297.502437) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-32" d="M 1228 531 <path id="DejaVuSans-32" d="M 1228 531
L 3431 531 L 3431 531
@@ -148,12 +148,12 @@ z
<g id="xtick_3"> <g id="xtick_3">
<g id="line2d_3"> <g id="line2d_3">
<g> <g>
<use xlink:href="#mbb27083a6c" x="169.92705" y="251.8" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mbaa781110f" x="169.92705" y="282.904" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_3"> <g id="text_3">
<!-- 500 --> <!-- 500 -->
<g transform="translate(160.3833 266.398437) scale(0.1 -0.1)"> <g transform="translate(160.3833 297.502437) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-35"/> <use xlink:href="#DejaVuSans-35"/>
<use xlink:href="#DejaVuSans-30" x="63.623047"/> <use xlink:href="#DejaVuSans-30" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/> <use xlink:href="#DejaVuSans-30" x="127.246094"/>
@@ -163,12 +163,12 @@ z
<g id="xtick_4"> <g id="xtick_4">
<g id="line2d_4"> <g id="line2d_4">
<g> <g>
<use xlink:href="#mbb27083a6c" x="214.475875" y="251.8" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mbaa781110f" x="214.475875" y="282.904" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_4"> <g id="text_4">
<!-- 750 --> <!-- 750 -->
<g transform="translate(204.932125 266.398437) scale(0.1 -0.1)"> <g transform="translate(204.932125 297.502437) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-37" d="M 525 4666 <path id="DejaVuSans-37" d="M 525 4666
L 3525 4666 L 3525 4666
@@ -190,12 +190,12 @@ z
<g id="xtick_5"> <g id="xtick_5">
<g id="line2d_5"> <g id="line2d_5">
<g> <g>
<use xlink:href="#mbb27083a6c" x="259.0247" y="251.8" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mbaa781110f" x="259.0247" y="282.904" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_5"> <g id="text_5">
<!-- 1000 --> <!-- 1000 -->
<g transform="translate(246.2997 266.398437) scale(0.1 -0.1)"> <g transform="translate(246.2997 297.502437) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-31" d="M 794 531 <path id="DejaVuSans-31" d="M 794 531
L 1825 531 L 1825 531
@@ -222,12 +222,12 @@ z
<g id="xtick_6"> <g id="xtick_6">
<g id="line2d_6"> <g id="line2d_6">
<g> <g>
<use xlink:href="#mbb27083a6c" x="303.573525" y="251.8" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mbaa781110f" x="303.573525" y="282.904" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_6"> <g id="text_6">
<!-- 1250 --> <!-- 1250 -->
<g transform="translate(290.848525 266.398437) scale(0.1 -0.1)"> <g transform="translate(290.848525 297.502437) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-31"/> <use xlink:href="#DejaVuSans-31"/>
<use xlink:href="#DejaVuSans-32" x="63.623047"/> <use xlink:href="#DejaVuSans-32" x="63.623047"/>
<use xlink:href="#DejaVuSans-35" x="127.246094"/> <use xlink:href="#DejaVuSans-35" x="127.246094"/>
@@ -238,12 +238,12 @@ z
<g id="xtick_7"> <g id="xtick_7">
<g id="line2d_7"> <g id="line2d_7">
<g> <g>
<use xlink:href="#mbb27083a6c" x="348.12235" y="251.8" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mbaa781110f" x="348.12235" y="282.904" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_7"> <g id="text_7">
<!-- 1500 --> <!-- 1500 -->
<g transform="translate(335.39735 266.398437) scale(0.1 -0.1)"> <g transform="translate(335.39735 297.502437) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-31"/> <use xlink:href="#DejaVuSans-31"/>
<use xlink:href="#DejaVuSans-35" x="63.623047"/> <use xlink:href="#DejaVuSans-35" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/> <use xlink:href="#DejaVuSans-30" x="127.246094"/>
@@ -254,12 +254,12 @@ z
<g id="xtick_8"> <g id="xtick_8">
<g id="line2d_8"> <g id="line2d_8">
<g> <g>
<use xlink:href="#mbb27083a6c" x="392.671175" y="251.8" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mbaa781110f" x="392.671175" y="282.904" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_8"> <g id="text_8">
<!-- 1750 --> <!-- 1750 -->
<g transform="translate(379.946175 266.398437) scale(0.1 -0.1)"> <g transform="translate(379.946175 297.502437) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-31"/> <use xlink:href="#DejaVuSans-31"/>
<use xlink:href="#DejaVuSans-37" x="63.623047"/> <use xlink:href="#DejaVuSans-37" x="63.623047"/>
<use xlink:href="#DejaVuSans-35" x="127.246094"/> <use xlink:href="#DejaVuSans-35" x="127.246094"/>
@@ -270,12 +270,12 @@ z
<g id="xtick_9"> <g id="xtick_9">
<g id="line2d_9"> <g id="line2d_9">
<g> <g>
<use xlink:href="#mbb27083a6c" x="437.22" y="251.8" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mbaa781110f" x="437.22" y="282.904" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_9"> <g id="text_9">
<!-- 2000 --> <!-- 2000 -->
<g transform="translate(424.495 266.398437) scale(0.1 -0.1)"> <g transform="translate(424.495 297.502437) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-32"/> <use xlink:href="#DejaVuSans-32"/>
<use xlink:href="#DejaVuSans-30" x="63.623047"/> <use xlink:href="#DejaVuSans-30" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/> <use xlink:href="#DejaVuSans-30" x="127.246094"/>
@@ -285,7 +285,7 @@ z
</g> </g>
<g id="text_10"> <g id="text_10">
<!-- stimulus frequency [Hz] --> <!-- stimulus frequency [Hz] -->
<g transform="translate(199.328606 280.076562) scale(0.1 -0.1)"> <g transform="translate(199.328606 311.180563) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-73" d="M 2834 3397 <path id="DejaVuSans-73" d="M 2834 3397
L 2834 2853 L 2834 2853
@@ -639,17 +639,17 @@ z
<g id="ytick_1"> <g id="ytick_1">
<g id="line2d_10"> <g id="line2d_10">
<defs> <defs>
<path id="m0730f3dfd0" d="M 0 0 <path id="m280dae00c3" d="M 0 0
L -3.5 0 L -3.5 0
" style="stroke: #000000; stroke-width: 0.8"/> " style="stroke: #000000; stroke-width: 0.8"/>
</defs> </defs>
<g> <g>
<use xlink:href="#m0730f3dfd0" x="80.8294" y="251.8" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m280dae00c3" x="80.8294" y="282.904" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_11"> <g id="text_11">
<!-- 0.00000 --> <!-- 0.00000 -->
<g transform="translate(32.476275 255.599219) scale(0.1 -0.1)"> <g transform="translate(32.476275 286.703219) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-2e" d="M 684 794 <path id="DejaVuSans-2e" d="M 684 794
L 1344 794 L 1344 794
@@ -672,12 +672,12 @@ z
<g id="ytick_2"> <g id="ytick_2">
<g id="line2d_11"> <g id="line2d_11">
<g> <g>
<use xlink:href="#m0730f3dfd0" x="80.8294" y="219.462857" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m280dae00c3" x="80.8294" y="246.123429" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_12"> <g id="text_12">
<!-- 0.00002 --> <!-- 0.00002 -->
<g transform="translate(32.476275 223.262076) scale(0.1 -0.1)"> <g transform="translate(32.476275 249.922647) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-30"/> <use xlink:href="#DejaVuSans-30"/>
<use xlink:href="#DejaVuSans-2e" x="63.623047"/> <use xlink:href="#DejaVuSans-2e" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="95.410156"/> <use xlink:href="#DejaVuSans-30" x="95.410156"/>
@@ -691,12 +691,12 @@ z
<g id="ytick_3"> <g id="ytick_3">
<g id="line2d_12"> <g id="line2d_12">
<g> <g>
<use xlink:href="#m0730f3dfd0" x="80.8294" y="187.125714" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m280dae00c3" x="80.8294" y="209.342857" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_13"> <g id="text_13">
<!-- 0.00004 --> <!-- 0.00004 -->
<g transform="translate(32.476275 190.924933) scale(0.1 -0.1)"> <g transform="translate(32.476275 213.142076) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-34" d="M 2419 4116 <path id="DejaVuSans-34" d="M 2419 4116
L 825 1625 L 825 1625
@@ -731,12 +731,12 @@ z
<g id="ytick_4"> <g id="ytick_4">
<g id="line2d_13"> <g id="line2d_13">
<g> <g>
<use xlink:href="#m0730f3dfd0" x="80.8294" y="154.788571" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m280dae00c3" x="80.8294" y="172.562286" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_14"> <g id="text_14">
<!-- 0.00006 --> <!-- 0.00006 -->
<g transform="translate(32.476275 158.58779) scale(0.1 -0.1)"> <g transform="translate(32.476275 176.361504) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-36" d="M 2113 2584 <path id="DejaVuSans-36" d="M 2113 2584
Q 1688 2584 1439 2293 Q 1688 2584 1439 2293
@@ -782,12 +782,12 @@ z
<g id="ytick_5"> <g id="ytick_5">
<g id="line2d_14"> <g id="line2d_14">
<g> <g>
<use xlink:href="#m0730f3dfd0" x="80.8294" y="122.451429" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m280dae00c3" x="80.8294" y="135.781714" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_15"> <g id="text_15">
<!-- 0.00008 --> <!-- 0.00008 -->
<g transform="translate(32.476275 126.250647) scale(0.1 -0.1)"> <g transform="translate(32.476275 139.580933) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-38" d="M 2034 2216 <path id="DejaVuSans-38" d="M 2034 2216
Q 1584 2216 1326 1975 Q 1584 2216 1326 1975
@@ -842,12 +842,12 @@ z
<g id="ytick_6"> <g id="ytick_6">
<g id="line2d_15"> <g id="line2d_15">
<g> <g>
<use xlink:href="#m0730f3dfd0" x="80.8294" y="90.114286" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m280dae00c3" x="80.8294" y="99.001143" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_16"> <g id="text_16">
<!-- 0.00010 --> <!-- 0.00010 -->
<g transform="translate(32.476275 93.913504) scale(0.1 -0.1)"> <g transform="translate(32.476275 102.800362) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-30"/> <use xlink:href="#DejaVuSans-30"/>
<use xlink:href="#DejaVuSans-2e" x="63.623047"/> <use xlink:href="#DejaVuSans-2e" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="95.410156"/> <use xlink:href="#DejaVuSans-30" x="95.410156"/>
@@ -861,12 +861,12 @@ z
<g id="ytick_7"> <g id="ytick_7">
<g id="line2d_16"> <g id="line2d_16">
<g> <g>
<use xlink:href="#m0730f3dfd0" x="80.8294" y="57.777143" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m280dae00c3" x="80.8294" y="62.220571" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_17"> <g id="text_17">
<!-- 0.00012 --> <!-- 0.00012 -->
<g transform="translate(32.476275 61.576362) scale(0.1 -0.1)"> <g transform="translate(32.476275 66.01979) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-30"/> <use xlink:href="#DejaVuSans-30"/>
<use xlink:href="#DejaVuSans-2e" x="63.623047"/> <use xlink:href="#DejaVuSans-2e" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="95.410156"/> <use xlink:href="#DejaVuSans-30" x="95.410156"/>
@@ -880,7 +880,7 @@ z
<g id="ytick_8"> <g id="ytick_8">
<g id="line2d_17"> <g id="line2d_17">
<g> <g>
<use xlink:href="#m0730f3dfd0" x="80.8294" y="25.44" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m280dae00c3" x="80.8294" y="25.44" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_18"> <g id="text_18">
@@ -898,7 +898,7 @@ z
</g> </g>
<g id="text_19"> <g id="text_19">
<!-- power [$\frac{\mathrm{mV^2}}{\mathrm{Hz}}$] --> <!-- power [$\frac{\mathrm{mV^2}}{\mathrm{Hz}}$] -->
<g transform="translate(24.576275 169.32) rotate(-90) scale(0.1 -0.1)"> <g transform="translate(24.576275 184.872) rotate(-90) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-70" d="M 1159 525 <path id="DejaVuSans-70" d="M 1159 525
L 1159 -1331 L 1159 -1331
@@ -1001,26 +1001,26 @@ z
<g id="line2d_18"/> <g id="line2d_18"/>
<g id="line2d_19"/> <g id="line2d_19"/>
<g id="line2d_20"> <g id="line2d_20">
<path d="M 249.223958 251.8 <path d="M 249.223958 282.904
L 249.223958 25.44 L 249.223958 25.44
" clip-path="url(#p94cc79e82b)" style="fill: none; stroke-dasharray: 5.55,2.4; stroke-dashoffset: 0; stroke: #000000; stroke-opacity: 0.8; stroke-width: 1.5"/> " clip-path="url(#p5e717e9999)" style="fill: none; stroke-dasharray: 5.55,2.4; stroke-dashoffset: 0; stroke: #000000; stroke-opacity: 0.8; stroke-width: 1.5"/>
</g> </g>
<g id="line2d_21"> <g id="line2d_21">
<path clip-path="url(#p94cc79e82b)" style="fill: none; stroke-dasharray: 1.5,2.475; stroke-dashoffset: 0; stroke: #000000; stroke-opacity: 0.8; stroke-width: 1.5"/> <path clip-path="url(#p5e717e9999)" style="fill: none; stroke-dasharray: 1.5,2.475; stroke-dashoffset: 0; stroke: #000000; stroke-opacity: 0.8; stroke-width: 1.5"/>
</g> </g>
<g id="patch_3"> <g id="patch_3">
<path d="M 80.8294 251.8 <path d="M 80.8294 282.904
L 80.8294 25.44 L 80.8294 25.44
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_4"> <g id="patch_4">
<path d="M 437.22 251.8 <path d="M 437.22 282.904
L 437.22 25.44 L 437.22 25.44
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_5"> <g id="patch_5">
<path d="M 80.8294 251.8 <path d="M 80.8294 282.904
L 437.22 251.8 L 437.22 282.904
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_6"> <g id="patch_6">
@@ -1450,8 +1450,8 @@ z
</g> </g>
</g> </g>
<defs> <defs>
<clipPath id="p94cc79e82b"> <clipPath id="p5e717e9999">
<rect x="80.8294" y="25.44" width="356.3906" height="226.36"/> <rect x="80.8294" y="25.44" width="356.3906" height="257.464"/>
</clipPath> </clipPath>
</defs> </defs>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 38 KiB

After

Width:  |  Height:  |  Size: 38 KiB

View File

@@ -6,7 +6,7 @@
<rdf:RDF xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:RDF xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<cc:Work> <cc:Work>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<dc:date>2024-10-25T15:21:34.441160</dc:date> <dc:date>2024-10-25T16:37:48.760157</dc:date>
<dc:format>image/svg+xml</dc:format> <dc:format>image/svg+xml</dc:format>
<dc:creator> <dc:creator>
<cc:Agent> <cc:Agent>
@@ -30,8 +30,8 @@ z
</g> </g>
<g id="axes_1"> <g id="axes_1">
<g id="patch_2"> <g id="patch_2">
<path d="M 80.8294 251.8 <path d="M 80.8294 282.904
L 450 251.8 L 450 282.904
L 450 25.44 L 450 25.44
L 80.8294 25.44 L 80.8294 25.44
z z
@@ -41,17 +41,17 @@ z
<g id="xtick_1"> <g id="xtick_1">
<g id="line2d_1"> <g id="line2d_1">
<defs> <defs>
<path id="m7d985aa407" d="M 0 0 <path id="m461c965a23" d="M 0 0
L 0 3.5 L 0 3.5
" style="stroke: #000000; stroke-width: 0.8"/> " style="stroke: #000000; stroke-width: 0.8"/>
</defs> </defs>
<g> <g>
<use xlink:href="#m7d985aa407" x="80.8294" y="251.8" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m461c965a23" x="80.8294" y="282.904" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_1"> <g id="text_1">
<!-- 0 --> <!-- 0 -->
<g transform="translate(77.64815 266.398437) scale(0.1 -0.1)"> <g transform="translate(77.64815 297.502437) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-30" d="M 2034 4250 <path id="DejaVuSans-30" d="M 2034 4250
Q 1547 4250 1301 3770 Q 1547 4250 1301 3770
@@ -82,12 +82,12 @@ z
<g id="xtick_2"> <g id="xtick_2">
<g id="line2d_2"> <g id="line2d_2">
<g> <g>
<use xlink:href="#m7d985aa407" x="130.717319" y="251.8" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m461c965a23" x="130.717319" y="282.904" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_2"> <g id="text_2">
<!-- 200 --> <!-- 200 -->
<g transform="translate(121.173569 266.398437) scale(0.1 -0.1)"> <g transform="translate(121.173569 297.502437) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-32" d="M 1228 531 <path id="DejaVuSans-32" d="M 1228 531
L 3431 531 L 3431 531
@@ -123,12 +123,12 @@ z
<g id="xtick_3"> <g id="xtick_3">
<g id="line2d_3"> <g id="line2d_3">
<g> <g>
<use xlink:href="#m7d985aa407" x="180.605238" y="251.8" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m461c965a23" x="180.605238" y="282.904" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_3"> <g id="text_3">
<!-- 400 --> <!-- 400 -->
<g transform="translate(171.061488 266.398437) scale(0.1 -0.1)"> <g transform="translate(171.061488 297.502437) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-34" d="M 2419 4116 <path id="DejaVuSans-34" d="M 2419 4116
L 825 1625 L 825 1625
@@ -159,12 +159,12 @@ z
<g id="xtick_4"> <g id="xtick_4">
<g id="line2d_4"> <g id="line2d_4">
<g> <g>
<use xlink:href="#m7d985aa407" x="230.493157" y="251.8" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m461c965a23" x="230.493157" y="282.904" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_4"> <g id="text_4">
<!-- 600 --> <!-- 600 -->
<g transform="translate(220.949407 266.398437) scale(0.1 -0.1)"> <g transform="translate(220.949407 297.502437) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-36" d="M 2113 2584 <path id="DejaVuSans-36" d="M 2113 2584
Q 1688 2584 1439 2293 Q 1688 2584 1439 2293
@@ -206,12 +206,12 @@ z
<g id="xtick_5"> <g id="xtick_5">
<g id="line2d_5"> <g id="line2d_5">
<g> <g>
<use xlink:href="#m7d985aa407" x="280.381076" y="251.8" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m461c965a23" x="280.381076" y="282.904" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_5"> <g id="text_5">
<!-- 800 --> <!-- 800 -->
<g transform="translate(270.837326 266.398437) scale(0.1 -0.1)"> <g transform="translate(270.837326 297.502437) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-38" d="M 2034 2216 <path id="DejaVuSans-38" d="M 2034 2216
Q 1584 2216 1326 1975 Q 1584 2216 1326 1975
@@ -262,12 +262,12 @@ z
<g id="xtick_6"> <g id="xtick_6">
<g id="line2d_6"> <g id="line2d_6">
<g> <g>
<use xlink:href="#m7d985aa407" x="330.268995" y="251.8" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m461c965a23" x="330.268995" y="282.904" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_6"> <g id="text_6">
<!-- 1000 --> <!-- 1000 -->
<g transform="translate(317.543995 266.398437) scale(0.1 -0.1)"> <g transform="translate(317.543995 297.502437) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-31" d="M 794 531 <path id="DejaVuSans-31" d="M 794 531
L 1825 531 L 1825 531
@@ -294,12 +294,12 @@ z
<g id="xtick_7"> <g id="xtick_7">
<g id="line2d_7"> <g id="line2d_7">
<g> <g>
<use xlink:href="#m7d985aa407" x="380.156914" y="251.8" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m461c965a23" x="380.156914" y="282.904" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_7"> <g id="text_7">
<!-- 1200 --> <!-- 1200 -->
<g transform="translate(367.431914 266.398437) scale(0.1 -0.1)"> <g transform="translate(367.431914 297.502437) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-31"/> <use xlink:href="#DejaVuSans-31"/>
<use xlink:href="#DejaVuSans-32" x="63.623047"/> <use xlink:href="#DejaVuSans-32" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/> <use xlink:href="#DejaVuSans-30" x="127.246094"/>
@@ -310,12 +310,12 @@ z
<g id="xtick_8"> <g id="xtick_8">
<g id="line2d_8"> <g id="line2d_8">
<g> <g>
<use xlink:href="#m7d985aa407" x="430.044832" y="251.8" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#m461c965a23" x="430.044832" y="282.904" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_8"> <g id="text_8">
<!-- 1400 --> <!-- 1400 -->
<g transform="translate(417.319832 266.398437) scale(0.1 -0.1)"> <g transform="translate(417.319832 297.502437) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-31"/> <use xlink:href="#DejaVuSans-31"/>
<use xlink:href="#DejaVuSans-34" x="63.623047"/> <use xlink:href="#DejaVuSans-34" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/> <use xlink:href="#DejaVuSans-30" x="127.246094"/>
@@ -325,7 +325,7 @@ z
</g> </g>
<g id="text_9"> <g id="text_9">
<!-- stimulus frequency [Hz] --> <!-- stimulus frequency [Hz] -->
<g transform="translate(205.718606 280.076562) scale(0.1 -0.1)"> <g transform="translate(205.718606 311.180563) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-73" d="M 2834 3397 <path id="DejaVuSans-73" d="M 2834 3397
L 2834 2853 L 2834 2853
@@ -679,17 +679,17 @@ z
<g id="ytick_1"> <g id="ytick_1">
<g id="line2d_9"> <g id="line2d_9">
<defs> <defs>
<path id="m0f1f54d375" d="M 0 0 <path id="mca0b550918" d="M 0 0
L -3.5 0 L -3.5 0
" style="stroke: #000000; stroke-width: 0.8"/> " style="stroke: #000000; stroke-width: 0.8"/>
</defs> </defs>
<g> <g>
<use xlink:href="#m0f1f54d375" x="80.8294" y="251.8" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mca0b550918" x="80.8294" y="282.904" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_10"> <g id="text_10">
<!-- 0.00000 --> <!-- 0.00000 -->
<g transform="translate(32.476275 255.599219) scale(0.1 -0.1)"> <g transform="translate(32.476275 286.703219) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-2e" d="M 684 794 <path id="DejaVuSans-2e" d="M 684 794
L 1344 794 L 1344 794
@@ -712,12 +712,12 @@ z
<g id="ytick_2"> <g id="ytick_2">
<g id="line2d_10"> <g id="line2d_10">
<g> <g>
<use xlink:href="#m0f1f54d375" x="80.8294" y="219.462857" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mca0b550918" x="80.8294" y="246.123429" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_11"> <g id="text_11">
<!-- 0.00002 --> <!-- 0.00002 -->
<g transform="translate(32.476275 223.262076) scale(0.1 -0.1)"> <g transform="translate(32.476275 249.922647) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-30"/> <use xlink:href="#DejaVuSans-30"/>
<use xlink:href="#DejaVuSans-2e" x="63.623047"/> <use xlink:href="#DejaVuSans-2e" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="95.410156"/> <use xlink:href="#DejaVuSans-30" x="95.410156"/>
@@ -731,12 +731,12 @@ z
<g id="ytick_3"> <g id="ytick_3">
<g id="line2d_11"> <g id="line2d_11">
<g> <g>
<use xlink:href="#m0f1f54d375" x="80.8294" y="187.125714" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mca0b550918" x="80.8294" y="209.342857" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_12"> <g id="text_12">
<!-- 0.00004 --> <!-- 0.00004 -->
<g transform="translate(32.476275 190.924933) scale(0.1 -0.1)"> <g transform="translate(32.476275 213.142076) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-30"/> <use xlink:href="#DejaVuSans-30"/>
<use xlink:href="#DejaVuSans-2e" x="63.623047"/> <use xlink:href="#DejaVuSans-2e" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="95.410156"/> <use xlink:href="#DejaVuSans-30" x="95.410156"/>
@@ -750,12 +750,12 @@ z
<g id="ytick_4"> <g id="ytick_4">
<g id="line2d_12"> <g id="line2d_12">
<g> <g>
<use xlink:href="#m0f1f54d375" x="80.8294" y="154.788571" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mca0b550918" x="80.8294" y="172.562286" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_13"> <g id="text_13">
<!-- 0.00006 --> <!-- 0.00006 -->
<g transform="translate(32.476275 158.58779) scale(0.1 -0.1)"> <g transform="translate(32.476275 176.361504) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-30"/> <use xlink:href="#DejaVuSans-30"/>
<use xlink:href="#DejaVuSans-2e" x="63.623047"/> <use xlink:href="#DejaVuSans-2e" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="95.410156"/> <use xlink:href="#DejaVuSans-30" x="95.410156"/>
@@ -769,12 +769,12 @@ z
<g id="ytick_5"> <g id="ytick_5">
<g id="line2d_13"> <g id="line2d_13">
<g> <g>
<use xlink:href="#m0f1f54d375" x="80.8294" y="122.451429" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mca0b550918" x="80.8294" y="135.781714" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_14"> <g id="text_14">
<!-- 0.00008 --> <!-- 0.00008 -->
<g transform="translate(32.476275 126.250647) scale(0.1 -0.1)"> <g transform="translate(32.476275 139.580933) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-30"/> <use xlink:href="#DejaVuSans-30"/>
<use xlink:href="#DejaVuSans-2e" x="63.623047"/> <use xlink:href="#DejaVuSans-2e" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="95.410156"/> <use xlink:href="#DejaVuSans-30" x="95.410156"/>
@@ -788,12 +788,12 @@ z
<g id="ytick_6"> <g id="ytick_6">
<g id="line2d_14"> <g id="line2d_14">
<g> <g>
<use xlink:href="#m0f1f54d375" x="80.8294" y="90.114286" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mca0b550918" x="80.8294" y="99.001143" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_15"> <g id="text_15">
<!-- 0.00010 --> <!-- 0.00010 -->
<g transform="translate(32.476275 93.913504) scale(0.1 -0.1)"> <g transform="translate(32.476275 102.800362) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-30"/> <use xlink:href="#DejaVuSans-30"/>
<use xlink:href="#DejaVuSans-2e" x="63.623047"/> <use xlink:href="#DejaVuSans-2e" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="95.410156"/> <use xlink:href="#DejaVuSans-30" x="95.410156"/>
@@ -807,12 +807,12 @@ z
<g id="ytick_7"> <g id="ytick_7">
<g id="line2d_15"> <g id="line2d_15">
<g> <g>
<use xlink:href="#m0f1f54d375" x="80.8294" y="57.777143" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mca0b550918" x="80.8294" y="62.220571" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_16"> <g id="text_16">
<!-- 0.00012 --> <!-- 0.00012 -->
<g transform="translate(32.476275 61.576362) scale(0.1 -0.1)"> <g transform="translate(32.476275 66.01979) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-30"/> <use xlink:href="#DejaVuSans-30"/>
<use xlink:href="#DejaVuSans-2e" x="63.623047"/> <use xlink:href="#DejaVuSans-2e" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="95.410156"/> <use xlink:href="#DejaVuSans-30" x="95.410156"/>
@@ -826,7 +826,7 @@ z
<g id="ytick_8"> <g id="ytick_8">
<g id="line2d_16"> <g id="line2d_16">
<g> <g>
<use xlink:href="#m0f1f54d375" x="80.8294" y="25.44" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mca0b550918" x="80.8294" y="25.44" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_17"> <g id="text_17">
@@ -844,7 +844,7 @@ z
</g> </g>
<g id="text_18"> <g id="text_18">
<!-- power [$\frac{\mathrm{mV^2}}{\mathrm{Hz}}$] --> <!-- power [$\frac{\mathrm{mV^2}}{\mathrm{Hz}}$] -->
<g transform="translate(24.576275 169.32) rotate(-90) scale(0.1 -0.1)"> <g transform="translate(24.576275 184.872) rotate(-90) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-70" d="M 1159 525 <path id="DejaVuSans-70" d="M 1159 525
L 1159 -1331 L 1159 -1331
@@ -945,165 +945,165 @@ z
</g> </g>
</g> </g>
<g id="line2d_17"> <g id="line2d_17">
<path d="M 156.908476 251.75273 <path d="M 156.908476 282.850235
L 163.144466 251.720662 L 163.144466 282.813761
L 169.380456 251.732965 L 169.380456 282.827754
L 175.616446 248.159422 L 175.616446 278.763172
L 181.852436 251.265793 L 181.852436 282.296388
L 188.088426 251.654039 L 188.088426 282.737983
L 194.324416 251.660383 L 194.324416 282.745199
L 200.560405 251.692515 L 200.560405 282.781746
L 206.796395 251.72569 L 206.796395 282.819479
L 213.032385 251.655729 L 213.032385 282.739904
L 219.268375 251.515592 L 219.268375 282.580512
L 225.504365 247.209295 L 225.504365 277.682488
L 231.740355 250.718755 L 231.740355 281.674182
L 237.976345 251.618733 L 237.976345 282.697825
L 244.212334 251.504833 L 244.212334 282.568275
L 250.448324 251.500597 L 250.448324 282.563456
L 256.684314 251.663174 L 256.684314 282.748372
L 262.920304 251.656523 L 262.920304 282.740808
L 269.156294 251.628029 L 269.156294 282.708399
L 275.392284 251.496978 L 275.392284 282.55934
L 281.628274 250.971016 L 281.628274 281.961106
L 287.864264 251.179977 L 287.864264 282.198781
L 294.100253 250.580176 L 294.100253 281.51656
L 300.336243 250.017113 L 300.336243 280.876128
L 306.572233 249.932634 L 306.572233 280.78004
L 312.808223 250.142134 L 312.808223 281.018328
L 319.044213 251.337353 L 319.044213 282.377781
L 325.280203 251.266772 L 325.280203 282.297501
L 331.516193 250.73211 L 331.516193 281.689371
L 337.752182 250.539707 L 337.752182 281.470531
L 343.988172 250.022631 L 343.988172 280.882404
L 350.224162 250.595558 L 350.224162 281.534056
" clip-path="url(#paf6e91598f)" style="fill: none; stroke: #1f77b4; stroke-width: 1.5; stroke-linecap: square"/> " clip-path="url(#p6e3804b65b)" style="fill: none; stroke: #1f77b4; stroke-width: 1.5; stroke-linecap: square"/>
</g> </g>
<g id="line2d_18"> <g id="line2d_18">
<path d="M 156.908476 251.68356 <path d="M 156.908476 282.77156
L 163.144466 251.698116 L 163.144466 282.788116
L 169.131016 251.409603 L 169.131016 282.459959
L 175.367006 251.442606 L 175.367006 282.497496
L 181.602996 251.514308 L 181.602996 282.579051
L 187.838986 251.507444 L 187.838986 282.571244
L 194.074976 251.486127 L 194.074976 282.546998
L 200.310966 250.1403 L 200.310966 281.016242
L 206.546956 247.530957 L 206.546956 278.04835
L 212.782946 249.257802 L 212.782946 280.01248
L 219.018935 251.374883 L 219.018935 282.420468
L 225.254925 251.512674 L 225.254925 282.577192
L 231.490915 251.427201 L 231.490915 282.479975
L 237.726905 251.113563 L 237.726905 282.123241
L 243.962895 250.770482 L 243.962895 281.733016
L 250.198885 250.917653 L 250.198885 281.900411
L 256.434875 250.673105 L 256.434875 281.622259
L 262.670864 250.958916 L 262.670864 281.947343
L 268.906854 251.221347 L 268.906854 282.245835
L 275.142844 251.100185 L 275.142844 282.108024
L 281.378834 251.055743 L 281.378834 282.057475
L 287.614824 250.737361 L 287.614824 281.695344
L 293.850814 250.138666 L 293.850814 281.014383
L 300.086804 250.672754 L 300.086804 281.62186
L 306.572233 249.461832 L 306.572233 280.244546
L 312.808223 249.693127 L 312.808223 280.507622
L 319.044213 249.095526 L 319.044213 279.827906
L 325.280203 250.655929 L 325.280203 281.602723
L 331.516193 249.600455 L 331.516193 280.402216
L 337.752182 250.500051 L 337.752182 281.425426
L 343.738733 251.230426 L 343.738733 282.256161
L 349.974723 251.116728 L 349.974723 282.12684
L 356.210712 250.743984 L 356.210712 281.702878
L 362.446702 251.267098 L 362.446702 282.297872
L 368.682692 250.345051 L 368.682692 281.249127
L 375.168122 250.670618 L 375.168122 281.61943
L 381.404111 250.261084 L 381.404111 281.153622
L 387.640101 250.120732 L 387.640101 280.993984
L 393.876091 250.101194 L 393.876091 280.971762
L 400.112081 250.674581 L 400.112081 281.623938
L 406.348071 250.491262 L 406.348071 281.415429
L 412.584061 250.910855 L 412.584061 281.892678
L 418.820051 250.255668 L 418.820051 281.147462
L 425.056041 250.386325 L 425.056041 281.296072
L 431.29203 250.42256 L 431.29203 281.337286
L 437.52802 251.025504 L 437.52802 282.023081
L 443.76401 250.961741 L 443.76401 281.950557
L 450 250.989243 L 450 281.981837
" clip-path="url(#paf6e91598f)" style="fill: none; stroke: #ff7f0e; stroke-width: 1.5; stroke-linecap: square"/> " clip-path="url(#p6e3804b65b)" style="fill: none; stroke: #ff7f0e; stroke-width: 1.5; stroke-linecap: square"/>
</g> </g>
<g id="line2d_19"> <g id="line2d_19">
<path d="M 156.908476 251.583026 <path d="M 156.908476 282.657212
L 163.144466 251.307499 L 163.144466 282.343825
L 169.380456 251.457085 L 169.380456 282.513965
L 175.616446 251.438789 L 175.616446 282.493156
L 181.852436 251.556029 L 181.852436 282.626505
L 188.088426 249.957844 L 188.088426 280.808714
L 194.324416 248.230103 L 194.324416 278.843565
L 200.560405 251.30414 L 200.560405 282.340004
L 206.796395 249.101982 L 206.796395 279.835249
L 213.032385 250.67721 L 213.032385 281.626928
L 219.268375 251.343489 L 219.268375 282.38476
L 225.504365 251.429048 L 225.504365 282.482076
L 231.740355 251.473886 L 231.740355 282.533075
L 237.976345 251.412815 L 237.976345 282.463612
L 244.212334 251.423248 L 244.212334 282.475478
L 250.448324 251.571464 L 250.448324 282.64406
L 256.684314 251.377115 L 256.684314 282.423007
L 262.920304 250.502897 L 262.920304 281.428663
L 269.156294 246.648296 L 269.156294 277.044403
L 275.392284 250.68289 L 275.392284 281.633388
L 281.628274 251.070332 L 281.628274 282.074069
L 287.864264 251.403931 L 287.864264 282.453508
L 294.100253 251.536407 L 294.100253 282.604186
L 300.336243 251.344245 L 300.336243 282.38562
L 306.572233 249.434962 L 306.572233 280.213983
L 312.808223 250.558724 L 312.808223 281.492161
L 319.044213 250.567939 L 319.044213 281.502642
L 325.280203 250.909297 L 325.280203 281.890906
L 331.516193 250.943635 L 331.516193 281.929962
L 337.752182 251.269061 L 337.752182 282.300105
L 343.988172 251.001578 L 343.988172 281.995868
L 350.224162 250.783486 L 350.224162 281.747807
L 356.460152 251.195175 L 356.460152 282.216067
L 362.696142 250.784331 L 362.696142 281.748769
L 368.932132 250.978603 L 368.932132 281.969735
L 375.168122 250.962375 L 375.168122 281.951277
L 381.404111 251.235794 L 381.404111 282.262267
L 387.640101 250.704792 L 387.640101 281.658301
L 393.876091 251.30459 L 393.876091 282.340516
L 400.112081 251.281419 L 400.112081 282.314162
L 406.348071 251.30369 L 406.348071 282.339492
L 412.584061 251.101407 L 412.584061 282.109414
L 418.820051 251.479242 L 418.820051 282.539167
L 425.056041 251.284574 L 425.056041 282.317749
L 431.29203 251.33536 L 431.29203 282.375514
L 437.52802 251.168986 L 437.52802 282.186278
L 443.76401 251.074426 L 443.76401 282.078726
L 450 251.062867 L 450 282.065578
" clip-path="url(#paf6e91598f)" style="fill: none; stroke: #2ca02c; stroke-width: 1.5; stroke-linecap: square"/> " clip-path="url(#p6e3804b65b)" style="fill: none; stroke: #2ca02c; stroke-width: 1.5; stroke-linecap: square"/>
</g> </g>
<g id="line2d_20"> <g id="line2d_20">
<path d="M 316.549817 251.8 <path d="M 316.549817 282.904
L 316.549817 25.44 L 316.549817 25.44
" clip-path="url(#paf6e91598f)" style="fill: none; stroke-dasharray: 5.55,2.4; stroke-dashoffset: 0; stroke: #000000; stroke-opacity: 0.8; stroke-width: 1.5"/> " clip-path="url(#p6e3804b65b)" style="fill: none; stroke-dasharray: 5.55,2.4; stroke-dashoffset: 0; stroke: #000000; stroke-opacity: 0.8; stroke-width: 1.5"/>
</g> </g>
<g id="line2d_21"> <g id="line2d_21">
<path d="M 220.410341 251.8 <path d="M 220.410341 282.904
L 220.410341 25.44 L 220.410341 25.44
" clip-path="url(#paf6e91598f)" style="fill: none; stroke-dasharray: 1.5,2.475; stroke-dashoffset: 0; stroke: #000000; stroke-opacity: 0.8; stroke-width: 1.5"/> " clip-path="url(#p6e3804b65b)" style="fill: none; stroke-dasharray: 1.5,2.475; stroke-dashoffset: 0; stroke: #000000; stroke-opacity: 0.8; stroke-width: 1.5"/>
</g> </g>
<g id="patch_3"> <g id="patch_3">
<path d="M 80.8294 251.8 <path d="M 80.8294 282.904
L 80.8294 25.44 L 80.8294 25.44
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_4"> <g id="patch_4">
<path d="M 450 251.8 <path d="M 450 282.904
L 450 25.44 L 450 25.44
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_5"> <g id="patch_5">
<path d="M 80.8294 251.8 <path d="M 80.8294 282.904
L 450 251.8 L 450 282.904
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/> " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g> </g>
<g id="patch_6"> <g id="patch_6">
@@ -1580,8 +1580,8 @@ L 293.436719 316.342187
</g> </g>
</g> </g>
<defs> <defs>
<clipPath id="paf6e91598f"> <clipPath id="p6e3804b65b">
<rect x="80.8294" y="25.44" width="369.1706" height="226.36"/> <rect x="80.8294" y="25.44" width="369.1706" height="257.464"/>
</clipPath> </clipPath>
</defs> </defs>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 42 KiB

After

Width:  |  Height:  |  Size: 42 KiB

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 44 KiB

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 38 KiB

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 40 KiB

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 44 KiB

File diff suppressed because it is too large Load Diff

Before

Width:  |  Height:  |  Size: 79 KiB

After

Width:  |  Height:  |  Size: 71 KiB

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 99 KiB

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 99 KiB