Browse Source

Complete report matlab transfer function study part

master
Apostolos Fanakis 6 years ago
parent
commit
6946020cb3
  1. 38
      Band Elimination Chebyshev/band_elimination_design.m
  2. 30
      Band Pass Chebyshev/band_pass_design.m
  3. 13
      High Pass Butterworth/high_pass_design.m
  4. 17
      Low Pass Inverse Chebyshev/low_pass_design.m
  5. 9
      report/1_low_pass/1_low_pass.pug
  6. 6
      report/1_low_pass/1_low_pass_design.pug
  7. 1
      report/1_low_pass/1_low_pass_transfer_function_matlab.pug
  8. 2
      report/1_low_pass/1_low_pass_transfer_function_multisim.pug
  9. 681
      report/1_low_pass/assets/diagrams/low_pass_general_transfer_function_plot.svg
  10. 2
      report/2_band_pass/2_band_pass.pug
  11. 6
      report/2_band_pass/2_band_pass_design.pug
  12. 70
      report/2_band_pass/2_band_pass_transfer_function_matlab.pug
  13. 1760
      report/2_band_pass/assets/diagrams/matlab_band_pass_chebyshev_deliyannis_friend_unit_1_transfer_function.svg
  14. 1798
      report/2_band_pass/assets/diagrams/matlab_band_pass_chebyshev_deliyannis_friend_unit_2_transfer_function.svg
  15. 1812
      report/2_band_pass/assets/diagrams/matlab_band_pass_chebyshev_deliyannis_friend_unit_3_transfer_function.svg
  16. 1889
      report/2_band_pass/assets/diagrams/matlab_band_pass_chebyshev_deliyannis_friend_unit_4_transfer_function.svg
  17. 4264
      report/2_band_pass/assets/diagrams/matlab_band_pass_chebyshev_total_attenuation.svg
  18. 4454
      report/2_band_pass/assets/diagrams/matlab_band_pass_chebyshev_total_transfer_function.svg
  19. 226
      report/2_band_pass/assets/diagrams/matlab_combined_transfer_functions_bode.svg
  20. 2
      report/3_band_elimination/3_band_elimination.pug
  21. 4
      report/3_band_elimination/3_band_elimination_design.pug
  22. 82
      report/3_band_elimination/3_band_elimination_transfer_function_matlab.pug
  23. 287
      report/3_band_elimination/assets/diagrams/band_elimination_general_transfer_function_plot.svg
  24. 1738
      report/3_band_elimination/assets/diagrams/matlab_band_elimination_chebyshev_HPN_unit_1_transfer_function.svg
  25. 1737
      report/3_band_elimination/assets/diagrams/matlab_band_elimination_chebyshev_HPN_unit_3_transfer_function.svg
  26. 2031
      report/3_band_elimination/assets/diagrams/matlab_band_elimination_chebyshev_LPN_unit_2_transfer_function.svg
  27. 1912
      report/3_band_elimination/assets/diagrams/matlab_band_elimination_chebyshev_LPN_unit_4_transfer_function.svg
  28. 5682
      report/3_band_elimination/assets/diagrams/matlab_band_elimination_chebyshev_original_gain_attenuation.svg
  29. 533
      report/3_band_elimination/assets/diagrams/matlab_band_elimination_chebyshev_total_attenuation.svg
  30. 6273
      report/3_band_elimination/assets/diagrams/matlab_band_elimination_chebyshev_total_transfer_function.svg
  31. 265
      report/3_band_elimination/assets/diagrams/matlab_combined_transfer_functions_bode.svg
  32. 4
      report/4_high_pass/4_high_pass.pug
  33. 64
      report/4_high_pass/4_high_pass_transfer_function_matlab.pug
  34. 192
      report/4_high_pass/assets/diagrams/matlab_combined_transfer_functions_bode.svg
  35. 360
      report/4_high_pass/assets/diagrams/matlab_high_pass_butterworth_original_gain_attenuation.svg
  36. 1595
      report/4_high_pass/assets/diagrams/matlab_high_pass_butterworth_sallen_key_unit_1_transfer_function.svg
  37. 1616
      report/4_high_pass/assets/diagrams/matlab_high_pass_butterworth_sallen_key_unit_2_transfer_function.svg
  38. 2928
      report/4_high_pass/assets/diagrams/matlab_high_pass_butterworth_total_attenuation.svg
  39. 2895
      report/4_high_pass/assets/diagrams/matlab_high_pass_butterworth_total_transfer_function.svg

38
Band Elimination Chebyshev/band_elimination_design.m

@ -803,7 +803,7 @@ total_transfer_function = series(series(series( ...
total_transfer_function = total_transfer_function*unit_adjustment_gain; total_transfer_function = total_transfer_function*unit_adjustment_gain;
%{
% Plots each unit's frequency response % Plots each unit's frequency response
for i=1:band_elimination_number_of_poles for i=1:band_elimination_number_of_poles
if i==1 || i==3 if i==1 || i==3
@ -819,31 +819,35 @@ end
% Plots the total filter frequency response % Plots the total filter frequency response
plot_transfer_function(total_transfer_function, ... plot_transfer_function(total_transfer_function, ...
[specification_low_stop_frequency ... [1910 ...
specification_low_pass_frequency ... specification_low_pass_frequency ...
design_half_power_radial_frequency(1,2)/(2*pi) ...
specification_low_stop_frequency ...
specification_central_frequency ... specification_central_frequency ...
specification_high_pass_frequency ... specification_high_stop_frequency ...
specification_high_stop_frequency]); design_half_power_radial_frequency(1,1)/(2*pi) ...
specification_high_pass_frequency]);
% Plots the total filter attenuation function % Plots the total filter attenuation function
plot_transfer_function(inv(total_transfer_function), ... plot_transfer_function(inv(total_transfer_function), ...
[specification_low_stop_frequency ... [specification_low_pass_frequency ...
specification_low_pass_frequency ... specification_low_stop_frequency ...
specification_central_frequency ... specification_central_frequency ...
specification_high_pass_frequency ... specification_high_stop_frequency ...
specification_high_stop_frequency]); specification_high_pass_frequency]);
%}
%{ %{
ltiview(unit_transfer_function(1,1)); ltiview('bodemag', high_pass_notch_units_transfer_functions(1,1));
ltiview(unit_transfer_function(1,2)); ltiview('bodemag', high_pass_notch_units_transfer_functions(1,2));
ltiview(unit_transfer_function(1,3)); ltiview('bodemag', low_pass_notch_units_transfer_functions(1,1));
ltiview(unit_transfer_function(1,4)); ltiview('bodemag', low_pass_notch_units_transfer_functions(1,2));
ltiview(total_transfer_function); ltiview('bodemag', total_transfer_function);
ltiview(unit_transfer_function(1,1), unit_transfer_function(1,2), ...
unit_transfer_function(1,3), unit_transfer_function(1,4), ...
total_transfer_function);
%} %}
ltiview('bodemag', high_pass_notch_units_transfer_functions(1,1), ...
high_pass_notch_units_transfer_functions(1,2), ...
low_pass_notch_units_transfer_functions(1,1), ...
low_pass_notch_units_transfer_functions(1,2), ...
total_transfer_function);
%{ %{
hold off hold off

30
Band Pass Chebyshev/band_pass_design.m

@ -496,42 +496,46 @@ total_transfer_function = series(series(series( ...
units_transfer_functions(1), units_transfer_functions(2)), ... units_transfer_functions(1), units_transfer_functions(2)), ...
units_transfer_functions(3)), units_transfer_functions(4)); units_transfer_functions(3)), units_transfer_functions(4));
%{
% Plots each unit's frequency response % Plots each unit's frequency response
for i=1:band_pass_number_of_poles for i=1:band_pass_number_of_poles
plot_transfer_function(unit_transfer_functions(1,i), ... plot_transfer_function(units_transfer_functions(1,i), ...
(band_pass_poles_radial_frequencies(1,i)/(2*pi))); [band_pass_poles_radial_frequencies(1,i)/(2*pi) ...
design_geometric_central_radial_frequency/(2*pi)]);
end end
% Plots the total filter frequency response % Plots the total filter frequency response
plot_transfer_function(total_transfer_function, ... plot_transfer_function(total_transfer_function, ...
[specification_low_stop_frequency ... [specification_low_stop_frequency ...
design_half_power_radial_frequency(1,2)/(2*pi) ...
specification_low_pass_frequency ... specification_low_pass_frequency ...
specification_central_frequency ... specification_central_frequency ...
941.83 ... 941.83 ...
specification_high_pass_frequency ... specification_high_pass_frequency ...
design_half_power_radial_frequency(1,1)/(2*pi) ...
specification_high_stop_frequency]); specification_high_stop_frequency]);
% Plots the total filter attenuation function % Plots the total filter attenuation function
plot_transfer_function(inv(total_transfer_function), ... plot_transfer_function(inv(total_transfer_function), ...
[specification_low_stop_frequency ... [specification_low_stop_frequency ...
design_half_power_radial_frequency(1,2)/(2*pi) ...
specification_low_pass_frequency ... specification_low_pass_frequency ...
specification_central_frequency ... specification_central_frequency ...
941.83 ...
specification_high_pass_frequency ... specification_high_pass_frequency ...
design_half_power_radial_frequency(1,1)/(2*pi) ...
specification_high_stop_frequency]); specification_high_stop_frequency]);
%}
%{ %{
ltiview(unit_transfer_function(1,1)); ltiview('bodemag', units_transfer_functions(1,1));
ltiview(unit_transfer_function(1,2)); ltiview('bodemag', units_transfer_functions(1,2));
ltiview(unit_transfer_function(1,3)); ltiview('bodemag', units_transfer_functions(1,3));
ltiview(unit_transfer_function(1,4)); ltiview('bodemag', units_transfer_functions(1,4));
ltiview(total_transfer_function); ltiview('bodemag', total_transfer_function);
ltiview(unit_transfer_function(1,1), unit_transfer_function(1,2), ...
unit_transfer_function(1,3), unit_transfer_function(1,4), ...
total_transfer_function);
%} %}
ltiview('bodemag', units_transfer_functions(1,1), units_transfer_functions(1,2), ...
units_transfer_functions(1,3), units_transfer_functions(1,4), ...
total_transfer_function);
%{ %{
hold off hold off

13
High Pass Butterworth/high_pass_design.m

@ -398,7 +398,7 @@ total_transfer_function = total_transfer_function*unit_adjustment_gain;
% Arbitrary high frequency to display the gain at high frequencies % Arbitrary high frequency to display the gain at high frequencies
high_frequency = 90000; % Hz high_frequency = 90000; % Hz
%{
% Plots each unit's frequency response % Plots each unit's frequency response
for i=1:high_pass_number_of_poles for i=1:high_pass_number_of_poles
plot_transfer_function(units_transfer_functions(1,i), ... plot_transfer_function(units_transfer_functions(1,i), ...
@ -418,14 +418,21 @@ plot_transfer_function(inv(total_transfer_function), ...
design_half_power_radial_frequency/(2*pi) ... design_half_power_radial_frequency/(2*pi) ...
specification_pass_frequency ... specification_pass_frequency ...
high_frequency]); high_frequency]);
%}
plot_transfer_function(inv(total_transfer_function/unit_adjustment_gain), ...
[specification_stop_frequency ...
design_half_power_radial_frequency/(2*pi) ...
specification_pass_frequency ...
high_frequency]);
%{ %{
ltiview('bodemag', units_transfer_functions(1,1)); ltiview('bodemag', units_transfer_functions(1,1));
ltiview('bodemag', units_transfer_functions(1,2)); ltiview('bodemag', units_transfer_functions(1,2));
ltiview('bodemag', total_transfer_function); ltiview('bodemag', total_transfer_function);
%}
ltiview('bodemag', units_transfer_functions(1,1), units_transfer_functions(1,2), ... ltiview('bodemag', units_transfer_functions(1,1), units_transfer_functions(1,2), ...
total_transfer_function); total_transfer_function);
%}
%{ %{
hold off hold off

17
Low Pass Inverse Chebyshev/low_pass_design.m

@ -420,7 +420,7 @@ total_transfer_function = total_transfer_function*unit_adjustment_gain;
% Arbitrary low frequency to display the gain at low frequencies % Arbitrary low frequency to display the gain at low frequencies
low_frequency = 10; % Hz low_frequency = 10; % Hz
%{
% Plots each unit's frequency response % Plots each unit's frequency response
for i=1:design_number_of_poles for i=1:design_number_of_poles
plot_transfer_function(unit_transfer_function(1,i), ... plot_transfer_function(unit_transfer_function(1,i), ...
@ -440,15 +440,16 @@ plot_transfer_function(inv(total_transfer_function), ...
specification_pass_frequency ... specification_pass_frequency ...
design_half_power_radial_frequency/(2*pi) ... design_half_power_radial_frequency/(2*pi) ...
specification_stop_frequency]); specification_stop_frequency]);
%}
%{ %{
ltiview(unit_transfer_function(1,1)); ltiview('bodemag', unit_transfer_function(1,1));
ltiview(unit_transfer_function(1,2)); ltiview('bodemag', unit_transfer_function(1,2));
ltiview(total_transfer_function); ltiview('bodemag', total_transfer_function);
ltiview(unit_transfer_function(1,1), unit_transfer_function(1,2), ...
total_transfer_function);
%} %}
ltiview('bodemag', unit_transfer_function(1,1), unit_transfer_function(1,2), ...
total_transfer_function);
%{
hold off hold off
input_signal_frequency = 2000; % Hz input_signal_frequency = 2000; % Hz
@ -493,7 +494,7 @@ Pyy = system_output_fft.*conj(system_output_fft)/sampling_length_L;
figure(3) figure(3)
semilogx(frequency_vector,Pyy(1:sampling_length_L/2+1)) semilogx(frequency_vector,Pyy(1:sampling_length_L/2+1))
grid on grid on
%}
% Clears unneeded variable from workspace % Clears unneeded variable from workspace
clear low_frequency clear low_frequency
clear -regexp _numerator$ clear -regexp _numerator$

9
report/1_low_pass/1_low_pass.pug

@ -37,6 +37,15 @@ figure.block-center.width-15cm
.caption. .caption.
Προδιαγραφές σχεδίασης κατωδιαβατού φίλτρου Προδιαγραφές σχεδίασης κατωδιαβατού φίλτρου
figure.block-center.width-15cm
img(src="1_low_pass/assets/diagrams/low_pass_general_transfer_function_plot.svg").width-15cm
figcaption
.reference #[span.plot-count]
.caption.title.
Ποιοτικό γράφημα συνάρτησης μεταφοράς κατωδιαβατού Chebyshev φίλτρου.
.caption.
Στο γράφημα φαίνονται οι συχνότητες που ορίζουν τη ζώνη διόδου (f#[sub p]/ω#[sub p]) και τη ζώνη αποκοπής (f#[sub s]/ω#[sub s]), καθώς και οι προδιαγραφές α#[sub min] και α#[sub max].
// Sub-Chapters // Sub-Chapters
include 1_low_pass_design include 1_low_pass_design
include 1_low_pass_transfer_function_matlab include 1_low_pass_transfer_function_matlab

6
report/1_low_pass/1_low_pass_design.pug

@ -14,7 +14,6 @@ figure.block-center.width-15cm
div.item Κλιμακοποίηση του κυκλώματος με στόχο τη μεταφορά στις πραγματικές συχνότητες και σε στοιχεία με πρακτικές (υλοποιήσιμες) τιμές. div.item Κλιμακοποίηση του κυκλώματος με στόχο τη μεταφορά στις πραγματικές συχνότητες και σε στοιχεία με πρακτικές (υλοποιήσιμες) τιμές.
div.item Έλεγχος των κερδών των μονάδων και ρύθμιση κέρδους με επιβολή απόσβεσης ή ενίσχυσης. div.item Έλεγχος των κερδών των μονάδων και ρύθμιση κέρδους με επιβολή απόσβεσης ή ενίσχυσης.
div(style="page-break-before:always")
h4 Υπολογισμός συνάρτησης μεταφοράς h4 Υπολογισμός συνάρτησης μεταφοράς
p. p.
@ -50,7 +49,6 @@ p.
p.latex-equation. p.latex-equation.
$$\Omega_{hp} = \frac{1}{cosh(\frac{1}{n}cosh^{-1}(\frac{1}{\varepsilon}))} = \frac{1}{cosh(\frac{1}{4}cosh^{-1}(\frac{1}{0.065}))} = 0.7196\frac{rad}{s}$$ $$\Omega_{hp} = \frac{1}{cosh(\frac{1}{n}cosh^{-1}(\frac{1}{\varepsilon}))} = \frac{1}{cosh(\frac{1}{4}cosh^{-1}(\frac{1}{0.065}))} = 0.7196\frac{rad}{s}$$
div(style="page-break-before:always")
p και στη συνέχεια μεταφέρεται στη πραγματική συχνότητα: p και στη συνέχεια μεταφέρεται στη πραγματική συχνότητα:
p.latex-equation. p.latex-equation.
@ -94,7 +92,6 @@ p.
p.latex-equation. p.latex-equation.
$$\omega_{0_k} = \frac{1}{\Omega_{0_k}}$$ $$\omega_{0_k} = \frac{1}{\Omega_{0_k}}$$
div(style="page-break-before:always")
p. p.
Από τον μετασχηματισμό προκύπτουν οι πόλοι του #[strong αντίστροφου Chebyshev]: Από τον μετασχηματισμό προκύπτουν οι πόλοι του #[strong αντίστροφου Chebyshev]:
@ -125,7 +122,6 @@ figure.block-center.width-19cm
.caption. .caption.
Πόλοι και μηδενικά του αντίστροφου Chebyshev Πόλοι και μηδενικά του αντίστροφου Chebyshev
div(style="page-break-before:always")
p. p.
Οι πόλοι και τα μηδενικά ομαδοποιούνται όπως φαίνεται στο παρακάτω διάγραμμα: Οι πόλοι και τα μηδενικά ομαδοποιούνται όπως φαίνεται στο παρακάτω διάγραμμα:
@ -186,7 +182,6 @@ figure.block-center.width-15cm
.caption. .caption.
Προδιαγραφές πρώτης μονάδας low pass notch Προδιαγραφές πρώτης μονάδας low pass notch
div(style="page-break-before:always")
p. p.
Γίνεται κανονικοποίηση των συχνοτήτων ως προς το ω#[sub 0], ώστε Ω#[sub 0]=1: Γίνεται κανονικοποίηση των συχνοτήτων ως προς το ω#[sub 0], ώστε Ω#[sub 0]=1:
@ -231,7 +226,6 @@ p.
p.latex-equation. p.latex-equation.
$$k_{f} = \omega_s\omega_0 = 72570.79*0.963 = 69885.7$$ $$k_{f} = \omega_s\omega_0 = 72570.79*0.963 = 69885.7$$
div(style="page-break-before:always")
p. p.
Με βάση τον αριθμό ΑΕΜ (8261) επιλέγεται κατάλληλος συντελεστής κλιμακοποίησης πλάτους ώστε να επιτευχθεί τιμή πυκνωτών ίση με 0.1μF, γίνεται χρήση του τύπου #[span.course-notes-equation 6-33]: Με βάση τον αριθμό ΑΕΜ (8261) επιλέγεται κατάλληλος συντελεστής κλιμακοποίησης πλάτους ώστε να επιτευχθεί τιμή πυκνωτών ίση με 0.1μF, γίνεται χρήση του τύπου #[span.course-notes-equation 6-33]:

1
report/1_low_pass/1_low_pass_transfer_function_matlab.pug

@ -2,7 +2,6 @@ h3 Μελέτη συνάρτησης μεταφοράς στο Matlab
p. p.
Η σχεδίαση του φίλτρου έγινε στο λογισμικό Matlab. Σχεδιάστηκαν, με χρήση της συνάρτησης plot_transfer_function που δόθηκε καθώς και της ltiview που παρέχει το λογισμικό, οι αποκρίσεις πλάτους σε dB των επιμέρους μονάδων, καθώς και του συνολικού φίλτρου. Η σχεδίαση του φίλτρου έγινε στο λογισμικό Matlab. Σχεδιάστηκαν, με χρήση της συνάρτησης plot_transfer_function που δόθηκε καθώς και της ltiview που παρέχει το λογισμικό, οι αποκρίσεις πλάτους σε dB των επιμέρους μονάδων, καθώς και του συνολικού φίλτρου.
div(style="page-break-before:always")
p. p.
Παρακάτω φαίνονται οι αποκρίσεις όπως προέκυψαν στο Matlab από την plot_transfer_function, με ορίσματα κάθε φορά την συνάρτηση μεταφοράς του επί μέρους συστήματος, καθώς και τυχόν κρίσιμες συχνότητες: Παρακάτω φαίνονται οι αποκρίσεις όπως προέκυψαν στο Matlab από την plot_transfer_function, με ορίσματα κάθε φορά την συνάρτηση μεταφοράς του επί μέρους συστήματος, καθώς και τυχόν κρίσιμες συχνότητες:

2
report/1_low_pass/1_low_pass_transfer_function_multisim.pug

@ -126,7 +126,6 @@ figure.block-center.width-17cm
.caption.title. .caption.title.
Φάσμα σήματος εισόδου, διάγραμμα από Matlab. Φάσμα σήματος εισόδου, διάγραμμα από Matlab.
div(style="page-break-before:always")
p. p.
Το φάσμα του σήματος εξόδου φαίνεται στο παρακάτω διάγραμμα: Το φάσμα του σήματος εξόδου φαίνεται στο παρακάτω διάγραμμα:
@ -177,7 +176,6 @@ figure.block-center.width-17cm
#[br/]#[strong Amplitude:] #[strong lin] και #[strong Range:] 0.1 V/Div #[br/]#[strong Amplitude:] #[strong lin] και #[strong Range:] 0.1 V/Div
#[br/]#[strong Resolution freq.:] 100 Hz #[br/]#[strong Resolution freq.:] 100 Hz
div(style="page-break-before:always")
p. p.
Τα δύο παραπάνω διαγράμματα συνδυάστηκαν σε ένα για ευκολότερη εξαγωγή συμπερασμάτων: Τα δύο παραπάνω διαγράμματα συνδυάστηκαν σε ένα για ευκολότερη εξαγωγή συμπερασμάτων:

681
report/1_low_pass/assets/diagrams/low_pass_general_transfer_function_plot.svg

@ -0,0 +1,681 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="843.1254883 5.6948242 1550.6635742 781.6098633"
style="enable-background:new 843.1254883 5.6948242 1550.6635742 781.6098633;" xml:space="preserve">
<style type="text/css">
.st0{fill:none;stroke:#1A1A1A;stroke-width:0.6667;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-opacity:0.251;stroke-dasharray:1,3;}
.st1{fill:none;stroke:#262626;stroke-width:0.6667;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:0.149;}
.st2{fill:none;stroke:#262626;stroke-width:0.6667;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:10;}
.st3{fill:none;stroke:#000000;stroke-width:2;stroke-linejoin:round;stroke-miterlimit:10;}
.st4{fill:none;stroke:#000000;stroke-width:1.3333;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10,6;}
.st5{font-family:'MyriadPro-Regular';}
.st6{font-size:30px;}
</style>
<g>
<g>
<line class="st0" x1="1053.3109131" y1="754" x2="1053.3109131" y2="7"/>
<line class="st0" x1="1140.6522217" y1="754" x2="1140.6522217" y2="7"/>
<line class="st0" x1="1202.6218262" y1="754" x2="1202.6218262" y2="7"/>
<line class="st0" x1="1250.6890869" y1="754" x2="1250.6890869" y2="7"/>
<line class="st0" x1="1289.9630127" y1="754" x2="1289.9630127" y2="7"/>
<line class="st0" x1="1323.1685791" y1="754" x2="1323.1685791" y2="7"/>
<line class="st0" x1="1351.9326172" y1="754" x2="1351.9326172" y2="7"/>
<line class="st0" x1="1377.3043213" y1="754" x2="1377.3043213" y2="7"/>
<line class="st0" x1="1549.3109131" y1="754" x2="1549.3109131" y2="7"/>
<line class="st0" x1="1636.6522217" y1="754" x2="1636.6522217" y2="7"/>
<line class="st0" x1="1698.6218262" y1="754" x2="1698.6218262" y2="7"/>
<line class="st0" x1="1746.6890869" y1="754" x2="1746.6890869" y2="7"/>
<line class="st0" x1="1785.9630127" y1="754" x2="1785.9630127" y2="7"/>
<line class="st0" x1="1819.1685791" y1="754" x2="1819.1685791" y2="7"/>
<line class="st0" x1="1847.9326172" y1="754" x2="1847.9326172" y2="7"/>
<line class="st0" x1="1873.3043213" y1="754" x2="1873.3043213" y2="7"/>
<line class="st0" x1="2045.310791" y1="754" x2="2045.310791" y2="7"/>
<line class="st0" x1="2132.6520996" y1="754" x2="2132.6520996" y2="7"/>
<line class="st0" x1="2194.621582" y1="754" x2="2194.621582" y2="7"/>
<line class="st0" x1="2242.6889648" y1="754" x2="2242.6889648" y2="7"/>
<line class="st0" x1="2281.9628906" y1="754" x2="2281.9628906" y2="7"/>
<line class="st0" x1="2315.168457" y1="754" x2="2315.168457" y2="7"/>
<line class="st0" x1="2343.9326172" y1="754" x2="2343.9326172" y2="7"/>
<line class="st0" x1="2369.3041992" y1="754" x2="2369.3041992" y2="7"/>
</g>
<g>
<line class="st1" x1="904" y1="754" x2="904" y2="7"/>
<line class="st1" x1="1400" y1="754" x2="1400" y2="7"/>
<line class="st1" x1="1896" y1="754" x2="1896" y2="7"/>
<line class="st1" x1="2392" y1="754" x2="2392" y2="7"/>
<line class="st1" x1="2392" y1="754" x2="904" y2="754"/>
<line class="st1" x1="2392" y1="660.625" x2="904" y2="660.625"/>
<line class="st1" x1="2392" y1="567.25" x2="904" y2="567.25"/>
<line class="st1" x1="2392" y1="473.875" x2="904" y2="473.875"/>
<line class="st1" x1="2392" y1="380.5" x2="904" y2="380.5"/>
<line class="st1" x1="2392" y1="287.125" x2="904" y2="287.125"/>
<line class="st1" x1="2392" y1="193.75" x2="904" y2="193.75"/>
<line class="st1" x1="2392" y1="100.375" x2="904" y2="100.375"/>
<line class="st1" x1="2392" y1="7" x2="904" y2="7"/>
<line class="st2" x1="904" y1="754" x2="2392" y2="754"/>
<line class="st2" x1="904" y1="7" x2="2392" y2="7"/>
<line class="st2" x1="904" y1="754" x2="904" y2="739.1199951"/>
<line class="st2" x1="1400" y1="754" x2="1400" y2="739.1199951"/>
<line class="st2" x1="1896" y1="754" x2="1896" y2="739.1199951"/>
<line class="st2" x1="2392" y1="754" x2="2392" y2="739.1199951"/>
<line class="st2" x1="904" y1="7" x2="904" y2="21.8799973"/>
<line class="st2" x1="1400" y1="7" x2="1400" y2="21.8799973"/>
<line class="st2" x1="1896" y1="7" x2="1896" y2="21.8799973"/>
<line class="st2" x1="2392" y1="7" x2="2392" y2="21.8799973"/>
<line class="st2" x1="1053.3109131" y1="754" x2="1053.3109131" y2="746.5599976"/>
<line class="st2" x1="1140.6522217" y1="754" x2="1140.6522217" y2="746.5599976"/>
<line class="st2" x1="1202.6218262" y1="754" x2="1202.6218262" y2="746.5599976"/>
<line class="st2" x1="1250.6890869" y1="754" x2="1250.6890869" y2="746.5599976"/>
<line class="st2" x1="1289.9630127" y1="754" x2="1289.9630127" y2="746.5599976"/>
<line class="st2" x1="1323.1685791" y1="754" x2="1323.1685791" y2="746.5599976"/>
<line class="st2" x1="1351.9326172" y1="754" x2="1351.9326172" y2="746.5599976"/>
<line class="st2" x1="1377.3043213" y1="754" x2="1377.3043213" y2="746.5599976"/>
<line class="st2" x1="1549.3109131" y1="754" x2="1549.3109131" y2="746.5599976"/>
<line class="st2" x1="1636.6522217" y1="754" x2="1636.6522217" y2="746.5599976"/>
<line class="st2" x1="1698.6218262" y1="754" x2="1698.6218262" y2="746.5599976"/>
<line class="st2" x1="1746.6890869" y1="754" x2="1746.6890869" y2="746.5599976"/>
<line class="st2" x1="1785.9630127" y1="754" x2="1785.9630127" y2="746.5599976"/>
<line class="st2" x1="1819.1685791" y1="754" x2="1819.1685791" y2="746.5599976"/>
<line class="st2" x1="1847.9326172" y1="754" x2="1847.9326172" y2="746.5599976"/>
<line class="st2" x1="1873.3043213" y1="754" x2="1873.3043213" y2="746.5599976"/>
<line class="st2" x1="2045.310791" y1="754" x2="2045.310791" y2="746.5599976"/>
<line class="st2" x1="2132.6520996" y1="754" x2="2132.6520996" y2="746.5599976"/>
<line class="st2" x1="2194.621582" y1="754" x2="2194.621582" y2="746.5599976"/>
<line class="st2" x1="2242.6889648" y1="754" x2="2242.6889648" y2="746.5599976"/>
<line class="st2" x1="2281.9628906" y1="754" x2="2281.9628906" y2="746.5599976"/>
<line class="st2" x1="2315.168457" y1="754" x2="2315.168457" y2="746.5599976"/>
<line class="st2" x1="2343.9326172" y1="754" x2="2343.9326172" y2="746.5599976"/>
<line class="st2" x1="2369.3041992" y1="754" x2="2369.3041992" y2="746.5599976"/>
<line class="st2" x1="1053.3109131" y1="7" x2="1053.3109131" y2="14.4400024"/>
<line class="st2" x1="1140.6522217" y1="7" x2="1140.6522217" y2="14.4400024"/>
<line class="st2" x1="1202.6218262" y1="7" x2="1202.6218262" y2="14.4400024"/>
<line class="st2" x1="1250.6890869" y1="7" x2="1250.6890869" y2="14.4400024"/>
<line class="st2" x1="1289.9630127" y1="7" x2="1289.9630127" y2="14.4400024"/>
<line class="st2" x1="1323.1685791" y1="7" x2="1323.1685791" y2="14.4400024"/>
<line class="st2" x1="1351.9326172" y1="7" x2="1351.9326172" y2="14.4400024"/>
<line class="st2" x1="1377.3043213" y1="7" x2="1377.3043213" y2="14.4400024"/>
<line class="st2" x1="1549.3109131" y1="7" x2="1549.3109131" y2="14.4400024"/>
<line class="st2" x1="1636.6522217" y1="7" x2="1636.6522217" y2="14.4400024"/>
<line class="st2" x1="1698.6218262" y1="7" x2="1698.6218262" y2="14.4400024"/>
<line class="st2" x1="1746.6890869" y1="7" x2="1746.6890869" y2="14.4400024"/>
<line class="st2" x1="1785.9630127" y1="7" x2="1785.9630127" y2="14.4400024"/>
<line class="st2" x1="1819.1685791" y1="7" x2="1819.1685791" y2="14.4400024"/>
<line class="st2" x1="1847.9326172" y1="7" x2="1847.9326172" y2="14.4400024"/>
<line class="st2" x1="1873.3043213" y1="7" x2="1873.3043213" y2="14.4400024"/>
<line class="st2" x1="2045.310791" y1="7" x2="2045.310791" y2="14.4400024"/>
<line class="st2" x1="2132.6520996" y1="7" x2="2132.6520996" y2="14.4400024"/>
<line class="st2" x1="2194.621582" y1="7" x2="2194.621582" y2="14.4400024"/>
<line class="st2" x1="2242.6889648" y1="7" x2="2242.6889648" y2="14.4400024"/>
<line class="st2" x1="2281.9628906" y1="7" x2="2281.9628906" y2="14.4400024"/>
<line class="st2" x1="2315.168457" y1="7" x2="2315.168457" y2="14.4400024"/>
<line class="st2" x1="2343.9326172" y1="7" x2="2343.9326172" y2="14.4400024"/>
<line class="st2" x1="2369.3041992" y1="7" x2="2369.3041992" y2="14.4400024"/>
</g>
<g>
<line class="st2" x1="904" y1="754" x2="904" y2="7"/>
<line class="st2" x1="2392" y1="754" x2="2392" y2="7"/>
<line class="st2" x1="904" y1="754" x2="918.8800049" y2="754"/>
<line class="st2" x1="904" y1="660.625" x2="918.8800049" y2="660.625"/>
<line class="st2" x1="904" y1="567.25" x2="918.8800049" y2="567.25"/>
<line class="st2" x1="904" y1="473.875" x2="918.8800049" y2="473.875"/>
<line class="st2" x1="904" y1="380.5" x2="918.8800049" y2="380.5"/>
<line class="st2" x1="904" y1="287.125" x2="918.8800049" y2="287.125"/>
<line class="st2" x1="904" y1="193.75" x2="918.8800049" y2="193.75"/>
<line class="st2" x1="904" y1="100.375" x2="918.8800049" y2="100.375"/>
<line class="st2" x1="904" y1="7" x2="918.8800049" y2="7"/>
<line class="st2" x1="2392" y1="754" x2="2377.1201172" y2="754"/>
<line class="st2" x1="2392" y1="660.625" x2="2377.1201172" y2="660.625"/>
<line class="st2" x1="2392" y1="567.25" x2="2377.1201172" y2="567.25"/>
<line class="st2" x1="2392" y1="473.875" x2="2377.1201172" y2="473.875"/>
<line class="st2" x1="2392" y1="380.5" x2="2377.1201172" y2="380.5"/>
<line class="st2" x1="2392" y1="287.125" x2="2377.1201172" y2="287.125"/>
<line class="st2" x1="2392" y1="193.75" x2="2377.1201172" y2="193.75"/>
<line class="st2" x1="2392" y1="100.375" x2="2377.1201172" y2="100.375"/>
<line class="st2" x1="2392" y1="7" x2="2377.1201172" y2="7"/>
</g>
<g>
<path class="st3" d="M904,100.375h0.3648071h0.3648071h0.3648071h0.3648071h0.3646851h0.3648071h0.3647461h0.3648682h0.3647461
h0.3648071h0.3648071h0.3648071h0.3648071h0.3648071h0.3646851h0.3648071h0.3648071h0.3647461h0.3648682h0.3647461h0.3648682
h0.3647461h0.3648071h0.3646851h0.3649292h0.3646851h0.3648071h0.3648071h0.3647461h0.3648682h0.3647461h0.3648682h0.3647461
h0.3648071h0.3646851h0.3648071h0.3648071h0.3648071h0.3648071h0.3648071h0.3648071h0.3647461h0.3647461h0.3648682h0.3647461
h0.3647461h0.3648682h0.3647461h0.3648071h0.3648071h0.3648071h0.3648071h0.3647461h0.3647461h0.3647461h0.3648682h0.3647461
h0.3648682h0.3647461h0.3648071h0.3648071h0.3648071h0.3648071h0.3646851h0.3648071h0.3648071h0.3648071h0.3647461h0.3648682
h0.3647461h0.3648071h0.3648071h0.3647461h0.3647461h0.3648071h0.3648071h0.3648071h0.3648071h0.3647461h0.3648682h0.3647461
h0.3648682h0.3647461h0.3647461h0.3647461h0.3648071h0.3648071h0.3648071h0.3648071h0.3647461h0.3648682h0.3646851h0.3648071
h0.3647461h0.3648682h0.3647461h0.3648682h0.3647461h0.3648071h0.3648071h0.3648071h0.3648071h0.3646851h0.3648071h0.3647461
h0.3648682h0.3647461h0.3648682h0.3647461h0.3648071h0.3648071h0.3647461h0.3647461h0.3648071h0.3648071h0.3648071h0.3648071
h0.3647461h0.3648682h0.364624h0.3649292h0.3646851h0.3648682h0.3647461h0.3648071h0.3648071h0.3648071h0.3648071h0.3647461
h0.3648682h0.3646851h0.3649292h0.364624h0.3648682h0.3647461h0.3648071h0.3648071h0.3648071h0.3648071h0.3647461h0.3647461
h0.3648071h0.3648071h0.3647461h0.3648682h0.3647461h0.3648682h0.3647461h0.3648071h0.3646851h0.3649292h0.3646851h0.3648071
h0.3648071h0.3647461h0.3648682h0.3647461h0.3648682h0.3647461h0.3647461h0.3647461h0.3648071h0.3648071h0.3648071h0.3648071
h0.3648071h0.3648071h0.3647461h0.3647461h0.3648682h0.3647461h0.3647461h0.3648682h0.3647461h0.3648071h0.3648071h0.3648071
h0.3648071h0.3647461h0.3647461h0.3647461h0.3648682h0.3647461h0.3648682h0.3647461h0.3648071h0.3648071h0.3648071h0.3648071
h0.3646851h0.3648071h0.3648071h0.3648071h0.3647461h0.3648682h0.3647461h0.3648071h0.3648071h0.3647461h0.3647461h0.3648071
H977.6875h0.3648071h0.3648071h0.3647461h0.3648682h0.3647461h0.3648682h0.364624h0.3648682h0.3647461h0.3648071h0.3648071
h0.3648071h0.3648071h0.3647461h0.3648682h0.3646851h0.3648071h0.3647461h0.3648682h0.3647461h0.3648682h0.3647461h0.3648071
h0.3648071h0.3648071h0.3648071h0.3646851h0.3648071h0.3647461h0.3648682h0.3647461h0.3648682h0.3647461h0.3648071h0.3648071
h0.3646851h0.3648071h0.3648071h0.3648071h0.3648071h0.3648071h0.3647461h0.3648682h0.3647461h0.3648071h0.3646851h0.3648682
h0.3647461h0.3648071h0.3648071h0.3648071h0.3648071h0.3647461h0.3647461h0.3647461h0.3649902h0.364624h0.3648682h0.3647461
h0.3648071h0.3648071h0.3648071h0.3648071h0.3647461h0.3647461h0.3648071h0.3648071h0.3647461h0.3648682h0.3647461h0.3648071
h0.3648071h0.3648071h0.3646851h0.3649292h0.3646851h0.3648071h0.3648071h0.3647461h0.3648682h0.3647461h0.3648682h0.3647461
h0.3647461h0.3647461h0.3648071h0.3648071h0.3648071h0.3648071h0.3647461h0.3648682h0.3647461h0.3647461h0.3648682h0.3647461
h0.3647461h0.3648682h0.3647461h0.3648071h0.3648071h0.3648071h0.3648071h0.3646851h0.3648071h0.3647461h0.3648682h0.3647461
h0.3648682h0.3647461h0.3648071h0.3648071h0.3647461h0.3648682h0.3646851h0.3648071h0.3648071h0.3648071h0.3647461h0.3648682
h0.3647461h0.3648071h0.3648071h0.3647461h0.3647461h0.3648071h0.3648071h0.3648682h0.3647461h0.3647461h0.3648682h0.3647461
h0.3648682h0.364624h0.3648682h0.3647461h0.3647461h0.3648682h0.3648682h0.3647461h0.3647461h0.3648682h0.364624h0.3648682
h0.3647461h0.3648682h0.3647461h0.3648682h0.3647461h0.3648682h0.3647461h0.3647461h0.3647461h0.3647461h0.3648682h0.3647461
h0.3648682h0.3647461h0.3648682h0.3647461h0.3648682h0.364624h0.3648682h0.3647461h0.3647461h0.3648682h0.3648682h0.3647461
h0.3647461h0.3648682h0.3647461h0.3648682h0.364624h0.3648682h0.3647461h0.3647461h0.3648682h0.3648682h0.3647461h0.3647461
h0.3648682h0.364624h0.3648682h0.3647461h0.3648682h0.3647461h0.3647461h0.3648682h0.3648682h0.3647461h0.3647461h0.3647461
h0.3647461h0.3648682h0.3647461h0.3648682h0.3647461h0.3647461h0.3648682h0.3648682h0.364624h0.3648682H1051.375h0.3647461
h0.3648682h0.3647461h0.3648682h0.3647461h0.3648682h0.3647461h0.3647461h0.3647461h0.3648682h0.3647461h0.3647461h0.3648682
h0.3647461h0.3648682h0.3647461h0.3647461h0.3648682h0.3647461h0.3647461h0.3648682h0.3647461h0.3647461h0.3648682h0.3648682
h0.3647461h0.3647461h0.3647461h0.3647461h0.3648682h0.3647461h0.3648682h0.3647461h0.3647461h0.3648682h0.3648682h0.3647461
h0.3647461h0.3647461h0.3647461h0.3648682h0.3647461h0.3648682h0.3647461h0.3647461h0.3648682h0.3647461h0.3647461h0.3648682
h0.3647461h0.3647461h0.3648682h0.3647461h0.3648682h0.3647461h0.3648682h0.364624h0.3648682h0.3647461h0.3648682h0.3647461
h0.3647461h0.3648682h0.3647461h0.3648682h0.3647461h0.3647461h0.3647461h0.3648682h0.3647461h0.3648682h0.3647461h0.3647461
h0.3648682h0.3648682h0.3647461h0.3647461h0.3647461h0.3647461h0.3648682h0.3647461h0.3648682h0.3647461h0.3647461h0.3648682
h0.364624h0.3648682h0.3648682h0.3647461h0.3647461h0.3648682h0.3647461h0.3648682h0.3647461h0.3647461h0.3647461h0.3648682
h0.3647461h0.3648682h0.3647461h0.3647461h0.3648682h0.3647461h0.3648682h0.364624h0.3648682h0.3647461h0.3648682h0.3647461
h0.3648682h0.3647461h0.3647461h0.3648682h0.3647461h0.3647461h0.3648682h0.3647461h0.3647461h0.3648682h0.3647461h0.3648682
h0.3647461h0.3647461h0.3647461h0.3648682h0.3647461h0.3648682h0.3647461h0.3647461h0.3648682h0.3647461h0.3648682h0.3647461
h0.3647461h0.3647461h0.3647461h0.3648682h0.3648682h0.3647461h0.3647461h0.3648682h0.364624h0.3649902h0.3647461h0.3647461
h0.3647461h0.3648682h0.3647461h0.3648682h0.3647461h0.3647461h0.3648682h0.3647461h0.3647461h0.3647461h0.3648682h0.3647461
h0.3648682h0.3647461h0.3648682h0.3647461h0.3647461h0.3648682h0.364624h0.3648682h0.3648682h0.3647461h0.3647461h0.3648682
h0.3647461h0.3648682h0.364624h0.3648682h0.3647461h0.3647461h0.3648682h0.3648682h0.3647461h0.3647461h0.3648682h0.3647461
h0.3648682h0.3647461h0.3647461h0.3647461h0.3647461h0.3648682h0.3648682h0.3647461h0.3647461h0.3648682h0.364624h0.3648682
h0.3647461h0.3648682h0.3647461h0.3647461h0.3648682h0.3648682h0.364624h0.3648682h0.3647461h0.3647461h0.3648682h0.3647461
h0.3648682h0.3647461h0.3648682h0.3647461h0.3648682h0.3647461h0.3647461h0.3647461h0.3647461h0.3648682h0.3647461h0.3648682
h0.3647461h0.3648682h0.3647461h0.3648682h0.364624h0.3648682h0.3647461h0.3647461h0.3648682h0.3648682h0.3647461h0.3647461
h0.3647461h0.3647461h0.3648682h0.3647461h0.3648682h0.3647461h0.3647461h0.3648682h0.3648682h0.3647461h0.3647461h0.3647461
h0.3647461h0.3648682h0.3647461h0.3648682h0.3647461h0.3647461h0.3648682h0.3648682h0.364624h0.3648682h0.3647461h0.3647461
h0.3648682h0.3647461h0.3648682h0.3647461h0.3648682h0.3647461h0.3647461h0.3647461h0.3648682h0.3647461h0.3647461h0.3648682
h0.3647461h0.3648682h0.3647461h0.3647461h0.3647461h0.3648682h0.3647461h0.3648682h0.3647461h0.3647461h0.3648682h0.3648682
h0.3647461h0.3647461h0.3647461h0.3648682h0.3647461h0.3647461h0.3648682h0.3647461h0.3647461h0.3648682h0.364624h0.3649902
h0.3647461h0.3647461h0.3647461h0.3648682h0.3647461h0.3648682h0.3647461h0.3647461h0.3647461h0.3648682h0.3647461h0.3648682
h0.3647461h0.3647461h0.3648682h0.3647461h0.3648682h0.364624h0.3648682h0.3648682h0.3647461h0.3647461h0.3648682h0.3647461
h0.3647461h0.3648682h0.3648682h0.3647461h0.3647461h0.3647461h0.3647461h0.3647461h0.3648682h0.3648682h0.3647461h0.3647461
h0.3647461h0.3649902h0.3647461h0.3647461h0.3647461h0.3647461h0.3648682h0.3647461h0.3648682h0.3647461h0.3647461h0.3647461
h0.3649902h0.364624h0.3648682h0.3647461h0.3647461h0.3648682h0.3647461h0.3648682h0.3647461h0.3647461h0.3647461h0.3647461
h0.3649902h0.3647461h0.3647461h0.3647461h0.3648682h0.3648682h0.3647461h0.3647461h0.3647461h0.3647461h0.3647461h0.3648682
h0.3648682h0.3647461h0.3647461h0.3648682h0.3648682h0.364624h0.3648682h0.3647461h0.3647461h0.3647461h0.3648682h0.3648682
h0.3647461h0.3647461h0.3647461h0.3649902h0.3647461h0.3647461h0.3647461h0.3647461h0.3647461h0.3648682h0.3648682h0.364624
h0.3648682h0.3647461h0.3649902h0.364624h0.3648682h0.3647461h0.3647461h0.3648682h0.3647461h0.3648682h0.3647461h0.3647461
h0.3647461h0.3647461h0.3648682h0.3648682h0.364624h0.3648682h0.3648682h0.3648682h0.364624h0.3648682h0.3647461h0.3647461
h0.3647461h0.3648682h0.3648682h0.3647461h0.3647461h0.3648682h0.3648682h0.364624h0.3648682h0.3647461h0.3647461h0.3647461
h0.3648682h0.3648682h0.364624h0.3648682h0.3648682h0.364624h0.3648682h0.3648682h0.3647461h0.3647461h0.3647461h0.3648682
h0.3647461h0.3647461h0.3648682h0.3647461h0.3647461h0.3648682h0.3648682h0.3647461h0.3647461h0.3648682h0.3647461h0.3647461
h0.3648682h0.3647461h0.3647461h0.3647461h0.3648682h0.3648682h0.364624h0.3648682h0.3648682h0.364624h0.3648682h0.3648682
h0.3647461h0.3647461h0.3647461h0.3648682h0.364624h0.3648682h0.3648682h0.3647461h0.3647461h0.3648682h0.3648682h0.3647461
h0.3647461h0.3647461h0.3647461h0.3647461h0.3648682h0.3648682h0.3648682h0.364624h0.3648682h0.3648682h0.3647461h0.3647461
h0.3647461h0.3647461h0.3648682h0.3647461h0.3648682h0.3647461h0.3647461h0.3648682h0.364624h0.3649902h0.3647461h0.3647461
h0.3647461h0.3648682h0.3648682h0.3647461h0.3647461h0.3647461h0.3647461h0.3647461h0.3649902h0.3647461h0.3647461h0.3647461
h0.3648682h0.3648682h0.3647461h0.3647461h0.3647461h0.3648682h0.364624h0.3648682h0.3648682h0.3647461h0.3647461h0.3648682
h0.3648682h0.3647461h0.3647461h0.3647461h0.3647461h0.3647461h0.3648682h0.3648682h0.3647461h0.3647461h0.3647461h0.3649902
h0.3647461h0.3647461h0.3647461h0.3647461h0.3648682h0.3647461h0.3648682h0.3647461h0.3647461h0.3647461h0.3649902h0.3647461
h0.3647461h0.3647461h0.3647461h0.3648682h0.3647461h0.3648682h0.3647461h0.3647461h0.3647461h0.3647461h0.3649902h0.3647461
h0.3647461h0.3647461h0.3648682h0.3648682h0.3647461h0.3647461h0.3647461h0.3647461h0.3647461h0.3648682h0.3648682h0.3647461
h0.3647461h0.3648682h0.3648682h0.3647461h0.3647461h0.3647461h0.3647461h0.3647461h0.3648682h0.3648682h0.3647461h0.3647461
h0.3647461h0.3649902h0.3647461h0.3647461h0.3647461h0.3647461h0.3647461h0.3648682h0.3648682h0.3647461h0.3647461h0.3647461
h0.3649902h0.3647461h0.3647461h0.3647461h0.3647461h0.3648682h0.3647461h0.3648682h0.3647461h0.3647461h0.3647461h0.3647461
h0.3648682h0.3648682h0.3647461h0.3647461h0.3648682h0.3648682h0.3647461h0.3647461h0.3647461h0.3647461h0.3647461h0.3648682
h0.3648682h0.3647461h0.3647461h0.3648682h0.364624h0.3648682h0.3648682h0.3647461h0.3647461h0.3647461h0.3648682h0.3648682
h0.3647461h0.3647461h0.3648682h0.3648682h0.3647461h0.3647461h0.3647461h0.3647461h0.3647461h0.3648682h0.3648682h0.3647461
h0.3647461h0.3647461h0.3649902h0.364624h0.3648682h0.3647461h0.3647461h0.3648682h0.3647461h0.3648682h0.3647461h0.3647461
h0.3647461h0.3647461h0.3648682h0.3648682h0.3647461h0.3647461h0.3648682h0.3647461h0.3647461h0.3648682h0.3647461h0.3647461
h0.3647461h0.3648682h0.3648682h0.364624h0.3648682h0.3648682h0.364624h0.3648682h0.3648682h0.3647461h0.3647461h0.3647461
h0.3648682h0.364624h0.3648682h0.3648682h0.3647461h0.3647461h0.3648682h0.3648682h0.3647461h0.3647461h0.3647461h0.3647461
h0.3648682h0.3647461h0.3648682h0.3647461h0.3649902h0.364624h0.3648682h0.3647461h0.3647461h0.3647461h0.3648682h0.3647461
h0.3648682h0.3647461h0.3647461h0.3647461h0.3648682h0.3648682h0.3647461h0.3647461h0.3648682h0.3647461h0.3647461h0.3648682
h0.3647461h0.3647461h0.3647461h0.3648682h0.364624h0.3648682h0.3648682h0.3648682h0.364624h0.3648682h0.3648682h0.3647461
h0.3647461h0.3647461h0.3647461h0.3647461h0.3648682h0.3648682h0.3647461h0.3647461h0.3648682h0.3648682h0.3647461h0.3647461
h0.3647461h0.3647461h0.3648682h0.3647461h0.3648682h0.3647461h0.3647461h0.3647461h0.3649902h0.3647461h0.3647461h0.3647461
h0.3647461h0.3648682h0.3647461h0.3648682h0.3647461h0.3647461h0.3647461h0.3647461h0.3649902h0.3647461h0.3648682h0.364624
h0.3648682h0.3648682h0.3647461h0.3647461h0.3647461h0.3648682h0.364624h0.3648682h0.3648682h0.3647461h0.3647461h0.3648682
h0.3648682h0.3647461h0.3647461h0.3647461h0.3647461h0.3647461h0.3648682h0.3648682h0.3647461h0.3647461h0.3648682h0.3648682
h0.3647461h0.3647461h0.3647461h0.3647461h0.3647461h0.3648682h0.3648682h0.3647461h0.3647461h0.3647461h0.3649902h0.3647461
h0.3647461h0.3647461h0.3647461h0.3648682h0.3647461h0.3648682h0.3647461h0.3647461h0.3647461h0.3647461h0.3648682h0.3648682
h0.3647461h0.3647461h0.3648682h0.3648682h0.3647461h0.3647461h0.3647461h0.3647461h0.3647461h0.3648682h0.3648682h0.3647461
h0.3647461h0.3648682h0.3648682h0.3647461h0.3647461h0.3647461h0.3647461h0.3647461h0.3648682h0.3648682h0.3647461h0.3647461
h0.3648682h0.3648682h0.3647461h0.3647461h0.3647461h0.3647461h0.3647461h0.3648682h0.3648682h0.3647461h0.3647461h0.3647461
h0.3649902h0.3647461h0.3647461h0.3647461h0.3647461h0.3648682h0.3647461h0.3648682h0.3647461h0.3647461h0.3647461h0.3647461
h0.3648682h0.3648682h0.3647461h0.3647461h0.3648682h0.3647461h0.3648682h0.3647461h0.3647461h0.3647461h0.3647461h0.3648682
h0.3648682h0.364624h0.3648682h0.3648682h0.3648682h0.364624h0.3648682h0.3647461h0.3647461h0.3647461h0.3648682h0.3648682
h0.364624h0.3648682h0.3648682h0.364624h0.3648682h0.3648682h0.3647461h0.3647461h0.3647461h0.3648682h0.3648682h0.3647461
h0.3647461h0.3647461h0.3649902h0.364624h0.3648682h0.3647461h0.3647461h0.3647461h0.3648682h0.3648682h0.3647461h0.3647461
h0.3647461h0.3649902h0.364624h0.3648682h0.3647461h0.3647461h0.3648682h0.3647461h0.3647461h0.3648682h0.3647461h0.3647461
h0.3647461h0.3648682h0.3648682h0.364624h0.3648682h0.3648682h0.364624h0.3648682h0.3648682h0.3647461h0.3647461h0.3647461
h0.3648682h0.364624h0.3648682h0.3648682h0.3647461h0.3647461h0.3648682h0.3648682h0.3647461h0.3647461h0.3647461h0.3647461
h0.3648682h0.3647461h0.3648682h0.3647461h0.3647461h0.3648682h0.3648682h0.3647461h0.3647461h0.3647461h0.3647461h0.3648682
h0.3647461h0.3648682h0.3647461h0.3647461h0.3648682h0.3648682h0.3647461h0.3647461h0.3648682h0.3647461h0.3647461h0.3648682
h0.3647461h0.3647461h0.3647461h0.3648682h0.3648682h0.364624h0.3648682h0.3648682h0.364624h0.3648682h0.3648682h0.3647461
h0.3647461h0.3647461h0.3648682h0.364624h0.3648682h0.3648682h0.3647461h0.3647461h0.3648682h0.3648682h0.3647461h0.3647461
h0.3647461h0.3647461h0.3647461h0.3648682h0.3648682h0.3647461h0.3647461h0.3648682h0.3648682h0.3647461h0.3647461h0.3647461
h0.3647461h0.3648682h0.3647461h0.3648682h0.3647461h0.3647461h0.3647461h0.3647461h0.3649902h0.3647461h0.3647461h0.3647461
h0.3648682h0.3648682h0.3647461h0.3647461h0.3647461h0.3647461h0.3647461h0.3648682h0.3648682h0.3647461h0.3647461h0.3648682
h0.3648682h0.3647461h0.3647461h0.3647461h0.3647461h0.3647461h0.3648682h0.3648682h0.3647461h0.3647461h0.3648682h0.3648682
h0.3647461h0.3647461h0.3647461h0.3647461h0.3647461h0.3648682h0.3648682h0.3647461h0.3647461h0.3647461h0.3649902h0.3647461
h0.3647461h0.3647461h0.3647461h0.3648682h0.3647461h0.3648682h0.3647461h0.3647461h0.3647461h0.3647461h0.3649902h0.3647461
h0.3647461h0.3647461h0.3648682h0.3647461h0.3648682h0.3647461h0.3647461h0.3647461h0.3647461h0.3648682h0.3648682h0.3647461
h0.3647461h0.3648682h0.3648682h0.364624h0.3648682h0.3647461h0.3647461h0.3647461h0.3648682h0.3648682h0.364624h0.3648682
h0.3648682h0.3648682h0.364624h0.3648682h0.3647461h0.3647461h0.3647461h0.3648682h0.3648682h0.3647461h0.3647461h0.3647461
h0.3649902h0.3647461h0.3647461h0.3647461h0.3647461h0.3647461h0.3648682h0.3648682h0.3647461h0.3647461h0.3647461h0.3649902
h0.364624h0.3648682h0.3647461h0.3647461h0.3648682h0.3647461h0.3648682h0.3647461h0.3647461h0.3647461h0.3647461h0.3648682
h0.3648682h0.3647461h0.3647461h0.3648682h0.3648682h0.364624h0.3648682h0.3647461h0.3647461h0.3647461h0.3648682h0.3648682
h0.364624h0.3648682h0.3648682h0.364624h0.3648682h0.3648682h0.3647461h0.3647461h0.3647461h0.3648682h0.3647461h0.3647461
h0.3648682h0.3647461h0.3647461h0.3648682h0.3648682h0.3647461h0.3647461h0.3647461h0.3647461h0.3648682h0.3648682h0.3647461
h0.3647461h0.3649902h0.364624h0.3648682h0.3647461h0.3647461h0.3648682h0.3647461h0.3648682h0.3647461h0.3647461h0.3647461
h0.3647461h0.3648682h0.3648682h0.364624h0.3648682h0.3648682h0.3648682h0.364624h0.3648682h0.3647461h0.3647461h0.3647461
h0.3648682h0.3552246h0.3282471h0.362793h0.3626709h0.3625488h0.362915h0.3625488h0.3626709h0.3626709h0.362793h0.3625488
h0.362793h0.3626709h0.3626709h0.362793h0.3625488h0.362793h0.362793h0.3625488h0.3626709h0.3626709h0.3625488h0.362793h0.3626709
h0.3626709h0.362793h0.3626709h0.3626709h0.362793h0.3625488h0.362793h0.3625488h0.362793h0.3625488h0.362793h0.3626709h0.3626709
h0.362793h0.3626709h0.3626709h0.362793h0.3625488h0.3626709h0.3626709h0.362793h0.3625488h0.362793h0.3626709h0.3626709h0.362793
h0.3625488h0.362793h0.362793h0.3625488h0.3626709h0.3626709h0.3625488h0.362793h0.3626709h0.3626709h0.362793h0.3626709
h0.3626709h0.362793h0.3625488h0.362793h0.3626709h0.3626709h0.3625488h0.362793h0.3626709h0.3626709h0.362793h0.3625488h0.362793
h0.362793h0.3625488h0.3626709h0.3626709h0.362793h0.3626709h0.3626709h0.362793h0.3625488h0.362793h0.3625488h0.362793h0.3625488
h0.362793h0.3626709h0.3626709h0.3626709h0.362793h0.3625488h0.3626709h0.362793h0.3626709h0.3626709h0.362793h0.3625488h0.362793
h0.3626709h0.3626709h0.3626709h0.3626709h0.362793h0.3625488h0.362793h0.3625488h0.362793h0.3625488h0.362793h0.3626709
h0.3626709h0.362793h0.3626709h0.3626709h0.362793h0.3625488h0.3626709h0.3626709h0.362793h0.3625488h0.3626709h0.362793
h0.3626709h0.3626709h0.362793h0.3626709h0.3625488h0.362793h0.3626709h0.3626709h0.362793h0.3625488h0.3626709h0.362793
h0.3626709h0.3626709h0.3626709h0.362793h0.3625488h0.362793h0.3625488h0.362793h0.3625488h0.362793h0.3626709h0.3626709h0.362793
h0.3626709h0.3626709h0.362793h0.3625488h0.3626709h0.3626709h0.362793h0.3626709h0.3625488h0.362793h0.3626709h0.3626709
h0.3626709h0.362793h0.3625488h0.362793h0.3625488h0.362793h0.362793h0.3625488h0.3626709h0.362915h0.3625488h0.3626709h0.3626709
h0.3625488h0.362793h0.362793h0.3625488h0.362793h0.3626709h0.3626709h0.362793h0.3625488h0.362793h0.3625488h0.362793h0.3625488
h0.362793h0.3626709h0.3626709h0.362793h0.3626709h0.3625488h0.362915h0.3625488h0.3626709h0.3626709h0.362793h0.3625488h0.362793
h0.3625488h0.362793h0.362793h0.3625488h0.362793h0.362793h0.3625488h0.3626709h0.3626709h0.3625488h0.362793h0.3626709h0.3626709
h0.362793h0.3626709h0.3626709h0.362793h0.3625488h0.362793h0.3625488h0.362793h0.3625488h0.362793h0.3626709h0.3626709h0.362793
h0.3626709h0.3626709h0.362793h0.3625488h0.3626709h0.3626709h0.362793h0.3625488h0.362793h0.3625488h0.362793h0.362793h0.3625488
h0.362793h0.3625488h0.362793h0.3626709h0.3626709h0.3625488h0.362915h0.3625488h0.3626709h0.362793h0.3626709h0.3626709h0.362793
h0.3625488h0.362793h0.3625488l0.362793,0.0001068h0.3626709h0.3626709h0.3626709h0.3626709h0.362793h0.3625488h0.362793
h0.3625488h0.362793h0.3626709h0.3626709h0.362793h0.3626709h0.3626709h0.3625488h0.362793h0.362793h0.3625488h0.362793h0.3625488
h0.362793h0.3626709h0.3626709h0.3626709h0.362793h0.3626709h0.3625488h0.362793h0.3626709l0.3626709,0.0000916h0.362793
h0.3625488h0.3626709h0.3626709h0.362793h0.3626709h0.3626709h0.362793h0.3625488h0.362793h0.3625488h0.362793h0.3625488h0.362793
l0.3626709,0.0001068h0.3626709h0.362793h0.3626709h0.3626709h0.3625488h0.362793h0.3626709h0.3626709h0.362793h0.3625488
l0.3626709,0.0000916h0.362793h0.3626709h0.3626709h0.3626709h0.362793h0.3625488h0.362793h0.3626709h0.3626709h0.362793
h0.3625488l0.3626709,0.0001068h0.3626709h0.362793h0.3626709h0.3626709h0.362793l0.3625488,0.0000916h0.362793h0.3625488
h0.362793h0.3626709l0.3626709,0.0001068h0.3626709h0.3626709h0.362793h0.3625488l0.362793,0.0000916h0.3625488h0.362793
h0.3626709h0.3626709h0.362793l0.3626709,0.0001068h0.3625488h0.362915l0.3625488,0.0001068h0.3626709h0.3626709
l0.362793,0.0000916h0.3625488h0.362793l0.3625488,0.0001068h0.362793h0.362793l0.3625488,0.0000916h0.362793h0.3625488
l0.362793,0.0001068h0.3626709h0.3626709l0.3625488,0.0000916h0.362793l0.3626709,0.0001068h0.3626709l0.362793,0.0000916
h0.3626709l0.3626709,0.0001068h0.362793l0.3625488,0.0001068h0.362793l0.3625488,0.0000916h0.362793l0.3625488,0.0001068
l0.362793,0.0000916h0.3626709l0.3626709,0.0001068l0.362793,0.0000916h0.3626709l0.3626709,0.0001068l0.362793,0.0000916
l0.3625488,0.0001068h0.3626709l0.3626709,0.0001068l0.3625488,0.0000916l0.362793,0.0001068l0.362793,0.0000916
l0.3625488,0.0001068l0.362793,0.0000916h0.362793l0.3625488,0.0001068l0.362793,0.0001984h0.3625488l0.362793,0.0000916
l0.3626709,0.0002136l0.3626709,0.0000916l0.3625488,0.0001068l0.362915,0.0000916l0.3625488,0.0001984l0.3626709,0.0001068
l0.362793,0.0000916l0.3626709,0.0002136l0.3626709,0.0000916l0.362793,0.0001068l0.3625488,0.0001984l0.362793,0.0000916
l0.3625488,0.0001984l0.362793,0.0002136l0.3625488,0.0000916l0.362793,0.0001984l0.3626709,0.0001984l0.3626709,0.0001984
l0.362793,0.0001068l0.3625488,0.0001984l0.362793,0.0001984l0.362793,0.0003052l0.3625488,0.0000916l0.3626709,0.0003052
l0.3626709,0.0001984l0.3625488,0.0001984l0.362915,0.0003052l0.3626709,0.0001984l0.3625488,0.0003052l0.362793,0.0001984
l0.362793,0.0002899l0.3625488,0.0003052l0.362793,0.0003052l0.3625488,0.0001984l0.362793,0.0003967l0.3626709,0.0003052
l0.3626709,0.0002899l0.3626709,0.0003052l0.362793,0.0003052l0.3625488,0.0003967l0.3626709,0.0003967l0.362793,0.0003967
l0.3626709,0.0003052l0.3626709,0.0003967l0.3625488,0.000412l0.362793,0.0004883l0.362793,0.0003967l0.3625488,0.0005035
l0.362793,0.0003967l0.3626709,0.0005035l0.3626709,0.0005035l0.362793,0.0005035l0.3625488,0.0005035l0.362793,0.0004883
l0.3625488,0.0006104l0.362793,0.0005951l0.3625488,0.0005035l0.362793,0.0005951l0.3626709,0.0005951l0.3626709,0.0007019
l0.3626709,0.0006104l0.362793,0.0006866l0.3626709,0.0007019l0.3625488,0.0007019l0.362793,0.0008087l0.3626709,0.0006866
l0.3626709,0.0008087l0.3625488,0.0007935l0.362793,0.0009003l0.3626709,0.0008087l0.3626709,0.0009003l0.362793,0.0009003
l0.3626709,0.0009918l0.3626709,0.0010071l0.362793,0.0009003l0.3625488,0.0010986l0.362793,0.0009918l0.3626709,0.0012054
l0.3626709,0.0010986l0.3625488,0.0012054l0.362793,0.0011902l0.3626709,0.0012054l0.3626709,0.001297l0.362793,0.001297
l0.3626709,0.0013123l0.3626709,0.0013885l0.362793,0.0015106l0.3625488,0.0014954l0.362793,0.0014954l0.3625488,0.0016022
l0.362793,0.0016022l0.3625488,0.0016937l0.3626709,0.001709l0.362793,0.0018005l0.3626709,0.0018005l0.3626709,0.0018921
l0.362793,0.0019073l0.3626709,0.0019989l0.3625488,0.0021057l0.362793,0.0021973l0.3626709,0.0021973l0.3626709,0.0021973
l0.3625488,0.0023956l0.362915,0.0024109l0.3625488,0.0024872l0.3626709,0.0025024l0.362793,0.0027008l0.3626709,0.0027008
l0.3626709,0.0028076l0.362793,0.0028992l0.3625488,0.0029907l0.362793,0.0031128l0.3626709,0.0030975l0.3626709,0.0032959
l0.3625488,0.0034027l0.362915,0.0034943l0.3625488,0.0035095l0.3626709,0.0036926l0.362793,0.0039063l0.3626709,0.003891
l0.3626709,0.0039978l0.3625488,0.0042114l0.362793,0.0042877l0.362793,0.0045013l0.3625488,0.0046082l0.362793,0.0046997
l0.3626709,0.0048981l0.3625488,0.0050049l0.362915,0.005188l0.3625488,0.0053101l0.3626709,0.0054932l0.362793,0.0057068
l0.3626709,0.0058899l0.3625488,0.006012l0.362793,0.0061951l0.3626709,0.0063934l0.3626709,0.0066986l0.3626709,0.0068054
l0.362793,0.0070953l0.3625488,0.0072021l0.3626709,0.0075073l0.362793,0.0077972l0.3626709,0.0079041l0.3626709,0.0083008
l0.362793,0.0083923l0.3625488,0.0086975l0.3626709,0.0091095l0.362793,0.0092926l0.3626709,0.0095978l0.3626709,0.009903
l0.362793,0.0101013l0.3625488,0.0106049l0.3626709,0.0108032l0.362793,0.0112l0.3626709,0.0114899l0.3626709,0.0119019
l0.3626709,0.0122986l0.3626709,0.0126038l0.3626709,0.013092l0.3626709,0.013504l0.362793,0.0138092l0.3626709,0.014389
l0.3626709,0.0147095l0.3626709,0.0151978l0.3626709,0.0157928l0.3626709,0.0162048l0.362793,0.0166016l0.3626709,0.0173035
l0.3626709,0.0177917l0.3626709,0.0182037l0.3626709,0.0189972l0.3626709,0.0194092l0.3626709,0.0200958l0.362793,0.0207977
l0.3626709,0.0213013l0.3625488,0.0220947l0.362793,0.0227051l0.3626709,0.0233917l0.3626709,0.0242004l0.362793,0.0249023
l0.3626709,0.0256958l0.3625488,0.0265045l0.362793,0.027298l0.3626709,0.0281982l0.3626709,0.029007l0.362793,0.0299988
l0.3625488,0.0308075l0.3626709,0.0318909l0.362793,0.0328064l0.3626709,0.0337982l0.3626709,0.0348969l0.3626709,0.0359039
l0.3626709,0.0370941l0.3626709,0.038208l0.3626709,0.0393982l0.362793,0.0406036l0.3626709,0.0417938l0.3626709,0.0431061
l0.3626709,0.0443878l0.3626709,0.0458984l0.3626709,0.0472107l0.362793,0.0485992l0.3626709,0.0500946l0.3626709,0.0516968
l0.3626709,0.0532074l0.3626709,0.0547943l0.3626709,0.0564117l0.3626709,0.058197l0.362793,0.0599976l0.3626709,0.0616913
l0.3625488,0.0636139l0.362793,0.0654907l0.3626709,0.0673981l0.3626709,0.069397l0.362793,0.0715027l0.3625488,0.0736084
l0.3626709,0.0757904l0.362793,0.0780029l0.3626709,0.080307l0.3626709,0.0827026l0.362793,0.0850983l0.3625488,0.0874939
l0.3626709,0.0901031l0.362793,0.0925903l0.3626709,0.0953064l0.3626709,0.0980988l0.3626709,0.1009064l0.3626709,0.1036987
l0.3626709,0.1066895l0.3626709,0.1096039l0.362793,0.1128082l0.3626709,0.1158905l0.3626709,0.1191101l0.3626709,0.1223907
l0.3626709,0.1257019l0.3626709,0.1291962l0.362793,0.1327057l0.3626709,0.1363983l0.3626709,0.1399994l0.3626709,0.1437073
l0.3626709,0.1474915l0.3626709,0.1515045l0.3626709,0.1555023l0.362793,0.1593933l0.3626709,0.1636963l0.3625488,0.1678009
l0.362793,0.1721039l0.3626709,0.1764984l0.3626709,0.1809082l0.362793,0.1855011l0.3625488,0.1900024l0.3626709,0.1946869
l0.362793,0.1995087l0.3626709,0.2042999l0.3626709,0.209198l0.362793,0.2140961l0.3625488,0.2192078l0.3626709,0.2241974
l0.362793,0.2294922l0.3626709,0.2347107l0.3626709,0.2399902l0.3626709,0.2453003l0.3626709,0.2509003l0.3626709,0.2562103
l0.3626709,0.2618866l0.362793,0.2674103l0.3626709,0.2731018l0.3626709,0.2787933l0.3626709,0.2846069l0.3626709,0.29039
l0.3626709,0.2962036l0.362793,0.3021088l0.3626709,0.3079987l0.3626709,0.3139954l0.3626709,0.3199921l0.3626709,0.3261108
l0.3626709,0.3320007l0.362793,0.338089l0.3626709,0.3442993l0.3626709,0.3504028l0.3625488,0.3563995l0.362793,0.3627014
l0.3626709,0.3686981l0.3626709,0.375l0.362793,0.3811035l0.3625488,0.387207l0.3626709,0.3933868l0.362793,0.3995056
l0.3626709,0.4057007l0.3626709,0.4116974l0.3626709,0.4179077l0.3626709,0.423996l0.3626709,0.4299927l0.362793,0.4360046
l0.3626709,0.4420013l0.3626709,0.4481049l0.3626709,0.4539032l0.3626709,0.4598999l0.3626709,0.4656982l0.3626709,0.4714966
l0.362793,0.4772949l0.3626709,0.4831085l0.3626709,0.4886932l0.3626709,0.4944l0.3626709,0.5l0.3626709,0.5054016
l0.362793,0.5110016l0.3626709,0.5164032l0.3626709,0.5217896l0.3626709,0.5270081l0.3626709,0.5323029l0.3626709,0.5374908
l0.362793,0.5426025l0.3626709,0.547699l0.3626709,0.5527039l0.3625488,0.5576019l0.362793,0.5623932l0.3626709,0.5673065
l0.3626709,0.571991l0.362793,0.5767059l0.3625488,0.5812073l0.3626709,0.5858917l0.362793,0.5901947l0.3626709,0.5947113
l0.3626709,0.598999l0.3626709,0.603302l0.3626709,0.6074982l0.3626709,0.6116943l0.362793,0.6157074l0.3626709,0.6196899
l0.3626709,0.623703l0.3626709,0.627594l0.3626709,0.6314087l0.3626709,0.6351929l0.3626709,0.6389008l0.362793,0.6425018
l0.3626709,0.6461029l0.3626709,0.649704l0.3626709,0.6530914l0.3626709,0.6565094l0.3626709,0.6599884l0.362793,0.663208
l0.3626709,0.6665039l0.3626709,0.6696014l0.3626709,0.6727905l0.3626709,0.6760101l0.3626709,0.6789856l0.362793,0.6820068
l0.3626709,0.6849976l0.3626709,0.6878052l0.3625488,0.6907959l0.362793,0.6936035l0.3626709,0.6963959l0.3626709,0.6992035
l0.362793,0.7017975l0.3625488,0.7046051l0.3626709,0.7070923l0.362793,0.7098083l0.3626709,0.7124023l0.3626709,0.7148895
l0.3626709,0.7174072l0.3626709,0.7198944l0.3626709,0.7221985l0.362793,0.7248077l0.3626709,0.7270966l0.3626709,0.7294922
l0.3626709,0.7318115l0.3626709,0.7341003l0.3626709,0.7363892l0.3626709,0.7387085l0.362793,0.7408905l0.3626709,0.7432098
l0.3626709,0.7453003l0.3626709,0.7476044l0.3626709,0.749588l0.3626709,0.7519073l0.362793,0.7539978l0.3626709,0.7561035
l0.3626709,0.758194l0.3626709,0.7602997l0.3626709,0.7624054l0.3626709,0.7644958l0.362793,0.7666016l0.3626709,0.7684937
l0.3625488,0.7705994l0.3626709,0.7727051l0.362793,0.774704l0.3626709,0.7767029l0.3626709,0.7787018l0.362793,0.7807922
l0.3625488,0.7826996l0.3626709,0.7846985l0.362793,0.7868042l0.3626709,0.7886963l0.3626709,0.7906952l0.3626709,0.7928009
l0.3626709,0.7947083l0.3626709,0.7966919l0.362793,0.7988129l0.3626709,0.8006897l0.3626709,0.8027039l0.3626709,0.8047028
l0.3626709,0.8067932l0.3626709,0.8087006l0.3626709,0.8108063l0.362793,0.8128052l0.3626709,0.8148804l0.3626709,0.816925
l0.3626709,0.8187866l0.3626709,0.8210144l0.3626709,0.8230896l0.362793,0.8251038l0.3626709,0.827179l0.3626709,0.8292236
l0.3626709,0.8314819l0.3626709,0.8334961l0.3626709,0.8356018l0.362793,0.8377991l0.3626709,0.8399048l0.3625488,0.8421021
l0.3626709,0.8442993l0.362793,0.8464966l0.3626709,0.8486938l0.3626709,0.8509216l0.3626709,0.8531799l0.3626709,0.8554077
l0.3626709,0.8576965l0.362793,0.8600159l0.3626709,0.8623047l0.3626709,0.8646851l0.3626709,0.8670044l0.3626709,0.8693848
l0.3626709,0.8718262l0.362793,0.874176l0.3626709,0.8766174l0.3626709,0.8791809l0.3626709,0.8816223l0.3626709,0.8840942
l0.3626709,0.8865967l0.3626709,0.8893127l0.362793,0.8917847l0.3626709,0.8944092l0.3626709,0.8970947l0.3626709,0.8996887
l0.3626709,0.9024963l0.3626709,0.9052124l0.362793,0.9078979l0.3626709,0.9107056l0.3626709,0.9136047l0.3626709,0.9163818
l0.3626709,0.91922l0.3626709,0.9223022l0.362793,0.9252014l0.3626709,0.9281006l0.3625488,0.9311829l0.362793,0.9342957
l0.3626709,0.9373169l0.3270264,0.8479919l0.2575684,0.6694031l0.3518066,0.9173889l0.3518066,0.9203186l0.3519287,0.9234924
l0.3518066,0.9266052l0.3518066,0.9297791l0.3518066,0.9330139l0.3519287,0.9363098l0.3518066,0.9395752l0.3518066,0.9429016
l0.3519287,0.9463196l0.3518066,0.9496765l0.3518066,0.9532166l0.3518066,0.9567871l0.3519287,0.9602966l0.3518066,0.9640198
l0.3518066,0.9675903l0.3518066,0.9714966l0.3519287,0.9752197l0.3518066,0.9789734l0.3518066,0.9829102l0.3519287,0.9869995
l0.3518066,0.9909058l0.3518066,0.9949951l0.3518066,0.9992065l0.3519287,1.0033875l0.3518066,1.0077209l0.3518066,1.0119934
l0.3518066,1.01651l0.3519287,1.020874l0.3518066,1.0256042l0.3518066,1.0301208l0.3518066,1.0349731l0.3518066,1.0396118
l0.3518066,1.0446167l0.3519287,1.0495911l0.3518066,1.0545959l0.3518066,1.0596924l0.3518066,1.0650024l0.3519287,1.0703125
l0.3518066,1.0758057l0.3518066,1.0811768l0.3519287,1.0870056l0.3518066,1.0925903l0.3518066,1.0985107l0.3518066,1.1044006
l0.3519287,1.1105957l0.3518066,1.1167908l0.3518066,1.1230164l0.3518066,1.1294861l0.3519287,1.1361084l0.3518066,1.1427917
l0.3518066,1.1498108l0.3519287,1.1567078l0.3518066,1.1637878l0.3518066,1.1712036l0.3518066,1.1785889l0.3519287,1.1864014
l0.3518066,1.1940002l0.3518066,1.2022095l0.3518066,1.2102966l0.3519287,1.2187195l0.3518066,1.2271729l0.3518066,1.2361145
l0.3519287,1.2450867l0.3518066,1.254303l0.3518066,1.2637939l0.3518066,1.2735291l0.3519287,1.2834778l0.3518066,1.2937012
l0.3518066,1.3041992l0.3518066,1.315094l0.3519287,1.3261108l0.3518066,1.337616l0.3518066,1.3492737l0.3519287,1.3614197
l0.3518066,1.3739014l0.3518066,1.3867798l0.3518066,1.4000244l0.3519287,1.4135742l0.3518066,1.4277039l0.3518066,1.4423218
l0.3518066,1.4573975l0.3519287,1.4729004l0.3518066,1.4891052l0.3518066,1.5056763l0.3519287,1.5230103l0.3518066,1.5409851
l0.3518066,1.5595093l0.3518066,1.5789185l0.3519287,1.598999l0.3518066,1.619873l0.3518066,1.6417236l0.3518066,1.6643982
l0.3519287,1.6880798l0.3518066,1.7127991l0.3518066,1.7388l0.3519287,1.7658997l0.3518066,1.7943115l0.3518066,1.8240967
l0.3518066,1.8555908l0.2945557,1.5789185l0.3508301,1.9114075l0.3518066,1.9538879l0.3518066,1.9924927l0.3519287,2.0332947
l0.3518066,2.0765991l0.3518066,2.1227112l0.3519287,2.171814l0.3518066,2.2242737l0.3518066,2.2806091l0.3518066,2.3409119
l0.3519287,2.4060059l0.3518066,2.4762878l0.3518066,2.5524902l0.3518066,2.6353149l0.3519287,2.7259827l0.3518066,2.8253174
l0.3518066,2.934906l0.3519287,3.0562744l0.3518066,3.191803l0.3518066,3.343811l0.3518066,3.515686l0.3519287,3.7117004
l0.3518066,3.9376221l0.3518066,4.2003784l0.3518066,4.5107117l0.3519287,4.8822021l0.3518066,5.3356934l0.3518066,5.9017944
l0.3518066,6.6290894l0.3518066,7.5983276l0.3518066,8.9553833l0.3519287,10.9946289l0.3518066,14.4115601l0.3518066,21.3657227
l0.3518066,44.3768921l0.3519287,4.0742188l0.3518066-44.7733154l0.3518066-20.0523071l0.3519287-12.8536987l0.3518066-9.3549194
l0.3518066-7.2778931l0.3518066-5.8999634l0.3519287-4.9179077l0.3518066-4.1817017l0.3518066-3.6088257l0.3518066-3.1499634
l0.3519287-2.7739258l0.3518066-2.4597778l0.3518066-2.1930237l0.3519287-1.9637756l0.3518066-1.7642212l0.3518066-1.5888062
l0.3518066-1.4332886l0.3519287-1.2943115l0.3518066-1.1690979l0.3518066-1.0557861l0.3518066-0.9525146l0.3519287-0.8576965
l0.3518066-0.7705994l0.3518066-0.6898804l0.3519287-0.6150208l0.3518066-0.5450745l0.3518066-0.4797058l0.3518066-0.4181213
l0.3519287-0.3600769l0.3518066-0.3052063l0.3518066-0.2529907l0.3518066-0.2035217l0.3519287-0.1560059l0.3518066-0.1106873
l0.3518066-0.0671082l0.3519287-0.0250854l0.3518066,0.0153809l0.3518066,0.0546265l0.3518066,0.0926819l0.3519287,0.1297913
l0.3518066,0.165802l0.3518066,0.2012024l0.3518066,0.2359009l0.3519287,0.2698059l0.3518066,0.3033142l0.3518066,0.3364868
l0.3519287,0.3691101l0.3518066,0.4015808l0.3518066,0.4338989l0.3518066,0.4660034l0.3519287,0.4981079l0.3518066,0.530304
l0.3518066,0.5625l0.3518066,0.5949097l0.3519287,0.6276855l0.3518066,0.6607056l0.3518066,0.6941833l0.3519287,0.7281189
l0.3518066,0.7626953l0.3518066,0.7980042l0.3518066,0.8339844l0.3519287,0.8710022l0.3518066,0.9089966l0.3518066,0.9481201
l0.3518066,0.9884949l0.3519287,1.030304l0.3518066,1.0737915l0.3518066,1.1188965l0.3519287,1.1661987l0.3518066,1.2153931
L1864.5,448.5432129l0.3518066,1.3218994l0.3519287,1.3795776l0.3518066,1.4406128l0.3518066,1.5056763l0.3518066,1.5749512
l0.3519287,1.649292l0.3518066,1.7290649l0.3518066,1.8154297l0.3519287,1.9089966l0.3518066,2.0109863l0.3518066,2.1229858
l0.3518066,2.2463989l0.3519287,2.3832397l0.3518066,2.5362549l0.3518066,2.7084961l0.3518066,2.9041138l0.3519287,3.1287231
l0.3518066,3.3890991l0.3518066,3.6951904l0.3519287,4.060791l0.3518066,4.505188l0.3518066,5.0578003l0.3518066,5.7644043
l0.3519287,6.7009277l0.3518066,8.0028076l0.3518066,9.939209l0.3519287,13.1326904l0.3518066,19.4356079l0.3516846,38.3934937
l0.3519287,22.8393555l0.3518066-53.5072021l0.3518066-22.192749l0.3518066-14.1888428l0.3519287-10.4313965l0.3518066-8.2390747
l0.3518066-6.8002319l0.3519287-5.7819824l0.3518066-5.0230713l0.3518066-4.4349976l0.3518066-3.9660034l0.3519287-3.5826416
l0.3518066-3.2634888l0.3518066-2.9935913l0.3518066-2.762085l0.3519287-2.5613403l0.3518066-2.385498l0.3518066-2.2301025
l0.3519287-2.0917969l0.3518066-1.9678955l0.3518066-1.855957l0.3518066-1.7546997l0.3519287-1.6623535l0.3518066-1.5776978
l0.3518066-1.5l0.3518066-1.4284058l0.3519287-1.3619995l0.3518066-1.300293l0.3518066-1.2428589l0.3519287-1.1893311
l0.3518066-1.1389771l0.3518066-1.092041l0.3518066-1.0474854l0.3519287-1.0057983l0.3518066-0.9661865l0.3518066-0.928894
l0.3518066-0.8934021l0.3519287-0.8597107l0.3518066-0.8276978l0.3518066-0.7972107l0.3519287-0.7681885l0.3518066-0.7402954
l0.3518066-0.7137146l0.3518066-0.6882935l0.3519287-0.6637878l0.3518066-0.6404114l0.3518066-0.6178894l0.3518066-0.5961914
l0.3519287-0.5754089l0.3518066-0.5552063l0.3518066-0.5358887l0.3519287-0.5171204l0.3518066-0.4989929l0.3518066-0.4813843
l0.3518066-0.4645996l0.3519287-0.4481201l0.3518066-0.4321899l0.3518066-0.4167175l0.3518066-0.4017944l0.3519287-0.3871765
l0.3518066-0.3730164l0.3518066-0.3592834l0.3519287-0.3458252l0.3518066-0.3327026l0.3518066-0.3200989l0.3518066-0.3075867
l0.3519287-0.2955017l0.3518066-0.2836914l0.3518066-0.2720947l0.3518066-0.2609253l0.3519287-0.2496948l0.3518066-0.2391052
l0.3518066-0.2283936l0.3519287-0.2179871l0.3518066-0.2080078l0.3518066-0.197998l0.3518066-0.1882019l0.3519287-0.1787109
l0.3518066-0.169281l0.3518066-0.1600037l0.3518066-0.151001l0.3519287-0.1420898l0.3518066-0.1334229l0.3518066-0.1246948
l0.3519287-0.1163025l0.3518066-0.1078796l0.3518066-0.0997009l0.3518066-0.0916138l0.3519287-0.0837097l0.3518066-0.0756836
l0.3518066-0.0679932l0.3518066-0.0604248l0.3519287-0.0526733l0.3518066-0.0453186l0.3518066-0.0379944l0.3519287-0.0306091
l0.3518066-0.0233765l0.3518066-0.0163269l0.3518066-0.0092773l0.3519287-0.0023193l0.3518066,0.0046082l0.3518066,0.0115051
l0.3518066,0.01828l0.3519287,0.0250244l0.3518066,0.0316772l0.3518066,0.038208l0.3519287,0.0448914l0.3516846,0.0513
l0.3518066,0.0578003l0.3519287,0.0643005l0.3518066,0.0706177l0.3518066,0.0769958l0.1239014,0.028595l0.282959,0.0682983
l0.3647461,0.0939941l0.3648682,0.100708l0.3647461,0.1073914l0.3647461,0.1140137l0.3648682,0.1206055l0.3647461,0.1272888
l0.3648682,0.1338196l0.3648682,0.1403809l0.3647461,0.1470032l0.3647461,0.1534119l0.3648682,0.1600037l0.3647461,0.1664734
l0.3647461,0.1731262l0.3648682,0.1794739l0.3647461,0.1861267l0.3647461,0.1924744l0.3648682,0.1990967l0.3647461,0.2056274
l0.3647461,0.2120972l0.3648682,0.2185974l0.3647461,0.2252808l0.3647461,0.2318115l0.3648682,0.2383118l0.3647461,0.2450867
l0.3647461,0.2515869l0.3648682,0.2584229l0.3647461,0.2649841l0.3648682,0.2718201l0.3647461,0.278595l0.3647461,0.2854004
l0.3648682,0.2922058l0.3647461,0.2991943l0.3647461,0.3061829l0.3648682,0.3131104l0.3647461,0.3203125l0.3647461,0.327301
l0.3648682,0.3345947l0.3647461,0.3418884l0.3647461,0.3492126l0.3648682,0.3565979l0.3647461,0.3641052l0.3647461,0.3716736
l0.3648682,0.379425l0.3647461,0.387085l0.3648682,0.394989l0.3647461,0.4030151l0.3647461,0.4111023l0.3648682,0.4191895
l0.3647461,0.4276123l0.3647461,0.4360046l0.3648682,0.4445801l0.3647461,0.4533997l0.3647461,0.4620972l0.3648682,0.4712219
l0.3647461,0.4803772l0.3647461,0.4898071l0.3648682,0.4992065l0.3647461,0.5089111l0.3647461,0.5188904l0.3648682,0.5289917
l0.3647461,0.5393066l0.3647461,0.5498047l0.3648682,0.5606079l0.3647461,0.5716858l0.3648682,0.5829163l0.3647461,0.594574
l0.3647461,0.6063232l0.3648682,0.6185608l0.3647461,0.6310425l0.3647461,0.6438599l0.3648682,0.6570435l0.3647461,0.6705933
l0.3647461,0.6845093l0.3648682,0.6988525l0.3647461,0.7138062l0.3647461,0.7290039l0.3648682,0.744812l0.3647461,0.7611084
l0.3647461,0.7780151l0.3648682,0.7954102l0.3647461,0.8134766l0.3648682,0.8322754l0.3647461,0.8518066l0.3647461,0.8720093
l0.3648682,0.8931274l0.3647461,0.914978l0.3647461,0.9379272l0.3648682,0.9616699l0.3647461,0.9866943l0.3647461,1.0126953
l0.3648682,1.0402222l0.3647461,1.0689087l0.3647461,1.098999l0.3648682,1.1306763l0.3647461,1.1641846l0.3647461,1.199646
l0.3648682,1.2368774l0.3647461,1.2766113l0.3648682,1.3184814l0.3647461,1.3632813l0.3647461,1.4111328l0.3648682,1.4620972
l0.3647461,1.5169067l0.3647461,1.5755005l0.3648682,1.6389771l0.3647461,1.7073975l0.3647461,1.7817993l0.3648682,1.862793
l0.3647461,1.9512329l0.3647461,2.0484619l0.3648682,2.1557007l0.3647461,2.2748413l0.3647461,2.4075928l0.3648682,2.5567627
l0.3647461,2.725708l0.3647461,2.918396l0.3648682,3.1405029l0.3647461,3.399292l0.3648682,3.7047119l0.3647461,4.0706177
l0.3647461,4.5172729l0.3648682,5.0749512l0.3647461,5.7906494l0.3647461,6.7433472l0.3648682,8.0747681l0.3647461,10.0690308
l0.3647461,13.3908081l0.3648682,20.0705566l0.3647461,41.3060303l0.3647461,10.8612671l0.3648682-48.4334717l0.3647461-21.406311
l0.3647461-13.906189l0.3648682-10.3113403l0.3647461-8.1929932l0.3648682-6.7946777l0.3647461-5.802002l0.3647461-5.0604858
l0.3648682-4.4852905l0.3648682-4.0262451l0.3647461-3.6508789l0.3647461-3.338623l0.3648682-3.0744629l0.3647461-2.8482056
l0.3647461-2.6522217l0.3648682-2.4804688l0.3647461-2.3293457l0.3647461-2.1946411l0.3648682-2.0743408l0.3647461-1.9658813
l0.3648682-1.8677368l0.3647461-1.7784424l0.3647461-1.6968994l0.3648682-1.6222534l0.3647461-1.5531616l0.1439209-0.59552
l0.3286133-1.3231201l0.3659668-1.418457l0.3659668-1.364624l0.3658447-1.31427l0.3660889-1.267334l0.3659668-1.2232056
l0.3659668-1.1817627l0.3658447-1.1429443l0.3659668-1.1062622l0.3659668-1.0717163l0.3659668-1.0388794l0.3659668-1.0079346
l0.3658447-0.9784546l0.3659668-0.9505005l0.3659668-0.9239502l0.3659668-0.8984985l0.3659668-0.8743896l0.3658447-0.8513184
l0.3659668-0.8291626l0.3659668-0.8081055l0.3659668-0.7879028l0.3659668-0.7683716l0.3658447-0.749939l0.3659668-0.7318726
l0.3659668-0.7148438l0.3659668-0.6980591l0.3658447-0.682312l0.3659668-0.6668091l0.3659668-0.6519775l0.3659668-0.6378174
l0.3659668-0.6239014l0.3658447-0.6104736l0.3659668-0.5977173l0.3659668-0.585083l0.3659668-0.572998l0.3659668-0.5613403
l0.3658447-0.5498657l0.3659668-0.5389404l0.3659668-0.5281982l0.3659668-0.5177002l0.3659668-0.5076904l0.3658447-0.4978638
l0.3659668-0.4884033l0.3659668-0.4790039l0.3659668-0.4700928l0.3659668-0.4612427l0.3658447-0.4526978l0.3659668-0.4442749
l0.3659668-0.4360962l0.3659668-0.4283142l0.3659668-0.4205017l0.3658447-0.4129944l0.3659668-0.4056091l0.3659668-0.398407
l0.3659668-0.3913879l0.3659668-0.384491l0.3658447-0.3778076l0.3659668-0.3712158l0.3659668-0.3648987l0.3659668-0.3583984
l0.3659668-0.3523865l0.3658447-0.346405l0.3659668-0.3404846l0.3659668-0.3347168l0.3659668-0.32901l0.3659668-0.3234863
l0.3658447-0.3180847l0.3659668-0.3128052l0.3659668-0.3074951l0.3659668-0.3024292l0.3659668-0.2973938l0.3658447-0.2924805
l0.3659668-0.2875977l0.3659668-0.2829285l0.3659668-0.2781982l0.3659668-0.2735901l0.3659668-0.269104l0.3659668-0.264679
l0.3659668-0.2604065l0.3658447-0.2561035l0.3659668-0.2518005l0.3659668-0.2478027l0.3659668-0.2437134l0.3659668-0.2396851
l0.3658447-0.2358093l0.3659668-0.2319031l0.3659668-0.2280884l0.3659668-0.2243042l0.3659668-0.2207031l0.3658447-0.21698
l0.3659668-0.213501l0.3659668-0.2098999l0.3659668-0.2065125l0.3659668-0.2030029l0.3658447-0.199707l0.3659668-0.1963806
l0.3659668-0.1931152l0.3659668-0.1898804l0.3659668-0.186615l0.3658447-0.1835938l0.3659668-0.1804199l0.3659668-0.1773987
l0.3659668-0.1743774l0.3659668-0.1714172l0.3658447-0.1685791l0.3659668-0.1655273l0.3659668-0.1627808l0.3659668-0.1599121
l0.3659668-0.157196l0.3658447-0.1543884l0.3659668-0.1517029l0.3659668-0.1490173l0.3659668-0.1463013l0.3659668-0.1437988
l0.3658447-0.1411743l0.3659668-0.1387024l0.3659668-0.1360168l0.3659668-0.1336975l0.3659668-0.1311035l0.3658447-0.1286926
l0.3659668-0.1264038l0.3659668-0.1239014l0.3659668-0.121582l0.3659668-0.1193237l0.3658447-0.1170044l0.3659668-0.1146851
l0.3659668-0.1123962l0.3659668-0.1102905l0.3658447-0.1080017l0.3659668-0.1059265l0.3659668-0.1036987l0.3659668-0.1015015
l0.3659668-0.0994873l0.3658447-0.0974121l0.3659668-0.0952759l0.3659668-0.0932007l0.3659668-0.0913086l0.3659668-0.0892029
l0.3658447-0.0873108l0.3659668-0.0851746l0.3659668-0.0834045l0.3659668-0.0814209l0.3659668-0.0794983l0.3659668-0.0775757
l0.3659668-0.0757141l0.3659668-0.0739136l0.3659668-0.071991l0.3658447-0.0701904l0.3659668-0.0683899l0.3659668-0.0666199
l0.3659668-0.0648804l0.3659668-0.0631104l0.3658447-0.0613098l0.3659668-0.0596008l0.3659668-0.0578918l0.3659668-0.0562134
l0.3659668-0.0544739l0.3658447-0.0528259l0.3659668-0.051178l0.3659668-0.0496216l0.3659668-0.0478821l0.3659668-0.0462952
l0.3658447-0.0447083l0.3659668-0.0430908l0.3659668-0.0415039l0.3659668-0.039917l0.3659668-0.0383911l0.3658447-0.0368958
l0.3659668-0.0353088l0.3659668-0.033783l0.3659668-0.0323181l0.3658447-0.0307922l0.3659668-0.0293884l0.3659668-0.0278015
l0.3659668-0.0263977l0.3659668-0.0249023l0.3658447-0.0234985l0.3659668-0.0221252l0.3659668-0.0205994l0.3659668-0.0191956
l0.3659668-0.0177917l0.3658447-0.0163879l0.3659668-0.0151062l0.3659668-0.0136108l0.3659668-0.0122986l0.3659668-0.0109863
l0.3658447-0.0095215l0.3659668-0.0083008l0.3659668-0.006897l0.3659668-0.0055847l0.3659668-0.004303l0.3658447-0.0028992
l0.3659668-0.001709l0.3659668-0.0003967l0.3659668,0.000885l0.3659668,0.0022278l0.3658447,0.003479l0.3659668,0.0046997
l0.3659668,0.0059204l0.3659668,0.0072021l0.3659668,0.0084839l0.3658447,0.0097046l0.3659668,0.0108948l0.3659668,0.0121155
l0.3659668,0.0133972l0.3659668,0.0144958l0.3658447,0.0158081l0.3659668,0.0168762l0.3659668,0.0180969l0.3658447,0.0193176
l0.3662109,0.0205078l0.3657227,0.021698l0.3659668,0.0227966l0.3659668,0.0239868l0.3659668,0.025116l0.3659668,0.0262756
l0.3659668,0.0275269l0.3659668,0.0284729l0.3659668,0.0297241l0.3659668,0.0307922l0.3657227,0.0320129l0.3662109,0.0329895
l0.3657227,0.0342102l0.3662109,0.0352783l0.3657227,0.0363159l0.3659668,0.0375061l0.3659668,0.0385742l0.3659668,0.0396118
l0.3659668,0.040802l0.3657227,0.0418091l0.3662109,0.0428772l0.3657227,0.0440063l0.3662109,0.0450134l0.3657227,0.0460815
l0.3659668,0.0472107l0.3659668,0.0481873l0.3659668,0.0492249l0.3659668,0.050293l0.3659668,0.0513916l0.3659668,0.0523987
l0.3657227,0.0534973l0.3662109,0.0544128l0.3657227,0.055481l0.3662109,0.0566101l0.3657227,0.0574951l0.3659668,0.0585938
l0.3659668,0.0596008l0.3659668,0.0606079l0.3659668,0.061615l0.3657227,0.0626831l0.3662109,0.0635986l0.3657227,0.0646973
l0.3662109,0.0656128l0.3657227,0.0667114l0.3659668,0.0675964l0.3659668,0.0686951l0.3659668,0.0695801l0.3659668,0.0706177
l0.3659668,0.0716858l0.3659668,0.0726013l0.3657227,0.0735168l0.3662109,0.074585l0.3657227,0.0755005l0.3662109,0.0765076
l0.3657227,0.0775146l0.3659668,0.0784912l0.3659668,0.0794067l0.3659668,0.0804749l0.3659668,0.0812988l0.3657227,0.082428
l0.3662109,0.0832825l0.3657227,0.084198l0.3662109,0.0852966l0.3657227,0.0861206l0.3659668,0.0871887l0.3659668,0.0881042
l0.3659668,0.0890808l0.3659668,0.0900269l0.3657227,0.0909729l0.3662109,0.0919189l0.3657227,0.0928955l0.3662109,0.093811
l0.3657227,0.0947876l0.3662109,0.0957947l0.3657227,0.0967102l0.3662109,0.0975952l0.3657227,0.0986023l0.3659668,0.0994873
l0.3659668,0.1005249l0.3659668,0.1015015l0.3659668,0.1022949l0.3659668,0.1033936l0.3659668,0.104187l0.3657227,0.1053162
l0.3662109,0.1060791l0.3657227,0.1071167l0.3662109,0.1080933l0.3657227,0.1090088l0.3659668,0.1099854l0.3659668,0.1108093
l0.3659668,0.111908l0.3659668,0.112793l0.3657227,0.1137085l0.3662109,0.1146851l0.3657227,0.1156006l0.3662109,0.1166077
l0.3657227,0.1174927l0.3659668,0.1184998l0.3659668,0.1194153l0.3659668,0.1204834l0.3659668,0.1213074l0.3659668,0.1223145
l0.3659668,0.1231995l0.3657227,0.124176l0.3662109,0.1252136l0.3657227,0.1260986l0.3659668,0.1269836l0.3659668,0.1281128
l0.3659668,0.1289978l0.3659668,0.1299133l0.3659668,0.1309814l0.3659668,0.131897l0.3657227,0.1328125l0.3662109,0.1337891
l0.3657227,0.1347961l0.3662109,0.1358032l0.3657227,0.1367188l0.3659668,0.1377869l0.3659668,0.1387024l0.3659668,0.1396179
l0.3659668,0.140686l0.3657227,0.1416016l0.3662109,0.1427002l0.3657227,0.1435852l0.3662109,0.1446228l0.3657227,0.1455994
l0.3659668,0.1465759l0.3659668,0.1476135l0.3659668,0.1487122l0.3659668,0.1495972l0.3659668,0.1506042l0.3659668,0.1515808
l0.3657227,0.15271l0.3662109,0.153595l0.3657227,0.1546936l0.3662109,0.1557007l0.3657227,0.1567993l0.3659668,0.1578064
l0.3659668,0.1588135l0.3659668,0.15979l0.3659668,0.1608887l0.3659668,0.1618958l0.3659668,0.1630249l0.3659668,0.1640015
l0.3659668,0.1651001l0.3657227,0.1661987l0.3662109,0.1671753l0.3657227,0.1683044l0.3662109,0.1694031l0.3657227,0.1704102
l0.3659668,0.1715088l0.3659668,0.172699l0.3659668,0.1736755l0.3659668,0.1748047l0.3657227,0.1759033l0.3662109,0.1770935
l0.3657227,0.1781006l0.3662109,0.1793213l0.3657227,0.1802979l0.3659668,0.1815796l0.3659668,0.1826172l0.3659668,0.1838074
l0.3659668,0.1849976l0.3659668,0.1860962l0.3659668,0.1871948l0.3657227,0.1885071l0.3662109,0.1896057l0.3657227,0.1906738
l0.3662109,0.1920166l0.3657227,0.1932068l0.3659668,0.1942749l0.3659668,0.1956177l0.3659668,0.1968079l0.3659668,0.197998
l0.3657227,0.1992798l0.3662109,0.2004089l0.3657227,0.2018127l0.3662109,0.2030029l0.3657227,0.2041931l0.3659668,0.2055054
l0.3659668,0.2067871l0.3659668,0.2080078l0.3659668,0.2093811l0.3659668,0.2107239l0.3659668,0.2119751l0.3657227,0.2133179
l0.3662109,0.2145996l0.3657227,0.2160034l0.3662109,0.2173767l0.3657227,0.2186279l0.3659668,0.2200928l0.3659668,0.2214966
l0.3659668,0.2227783l0.3659668,0.2243042l0.3657227,0.2255859l0.3662109,0.2271118l0.3657227,0.2286377l0.3662109,0.2298584
l0.3657227,0.2314453l0.3659668,0.2328491l0.3659668,0.2344971l0.3659668,0.2359009l0.3659668,0.2373047l0.3659668,0.2390137
l0.3659668,0.2405396l0.3657227,0.2419434l0.3662109,0.2436523l0.3657227,0.2450562l0.3659668,0.2467041l0.3659668,0.2484131
l0.3659668,0.25l0.3659668,0.2515869l0.3659668,0.2532959l0.3659668,0.2549438l0.3659668,0.2565918l0.3659668,0.2583618
l0.3659668,0.2601318l0.3659668,0.2617188l0.3657227,0.2634888l0.3662109,0.2652588l0.3657227,0.2671509l0.3662109,0.2688599
l0.3657227,0.2706909l0.3659668,0.272644l0.3659668,0.2744751l0.3659668,0.2764282l0.3659668,0.2781982l0.3657227,0.2800903
l0.3662109,0.2821655l0.3657227,0.2839966l0.3662109,0.2861328l0.3657227,0.288208l0.3659668,0.2901001l0.3659668,0.2921753
l0.3659668,0.2943115l0.3659668,0.2963867l0.3659668,0.2985229l0.3659668,0.3006592l0.3657227,0.3030396l0.3662109,0.3051147
l0.3657227,0.307251l0.3662109,0.3096924l0.3657227,0.3120117l0.3659668,0.3143311l0.3659668,0.3167114l0.3659668,0.3189697
l0.3659668,0.3215332l0.3657227,0.3238525l0.3662109,0.3265381l0.3657227,0.3289795l0.3662109,0.3314819l0.3657227,0.3341064
l0.3659668,0.336792l0.3659668,0.3395386l0.3659668,0.3421631l0.3659668,0.3449097l0.3657227,0.3477173l0.3662109,0.3505859
l0.3657227,0.3533936l0.3662109,0.3563843l0.3657227,0.359314l0.3659668,0.3623047l0.3659668,0.3654175l0.3659668,0.3684692
l0.3659668,0.3717041l0.3659668,0.374939l0.3659668,0.3780518l0.3657227,0.3815308l0.3662109,0.3848267l0.3657227,0.3882446
l0.3662109,0.3918457l0.3657227,0.3952637l0.3659668,0.3988037l0.3659668,0.40271l0.3659668,0.406311l0.3659668,0.4102173
l0.3657227,0.4140015l0.3662109,0.4178467l0.3657227,0.4219971l0.3662109,0.4261475l0.3657227,0.4302979l0.3662109,0.4345093
l0.3657227,0.4387817l0.3662109,0.4432983l0.3657227,0.4478149l0.3659668,0.4523926l0.3659668,0.4570923l0.3659668,0.4619141
l0.3659668,0.4667969l0.3657227,0.4718018l0.3662109,0.4768066l0.3657227,0.4820557l0.3662109,0.4875488l0.3657227,0.4928589
l0.3659668,0.4985352l0.3659668,0.5041504l0.3659668,0.5100098l0.3659668,0.5159302l0.3659668,0.5220947l0.3659668,0.5283813
l0.3657227,0.534729l0.3662109,0.5412598l0.3657227,0.5480957l0.3662109,0.5550537l0.3657227,0.5619507l0.3659668,0.569397
l0.3659668,0.5768433l0.3659668,0.5844116l0.3659668,0.5922852l0.3657227,0.6004028l0.3662109,0.6087036l0.3657227,0.6171875
l0.3662109,0.6260986l0.3657227,0.6350708l0.3659668,0.6444092l0.3659668,0.6541138l0.3659668,0.6638794l0.3659668,0.6741943
l0.3659668,0.6847534l0.3659668,0.6955566l0.3657227,0.7069092l0.3662109,0.7183838l0.3657227,0.7305298l0.3662109,0.7429199
l0.3657227,0.7557983l0.3659668,0.769104l0.3659668,0.7828979l0.3659668,0.7973022l0.3659668,0.8121948l0.3657227,0.8276978
l0.3662109,0.84375l0.3657227,0.8604126l0.3662109,0.8779907l0.3657227,0.8961182l0.3659668,0.914978l0.3659668,0.9349365
l0.3659668,0.9555664l0.3659668,0.9771118l0.3659668,0.999939l0.3659668,1.0236816l0.3657227,1.0487061l0.3662109,1.0748901
l0.3657227,1.102478l0.3662109,1.1317139l0.3657227,1.1624146l0.3659668,1.1950073l0.3659668,1.229187l0.3659668,1.2658691
l0.3659668,1.3045044l0.3657227,1.3459473l0.3662109,1.3898926l0.3659668,1.4370117l0.3659668,1.4873657l0.3657227,1.541687
l0.3662109,1.6000366l0.3657227,1.6629639l0.3662109,1.7314453l0.3657227,1.8056641l0.3659668,1.8867188l0.3659668,1.9755859
l0.3659668,2.0734253l0.3659668,2.1813965l0.3657227,2.3016968l0.3662109,2.4360962l0.3657227,2.5874023l0.3662109,2.7590942
l0.3657227,2.9555054l0.3659668,3.182373l0.3659668,3.4476929l0.3659668,3.7615356l0.3659668,4.1390991l0.3659668,4.6018677
l0.3659668,5.1821899l0.3657227,5.9319458l0.3662109,6.9378052l0.3657227,8.3587036l0.3662109,10.5203857l0.3657227,14.2138672
l0.3659668,22.024231l0.3659668,51.6331787l0.3659668-18.2381592l0.3659668-39.2888184l0.3657227-19.5477905l0.3662109-13.1140137
l0.3657227-9.8776855l0.3662109-7.9239502l0.3657227-6.6146851l0.3659668-5.6759644l0.3659668-4.9696045l0.3659668-4.4189453
l0.3659668-3.977356l0.3659668-3.6156006l0.3659668-3.3135986l0.3657227-3.0576172l0.3662109-2.8380737l0.3657227-2.647644
l0.3659668-2.4807739l0.3659668-2.3334961l0.3659668-2.2023926l0.3659668-2.085144l0.3659668-1.9794922l0.3659668-1.883667
l0.3657227-1.796814l0.3662109-1.7172852l0.3657227-1.6445313l0.3662109-1.5772705l0.3657227-1.5154419l0.3659668-1.4580688
l0.3659668-1.4047241l0.3659668-1.3551025l0.3659668-1.3086548l0.3657227-1.2654419l0.3662109-1.2246704l0.3657227-1.1865234
l0.3662109-1.1505127l0.3657227-1.1164551l0.3659668-1.0845947l0.3659668-1.0541382l0.3659668-1.0255127l0.3659668-0.9980469
l0.3659668-0.972229l0.3659668-0.9475708l0.3659668-0.9240112l0.3659668-0.9017334l0.3659668-0.8803101l0.3659668-0.8598022
l0.3657227-0.8401489l0.3662109-0.8215942l0.3657227-0.8036499l0.3662109-0.7862549l0.3657227-0.7698364l0.3659668-0.7539063
l0.3659668-0.7385864l0.3659668-0.723877l0.3659668-0.7098389l0.3657227-0.6959839l0.3662109-0.6829224l0.3657227-0.670166
l0.3662109-0.6578979l0.3657227-0.6459961l0.3659668-0.6345825l0.3659668-0.6234131l0.3659668-0.612793l0.3659668-0.6022949
l0.3657227-0.5922241l0.3662109-0.5825195l0.3657227-0.572998l0.3662109-0.5636597l0.3657227-0.5549316l0.3659668-0.5462036
l0.3659668-0.5377808l0.3659668-0.529541l0.3659668-0.5215454l0.3659668-0.5140381l0.3659668-0.5061646l0.3657227-0.4991455
l0.3662109-0.4917603l0.3657227-0.4849243l0.3662109-0.4780884l0.3657227-0.4714966l0.3659668-0.4650269l0.3659668-0.4588013
l0.3659668-0.4524536l0.3659668-0.4466553l0.3657227-0.4407959l0.3662109-0.4349976l0.3657227-0.4295044l0.3662109-0.4239502
l0.3657227-0.4187012l0.3659668-0.4133911l0.3659668-0.4084473l0.3659668-0.4033813l0.3659668-0.3984985l0.3659668-0.3936768
l0.3659668-0.3890991l0.3657227-0.3843994l0.3662109-0.3800049l0.3657227-0.3756104l0.3662109-0.3713379l0.3657227-0.3670654
l0.3659668-0.362915l0.3659668-0.3590088l0.3659668-0.3548584l0.3659668-0.3510132l0.3657227-0.347229l0.3662109-0.3435059
l0.3657227-0.3396606l0.3662109-0.3362427l0.3657227-0.3327026l0.3662109-0.3291016l0.3657227-0.3256836l0.3662109-0.3223877
l0.3657227-0.3190918l0.3659668-0.3157959l0.3659668-0.3126831l0.3659668-0.3095093l0.3659668-0.3065186l0.3657227-0.3034058
l0.3662109-0.3004761l0.3657227-0.2975464l0.3662109-0.2946777l0.3657227-0.2918091l0.3659668-0.2890625l0.3659668-0.2863159
l0.3659668-0.2836914l0.3659668-0.2809448l0.3659668-0.2784424l0.3659668-0.2757568l0.3657227-0.2732544l0.3662109-0.2709351
l0.3657227-0.2683105l0.3662109-0.2659912l0.3657227-0.2634888l0.3659668-0.2611694l0.3659668-0.2589111l0.3659668-0.2567139
l0.3659668-0.2543945l0.3657227-0.2521973l0.3662109-0.25l0.3657227-0.2479248l0.3662109-0.2456665l0.3657227-0.2438354
l0.3659668-0.2415771l0.3659668-0.239624l0.3659668-0.2375488l0.3659668-0.2356567l0.3659668-0.2336426l0.3659668-0.2318115
l0.3657227-0.2297974l0.3662109-0.2281494l0.3657227-0.2260742l0.3662109-0.2244263l0.3657227-0.2225952l0.3659668-0.2207031
l0.3659668-0.2190552l0.3659668-0.2173462l0.3659668-0.2155762l0.3657227-0.2138672l0.3662109-0.2123413l0.3657227-0.2105713
l0.3662109-0.2089844l0.3657227-0.2074585l0.3659668-0.2058716l0.3659668-0.2042236l0.3659668-0.2027588l0.3659668-0.2012329
l0.3657227-0.199707l0.3662109-0.1981812l0.3657227-0.1967163l0.3662109-0.1952515l0.3657227-0.1939087l0.3659668-0.1924438
l0.3659668-0.1911011l0.3659668-0.1895752l0.3659668-0.1882935l0.3659668-0.1868896l0.3659668-0.1856079l0.3657227-0.1843262
l0.3662109-0.1828613l0.3659668-0.1817017l0.3659668-0.1802979l0.3657227-0.1791992l0.3662109-0.1777954l0.3657227-0.1767578
l0.3662109-0.175354l0.3657227-0.1741333l0.3659668-0.1729736l0.3659668-0.171814l0.3659668-0.1707153l0.3659668-0.1693726
l0.3657227-0.168335l0.3662109-0.1671753l0.3657227-0.1660767l0.3662109-0.164917l0.3657227-0.1638184l0.3659668-0.1627808
l0.3659668-0.1616821l0.3659668-0.1606445l0.3659668-0.1594849l0.3657227-0.1585083l0.3662109-0.1574707l0.3657227-0.1564331
l0.3662109-0.1553955l0.3657227-0.1543579l0.3659668-0.1534424l0.3659668-0.1524658l0.3659668-0.1514282l0.3659668-0.1505127
l0.3659668-0.1494751l0.3659668-0.1486206l0.3657227-0.1477051l0.3662109-0.1466064l0.3657227-0.145752l0.3662109-0.1448975
l0.3657227-0.144043l0.3659668-0.1430054l0.3659668-0.1421509l0.3659668-0.1412964l0.3659668-0.1404419l0.3657227-0.1395874
l0.3662109-0.1386719l0.3657227-0.1379395l0.3662109-0.1369629l0.3657227-0.1362305l0.3659668-0.135376l0.3659668-0.1345215
l0.3659668-0.133667l0.3659668-0.1330566l0.3659668-0.1320801l0.3659668-0.1314087l0.3657227-0.1304932l0.3662109-0.1297607
l0.3657227-0.1290283l0.3662109-0.1282959l0.3657227-0.1275024l0.3659668-0.1268311l0.3659668-0.1258545l0.3659668-0.1254272
l0.3659668-0.1245117l0.3657227-0.1237793l0.3662109-0.1231079l0.3657227-0.1223755l0.3662109-0.1217041l0.3657227-0.1210327
l0.3659668-0.1203003l0.3659668-0.1195679l0.3659668-0.1188965l0.3659668-0.1182251l0.3659668-0.1176147l0.3659668-0.1168823
l0.3659668-0.116272l0.3659668-0.1155396l0.3657227-0.1149902l0.3662109-0.1143188l0.3657227-0.1136475l0.3662109-0.1130371
l0.3657227-0.1123657l0.3659668-0.1116943l0.3659668-0.1112061l0.3659668-0.1105347l0.3659668-0.1098633l0.3659668-0.109436
l0.3659668-0.1087036l0.3657227-0.1080933l0.3662109-0.107605l0.3657227-0.1068726l0.3662109-0.1063843l0.3657227-0.1057129
l0.3659668-0.1052856l0.3659668-0.1046143l0.3659668-0.104126l0.3659668-0.1035156l0.3657227-0.1029663l0.3662109-0.102417
l0.3657227-0.1018677l0.3662109-0.1013184l0.3657227-0.1008301l0.3659668-0.1001587l0.3659668-0.0997314l0.3659668-0.0991821
l0.3659668-0.0986938l0.3659668-0.0980835l0.3659668-0.0975952l0.3657227-0.0971069l0.3662109-0.0967407l0.3657227-0.0960693
l0.3662109-0.0956116l0.3657227-0.0950928l0.3659668-0.0946045l0.3659668-0.0941162l0.3659668-0.0935974l0.3659668-0.0932007
l0.3657227-0.0925903l0.3662109-0.0922852l0.3657227-0.0916138l0.3662109-0.0913086l0.3657227-0.0907898l0.3659668-0.0903015
l0.3659668-0.0898132l0.3659668-0.089386l0.3659668-0.0889893l0.3659668-0.088501l0.3659668-0.0880127l0.3657227-0.0875854
l0.3662109-0.0872192l0.3657227-0.0867004l0.3659668-0.0863037l0.3659668-0.0857849l0.3659668-0.0853882l0.3659668-0.085022
l0.3659668-0.0845947l0.3659668-0.084198l0.3657227-0.0837097l0.3662109-0.0832825l0.3657227-0.0829163l0.3662109-0.082489
l0.3657227-0.0820923l0.3662109-0.0816956l0.3657227-0.0813293l0.3662109-0.08078l0.3657227-0.0805054l0.3659668-0.0801086
l0.3659668-0.0796814l0.3659668-0.0793152l0.3659668-0.0788879l0.3657227-0.0784912l0.3662109-0.0782166l0.3657227-0.0777893
l0.3662109-0.0774231l0.3657227-0.0769958l0.3659668-0.0765991l0.3659668-0.0762939l0.3659668-0.0758972l0.3659668-0.075592
l0.3659668-0.0751953l0.3659668-0.0747986l0.3657227-0.0744019l0.3662109-0.0742188l0.3657227-0.0737l0.3662109-0.0733948
l0.3657227-0.0730896l0.3659668-0.0727234l0.3659668-0.0723877l0.3659668-0.071991l0.3659668-0.0717163l0.3657227-0.0712891
l0.3662109-0.0710144l0.3657227-0.0706787l0.3662109-0.0703125l0.3657227-0.0700073l0.3659668-0.0697021l0.3659668-0.069397
l0.3659668-0.0690002l0.3659668-0.0686951l0.3657227-0.0683899l0.3662109-0.0681152l0.3657227-0.0677795l0.3662109-0.0674133
l0.3657227-0.0671082l0.3659668-0.066803l0.3659668-0.0664978l0.3659668-0.0661926l0.3659668-0.0658875l0.3659668-0.0656128
l0.3659668-0.0653076l0.3657227-0.0649719l0.3662109-0.0647278l0.3657227-0.0643921l0.3662109-0.0640869l0.3657227-0.0638123
l0.3659668-0.0635071l0.3659668-0.0632019l0.3659668-0.0628967l0.3659668-0.0626831l0.3657227-0.0624084l0.3662109-0.0621033
l0.3657227-0.0617981l0.3662109-0.0614929l0.3657227-0.0612183l0.3659668-0.0609741l0.3659668-0.0606995l0.3659668-0.0604248
l0.3659668-0.0601807l0.3659668-0.0598145l0.3659668-0.0596008l0.3657227-0.0593872l0.3662109-0.0589905l0.3657227-0.0589294
l0.3662109-0.0584717l0.3657227-0.0583191l0.3662109-0.0579834l0.3657227-0.0578003l0.3659668-0.0574951l0.3659668-0.0572205
l0.3659668-0.0570068l0.3659668-0.0567932l0.3659668-0.056488l0.3659668-0.0562134l0.3657227-0.0559998l0.3662109-0.0557861
l0.3657227-0.0555115l0.3662109-0.0552979l0.3657227-0.0549927l0.3659668-0.054718l0.3659668-0.0545959l0.3659668-0.0542908
l0.3659668-0.0539856l0.3657227-0.0539246l0.3662109-0.0535889l0.3657227-0.0533142l0.3662109-0.0531006l0.3657227-0.052887
l0.3659668-0.0527039l0.3659668-0.0523987l0.3659668-0.0521851l0.3659668-0.052002l0.3659668-0.0516968l0.3659668-0.0516052
l0.3657227-0.0513l0.3662109-0.0509949l0.3657227-0.0509033L2341.5,440.381012l0.3657227-0.0505066l0.3659668-0.0502014
l0.3659668-0.0500183l0.3659668-0.0497742l0.3659668-0.0494995l0.3657227-0.049408l0.3662109-0.0491028l0.3657227-0.0488892
l0.3662109-0.0487061l0.3657227-0.0484924l0.3659668-0.0483093l0.3659668-0.0480957l0.3659668-0.0479126l0.3659668-0.047699
l0.3659668-0.0474854l0.3659668-0.0473022l0.3657227-0.0471191l0.3662109-0.046875l0.3657227-0.0466003l0.3662109-0.0465088
l0.3657227-0.0462952l0.3659668-0.0461121l0.3659668-0.0458984l0.3659668-0.0457153l0.3659668-0.0454712l0.3657227-0.0453186
l0.3662109-0.045105l0.3657227-0.0449829l0.3662109-0.0447083l0.3657227-0.0445862l0.3659668-0.0444031l0.3659668-0.04422
l0.3659668-0.0439758l0.3659668-0.0438232l0.3659668-0.0435791l0.3659668-0.0435181l0.3659668-0.0433044l0.3659668-0.0430908
l0.3657227-0.0429077l0.3662109-0.0426941l0.3657227-0.0426025l0.3662109-0.0423889l0.3657227-0.0422058l0.3659668-0.0419922
l0.3659668-0.0419006l0.3659668-0.0415955l0.3659668-0.041626l0.3659668-0.0412903l0.3659668-0.0411072l0.3657227-0.0409851
l0.3662109-0.0408936l0.3657227-0.0406189l0.3662109-0.0404968l0.3657227-0.0404053l0.3659668-0.0401001l0.3659668-0.039978
l0.3659668-0.0397949l0.3659668-0.0397034l0.3657227-0.0395203l0.3662109-0.0392761l0.3657227-0.0392151l0.3662109-0.039093
l0.3657227-0.0388184l0.3659668-0.0386963l0.3659668-0.0386047l0.3659668-0.0383911l0.3659668-0.038208l0.3657227-0.0380859
l0.3662109-0.0379028l0.3657227-0.0378113l0.3662109-0.0374756l0.3657227-0.0375061l0.3659668-0.0372925l0.3659668-0.0372009
l0.3659668-0.0370178l0.3659668-0.0368042l0.3659668-0.0366821l0.3659668-0.0366211l0.3657227-0.036377l0.3662109-0.0363159
l0.3657227-0.0361023l0.3662109-0.0359802l0.3657227-0.0358276l0.3659668-0.035675l0.3659668-0.0355225l0.3659668-0.0354004
l0.3659668-0.0351868l0.3657227-0.0351868l0.3662109-0.0349121l0.3657227-0.03479l0.3662109-0.0346985l0.3657227-0.0346069
l0.3659668-0.0343933l0.3659668-0.0343018l0.3659668-0.0341187l0.3659668-0.0339966l0.3659668-0.033905l0.3659668-0.0336914
l0.3657227-0.0335999l0.3662109-0.0333862l0.3657227-0.0334167l0.3662109-0.0332031l0.3657227-0.0329895l0.3662109-0.0329895
l0.3657227-0.0328064l0.3659668-0.0326233l0.3659668-0.0325928l0.3659668-0.0323792l0.3659668-0.0323181l0.3659668-0.0321045
l0.3659668-0.0321045l0.3657227-0.0318909l0.3662109-0.0317078l0.3657227-0.0316772l0.3662109-0.0315247l0.3657227-0.0313721
l0.3659668-0.031311l0.3659668-0.0310974l0.3659668-0.0310974l0.3659668-0.0309143l0.3657227-0.0307007l0.3662109-0.0307007
l0.3657227-0.0305786l0.3662109-0.030426l0.3657227-0.0302734l0.3659668-0.0302124l0.3659668-0.0299988l0.3659668-0.0299988
l0.3659668-0.0298157l0.3659668-0.0296936l0.3659668-0.0296021l0.3657227-0.02948l0.3662109-0.0294189l0.3657227-0.0292053
l0.3662109-0.0291748l0.3657227-0.0290222l0.3659668-0.0289001L2392,435.0768127"/>
</g>
<g>
<line class="st4" x1="904" y1="426.0100098" x2="2392" y2="426.0100098"/>
<line class="st4" x1="1748.4000244" y1="146.3511047" x2="1748.4000244" y2="754"/>
<line class="st4" x1="1835.223999" y1="426.0100098" x2="1835.223999" y2="754"/>
<line class="st4" x1="1748.7755127" y1="147.4909973" x2="904" y2="147.4909973"/>
</g>
</g>
<text transform="matrix(1 0 0 1 843.1254883 30.8051758)" class="st5 st6">Gain</text>
<text transform="matrix(1 0 0 1 2262.2104492 779.8051758)" class="st5 st6">Frequency</text>
<text transform="matrix(1 0 0 1 853.1254883 147.4909973)" class="st5 st6">α</text>
<text transform="matrix(0.583 0 0 0.583 869.6552734 157.4812317)" class="st5 st6">max</text>
<text transform="matrix(1 0 0 1 853.1254883 426.009613)" class="st5 st6">α</text>
<text transform="matrix(0.583 0 0 0.583 869.6552734 435.9998474)" class="st5 st6">min</text>
<text transform="matrix(1 0 0 1 1748.7755127 138.3334961)" class="st5 st6">f</text>
<text transform="matrix(0.583 0 0 0.583 1757.5352783 148.3237305)" class="st5 st6">p</text>
<text transform="matrix(1 0 0 1 1767.4864502 138.3334961)" class="st5 st6"></text>
<text transform="matrix(0.583 0 0 0.583 1798.5958252 148.3237305)" class="st5 st6">p</text>
<text transform="matrix(1 0 0 1 1835.2241211 406.3334961)" class="st5 st6">f</text>
<text transform="matrix(0.583 0 0 0.583 1843.9838867 416.3237305)" class="st5 st6">s</text>
<text transform="matrix(1 0 0 1 1850.909668 406.3334961)" class="st5 st6"></text>
<text transform="matrix(0.583 0 0 0.583 1882.019043 416.3237305)" class="st5 st6">s</text>
</svg>

After

Width:  |  Height:  |  Size: 74 KiB

2
report/2_band_pass/2_band_pass.pug

@ -72,5 +72,5 @@ figure.block-center.width-15cm
// Sub-Chapters // Sub-Chapters
include 2_band_pass_design include 2_band_pass_design
//- include 1_low_pass_transfer_function_matlab include 2_band_pass_transfer_function_matlab
//- include 1_low_pass_transfer_function_multisim //- include 1_low_pass_transfer_function_multisim

6
report/2_band_pass/2_band_pass_design.pug

@ -6,9 +6,9 @@ p.
figure.block-center.width-15cm figure.block-center.width-15cm
div.ui.list.ordered.celled.striped div.ui.list.ordered.celled.striped
div.item Υπολογισμός των προδιαγραφών ενός πρωτότυπου κατωδιαβατού Chebyshev φίλτρου, μέσω των προδιαγραφών του επιθυμητού ζωνοδιαβατού φίλτρου. div.item Υπολογισμός των προδιαγραφών ενός πρωτότυπου κατωδιαβατού Chebyshev φίλτρου, μέσω των προδιαγραφών του επιθυμητού ζωνοδιαβατού φίλτρου.
div.item Υπολογισμός της τάξης και της συχνότητας ημίσειας ισχύος του πτοτότυπου φίλτρου. div.item Υπολογισμός της τάξης και της συχνότητας ημίσειας ισχύος του πρωτότυπου φίλτρου.
div.item Υπολογισμός των πόλων του πρότυπου φίλτρου Chebyshev. div.item Υπολογισμός των πόλων του πρότυπου φίλτρου Chebyshev.
div.item Υπολογισμός των πόλων και μηδενικών του ζωνοδιαβατού φίλτρου μέσω μετασχηματισμού των πόλων του προτότυπου με χρήση του αλγόριθμου Geffe. div.item Υπολογισμός των πόλων και μηδενικών του ζωνοδιαβατού φίλτρου μέσω μετασχηματισμού των πόλων του πρωτότυπου με χρήση του αλγόριθμου Geffe.
div.item Ομαδοποίηση των ζευγών πόλων και μηδενικών ανά δύο. Από την ομαδοποίηση προκύπτουν ζωνοδιαβατές μονάδες που υλοποιούνται με κυκλώματα Delyiannis-Fried. div.item Ομαδοποίηση των ζευγών πόλων και μηδενικών ανά δύο. Από την ομαδοποίηση προκύπτουν ζωνοδιαβατές μονάδες που υλοποιούνται με κυκλώματα Delyiannis-Fried.
div.item Υλοποίηση των φίλτρων Delyiannis-Fried με βάση τα κυκλώματα του κεφαλαίου 7. div.item Υλοποίηση των φίλτρων Delyiannis-Fried με βάση τα κυκλώματα του κεφαλαίου 7.
div.item Κλιμακοποίηση του κυκλώματος με στόχο τη μεταφορά στις πραγματικές συχνότητες και σε στοιχεία με πρακτικές (υλοποιήσιμες) τιμές. div.item Κλιμακοποίηση του κυκλώματος με στόχο τη μεταφορά στις πραγματικές συχνότητες και σε στοιχεία με πρακτικές (υλοποιήσιμες) τιμές.
@ -35,7 +35,7 @@ p.latex-equation.
p. p.
Σχεδιάζεται ένα πρότυπο κατωδιαβατό Chebyshev φίλτρο, το οποίο αργότερα θα μετατραπεί στο επιθυμητό ζωνοδιαβατό Chebyshev. Σχεδιάζεται ένα πρότυπο κατωδιαβατό Chebyshev φίλτρο, το οποίο αργότερα θα μετατραπεί στο επιθυμητό ζωνοδιαβατό Chebyshev.
p Υπολογίζονται οι προδιαγραφές του προτότυπου κατωδιαβατού χρησιμοποιώντας τις εξισώσεις #[span.course-notes-equation 11-56]: p Υπολογίζονται οι προδιαγραφές του πρωτότυπου κατωδιαβατού χρησιμοποιώντας τις εξισώσεις #[span.course-notes-equation 11-56]:
p.latex-equation. p.latex-equation.
$$\Omega_p = 1\frac{rad}{s}$$ $$\Omega_p = 1\frac{rad}{s}$$

70
report/2_band_pass/2_band_pass_transfer_function_matlab.pug

@ -0,0 +1,70 @@
h3 Μελέτη συνάρτησης μεταφοράς στο Matlab
p.
Η σχεδίαση του φίλτρου έγινε στο λογισμικό Matlab. Σχεδιάστηκαν, με χρήση της συνάρτησης plot_transfer_function που δόθηκε καθώς και της ltiview που παρέχει το λογισμικό, οι αποκρίσεις πλάτους σε dB των επιμέρους μονάδων, καθώς και του συνολικού φίλτρου.
p.
Παρακάτω φαίνονται οι αποκρίσεις όπως προέκυψαν στο Matlab από την plot_transfer_function, με ορίσματα κάθε φορά την συνάρτηση μεταφοράς του επί μέρους συστήματος, καθώς και τυχόν κρίσιμες συχνότητες:
figure.block-center.width-15cm
img(src="2_band_pass/assets/diagrams/matlab_band_pass_chebyshev_deliyannis_friend_unit_1_transfer_function.svg").width-15cm
figcaption
.reference #[span.plot-count]
.caption.title.
Συνάρτηση μεταφοράς πρώτης ζωνοδιαβατής μονάδας Deliyannis-Friend.
.caption.
Στο γράφημα φαίνεται η απόκριση της συνάρτησης μεταφοράς στην κεντρική συχνότητα της μονάδας καθώς και στη κεντρική συχνότητα του φίλτρου, από όπου μπορούμε να επιβεβαιώσουμε ότι η ρύθμιση κέρδους πέτυχε το επιθυμητό κέρδος 0 dB.
figure.block-center.width-15cm
img(src="2_band_pass/assets/diagrams/matlab_band_pass_chebyshev_deliyannis_friend_unit_2_transfer_function.svg").width-15cm
figcaption
.reference #[span.plot-count]
.caption.title.
Συνάρτηση μεταφοράς δεύτερης ζωνοδιαβατής μονάδας Deliyannis-Friend.
.caption.
Στο γράφημα φαίνεται η απόκριση της συνάρτησης μεταφοράς στην κεντρική συχνότητα της μονάδας καθώς και στη κεντρική συχνότητα του φίλτρου, από όπου μπορούμε να επιβεβαιώσουμε ότι η ρύθμιση κέρδους πέτυχε το επιθυμητό κέρδος 0 dB.
figure.block-center.width-15cm
img(src="2_band_pass/assets/diagrams/matlab_band_pass_chebyshev_deliyannis_friend_unit_3_transfer_function.svg").width-15cm
figcaption
.reference #[span.plot-count]
.caption.title.
Συνάρτηση μεταφοράς τρίτης ζωνοδιαβατής μονάδας Deliyannis-Friend.
.caption.
Στο γράφημα φαίνεται η απόκριση της συνάρτησης μεταφοράς στην κεντρική συχνότητα της μονάδας καθώς και στη κεντρική συχνότητα του φίλτρου, από όπου μπορούμε να επιβεβαιώσουμε ότι η ρύθμιση κέρδους πέτυχε το επιθυμητό κέρδος 0 dB.
figure.block-center.width-15cm
img(src="2_band_pass/assets/diagrams/matlab_band_pass_chebyshev_deliyannis_friend_unit_4_transfer_function.svg").width-15cm
figcaption
.reference #[span.plot-count]
.caption.title.
Συνάρτηση μεταφοράς τέταρτης ζωνοδιαβατής μονάδας Deliyannis-Friend.
.caption.
Στο γράφημα φαίνεται η απόκριση της συνάρτησης μεταφοράς στην κεντρική συχνότητα της μονάδας καθώς και στη κεντρική συχνότητα του φίλτρου, από όπου μπορούμε να επιβεβαιώσουμε ότι η ρύθμιση κέρδους πέτυχε το επιθυμητό κέρδος 0 dB.
figure.block-center.width-15cm
img(src="2_band_pass/assets/diagrams/matlab_band_pass_chebyshev_total_transfer_function.svg").width-15cm
figcaption
.reference #[span.plot-count]
.caption.title.
Συνολική συνάρτηση μεταφοράς φίλτρου.
.caption.
Παρατηρούμε ότι η συνάρτηση μεταφοράς του φίλτρου έχει το αναμενόμενο σχήμα ενός ζωνοδιαβατού Chebyshev φίλτρου. Πιο συγκεκριμένα, στη ζώνη αποκοπής η συνάρτηση μεταφοράς είναι γνησίως φθίνουσα, ενώ στη ζώνη διόδου εμφανίζει ταλάντωση (ripples). Στο γράφημα φαίνεται επίσης η απόκριση της συνάρτησης μεταφοράς στις κρίσιμες συχνότητες: f#[sub 3]=696.11 Hz, f#[sub hp1]=792.93 Hz, f#[sub 1]=800 Hz, f#[sub 0]=900 Hz, μέγιστο σημείο του ripple (941.83 Hz), f#[sub 2]=1012.5 Hz, f#[sub hp2]=1021.52 Hz, f#[sub 4]=1163.61 Hz.
figure.block-center.width-15cm
img(src="2_band_pass/assets/diagrams/matlab_combined_transfer_functions_bode.svg").width-15cm
figcaption
.reference #[span.plot-count]
.caption.title.
Συνδυαστικό γράφημα συναρτήσεων μεταφοράς επιμέρους μονάδων και συνολικού φίλτρου.
figure.block-center.width-15cm
img(src="2_band_pass/assets/diagrams/matlab_band_pass_chebyshev_total_attenuation.svg").width-15cm
figcaption
.reference #[span.plot-count]
.caption.title.
Απόσβεση φίλτρου.
.caption.
Στο γράφημα φαίνεται η απόσβεση του φίλτρου για τις κρίσιμες συχνότητες: f#[sub 3]=696.11 Hz, f#[sub 1]=800 Hz, f#[sub 0]=900 Hz, f#[sub 2]=1012.5 Hz, f#[sub 4]=1163.61 Hz.
p.
Στα γραφήματα 2.2.3 και 2.2.5 έχουν σημειωθεί οι κρίσιμες συχνότητες οι οποίες καθορίζουν την ζώνη διόδου και αποκοπής, δηλαδή οι f#[sub 1]=800 Hz, f#[sub 2]=1012.5 Hz, f#[sub 3]=696.11 Hz και f#[sub 4]=1163.61 Hz, καθώς και οι αντίστοιχες αποσβέσεις. Παρατηρούμε ότι η απόκριση του φίλτρου στις συχνότητες που καθορίζουν την ζώνη διόδου είναι 0 dB, ενώ στη ζώνη αποκοπής είναι 35.04 dB. Επίσης η ταλάντωση στη ζώνη διόδου προκαλεί μέγιστο κέρδος 0.67 dB, ίσο με το α#[sub max]. Επομένως είναι φανερό ότι πληρείτε ακριβώς η προδιαγραφή a#[sub max]=0.666 dB ενώ η προδιαγραφή a#[sub min]=28.556 dB υπερκαλύπτεται.

1760
report/2_band_pass/assets/diagrams/matlab_band_pass_chebyshev_deliyannis_friend_unit_1_transfer_function.svg

File diff suppressed because it is too large

After

Width:  |  Height:  |  Size: 178 KiB

1798
report/2_band_pass/assets/diagrams/matlab_band_pass_chebyshev_deliyannis_friend_unit_2_transfer_function.svg

File diff suppressed because it is too large

After

Width:  |  Height:  |  Size: 181 KiB

1812
report/2_band_pass/assets/diagrams/matlab_band_pass_chebyshev_deliyannis_friend_unit_3_transfer_function.svg

File diff suppressed because it is too large

After

Width:  |  Height:  |  Size: 183 KiB

1889
report/2_band_pass/assets/diagrams/matlab_band_pass_chebyshev_deliyannis_friend_unit_4_transfer_function.svg

File diff suppressed because it is too large

After

Width:  |  Height:  |  Size: 191 KiB

4264
report/2_band_pass/assets/diagrams/matlab_band_pass_chebyshev_total_attenuation.svg

File diff suppressed because it is too large

After

Width:  |  Height:  |  Size: 440 KiB

4454
report/2_band_pass/assets/diagrams/matlab_band_pass_chebyshev_total_transfer_function.svg

File diff suppressed because it is too large

After

Width:  |  Height:  |  Size: 459 KiB

226
report/2_band_pass/assets/diagrams/matlab_combined_transfer_functions_bode.svg

@ -0,0 +1,226 @@
<?xml version="1.0"?>
<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.0//EN'
'http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd'>
<svg xmlns:xlink="http://www.w3.org/1999/xlink" style="fill-opacity:1; color-rendering:auto; color-interpolation:auto; stroke:black; text-rendering:auto; stroke-linecap:square; stroke-miterlimit:10; stroke-opacity:1; shape-rendering:auto; fill:black; stroke-dasharray:none; font-weight:normal; stroke-width:1; font-family:'Dialog'; font-style:normal; stroke-linejoin:miter; font-size:12px; stroke-dashoffset:0; image-rendering:auto;" width="1920" height="964" xmlns="http://www.w3.org/2000/svg"
><!--Generated by the Batik Graphics2D SVG Generator--><defs id="genericDefs"
/><g
><defs id="defs1"
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath1"
><path d="M0 0 L1920 0 L1920 964 L0 964 L0 0 Z"
/></clipPath
><font horiz-adv-x="75.0" id="font1"
><font-face ascent="100.53711" descent="21.972656" units-per-em="100" style="font-style:normal; font-family:Dialog; font-weight:bold;"
/><missing-glyph horiz-adv-x="75.0" d="M12.5 0 L12.5 62.5 L62.5 62.5 L62.5 0 L12.5 0 ZM14.0625 1.5625 L60.9375 1.5625 L60.9375 60.9375 L14.0625 60.9375 L14.0625 1.5625 Z"
/><glyph unicode="m" horiz-adv-x="88.916016" d="M6.1562 51.8594 L18.7969 51.8594 L18.7969 44.7812 Q25.5938 53.0312 34.9688 53.0312 Q39.9375 53.0312 43.6016 50.9766 Q47.2656 48.9219 49.6094 44.7812 Q53.0312 48.9219 56.9844 50.9766 Q60.9375 53.0312 65.4375 53.0312 Q71.1406 53.0312 75.0938 50.7109 Q79.0469 48.3906 81 43.8906 Q82.4219 40.5781 82.4219 33.1562 L82.4219 0 L68.7031 0 L68.7031 29.6406 Q68.7031 37.3594 67.2812 39.5938 Q65.375 42.5312 61.4219 42.5312 Q58.5469 42.5312 56.0078 40.7734 Q53.4688 39.0156 52.3438 35.625 Q51.2188 32.2344 51.2188 24.9062 L51.2188 0 L37.5 0 L37.5 28.4219 Q37.5 35.9844 36.7656 38.1797 Q36.0312 40.375 34.4922 41.4531 Q32.9531 42.5312 30.3281 42.5312 Q27.1562 42.5312 24.6172 40.8203 Q22.0781 39.1094 20.9766 35.8906 Q19.875 32.6719 19.875 25.2031 L19.875 0 L6.1562 0 L6.1562 51.8594 Z"
/><glyph unicode="r" horiz-adv-x="38.916016" d="M20.3125 0 L6.5938 0 L6.5938 51.8594 L19.3438 51.8594 L19.3438 44.4844 Q22.6094 49.7031 25.2188 51.3672 Q27.8281 53.0312 31.1562 53.0312 Q35.8438 53.0312 40.1875 50.4375 L35.9375 38.4844 Q32.4688 40.7188 29.5 40.7188 Q26.6094 40.7188 24.6094 39.1328 Q22.6094 37.5469 21.4609 33.3984 Q20.3125 29.25 20.3125 16.0156 L20.3125 0 Z"
/><glyph unicode="g" horiz-adv-x="61.083984" d="M5.9062 -3.4219 L21.5781 -5.3281 Q21.9688 -8.0625 23.3906 -9.0781 Q25.3438 -10.5469 29.5469 -10.5469 Q34.9062 -10.5469 37.5938 -8.9375 Q39.4062 -7.8594 40.3281 -5.4688 Q40.9688 -3.7656 40.9688 0.8281 L40.9688 8.4062 Q34.8125 0 25.4375 0 Q14.9844 0 8.8906 8.8438 Q4.1094 15.8281 4.1094 26.2188 Q4.1094 39.2656 10.3828 46.1484 Q16.6562 53.0312 25.9844 53.0312 Q35.5938 53.0312 41.8438 44.5781 L41.8438 51.8594 L54.6875 51.8594 L54.6875 5.3281 Q54.6875 -3.8594 53.1719 -8.3984 Q51.6562 -12.9375 48.9219 -15.5234 Q46.1875 -18.1094 41.625 -19.5781 Q37.0625 -21.0469 30.0781 -21.0469 Q16.8906 -21.0469 11.375 -16.5312 Q5.8594 -12.0156 5.8594 -5.0781 Q5.8594 -4.3906 5.9062 -3.4219 ZM18.1719 27 Q18.1719 18.75 21.3672 14.9141 Q24.5625 11.0781 29.25 11.0781 Q34.2812 11.0781 37.75 15.0156 Q41.2188 18.9531 41.2188 26.6562 Q41.2188 34.7188 37.8984 38.625 Q34.5781 42.5312 29.5 42.5312 Q24.5625 42.5312 21.3672 38.6953 Q18.1719 34.8594 18.1719 27 Z"
/><glyph unicode="a" horiz-adv-x="55.615234" d="M17.4375 36.0312 L4.9844 38.2812 Q7.0781 45.7969 12.2031 49.4141 Q17.3281 53.0312 27.4375 53.0312 Q36.625 53.0312 41.1172 50.8594 Q45.6094 48.6875 47.4375 45.3438 Q49.2656 42 49.2656 33.0625 L49.125 17.0469 Q49.125 10.2031 49.7812 6.9609 Q50.4375 3.7188 52.25 0 L38.6719 0 Q38.1406 1.375 37.3594 4.0469 Q37.0156 5.2812 36.8594 5.6719 Q33.3438 2.25 29.3438 0.5391 Q25.3438 -1.1719 20.7969 -1.1719 Q12.7969 -1.1719 8.1797 3.1719 Q3.5625 7.5156 3.5625 14.1562 Q3.5625 18.5625 5.6641 22 Q7.7656 25.4375 11.5469 27.2734 Q15.3281 29.1094 22.4688 30.4688 Q32.0781 32.2812 35.7969 33.8438 L35.7969 35.2031 Q35.7969 39.1562 33.8438 40.8438 Q31.8906 42.5312 26.4688 42.5312 Q22.7969 42.5312 20.75 41.0938 Q18.7031 39.6562 17.4375 36.0312 ZM35.7969 24.9062 Q33.1562 24.0312 27.4453 22.8047 Q21.7344 21.5781 19.9688 20.4062 Q17.2812 18.5 17.2812 15.5781 Q17.2812 12.7031 19.4297 10.6016 Q21.5781 8.5 24.9062 8.5 Q28.6094 8.5 31.9844 10.9375 Q34.4688 12.7969 35.25 15.4844 Q35.7969 17.2344 35.7969 22.1719 L35.7969 24.9062 Z"
/><glyph unicode="i" horiz-adv-x="27.783203" d="M7.1719 58.8906 L7.1719 71.5781 L20.9062 71.5781 L20.9062 58.8906 L7.1719 58.8906 ZM7.1719 0 L7.1719 51.8594 L20.9062 51.8594 L20.9062 0 L7.1719 0 Z"
/><glyph unicode="D" horiz-adv-x="72.2168" d="M7.2344 71.5781 L33.6406 71.5781 Q42.5781 71.5781 47.2656 70.2188 Q53.5625 68.3594 58.0547 63.625 Q62.5469 58.8906 64.8906 52.0312 Q67.2344 45.1719 67.2344 35.1094 Q67.2344 26.2656 65.0469 19.875 Q62.3594 12.0625 57.375 7.2344 Q53.6094 3.5625 47.2188 1.5156 Q42.4375 0 34.4219 0 L7.2344 0 L7.2344 71.5781 ZM21.6875 59.4688 L21.6875 12.0625 L32.4688 12.0625 Q38.5312 12.0625 41.2188 12.75 Q44.7344 13.625 47.0469 15.7266 Q49.3594 17.8281 50.8281 22.6328 Q52.2969 27.4375 52.2969 35.75 Q52.2969 44.0469 50.8281 48.4922 Q49.3594 52.9375 46.7266 55.4219 Q44.0938 57.9062 40.0469 58.7969 Q37.0156 59.4688 28.1719 59.4688 L21.6875 59.4688 Z"
/><glyph unicode=" " horiz-adv-x="27.783203" d=""
/><glyph unicode="e" horiz-adv-x="55.615234" d="M37.2031 16.5 L50.875 14.2031 Q48.25 6.6875 42.5547 2.7578 Q36.8594 -1.1719 28.3281 -1.1719 Q14.7969 -1.1719 8.2969 7.6719 Q3.1719 14.75 3.1719 25.5312 Q3.1719 38.4219 9.9141 45.7266 Q16.6562 53.0312 26.9531 53.0312 Q38.5312 53.0312 45.2188 45.3906 Q51.9062 37.75 51.6094 21.9688 L17.2344 21.9688 Q17.3906 15.875 20.5625 12.4766 Q23.7344 9.0781 28.4688 9.0781 Q31.6875 9.0781 33.8828 10.8359 Q36.0781 12.5938 37.2031 16.5 ZM37.9844 30.375 Q37.8438 36.3281 34.9141 39.4297 Q31.9844 42.5312 27.7812 42.5312 Q23.2969 42.5312 20.3594 39.2656 Q17.4375 35.9844 17.4844 30.375 L37.9844 30.375 Z"
/><glyph unicode="d" horiz-adv-x="61.083984" d="M54.7344 0 L42 0 L42 7.625 Q38.8125 3.1719 34.4922 1 Q30.1719 -1.1719 25.7812 -1.1719 Q16.8438 -1.1719 10.4766 6.0312 Q4.1094 13.2344 4.1094 26.125 Q4.1094 39.3125 10.3047 46.1719 Q16.5 53.0312 25.9844 53.0312 Q34.6719 53.0312 41.0156 45.7969 L41.0156 71.5781 L54.7344 71.5781 L54.7344 0 ZM18.1094 27.0469 Q18.1094 18.75 20.4062 15.0469 Q23.7344 9.6719 29.6875 9.6719 Q34.4219 9.6719 37.7422 13.6953 Q41.0625 17.7188 41.0625 25.7344 Q41.0625 34.6719 37.8438 38.6016 Q34.625 42.5312 29.5938 42.5312 Q24.7031 42.5312 21.4062 38.6484 Q18.1094 34.7656 18.1094 27.0469 Z"
/><glyph unicode="o" horiz-adv-x="61.083984" d="M4 26.6562 Q4 33.5 7.375 39.8984 Q10.75 46.2969 16.9219 49.6641 Q23.0938 53.0312 30.7188 53.0312 Q42.4844 53.0312 50 45.3906 Q57.5156 37.75 57.5156 26.0781 Q57.5156 14.3125 49.9219 6.5703 Q42.3281 -1.1719 30.8125 -1.1719 Q23.6875 -1.1719 17.2188 2.0547 Q10.75 5.2812 7.375 11.5 Q4 17.7188 4 26.6562 ZM18.0625 25.9219 Q18.0625 18.2188 21.7266 14.1172 Q25.3906 10.0156 30.7656 10.0156 Q36.1406 10.0156 39.7734 14.1172 Q43.4062 18.2188 43.4062 26.0312 Q43.4062 33.6406 39.7734 37.7422 Q36.1406 41.8438 30.7656 41.8438 Q25.3906 41.8438 21.7266 37.7422 Q18.0625 33.6406 18.0625 25.9219 Z"
/><glyph unicode="B" horiz-adv-x="72.2168" d="M7.3281 71.5781 L35.9375 71.5781 Q44.4375 71.5781 48.6094 70.875 Q52.7812 70.1719 56.0781 67.9219 Q59.375 65.6719 61.5703 61.9375 Q63.7656 58.2031 63.7656 53.5625 Q63.7656 48.5312 61.0547 44.3359 Q58.3438 40.1406 53.7188 38.0312 Q60.25 36.1406 63.7656 31.5469 Q67.2812 26.9531 67.2812 20.75 Q67.2812 15.875 65.0156 11.2578 Q62.75 6.6406 58.8203 3.8828 Q54.8906 1.125 49.125 0.4844 Q45.5156 0.0938 31.6875 0 L7.3281 0 L7.3281 71.5781 ZM21.7812 59.6719 L21.7812 43.1094 L31.25 43.1094 Q39.7031 43.1094 41.75 43.3594 Q45.4531 43.7969 47.5781 45.9219 Q49.7031 48.0469 49.7031 51.5156 Q49.7031 54.8281 47.875 56.9062 Q46.0469 58.9844 42.4375 59.4219 Q40.2812 59.6719 30.0781 59.6719 L21.7812 59.6719 ZM21.7812 31.2031 L21.7812 12.0625 L35.1562 12.0625 Q42.9688 12.0625 45.0625 12.5 Q48.2969 13.0938 50.3203 15.3594 Q52.3438 17.625 52.3438 21.4375 Q52.3438 24.6562 50.7812 26.9062 Q49.2188 29.1562 46.2656 30.1797 Q43.3125 31.2031 33.4531 31.2031 L21.7812 31.2031 Z"
/></font
><font horiz-adv-x="75.0" id="font2"
><font-face ascent="100.53711" descent="21.972656" units-per-em="100" style="font-style:normal; font-family:Dialog; font-weight:normal;"
/><missing-glyph horiz-adv-x="75.0" d="M12.5 0 L12.5 62.5 L62.5 62.5 L62.5 0 L12.5 0 ZM14.0625 1.5625 L60.9375 1.5625 L60.9375 60.9375 L14.0625 60.9375 L14.0625 1.5625 Z"
/><glyph unicode=")" horiz-adv-x="33.30078" d="M12.3594 -21.0469 L6.0625 -21.0469 Q20.6562 2.3906 20.6562 25.875 Q20.6562 35.0625 18.5625 44.0938 Q16.8906 51.4219 13.9219 58.1562 Q12.0156 62.5469 6.0625 72.7969 L12.3594 72.7969 Q21.5312 60.5469 25.9219 48.1875 Q29.6875 37.5469 29.6875 25.9219 Q29.6875 12.75 24.6328 0.4453 Q19.5781 -11.8594 12.3594 -21.0469 Z"
/><glyph unicode="s" horiz-adv-x="50.0" d="M3.0781 15.4844 L11.7656 16.8438 Q12.5 11.625 15.8438 8.8438 Q19.1875 6.0625 25.2031 6.0625 Q31.25 6.0625 34.1797 8.5234 Q37.1094 10.9844 37.1094 14.3125 Q37.1094 17.2812 34.5156 19 Q32.7188 20.1719 25.5312 21.9688 Q15.875 24.4219 12.1406 26.2031 Q8.4062 27.9844 6.4766 31.1328 Q4.5469 34.2812 4.5469 38.0938 Q4.5469 41.5469 6.1328 44.5078 Q7.7188 47.4688 10.4531 49.4219 Q12.5 50.9219 16.0391 51.9766 Q19.5781 53.0312 23.6406 53.0312 Q29.7344 53.0312 34.3516 51.2734 Q38.9688 49.5156 41.1641 46.5078 Q43.3594 43.5 44.1875 38.4844 L35.5938 37.3125 Q35.0156 41.3125 32.2031 43.5547 Q29.3906 45.7969 24.2656 45.7969 Q18.2188 45.7969 15.625 43.7969 Q13.0312 41.7969 13.0312 39.1094 Q13.0312 37.4062 14.1094 36.0312 Q15.1875 34.625 17.4844 33.6875 Q18.7969 33.2031 25.25 31.4531 Q34.5781 28.9531 38.2578 27.3672 Q41.9375 25.7812 44.0391 22.7578 Q46.1406 19.7344 46.1406 15.2344 Q46.1406 10.8438 43.5781 6.9609 Q41.0156 3.0781 36.1797 0.9531 Q31.3438 -1.1719 25.25 -1.1719 Q15.1406 -1.1719 9.8438 3.0312 Q4.5469 7.2344 3.0781 15.4844 Z"
/><glyph unicode="/" horiz-adv-x="27.783203" d="M0 -1.2188 L20.75 72.7969 L27.7812 72.7969 L7.0781 -1.2188 L0 -1.2188 Z"
/><glyph unicode="d" horiz-adv-x="55.615234" d="M40.2344 0 L40.2344 6.5469 Q35.2969 -1.1719 25.7344 -1.1719 Q19.5312 -1.1719 14.3281 2.25 Q9.125 5.6719 6.2734 11.7969 Q3.4219 17.9219 3.4219 25.875 Q3.4219 33.6406 6.0078 39.9688 Q8.5938 46.2969 13.7734 49.6641 Q18.9531 53.0312 25.3438 53.0312 Q30.0312 53.0312 33.6953 51.0547 Q37.3594 49.0781 39.6562 45.9062 L39.6562 71.5781 L48.3906 71.5781 L48.3906 0 L40.2344 0 ZM12.4531 25.875 Q12.4531 15.9219 16.6484 10.9922 Q20.8438 6.0625 26.5625 6.0625 Q32.3281 6.0625 36.3516 10.7734 Q40.375 15.4844 40.375 25.1406 Q40.375 35.7969 36.2734 40.7734 Q32.1719 45.75 26.1719 45.75 Q20.3125 45.75 16.3828 40.9688 Q12.4531 36.1875 12.4531 25.875 Z"
/><glyph unicode="a" horiz-adv-x="55.615234" d="M40.4375 6.3906 Q35.5469 2.25 31.0312 0.5391 Q26.5156 -1.1719 21.3438 -1.1719 Q12.7969 -1.1719 8.2031 3 Q3.6094 7.1719 3.6094 13.6719 Q3.6094 17.4844 5.3438 20.6328 Q7.0781 23.7812 9.8906 25.6875 Q12.7031 27.5938 16.2188 28.5625 Q18.7969 29.25 24.0312 29.8906 Q34.6719 31.1562 39.7031 32.9062 Q39.75 34.7188 39.75 35.2031 Q39.75 40.5781 37.25 42.7812 Q33.8906 45.75 27.25 45.75 Q21.0469 45.75 18.0938 43.5781 Q15.1406 41.4062 13.7188 35.8906 L5.125 37.0625 Q6.2969 42.5781 8.9844 45.9688 Q11.6719 49.3594 16.75 51.1953 Q21.8281 53.0312 28.5156 53.0312 Q35.1562 53.0312 39.3047 51.4688 Q43.4531 49.9062 45.4062 47.5391 Q47.3594 45.1719 48.1406 41.5469 Q48.5781 39.3125 48.5781 33.4531 L48.5781 21.7344 Q48.5781 9.4688 49.1406 6.2266 Q49.7031 2.9844 51.375 0 L42.1875 0 Q40.8281 2.7344 40.4375 6.3906 ZM39.7031 26.0312 Q34.9062 24.0781 25.3438 22.7031 Q19.9219 21.9219 17.6797 20.9453 Q15.4375 19.9688 14.2109 18.0938 Q12.9844 16.2188 12.9844 13.9219 Q12.9844 10.4062 15.6484 8.0625 Q18.3125 5.7188 23.4375 5.7188 Q28.5156 5.7188 32.4688 7.9375 Q36.4219 10.1562 38.2812 14.0156 Q39.7031 17 39.7031 22.7969 L39.7031 26.0312 Z"
/><glyph unicode="(" horiz-adv-x="33.30078" d="M23.3906 -21.0469 Q16.1094 -11.8594 11.0859 0.4453 Q6.0625 12.75 6.0625 25.9219 Q6.0625 37.5469 9.8125 48.1875 Q14.2031 60.5469 23.3906 72.7969 L29.6875 72.7969 Q23.7812 62.6406 21.875 58.2969 Q18.8906 51.5625 17.1875 44.2344 Q15.0938 35.1094 15.0938 25.875 Q15.0938 2.3906 29.6875 -21.0469 L23.3906 -21.0469 Z"
/><glyph unicode=" " horiz-adv-x="27.783203" d=""
/><glyph unicode="y" horiz-adv-x="50.0" d="M6.2031 -19.9688 L5.2188 -11.7188 Q8.1094 -12.5 10.25 -12.5 Q13.1875 -12.5 14.9453 -11.5234 Q16.7031 -10.5469 17.8281 -8.7969 Q18.6562 -7.4688 20.5156 -2.25 Q20.75 -1.5156 21.2969 -0.0938 L1.6094 51.8594 L11.0781 51.8594 L21.875 21.8281 Q23.9688 16.1094 25.6406 9.8125 Q27.1562 15.875 29.25 21.625 L40.3281 51.8594 L49.125 51.8594 L29.3906 -0.875 Q26.2188 -9.4219 24.4688 -12.6406 Q22.125 -17 19.0938 -19.0234 Q16.0625 -21.0469 11.8594 -21.0469 Q9.3281 -21.0469 6.2031 -19.9688 Z"
/><glyph unicode="c" horiz-adv-x="50.0" d="M40.4375 19 L49.0781 17.875 Q47.6562 8.9375 41.8203 3.8828 Q35.9844 -1.1719 27.4844 -1.1719 Q16.8438 -1.1719 10.375 5.7891 Q3.9062 12.75 3.9062 25.7344 Q3.9062 34.125 6.6875 40.4297 Q9.4688 46.7344 15.1562 49.8828 Q20.8438 53.0312 27.5469 53.0312 Q35.9844 53.0312 41.3594 48.7578 Q46.7344 44.4844 48.25 36.625 L39.7031 35.2969 Q38.4844 40.5312 35.3828 43.1641 Q32.2812 45.7969 27.875 45.7969 Q21.2344 45.7969 17.0859 41.0391 Q12.9375 36.2812 12.9375 25.9844 Q12.9375 15.5312 16.9453 10.7969 Q20.9531 6.0625 27.3906 6.0625 Q32.5625 6.0625 36.0312 9.2344 Q39.5 12.4062 40.4375 19 Z"
/><glyph unicode="n" horiz-adv-x="55.615234" d="M6.5938 0 L6.5938 51.8594 L14.5 51.8594 L14.5 44.4844 Q20.2188 53.0312 31 53.0312 Q35.6875 53.0312 39.625 51.3438 Q43.5625 49.6562 45.5156 46.9219 Q47.4688 44.1875 48.25 40.4375 Q48.7344 37.9844 48.7344 31.8906 L48.7344 0 L39.9375 0 L39.9375 31.5469 Q39.9375 36.9219 38.9141 39.5781 Q37.8906 42.2344 35.2812 43.8203 Q32.6719 45.4062 29.1562 45.4062 Q23.5312 45.4062 19.4531 41.8438 Q15.375 38.2812 15.375 28.3281 L15.375 0 L6.5938 0 Z"
/><glyph unicode="u" horiz-adv-x="55.615234" d="M40.5781 0 L40.5781 7.625 Q34.5156 -1.1719 24.125 -1.1719 Q19.5312 -1.1719 15.5547 0.5859 Q11.5781 2.3438 9.6484 5.0078 Q7.7188 7.6719 6.9375 11.5312 Q6.3906 14.1094 6.3906 19.7344 L6.3906 51.8594 L15.1875 51.8594 L15.1875 23.0938 Q15.1875 16.2188 15.7188 13.8125 Q16.5469 10.3594 19.2344 8.375 Q21.9219 6.3906 25.875 6.3906 Q29.8281 6.3906 33.2969 8.4219 Q36.7656 10.4531 38.2109 13.9453 Q39.6562 17.4375 39.6562 24.0781 L39.6562 51.8594 L48.4375 51.8594 L48.4375 0 L40.5781 0 Z"
/><glyph unicode="q" horiz-adv-x="55.615234" d="M39.6562 -19.875 L39.6562 5.5156 Q37.5938 2.6406 33.9062 0.7344 Q30.2188 -1.1719 26.0781 -1.1719 Q16.8438 -1.1719 10.1797 6.2031 Q3.5156 13.5781 3.5156 26.4219 Q3.5156 34.2344 6.2266 40.4297 Q8.9375 46.625 14.0859 49.8281 Q19.2344 53.0312 25.3906 53.0312 Q35.0156 53.0312 40.5312 44.9219 L40.5312 51.8594 L48.4375 51.8594 L48.4375 -19.875 L39.6562 -19.875 ZM12.5469 26.0781 Q12.5469 16.0625 16.75 11.0625 Q20.9531 6.0625 26.8125 6.0625 Q32.4219 6.0625 36.4766 10.8203 Q40.5312 15.5781 40.5312 25.2969 Q40.5312 35.6406 36.2578 40.8672 Q31.9844 46.0938 26.2188 46.0938 Q20.5156 46.0938 16.5312 41.2344 Q12.5469 36.375 12.5469 26.0781 Z"
/><glyph unicode="e" horiz-adv-x="55.615234" d="M42.0938 16.7031 L51.1719 15.5781 Q49.0312 7.625 43.2188 3.2266 Q37.4062 -1.1719 28.375 -1.1719 Q17 -1.1719 10.3281 5.8359 Q3.6562 12.8438 3.6562 25.4844 Q3.6562 38.5781 10.3984 45.8047 Q17.1406 53.0312 27.875 53.0312 Q38.2812 53.0312 44.875 45.9531 Q51.4688 38.875 51.4688 26.0312 Q51.4688 25.25 51.4219 23.6875 L12.75 23.6875 Q13.2344 15.1406 17.5781 10.6016 Q21.9219 6.0625 28.4219 6.0625 Q33.25 6.0625 36.6719 8.6016 Q40.0938 11.1406 42.0938 16.7031 ZM13.2344 30.9062 L42.1875 30.9062 Q41.6094 37.4531 38.875 40.7188 Q34.6719 45.7969 27.9844 45.7969 Q21.9219 45.7969 17.7969 41.75 Q13.6719 37.7031 13.2344 30.9062 Z"
/><glyph unicode="r" horiz-adv-x="33.30078" d="M6.5 0 L6.5 51.8594 L14.4062 51.8594 L14.4062 44 Q17.4375 49.5156 20 51.2734 Q22.5625 53.0312 25.6406 53.0312 Q30.0781 53.0312 34.6719 50.2031 L31.6406 42.0469 Q28.4219 43.9531 25.2031 43.9531 Q22.3125 43.9531 20.0156 42.2188 Q17.7188 40.4844 16.75 37.4062 Q15.2812 32.7188 15.2812 27.1562 L15.2812 0 L6.5 0 Z"
/><glyph unicode="F" horiz-adv-x="61.083984" d="M8.2031 0 L8.2031 71.5781 L56.5 71.5781 L56.5 63.1406 L17.6719 63.1406 L17.6719 40.9688 L51.2656 40.9688 L51.2656 32.5156 L17.6719 32.5156 L17.6719 0 L8.2031 0 Z"
/><glyph unicode="0" horiz-adv-x="55.615234" d="M4.1562 35.2969 Q4.1562 48 6.7656 55.7422 Q9.375 63.4844 14.5234 67.6797 Q19.6719 71.875 27.4844 71.875 Q33.25 71.875 37.5938 69.5547 Q41.9375 67.2344 44.7734 62.8672 Q47.6094 58.5 49.2188 52.2266 Q50.8281 45.9531 50.8281 35.2969 Q50.8281 22.7031 48.2422 14.9688 Q45.6562 7.2344 40.5078 3.0078 Q35.3594 -1.2188 27.4844 -1.2188 Q17.1406 -1.2188 11.2344 6.2031 Q4.1562 15.1406 4.1562 35.2969 ZM13.1875 35.2969 Q13.1875 17.6719 17.3125 11.8359 Q21.4375 6 27.4844 6 Q33.5469 6 37.6719 11.8594 Q41.7969 17.7188 41.7969 35.2969 Q41.7969 52.9844 37.6719 58.7891 Q33.5469 64.5938 27.3906 64.5938 Q21.3438 64.5938 17.7188 59.4688 Q13.1875 52.9375 13.1875 35.2969 Z"
/><glyph unicode="1" horiz-adv-x="55.615234" d="M37.25 0 L28.4688 0 L28.4688 56 Q25.2969 52.9844 20.1406 49.9531 Q14.9844 46.9219 10.8906 45.4062 L10.8906 53.9062 Q18.2656 57.375 23.7812 62.3047 Q29.2969 67.2344 31.5938 71.875 L37.25 71.875 L37.25 0 Z"
/><glyph unicode="2" horiz-adv-x="55.615234" d="M50.3438 8.4531 L50.3438 0 L3.0312 0 Q2.9375 3.1719 4.0469 6.1094 Q5.8594 10.9375 9.8359 15.625 Q13.8125 20.3125 21.3438 26.4688 Q33.0156 36.0312 37.1172 41.625 Q41.2188 47.2188 41.2188 52.2031 Q41.2188 57.4219 37.4766 61.0078 Q33.7344 64.5938 27.7344 64.5938 Q21.3906 64.5938 17.5781 60.7891 Q13.7656 56.9844 13.7188 50.25 L4.6875 51.1719 Q5.6094 61.2812 11.6641 66.5781 Q17.7188 71.875 27.9375 71.875 Q38.2344 71.875 44.2422 66.1641 Q50.25 60.4531 50.25 52 Q50.25 47.7031 48.4922 43.5547 Q46.7344 39.4062 42.6562 34.8125 Q38.5781 30.2188 29.1094 22.2188 Q21.1875 15.5781 18.9453 13.2109 Q16.7031 10.8438 15.2344 8.4531 L50.3438 8.4531 Z"
/><glyph unicode="3" horiz-adv-x="55.615234" d="M4.2031 18.8906 L12.9844 20.0625 Q14.5 12.5938 18.1406 9.2969 Q21.7812 6 27 6 Q33.2031 6 37.4766 10.2969 Q41.75 14.5938 41.75 20.9531 Q41.75 27 37.7969 30.9297 Q33.8438 34.8594 27.7344 34.8594 Q25.25 34.8594 21.5312 33.8906 L22.5156 41.6094 Q23.3906 41.5 23.9219 41.5 Q29.5469 41.5 34.0391 44.4297 Q38.5312 47.3594 38.5312 53.4688 Q38.5312 58.2969 35.2578 61.4766 Q31.9844 64.6562 26.8125 64.6562 Q21.6875 64.6562 18.2656 61.4297 Q14.8438 58.2031 13.875 51.7656 L5.0781 53.3281 Q6.6875 62.1562 12.3984 67.0156 Q18.1094 71.875 26.6094 71.875 Q32.4688 71.875 37.3984 69.3594 Q42.3281 66.8438 44.9453 62.5 Q47.5625 58.1562 47.5625 53.2656 Q47.5625 48.6406 45.0703 44.8281 Q42.5781 41.0156 37.7031 38.7656 Q44.0469 37.3125 47.5625 32.6953 Q51.0781 28.0781 51.0781 21.1406 Q51.0781 11.7656 44.2422 5.25 Q37.4062 -1.2656 26.9531 -1.2656 Q17.5312 -1.2656 11.3047 4.3516 Q5.0781 9.9688 4.2031 18.8906 Z"
/><glyph unicode="4" horiz-adv-x="55.615234" d="M32.3281 0 L32.3281 17.1406 L1.2656 17.1406 L1.2656 25.2031 L33.9375 71.5781 L41.1094 71.5781 L41.1094 25.2031 L50.7812 25.2031 L50.7812 17.1406 L41.1094 17.1406 L41.1094 0 L32.3281 0 ZM32.3281 25.2031 L32.3281 57.4688 L9.9062 25.2031 L32.3281 25.2031 Z"
/><glyph unicode="5" horiz-adv-x="55.615234" d="M4.1562 18.75 L13.375 19.5312 Q14.4062 12.7969 18.1406 9.3984 Q21.875 6 27.1562 6 Q33.5 6 37.8906 10.7891 Q42.2812 15.5781 42.2812 23.4844 Q42.2812 31 38.0625 35.3516 Q33.8438 39.7031 27 39.7031 Q22.75 39.7031 19.3359 37.7734 Q15.9219 35.8438 13.9688 32.7656 L5.7188 33.8438 L12.6406 70.6094 L48.25 70.6094 L48.25 62.2031 L19.6719 62.2031 L15.8281 42.9688 Q22.2656 47.4688 29.3438 47.4688 Q38.7188 47.4688 45.1641 40.9688 Q51.6094 34.4688 51.6094 24.2656 Q51.6094 14.5469 45.9531 7.4688 Q39.0625 -1.2188 27.1562 -1.2188 Q17.3906 -1.2188 11.2109 4.25 Q5.0312 9.7188 4.1562 18.75 Z"
/><glyph unicode="-" horiz-adv-x="33.30078" d="M3.1719 21.4844 L3.1719 30.3281 L30.1719 30.3281 L30.1719 21.4844 L3.1719 21.4844 Z"
/><glyph unicode="B" horiz-adv-x="66.69922" d="M7.3281 0 L7.3281 71.5781 L34.1875 71.5781 Q42.3906 71.5781 47.3438 69.4062 Q52.2969 67.2344 55.1016 62.7188 Q57.9062 58.2031 57.9062 53.2656 Q57.9062 48.6875 55.4219 44.6328 Q52.9375 40.5781 47.9062 38.0938 Q54.3906 36.1875 57.8828 31.5938 Q61.375 27 61.375 20.75 Q61.375 15.7188 59.25 11.3984 Q57.125 7.0781 54 4.7344 Q50.875 2.3906 46.1641 1.1953 Q41.4531 0 34.625 0 L7.3281 0 ZM16.7969 41.5 L32.2812 41.5 Q38.5781 41.5 41.3125 42.3281 Q44.9219 43.4062 46.75 45.8984 Q48.5781 48.3906 48.5781 52.1562 Q48.5781 55.7188 46.875 58.4297 Q45.1719 61.1406 41.9922 62.1406 Q38.8125 63.1406 31.1094 63.1406 L16.7969 63.1406 L16.7969 41.5 ZM16.7969 8.4531 L34.625 8.4531 Q39.2031 8.4531 41.0625 8.7969 Q44.3438 9.375 46.5391 10.7422 Q48.7344 12.1094 50.1484 14.7188 Q51.5625 17.3281 51.5625 20.75 Q51.5625 24.75 49.5156 27.7109 Q47.4688 30.6719 43.8281 31.8672 Q40.1875 33.0625 33.3438 33.0625 L16.7969 33.0625 L16.7969 8.4531 Z"
/><glyph unicode="t" horiz-adv-x="27.783203" d="M25.7812 7.8594 L27.0469 0.0938 Q23.3438 -0.6875 20.4062 -0.6875 Q15.625 -0.6875 12.9922 0.8281 Q10.3594 2.3438 9.2812 4.8125 Q8.2031 7.2812 8.2031 15.1875 L8.2031 45.0156 L1.7656 45.0156 L1.7656 51.8594 L8.2031 51.8594 L8.2031 64.7031 L16.9375 69.9688 L16.9375 51.8594 L25.7812 51.8594 L25.7812 45.0156 L16.9375 45.0156 L16.9375 14.7031 Q16.9375 10.9375 17.4062 9.8672 Q17.875 8.7969 18.9219 8.1562 Q19.9688 7.5156 21.9219 7.5156 Q23.3906 7.5156 25.7812 7.8594 Z"
/><glyph unicode="i" horiz-adv-x="22.216797" d="M6.6406 61.4688 L6.6406 71.5781 L15.4375 71.5781 L15.4375 61.4688 L6.6406 61.4688 ZM6.6406 0 L6.6406 51.8594 L15.4375 51.8594 L15.4375 0 L6.6406 0 Z"
/><glyph unicode="g" horiz-adv-x="55.615234" d="M4.9844 -4.2969 L13.5312 -5.5625 Q14.0625 -9.5156 16.5 -11.3281 Q19.7812 -13.7656 25.4375 -13.7656 Q31.5469 -13.7656 34.8672 -11.3281 Q38.1875 -8.8906 39.3594 -4.5 Q40.0469 -1.8125 39.9844 6.7812 Q34.2344 0 25.6406 0 Q14.9375 0 9.0781 7.7188 Q3.2188 15.4375 3.2188 26.2188 Q3.2188 33.6406 5.9062 39.9141 Q8.5938 46.1875 13.6953 49.6094 Q18.7969 53.0312 25.6875 53.0312 Q34.8594 53.0312 40.8281 45.6094 L40.8281 51.8594 L48.9219 51.8594 L48.9219 7.0312 Q48.9219 -5.0781 46.4609 -10.1328 Q44 -15.1875 38.6484 -18.1172 Q33.2969 -21.0469 25.4844 -21.0469 Q16.2188 -21.0469 10.5 -16.875 Q4.7812 -12.7031 4.9844 -4.2969 ZM12.25 26.8594 Q12.25 16.6562 16.3047 11.9688 Q20.3594 7.2812 26.4688 7.2812 Q32.5156 7.2812 36.6172 11.9453 Q40.7188 16.6094 40.7188 26.5625 Q40.7188 36.0781 36.5 40.9141 Q32.2812 45.75 26.3125 45.75 Q20.4531 45.75 16.3516 40.9922 Q12.25 36.2344 12.25 26.8594 Z"
/><glyph unicode="M" horiz-adv-x="83.30078" d="M7.4219 0 L7.4219 71.5781 L21.6875 71.5781 L38.625 20.9062 Q40.9688 13.8125 42.0469 10.2969 Q43.2656 14.2031 45.8438 21.7812 L62.9844 71.5781 L75.7344 71.5781 L75.7344 0 L66.6094 0 L66.6094 59.9062 L45.7969 0 L37.25 0 L16.5469 60.9375 L16.5469 0 L7.4219 0 Z"
/></font
></defs
><g style="fill:white; stroke:white;"
><rect x="0" y="0" width="1920" style="clip-path:url(#clipPath1); stroke:none;" height="964"
/></g
><g style="fill:white; text-rendering:optimizeSpeed; color-rendering:optimizeSpeed; image-rendering:optimizeSpeed; shape-rendering:crispEdges; color-interpolation:sRGB; stroke:white;"
><rect x="0" width="1920" height="964" y="0" style="stroke:none;"
/></g
><g transform="translate(988,37.355)" style="font-size:15px; text-rendering:geometricPrecision; color-rendering:optimizeQuality; image-rendering:optimizeQuality; color-interpolation:linearRGB; font-weight:bold;"
><text x="-51" xml:space="preserve" y="-4" style="stroke:none;"
>Bode Diagram</text
></g
><g transform="translate(988,935.6667)" style="text-rendering:geometricPrecision; font-size:15px; color-interpolation:linearRGB; color-rendering:optimizeQuality; image-rendering:optimizeQuality;"
><text x="-61.5" xml:space="preserve" y="16" style="stroke:none;"
>Frequency (rad/s)</text
></g
><g style="fill:white; text-rendering:optimizeSpeed; color-rendering:optimizeSpeed; image-rendering:optimizeSpeed; shape-rendering:crispEdges; color-interpolation:sRGB; stroke:white;"
><path style="stroke:none;" d="M78 910 L1900 910 L1900 44 L78 44 Z"
/></g
><g style="fill:rgb(102,102,102); text-rendering:geometricPrecision; color-rendering:optimizeQuality; image-rendering:optimizeQuality; stroke-linejoin:round; color-interpolation:linearRGB; stroke:rgb(102,102,102); stroke-width:0.6667;"
><line y2="910" style="fill:none;" x1="78" x2="1900" y1="910"
/><line y2="44" style="fill:none;" x1="78" x2="1900" y1="44"
/><line y2="891.78" style="fill:none;" x1="78" x2="78" y1="910"
/><line y2="891.78" style="fill:none;" x1="685.3334" x2="685.3334" y1="910"
/><line y2="891.78" style="fill:none;" x1="1292.6667" x2="1292.6667" y1="910"
/><line y2="891.78" style="fill:none;" x1="1900" x2="1900" y1="910"
/><line y2="62.22" style="fill:none;" x1="78" x2="78" y1="44"
/><line y2="62.22" style="fill:none;" x1="685.3334" x2="685.3334" y1="44"
/><line y2="62.22" style="fill:none;" x1="1292.6667" x2="1292.6667" y1="44"
/><line y2="62.22" style="fill:none;" x1="1900" x2="1900" y1="44"
/><line y2="900.89" style="fill:none;" x1="260.8256" x2="260.8256" y1="910"
/><line y2="900.89" style="fill:none;" x1="367.7716" x2="367.7716" y1="910"
/><line y2="900.89" style="fill:none;" x1="443.6511" x2="443.6511" y1="910"
/><line y2="900.89" style="fill:none;" x1="502.5078" x2="502.5078" y1="910"
/><line y2="900.89" style="fill:none;" x1="550.5972" x2="550.5972" y1="910"
/><line y2="900.89" style="fill:none;" x1="591.2562" x2="591.2562" y1="910"
/><line y2="900.89" style="fill:none;" x1="626.4767" x2="626.4767" y1="910"
/><line y2="900.89" style="fill:none;" x1="657.5433" x2="657.5433" y1="910"
/><line y2="900.89" style="fill:none;" x1="868.1589" x2="868.1589" y1="910"
/><line y2="900.89" style="fill:none;" x1="975.105" x2="975.105" y1="910"
/><line y2="900.89" style="fill:none;" x1="1050.9845" x2="1050.9845" y1="910"
/><line y2="900.89" style="fill:none;" x1="1109.8411" x2="1109.8411" y1="910"
/><line y2="900.89" style="fill:none;" x1="1157.9305" x2="1157.9305" y1="910"
/><line y2="900.89" style="fill:none;" x1="1198.5895" x2="1198.5895" y1="910"
/><line y2="900.89" style="fill:none;" x1="1233.8101" x2="1233.8101" y1="910"
/><line y2="900.89" style="fill:none;" x1="1264.8766" x2="1264.8766" y1="910"
/><line y2="900.89" style="fill:none;" x1="1475.4922" x2="1475.4922" y1="910"
/><line y2="900.89" style="fill:none;" x1="1582.4384" x2="1582.4384" y1="910"
/><line y2="900.89" style="fill:none;" x1="1658.3177" x2="1658.3177" y1="910"
/><line y2="900.89" style="fill:none;" x1="1717.1744" x2="1717.1744" y1="910"
/><line y2="900.89" style="fill:none;" x1="1765.2639" x2="1765.2639" y1="910"
/><line y2="900.89" style="fill:none;" x1="1805.9229" x2="1805.9229" y1="910"
/><line y2="900.89" style="fill:none;" x1="1841.1433" x2="1841.1433" y1="910"
/><line y2="900.89" style="fill:none;" x1="1872.21" x2="1872.21" y1="910"
/><line y2="53.11" style="fill:none;" x1="260.8256" x2="260.8256" y1="44"
/><line y2="53.11" style="fill:none;" x1="367.7716" x2="367.7716" y1="44"
/><line y2="53.11" style="fill:none;" x1="443.6511" x2="443.6511" y1="44"
/><line y2="53.11" style="fill:none;" x1="502.5078" x2="502.5078" y1="44"
/><line y2="53.11" style="fill:none;" x1="550.5972" x2="550.5972" y1="44"
/><line y2="53.11" style="fill:none;" x1="591.2562" x2="591.2562" y1="44"
/><line y2="53.11" style="fill:none;" x1="626.4767" x2="626.4767" y1="44"
/><line y2="53.11" style="fill:none;" x1="657.5433" x2="657.5433" y1="44"
/><line y2="53.11" style="fill:none;" x1="868.1589" x2="868.1589" y1="44"
/><line y2="53.11" style="fill:none;" x1="975.105" x2="975.105" y1="44"
/><line y2="53.11" style="fill:none;" x1="1050.9845" x2="1050.9845" y1="44"
/><line y2="53.11" style="fill:none;" x1="1109.8411" x2="1109.8411" y1="44"
/><line y2="53.11" style="fill:none;" x1="1157.9305" x2="1157.9305" y1="44"
/><line y2="53.11" style="fill:none;" x1="1198.5895" x2="1198.5895" y1="44"
/><line y2="53.11" style="fill:none;" x1="1233.8101" x2="1233.8101" y1="44"
/><line y2="53.11" style="fill:none;" x1="1264.8766" x2="1264.8766" y1="44"
/><line y2="53.11" style="fill:none;" x1="1475.4922" x2="1475.4922" y1="44"
/><line y2="53.11" style="fill:none;" x1="1582.4384" x2="1582.4384" y1="44"
/><line y2="53.11" style="fill:none;" x1="1658.3177" x2="1658.3177" y1="44"
/><line y2="53.11" style="fill:none;" x1="1717.1744" x2="1717.1744" y1="44"
/><line y2="53.11" style="fill:none;" x1="1765.2639" x2="1765.2639" y1="44"
/><line y2="53.11" style="fill:none;" x1="1805.9229" x2="1805.9229" y1="44"
/><line y2="53.11" style="fill:none;" x1="1841.1433" x2="1841.1433" y1="44"
/><line y2="53.11" style="fill:none;" x1="1872.21" x2="1872.21" y1="44"
/></g
><g transform="translate(67,933)" style="font-size:13px; fill:rgb(102,102,102); text-rendering:geometricPrecision; color-rendering:optimizeQuality; image-rendering:optimizeQuality; color-interpolation:linearRGB; stroke:rgb(102,102,102);"
><text x="0" xml:space="preserve" y="0" style="stroke:none;"
>10</text
></g
><g transform="translate(82,927)" style="font-size:11px; fill:rgb(102,102,102); text-rendering:geometricPrecision; color-rendering:optimizeQuality; image-rendering:optimizeQuality; color-interpolation:linearRGB; stroke:rgb(102,102,102);"
><text x="0" xml:space="preserve" y="0" style="stroke:none;"
>2</text
></g
><g transform="translate(674,933)" style="font-size:13px; fill:rgb(102,102,102); text-rendering:geometricPrecision; color-rendering:optimizeQuality; image-rendering:optimizeQuality; color-interpolation:linearRGB; stroke:rgb(102,102,102);"
><text x="0" xml:space="preserve" y="0" style="stroke:none;"
>10</text
></g
><g transform="translate(689,927)" style="font-size:11px; fill:rgb(102,102,102); text-rendering:geometricPrecision; color-rendering:optimizeQuality; image-rendering:optimizeQuality; color-interpolation:linearRGB; stroke:rgb(102,102,102);"
><text x="0" xml:space="preserve" y="0" style="stroke:none;"
>3</text
></g
><g transform="translate(1282,933)" style="font-size:13px; fill:rgb(102,102,102); text-rendering:geometricPrecision; color-rendering:optimizeQuality; image-rendering:optimizeQuality; color-interpolation:linearRGB; stroke:rgb(102,102,102);"
><text x="0" xml:space="preserve" y="0" style="stroke:none;"
>10</text
></g
><g transform="translate(1297,927)" style="font-size:11px; fill:rgb(102,102,102); text-rendering:geometricPrecision; color-rendering:optimizeQuality; image-rendering:optimizeQuality; color-interpolation:linearRGB; stroke:rgb(102,102,102);"
><text x="0" xml:space="preserve" y="0" style="stroke:none;"
>4</text
></g
><g transform="translate(1889,933)" style="font-size:13px; fill:rgb(102,102,102); text-rendering:geometricPrecision; color-rendering:optimizeQuality; image-rendering:optimizeQuality; color-interpolation:linearRGB; stroke:rgb(102,102,102);"
><text x="0" xml:space="preserve" y="0" style="stroke:none;"
>10</text
></g
><g transform="translate(1904,927)" style="font-size:11px; fill:rgb(102,102,102); text-rendering:geometricPrecision; color-rendering:optimizeQuality; image-rendering:optimizeQuality; color-interpolation:linearRGB; stroke:rgb(102,102,102);"
><text x="0" xml:space="preserve" y="0" style="stroke:none;"
>5</text
></g
><g style="fill:rgb(102,102,102); text-rendering:geometricPrecision; color-rendering:optimizeQuality; image-rendering:optimizeQuality; stroke-linejoin:round; color-interpolation:linearRGB; stroke:rgb(102,102,102); stroke-width:0.6667;"
><line y2="44" style="fill:none;" x1="78" x2="78" y1="910"
/><line y2="44" style="fill:none;" x1="1900" x2="1900" y1="910"
/><line y2="910" style="fill:none;" x1="78" x2="96.22" y1="910"
/><line y2="765.6667" style="fill:none;" x1="78" x2="96.22" y1="765.6667"
/><line y2="621.3333" style="fill:none;" x1="78" x2="96.22" y1="621.3333"
/><line y2="477" style="fill:none;" x1="78" x2="96.22" y1="477"
/><line y2="332.6667" style="fill:none;" x1="78" x2="96.22" y1="332.6667"
/><line y2="188.3333" style="fill:none;" x1="78" x2="96.22" y1="188.3333"
/><line y2="44" style="fill:none;" x1="78" x2="96.22" y1="44"
/><line y2="910" style="fill:none;" x1="1900" x2="1881.78" y1="910"
/><line y2="765.6667" style="fill:none;" x1="1900" x2="1881.78" y1="765.6667"
/><line y2="621.3333" style="fill:none;" x1="1900" x2="1881.78" y1="621.3333"
/><line y2="477" style="fill:none;" x1="1900" x2="1881.78" y1="477"
/><line y2="332.6667" style="fill:none;" x1="1900" x2="1881.78" y1="332.6667"
/><line y2="188.3333" style="fill:none;" x1="1900" x2="1881.78" y1="188.3333"
/><line y2="44" style="fill:none;" x1="1900" x2="1881.78" y1="44"
/></g
><g transform="translate(72.6667,910)" style="font-size:13px; fill:rgb(102,102,102); text-rendering:geometricPrecision; color-rendering:optimizeQuality; image-rendering:optimizeQuality; color-interpolation:linearRGB; stroke:rgb(102,102,102);"
><text x="-27" xml:space="preserve" y="5.5" style="stroke:none;"
>-250</text
></g
><g transform="translate(72.6667,765.6667)" style="font-size:13px; fill:rgb(102,102,102); text-rendering:geometricPrecision; color-rendering:optimizeQuality; image-rendering:optimizeQuality; color-interpolation:linearRGB; stroke:rgb(102,102,102);"
><text x="-27" xml:space="preserve" y="5.5" style="stroke:none;"
>-200</text
></g
><g transform="translate(72.6667,621.3333)" style="font-size:13px; fill:rgb(102,102,102); text-rendering:geometricPrecision; color-rendering:optimizeQuality; image-rendering:optimizeQuality; color-interpolation:linearRGB; stroke:rgb(102,102,102);"
><text x="-27" xml:space="preserve" y="5.5" style="stroke:none;"
>-150</text
></g
><g transform="translate(72.6667,477)" style="font-size:13px; fill:rgb(102,102,102); text-rendering:geometricPrecision; color-rendering:optimizeQuality; image-rendering:optimizeQuality; color-interpolation:linearRGB; stroke:rgb(102,102,102);"
><text x="-27" xml:space="preserve" y="5.5" style="stroke:none;"
>-100</text
></g
><g transform="translate(72.6667,332.6667)" style="font-size:13px; fill:rgb(102,102,102); text-rendering:geometricPrecision; color-rendering:optimizeQuality; image-rendering:optimizeQuality; color-interpolation:linearRGB; stroke:rgb(102,102,102);"
><text x="-19" xml:space="preserve" y="5.5" style="stroke:none;"
>-50</text
></g
><g transform="translate(72.6667,188.3333)" style="font-size:13px; fill:rgb(102,102,102); text-rendering:geometricPrecision; color-rendering:optimizeQuality; image-rendering:optimizeQuality; color-interpolation:linearRGB; stroke:rgb(102,102,102);"
><text x="-8" xml:space="preserve" y="5.5" style="stroke:none;"
>0</text
></g
><g transform="translate(72.6667,44)" style="font-size:13px; fill:rgb(102,102,102); text-rendering:geometricPrecision; color-rendering:optimizeQuality; image-rendering:optimizeQuality; color-interpolation:linearRGB; stroke:rgb(102,102,102);"
><text x="-15" xml:space="preserve" y="5.5" style="stroke:none;"
>50</text
></g
><g style="stroke-linecap:butt; fill:rgb(0,114,189); text-rendering:geometricPrecision; color-rendering:optimizeQuality; image-rendering:optimizeQuality; stroke-linejoin:round; color-interpolation:linearRGB; stroke:rgb(0,114,189); stroke-width:0.6667;"
><path d="M77.8178 341.1425 L123.3915 336.8095 L164.6652 332.8824 L205.9388 328.9539 L247.2125 325.0235 L288.4861 321.0906 L329.7598 317.1543 L371.0334 313.2132 L412.3071 309.2657 L453.5807 305.3091 L494.8543 301.3405 L536.128 297.3553 L577.4016 293.3469 L618.6752 289.307 L659.9489 285.2234 L701.2226 281.0792 L742.4962 276.8509 L783.7699 272.5045 L825.0435 267.9911 L866.3171 263.2379 L907.5908 258.134 L948.8644 252.502 L972.2805 248.965 L1006.285 243.1759 L1034.9001 237.415 L1058.98 231.5765 L1079.2434 225.5576 L1096.2952 219.2502 L1110.6444 212.5355 L1122.7194 205.2901 L1132.8806 197.4442 L1141.4314 189.2386 L1148.627 182.0131 L1154.682 178.7392 L1160.7371 181.0932 L1167.9326 188.096 L1176.4834 196.4709 L1186.6447 204.5293 L1198.7196 211.9463 L1213.0688 218.7889 L1230.1207 225.1907 L1250.384 231.2799 L1274.4639 237.1712 L1303.079 242.9718 L1337.0835 248.7908 L1361.6008 252.502 L1402.8745 258.134 L1444.1482 263.2379 L1485.4219 267.9911 L1526.6956 272.5045 L1567.9691 276.8509 L1609.2428 281.0792 L1650.5164 285.2234 L1691.79 289.307 L1733.0636 293.3469 L1774.3374 297.3553 L1815.611 301.3405 L1856.8846 305.3091 L1898.1582 309.2657 L1900.1823 309.4592" style="fill:none; fill-rule:evenodd;"
/><path d="M77.8178 338.6842 L97.5353 336.8095 L138.8089 332.8824 L180.0826 328.9539 L221.3562 325.0235 L262.6299 321.0906 L303.9035 317.1543 L345.1771 313.2132 L386.4508 309.2657 L427.7244 305.3091 L468.9981 301.3405 L510.2717 297.3553 L551.5453 293.3469 L592.819 289.307 L634.0927 285.2234 L675.3663 281.0792 L716.6399 276.8509 L757.9136 272.5045 L799.1873 267.9911 L840.4609 263.2379 L881.7346 258.134 L923.0082 252.502 L946.4242 248.965 L980.4288 243.1759 L1009.0438 237.415 L1033.1237 231.5765 L1053.3871 225.5576 L1070.4388 219.2502 L1084.7882 212.5355 L1096.8632 205.2901 L1107.0244 197.4442 L1115.5751 189.2386 L1122.7706 182.0131 L1128.8258 178.7392 L1134.8809 181.0932 L1142.0763 188.096 L1150.6272 196.4709 L1160.7883 204.5293 L1172.8634 211.9463 L1187.2126 218.7889 L1204.2644 225.1907 L1224.5278 231.2799 L1248.6075 237.1712 L1277.2228 242.9718 L1311.2273 248.7908 L1335.7446 252.502 L1377.0182 258.134 L1418.2919 263.2379 L1459.5654 267.9911 L1500.8392 272.5045 L1542.1128 276.8509 L1583.3865 281.0792 L1624.6602 285.2234 L1665.9337 289.307 L1707.2074 293.3469 L1748.4811 297.3553 L1789.7548 301.3405 L1831.0283 305.3091 L1872.302 309.2657 L1900.1823 311.9322" style="fill:none; fill-rule:evenodd; stroke:rgb(217,83,25);"
/><path d="M77.8178 328.306 L141.5879 322.243 L182.8615 318.3158 L224.1352 314.3873 L265.4088 310.4569 L306.6825 306.524 L347.9561 302.5876 L389.2297 298.6465 L430.5034 294.6989 L471.7771 290.7422 L513.0507 286.7735 L554.3243 282.7879 L595.598 278.7793 L636.8716 274.7389 L678.1453 270.6547 L719.4189 266.5098 L760.6926 262.2803 L801.9662 257.9322 L843.2399 253.4162 L884.5135 248.6591 L925.7871 243.549 L967.0608 237.9065 L984.6135 235.2773 L1019.332 229.4914 L1048.2592 223.8087 L1072.3608 218.133 L1092.4423 212.378 L1109.1738 206.4577 L1123.1144 200.2767 L1134.7295 193.7168 L1144.4071 186.6186 L1152.4703 178.7551 L1159.1886 169.8028 L1164.7861 159.4071 L1169.45 148.1369 L1173.3358 141.9079 L1177.2216 147.679 L1181.8855 158.9977 L1187.483 169.5081 L1194.2013 178.5425 L1202.2645 186.4609 L1211.942 193.5968 L1223.5573 200.1834 L1237.4978 206.3839 L1254.2292 212.3186 L1274.3107 218.0846 L1298.4124 223.7686 L1327.3395 229.4577 L1362.0581 235.2484 L1379.7972 237.9065 L1421.0709 243.549 L1462.3446 248.6591 L1503.6182 253.4162 L1544.8918 257.9322 L1586.1654 262.2803 L1627.4391 266.5098 L1668.7126 270.6547 L1709.9865 274.7389 L1751.26 278.7793 L1792.5337 282.7879 L1833.8073 286.7735 L1875.0809 290.7422 L1900.1823 293.1485" style="fill:none; fill-rule:evenodd; stroke:rgb(237,177,32);"
/><path d="M77.8178 322.3876 L79.3389 322.243 L120.6126 318.3158 L161.8862 314.3873 L203.1599 310.4569 L244.4335 306.524 L285.7072 302.5876 L326.9808 298.6465 L368.2544 294.6989 L409.5281 290.7422 L450.8017 286.7735 L492.0754 282.7879 L533.349 278.7793 L574.6227 274.7389 L615.8963 270.6547 L657.1699 266.5098 L698.4436 262.2803 L739.7172 257.9322 L780.9908 253.4162 L822.2645 248.6591 L863.5381 243.549 L904.8118 237.9065 L922.3645 235.2773 L957.0831 229.4914 L986.0102 223.8087 L1010.112 218.133 L1030.1932 212.378 L1046.9248 206.4577 L1060.8654 200.2767 L1072.4805 193.7168 L1082.1581 186.6186 L1090.2214 178.7551 L1096.9396 169.8028 L1102.5371 159.4071 L1107.2009 148.1369 L1111.0868 141.9079 L1114.9727 147.679 L1119.6365 158.9977 L1125.234 169.5081 L1131.9523 178.5425 L1140.0155 186.4609 L1149.6931 193.5968 L1161.3082 200.1834 L1175.2488 206.3839 L1191.9803 212.3186 L1212.0616 218.0846 L1236.1635 223.7686 L1265.0906 229.4577 L1299.8091 235.2484 L1317.5483 237.9065 L1358.8219 243.549 L1400.0956 248.6591 L1441.3691 253.4162 L1482.6428 257.9322 L1523.9164 262.2803 L1565.1902 266.5098 L1606.4637 270.6547 L1647.7374 274.7389 L1689.0111 278.7793 L1730.2847 282.7879 L1771.5583 286.7735 L1812.832 290.7422 L1854.1057 294.6989 L1895.3793 298.6465 L1900.1823 299.1051" style="fill:none; fill-rule:evenodd; stroke:rgb(126,47,142);"
/><path d="M77.8178 765.5262 L79.3389 764.9478 L120.2222 749.3906 L161.1055 733.8291 L201.9888 718.2618 L242.8721 702.6867 L283.7554 687.1008 L324.6387 671.5002 L365.522 655.8794 L406.4053 640.2313 L447.2886 624.5457 L488.1718 608.8089 L529.0552 593.002 L569.9384 577.0989 L610.8217 561.0637 L651.705 544.8466 L692.5883 528.3779 L733.4716 511.5594 L774.3549 494.251 L815.2382 476.2494 L856.1215 457.2517 L897.0048 436.7919 L922.3645 423.0533 L946.4242 408.9947 L957.0831 402.3644 L980.4288 386.7383 L986.0102 382.7339 L1009.0438 364.7887 L1010.112 363.8916 L1030.1932 345.6364 L1046.9248 327.8118 L1060.8654 310.2837 L1072.4805 292.9187 L1082.1581 275.5599 L1090.2214 257.9961 L1096.9396 239.9307 L1102.5371 221.046 L1107.2009 201.9553 L1111.0868 188.6234 L1114.9727 186.742 L1119.6365 188.3055 L1125.234 187.3436 L1128.8258 186.5082 L1134.8809 187.0694 L1141.4314 188.3109 L1142.0763 188.3318 L1148.627 187.3454 L1154.682 186.4177 L1159.1886 187.2885 L1164.7861 188.3188 L1169.45 186.8197 L1173.3358 188.2686 L1177.2216 201.1692 L1181.8855 220.3377 L1187.483 239.3674 L1194.2013 257.5444 L1202.2645 275.1909 L1211.942 292.613 L1223.5573 310.0277 L1237.4978 327.5957 L1254.2292 345.4527 L1274.3107 363.7343 L1274.4639 363.8636 L1298.4124 382.5981 L1303.079 385.9574 L1327.3395 402.2458 L1337.0835 408.3223 L1362.0581 422.9485 L1387.6044 436.7919 L1428.4875 457.2517 L1469.3708 476.2494 L1510.2542 494.251 L1551.1375 511.5594 L1592.0208 528.3779 L1632.9041 544.8466 L1673.7874 561.0637 L1714.6707 577.0989 L1755.5538 593.002 L1796.4371 608.8089 L1837.3206 624.5457 L1878.2039 640.2313 L1900.1823 648.6436" style="fill:none; fill-rule:evenodd; stroke:rgb(119,172,48);"
/></g
><g transform="translate(41.6667,476.9996) rotate(-90)" style="text-rendering:geometricPrecision; font-size:15px; color-interpolation:linearRGB; color-rendering:optimizeQuality; image-rendering:optimizeQuality;"
><text x="-51.5" xml:space="preserve" y="-4" style="stroke:none;"
>Magnitude (dB)</text
></g
></g
></svg
>

After

Width:  |  Height:  |  Size: 43 KiB

2
report/3_band_elimination/3_band_elimination.pug

@ -72,5 +72,5 @@ figure.block-center.width-15cm
// Sub-Chapters // Sub-Chapters
include 3_band_elimination_design include 3_band_elimination_design
//- include 1_low_pass_transfer_function_matlab include 3_band_elimination_transfer_function_matlab
//- include 1_low_pass_transfer_function_multisim //- include 1_low_pass_transfer_function_multisim

4
report/3_band_elimination/3_band_elimination_design.pug

@ -10,7 +10,7 @@ figure.block-center.width-15cm
div.item Αντιστροφή της συνάρτησης μεταφοράς (T#[sub LP] → T#[sub HP]) και εύρεση των πόλων ενός πρωτότυπου ανωδιαβατού φίλτρου. div.item Αντιστροφή της συνάρτησης μεταφοράς (T#[sub LP] → T#[sub HP]) και εύρεση των πόλων ενός πρωτότυπου ανωδιαβατού φίλτρου.
div.item Υπολογισμός των πόλων του πρότυπου φίλτρου Chebyshev. div.item Υπολογισμός των πόλων του πρότυπου φίλτρου Chebyshev.
div.item Υπολογισμός των πόλων και μηδενικών του ζωνοφρακτικού φίλτρου μέσω μετασχηματισμού των πόλων του πρωτότυπου ανωδιαβατού με χρήση του αλγόριθμου Geffe. div.item Υπολογισμός των πόλων και μηδενικών του ζωνοφρακτικού φίλτρου μέσω μετασχηματισμού των πόλων του πρωτότυπου ανωδιαβατού με χρήση του αλγόριθμου Geffe.
div.item Ομαδοποίηση των ζευγών συζηγών μιγαδικών πόλων και φανταστικών μηδενικών ανά δύο. Από την ομαδοποίηση προκύπτουν ζωνοφρακτικές μονάδες που υλοποιούνται με κυκλώματα Notch, LPN, HPN ανάλογα με τη σχετική θέση πόλων-μηδενικών. div.item Ομαδοποίηση των ζευγών συζυγών μιγαδικών πόλων και φανταστικών μηδενικών ανά δύο. Από την ομαδοποίηση προκύπτουν ζωνοφρακτικές μονάδες που υλοποιούνται με κυκλώματα Notch, LPN, HPN ανάλογα με τη σχετική θέση πόλων-μηδενικών.
div.item Υλοποίηση των φίλτρων Notch με βάση τα κυκλώματα του κεφαλαίου 7. div.item Υλοποίηση των φίλτρων Notch με βάση τα κυκλώματα του κεφαλαίου 7.
div.item Κλιμακοποίηση του κυκλώματος με στόχο τη μεταφορά στις πραγματικές συχνότητες και σε στοιχεία με πρακτικές (υλοποιήσιμες) τιμές. div.item Κλιμακοποίηση του κυκλώματος με στόχο τη μεταφορά στις πραγματικές συχνότητες και σε στοιχεία με πρακτικές (υλοποιήσιμες) τιμές.
div.item Έλεγχος των κερδών των μονάδων και ρύθμιση κέρδους με επιβολή απόσβεσης ή ενίσχυσης. div.item Έλεγχος των κερδών των μονάδων και ρύθμιση κέρδους με επιβολή απόσβεσης ή ενίσχυσης.
@ -36,7 +36,7 @@ p.latex-equation.
p. p.
Σχεδιάζεται ένα πρότυπο κατωδιαβατό Chebyshev φίλτρο, το οποίο αργότερα θα μετατραπεί στο πρωτότυπο ανωδιαβατό. Σχεδιάζεται ένα πρότυπο κατωδιαβατό Chebyshev φίλτρο, το οποίο αργότερα θα μετατραπεί στο πρωτότυπο ανωδιαβατό.
p Υπολογίζονται οι προδιαγραφές του προτότυπου κατωδιαβατού χρησιμοποιώντας τις εξισώσεις #[span.course-notes-equation 13-9]: p Υπολογίζονται οι προδιαγραφές του πρωτότυπου κατωδιαβατού χρησιμοποιώντας τις εξισώσεις #[span.course-notes-equation 13-9]:
p.latex-equation. p.latex-equation.
$$\Omega_p = 1\frac{rad}{s}$$ $$\Omega_p = 1\frac{rad}{s}$$

82
report/3_band_elimination/3_band_elimination_transfer_function_matlab.pug

@ -0,0 +1,82 @@
h3 Μελέτη συνάρτησης μεταφοράς στο Matlab
p.
Η σχεδίαση του φίλτρου έγινε στο λογισμικό Matlab. Σχεδιάστηκαν, με χρήση της συνάρτησης plot_transfer_function που δόθηκε καθώς και της ltiview που παρέχει το λογισμικό, οι αποκρίσεις πλάτους σε dB των επιμέρους μονάδων, καθώς και του συνολικού φίλτρου.
p.
Παρακάτω φαίνονται οι αποκρίσεις όπως προέκυψαν στο Matlab από την plot_transfer_function, με ορίσματα κάθε φορά την συνάρτηση μεταφοράς του επί μέρους συστήματος, καθώς και τυχόν κρίσιμες συχνότητες:
figure.block-center.width-15cm
img(src="3_band_elimination/assets/diagrams/matlab_band_elimination_chebyshev_HPN_unit_1_transfer_function.svg").width-15cm
figcaption
.reference #[span.plot-count]
.caption.title.
Συνάρτηση μεταφοράς πρώτης ζωνοφρακτικής μονάδας (HPN).
.caption.
Στο γράφημα φαίνεται η απόκριση της συνάρτησης μεταφοράς στην κεντρική συχνότητα της μονάδας.
figure.block-center.width-15cm
img(src="3_band_elimination/assets/diagrams/matlab_band_elimination_chebyshev_LPN_unit_2_transfer_function.svg").width-15cm
figcaption
.reference #[span.plot-count]
.caption.title.
Συνάρτηση μεταφοράς δεύτερης ζωνοφρακτικής μονάδας (LPN).
.caption.
Στο γράφημα φαίνεται η απόκριση της συνάρτησης μεταφοράς στην κεντρική συχνότητα της μονάδας.
figure.block-center.width-15cm
img(src="3_band_elimination/assets/diagrams/matlab_band_elimination_chebyshev_HPN_unit_3_transfer_function.svg").width-15cm
figcaption
.reference #[span.plot-count]
.caption.title.
Συνάρτηση μεταφοράς τρίτης ζωνοφρακτικής μονάδας (HPN).
.caption.
Στο γράφημα φαίνεται η απόκριση της συνάρτησης μεταφοράς στην κεντρική συχνότητα της μονάδας.
figure.block-center.width-15cm
img(src="3_band_elimination/assets/diagrams/matlab_band_elimination_chebyshev_LPN_unit_4_transfer_function.svg").width-15cm
figcaption
.reference #[span.plot-count]
.caption.title.
Συνάρτηση μεταφοράς τέταρτης ζωνοφρακτικής μονάδας (LPN).
.caption.
Στο γράφημα φαίνεται η απόκριση της συνάρτησης μεταφοράς στην κεντρική συχνότητα της μονάδας.
figure.block-center.width-15cm
img(src="3_band_elimination/assets/diagrams/matlab_band_elimination_chebyshev_total_transfer_function.svg").width-15cm
figcaption
.reference #[span.plot-count]
.caption.title.
Συνολική συνάρτηση μεταφοράς φίλτρου.
.caption.
Παρατηρούμε ότι η συνάρτηση μεταφοράς του φίλτρου έχει το αναμενόμενο σχήμα ενός ζωνοφρακτικού Chebyshev φίλτρου. Πιο συγκεκριμένα, στη ζώνη αποκοπής η συνάρτηση μεταφοράς είναι γνησίως φθίνουσα, ενώ στη ζώνη διόδου εμφανίζει ταλάντωση (ripples). Στο γράφημα φαίνεται επίσης η απόκριση της συνάρτησης μεταφοράς στις κρίσιμες συχνότητες: μέγιστο σημείο του ripple (1910 Hz), f#[sub 1]=1950 Hz, f#[sub hp1]=1988.3 Hz, f#[sub 3]=2261.55 Hz, f#[sub 0]=2500 Hz, f#[sub 4]=2763.6 Hz, f#[sub hp2]=3143.39 Hz, f#[sub 2]=3205.13 Hz.
figure.block-center.width-15cm
img(src="3_band_elimination/assets/diagrams/matlab_combined_transfer_functions_bode.svg").width-15cm
figcaption
.reference #[span.plot-count]
.caption.title.
Συνδυαστικό γράφημα συναρτήσεων μεταφοράς επιμέρους μονάδων και συνολικού φίλτρου.
figure.block-center.width-15cm
img(src="3_band_elimination/assets/diagrams/matlab_band_elimination_chebyshev_total_attenuation.svg").width-15cm
figcaption
.reference #[span.plot-count]
.caption.title.
Απόσβεση φίλτρου.
.caption.
Στο γράφημα φαίνεται η απόσβεση του φίλτρου για τις κρίσιμες συχνότητες: f#[sub 1]=1950 Hz, f#[sub 3]=2261.55 Hz, f#[sub 0]=2500 Hz, f#[sub 4]=2763.6 Hz, f#[sub 2]=3205.13 Hz.
p.
Στα γραφήματα 2.2.3 και 2.2.5 έχουν σημειωθεί οι κρίσιμες συχνότητες οι οποίες καθορίζουν την ζώνη διόδου και αποκοπής, δηλαδή οι f#[sub 1]=1950 Hz, f#[sub 2]=3205.128 Hz, f#[sub 3]=2261.546 Hz και f#[sub 4]=2763.597 Hz, καθώς και οι αντίστοιχες αποσβέσεις. Παρατηρούμε ότι η απόκριση του φίλτρου στις συχνότητες που καθορίζουν την ζώνη διόδου είναι 0 dB, ενώ στη ζώνη αποκοπής είναι 39.21 dB. Επίσης η ταλάντωση στη ζώνη διόδου προκαλεί μέγιστο κέρδος 0.56 dB, ίσο με το α#[sub max]. Επομένως είναι φανερό ότι πληρείτε ακριβώς η προδιαγραφή a#[sub max]=0.555 dB ενώ η προδιαγραφή a#[sub min]=29.334 dB υπερκαλύπτεται.
p.
Η συνάρτηση απόσβεσης, πριν τη ρύθμιση κέρδους, δίνεται από το παρακάτω διάγραμμα:
figure.block-center.width-15cm
img(src="3_band_elimination/assets/diagrams/matlab_band_elimination_chebyshev_original_gain_attenuation.svg").width-15cm
figcaption
.reference #[span.plot-count]
.caption.title.
Απόσβεση φίλτρου πριν τη ρύθμιση κέρδους.
.caption.
Στο γράφημα σημειώνονται οι ίδιες κρίσιμες συχνότητες: f#[sub 1]=1950 Hz, f#[sub 3]=2261.55 Hz, f#[sub 0]=2500 Hz, f#[sub 4]=2763.6 Hz, f#[sub 2]=3205.13 Hz.

287
report/3_band_elimination/assets/diagrams/band_elimination_general_transfer_function_plot.svg

@ -1,7 +1,8 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 223.7596588 182.7209473" style="enable-background:new 0 0 223.7596588 182.7209473;" xml:space="preserve"> viewBox="-193 305.2790527 223.7596588 182.7209473" style="enable-background:new -193 305.2790527 223.7596588 182.7209473;"
xml:space="preserve">
<style type="text/css"> <style type="text/css">
.st0{fill:none;stroke:#010101;stroke-width:0.752812;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10.0375004;} .st0{fill:none;stroke:#010101;stroke-width:0.752812;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10.0375004;}
.st1{fill:#010101;} .st1{fill:#010101;}
@ -11,201 +12,201 @@
.st3{fill:none;stroke:#010101;stroke-width:0.752812;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10.0375004;stroke-dasharray:5.8912501,5.8912501;} .st3{fill:none;stroke:#010101;stroke-width:0.752812;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10.0375004;stroke-dasharray:5.8912501,5.8912501;}
.st4{font-family:'ArialMT';} .st4{font-family:'ArialMT';}
.st5{font-size:8px;} .st5{font-size:8px;}
.st6{font-family:'MyriadPro-Regular';} .st6{font-size:7px;}
.st7{font-size:7px;} .st7{font-size:4.0809999px;}
</style> </style>
<g id="page1" transform="matrix(0.996264 0 0 0.996264 0 0)"> <g id="page1" transform="matrix(0.996264 0 0 0.996264 0 0)">
<g transform="matrix(1 0 0 1 123.077 242.971)"> <g transform="matrix(1 0 0 1 123.077 242.971)">
<path class="st0" d="M-109.4680557-231.3011627v159.8439941"/> <path class="st0" d="M-303.191803,75.1226883v159.8439941"/>
</g> </g>
<g transform="matrix(1 0 0 1 123.077 242.971)"> <g transform="matrix(1 0 0 1 123.077 242.971)">
<path class="st1" d="M-109.4680557-242.5931702l-3.0257339,11.2920074h6.0514603L-109.4680557-242.5931702z"/> <path class="st1" d="M-303.191803,63.8306808l-3.0257263,11.2920074h6.0514526L-303.191803,63.8306808z"/>
</g> </g>
<g transform="matrix(1 0 0 1 123.077 242.971)"> <g transform="matrix(1 0 0 1 123.077 242.971)">
<path class="st0" d="M-109.4680557-242.5931702l-3.0257339,11.2920074h6.0514603L-109.4680557-242.5931702z"/> <path class="st0" d="M-303.191803,63.8306808l-3.0257263,11.2920074h6.0514526L-303.191803,63.8306808z"/>
</g> </g>
<g transform="matrix(1 0 0 1 123.077 242.971)"> <g transform="matrix(1 0 0 1 123.077 242.971)">
<path class="st0" d="M-110.4718094-71.4571762h2.0074997"/> <path class="st0" d="M-304.1955566,234.9666748h2.0075073"/>
</g> </g>
<g transform="matrix(1 0 0 1 123.077 242.971)"> <g transform="matrix(1 0 0 1 123.077 242.971)">
<path class="st0" d="M-110.4718094-87.0149765h2.0074997"/> <path class="st0" d="M-304.1955566,219.4088745h2.0075073"/>
</g> </g>
<g transform="matrix(1 0 0 1 123.077 242.971)"> <g transform="matrix(1 0 0 1 123.077 242.971)">
<path class="st0" d="M-110.4718094-102.5727768h2.0074997"/> <path class="st0" d="M-304.1955566,203.8510742h2.0075073"/>
</g> </g>
<g transform="matrix(1 0 0 1 123.077 242.971)"> <g transform="matrix(1 0 0 1 123.077 242.971)">
<path class="st0" d="M-110.4718094-118.1305771h2.0074997"/> <path class="st0" d="M-304.1955566,188.2932739h2.0075073"/>
</g> </g>
<g transform="matrix(1 0 0 1 123.077 242.971)"> <g transform="matrix(1 0 0 1 123.077 242.971)">
<path class="st0" d="M-110.4718094-133.6883698h2.0074997"/> <path class="st0" d="M-304.1955566,172.7354736h2.0075073"/>
</g> </g>
<g transform="matrix(1 0 0 1 123.077 242.971)"> <g transform="matrix(1 0 0 1 123.077 242.971)">
<path class="st0" d="M-110.4718094-149.24617h2.0074997"/> <path class="st0" d="M-304.1955566,157.1776733h2.0075073"/>
</g> </g>
<g transform="matrix(1 0 0 1 123.077 242.971)"> <g transform="matrix(1 0 0 1 123.077 242.971)">
<path class="st0" d="M-110.4718094-164.8039703h2.0074997"/> <path class="st0" d="M-304.1955566,141.619873h2.0075073"/>
</g> </g>
<g transform="matrix(1 0 0 1 123.077 242.971)"> <g transform="matrix(1 0 0 1 123.077 242.971)">
<path class="st0" d="M-110.4718094-180.3621674h2.0074997"/> <path class="st0" d="M-304.1955566,126.0616837h2.0075073"/>
</g> </g>
<g transform="matrix(1 0 0 1 123.077 242.971)"> <g transform="matrix(1 0 0 1 123.077 242.971)">
<path class="st0" d="M-110.4718094-195.9191742h2.0074997"/> <path class="st0" d="M-304.1955566,110.5046768h2.0075073"/>
</g> </g>
<g transform="matrix(1 0 0 1 123.077 242.971)"> <g transform="matrix(1 0 0 1 123.077 242.971)">
<path class="st0" d="M-110.4718094-211.4771729h2.0074997"/> <path class="st0" d="M-304.1955566,94.9466782h2.0075073"/>
</g> </g>
<g transform="matrix(1 0 0 1 123.077 242.971)"> <g transform="matrix(1 0 0 1 123.077 242.971)">
<path class="st0" d="M-110.4718094-227.0351715h2.0074997"/> <path class="st0" d="M-304.1955566,79.3886795h2.0075073"/>
</g> </g>
<g transform="matrix(1 0 0 1 123.077 242.971)"> <g transform="matrix(1 0 0 1 123.077 242.971)">
<path class="st0" d="M-110.4718094-79.2360764h2.0074997"/> <path class="st0" d="M-304.1955566,227.1877747h2.0075073"/>
</g> </g>
<g transform="matrix(1 0 0 1 123.077 242.971)"> <g transform="matrix(1 0 0 1 123.077 242.971)">
<path class="st0" d="M-110.4718094-94.7938766h2.0074997"/> <path class="st0" d="M-304.1955566,211.6299744h2.0075073"/>
</g> </g>
<g transform="matrix(1 0 0 1 123.077 242.971)"> <g transform="matrix(1 0 0 1 123.077 242.971)">
<path class="st0" d="M-110.4718094-110.3516769h2.0074997"/> <path class="st0" d="M-304.1955566,196.0721741h2.0075073"/>
</g> </g>
<g transform="matrix(1 0 0 1 123.077 242.971)"> <g transform="matrix(1 0 0 1 123.077 242.971)">
<path class="st0" d="M-110.4718094-125.9094772h2.0074997"/> <path class="st0" d="M-304.1955566,180.5143738h2.0075073"/>
</g> </g>
<g transform="matrix(1 0 0 1 123.077 242.971)"> <g transform="matrix(1 0 0 1 123.077 242.971)">
<path class="st0" d="M-110.4718094-141.4672699h2.0074997"/> <path class="st0" d="M-304.1955566,164.9565735h2.0075073"/>
</g> </g>
<g transform="matrix(1 0 0 1 123.077 242.971)"> <g transform="matrix(1 0 0 1 123.077 242.971)">
<path class="st0" d="M-110.4718094-157.0250702h2.0074997"/> <path class="st0" d="M-304.1955566,149.3987732h2.0075073"/>
</g> </g>
<g transform="matrix(1 0 0 1 123.077 242.971)"> <g transform="matrix(1 0 0 1 123.077 242.971)">
<path class="st0" d="M-110.4718094-172.5831757h2.0074997"/> <path class="st0" d="M-304.1955566,133.8406677h2.0075073"/>
</g> </g>
<g transform="matrix(1 0 0 1 123.077 242.971)"> <g transform="matrix(1 0 0 1 123.077 242.971)">
<path class="st0" d="M-110.4718094-188.1411743h2.0074997"/> <path class="st0" d="M-304.1955566,118.2826767h2.0075073"/>
</g> </g>
<g transform="matrix(1 0 0 1 123.077 242.971)"> <g transform="matrix(1 0 0 1 123.077 242.971)">
<path class="st0" d="M-110.4718094-203.6981659h2.0074997"/> <path class="st0" d="M-304.1955566,102.7256851h2.0075073"/>
</g> </g>
<g transform="matrix(1 0 0 1 123.077 242.971)"> <g transform="matrix(1 0 0 1 123.077 242.971)">
<path class="st0" d="M-110.4718094-219.2561646h2.0074997"/> <path class="st0" d="M-304.1955566,87.1676865h2.0075073"/>
</g> </g>
<g transform="matrix(1 0 0 1 123.077 242.971)"> <g transform="matrix(1 0 0 1 123.077 242.971)">
<path class="st0" d="M-110.4718094-234.8141632h2.0074997"/> <path class="st0" d="M-304.1955566,71.6096878h2.0075073"/>
</g> </g>
<g transform="matrix(1 0 0 1 123.077 242.971)"> <g transform="matrix(1 0 0 1 123.077 242.971)">
<path class="st0" d="M89.851944-71.4571762h-199.3200073"/> <path class="st0" d="M-103.8718109,234.9666748H-303.191803"/>
</g> </g>
<g transform="matrix(1 0 0 1 123.077 242.971)"> <g transform="matrix(1 0 0 1 123.077 242.971)">
<path class="st1" d="M101.1439362-71.4571762L89.851944-74.4829102v6.0514603L101.1439362-71.4571762z"/> <path class="st1" d="M-92.5798187,234.9666748l-11.2919922-3.0257416v6.0514679L-92.5798187,234.9666748z"/>
</g> </g>
<g transform="matrix(1 0 0 1 123.077 242.971)"> <g transform="matrix(1 0 0 1 123.077 242.971)">
<path class="st0" d="M101.1439362-71.4571762L89.851944-74.4829102v6.0514603L101.1439362-71.4571762z"/> <path class="st0" d="M-92.5798187,234.9666748l-11.2919922-3.0257416v6.0514679L-92.5798187,234.9666748z"/>
</g> </g>
<g transform="matrix(1 0 0 1 123.077 242.971)"> <g transform="matrix(1 0 0 1 123.077 242.971)">
<path class="st0" d="M-109.4680557-72.4609299v2.0074997"/> <path class="st0" d="M-303.191803,233.9629211v2.0074921"/>
</g> </g>
<g transform="matrix(1 0 0 1 123.077 242.971)"> <g transform="matrix(1 0 0 1 123.077 242.971)">
<path class="st0" d="M-77.0661545-72.4609299v2.0074997"/> <path class="st0" d="M-270.789917,233.9629211v2.0074921"/>
</g> </g>
<g transform="matrix(1 0 0 1 123.077 242.971)"> <g transform="matrix(1 0 0 1 123.077 242.971)">
<path class="st0" d="M-44.664257-72.4609299v2.0074997"/> <path class="st0" d="M-238.3880157,233.9629211v2.0074921"/>
</g> </g>
<g transform="matrix(1 0 0 1 123.077 242.971)"> <g transform="matrix(1 0 0 1 123.077 242.971)">
<path class="st0" d="M-12.2624617-72.4609299v2.0074997"/> <path class="st0" d="M-205.9862213,233.9629211v2.0074921"/>
</g> </g>
<g transform="matrix(1 0 0 1 123.077 242.971)"> <g transform="matrix(1 0 0 1 123.077 242.971)">
<path class="st0" d="M20.1399422-72.4609299v2.0074997"/> <path class="st0" d="M-173.5838165,233.9629211v2.0074921"/>
</g> </g>
<g transform="matrix(1 0 0 1 123.077 242.971)"> <g transform="matrix(1 0 0 1 123.077 242.971)">
<path class="st0" d="M52.5409431-72.4609299v2.0074997"/> <path class="st0" d="M-141.1828156,233.9629211v2.0074921"/>
</g> </g>
<g transform="matrix(1 0 0 1 123.077 242.971)"> <g transform="matrix(1 0 0 1 123.077 242.971)">
<path class="st0" d="M84.9429321-72.4609299v2.0074997"/> <path class="st0" d="M-108.7808228,233.9629211v2.0074921"/>
</g> </g>
<g transform="matrix(1 0 0 1 123.077 242.971)"> <g transform="matrix(1 0 0 1 123.077 242.971)">
<path class="st0" d="M-93.2671585-72.4609299v2.0074997"/> <path class="st0" d="M-286.9909058,233.9629211v2.0074921"/>
</g> </g>
<g transform="matrix(1 0 0 1 123.077 242.971)"> <g transform="matrix(1 0 0 1 123.077 242.971)">
<path class="st0" d="M-60.8652573-72.4609299v2.0074997"/> <path class="st0" d="M-254.5890045,233.9629211v2.0074921"/>
</g> </g>
<g transform="matrix(1 0 0 1 123.077 242.971)"> <g transform="matrix(1 0 0 1 123.077 242.971)">
<path class="st0" d="M-28.4633579-72.4609299v2.0074997"/> <path class="st0" d="M-222.1871185,233.9629211v2.0074921"/>
</g> </g>
<g transform="matrix(1 0 0 1 123.077 242.971)"> <g transform="matrix(1 0 0 1 123.077 242.971)">
<path class="st0" d="M3.9389389-72.4609299v2.0074997"/> <path class="st0" d="M-189.7848206,233.9629211v2.0074921"/>
</g> </g>
<g transform="matrix(1 0 0 1 123.077 242.971)"> <g transform="matrix(1 0 0 1 123.077 242.971)">
<path class="st0" d="M36.3399391-72.4609299v2.0074997"/> <path class="st0" d="M-157.3838196,233.9629211v2.0074921"/>
</g> </g>
<g transform="matrix(1 0 0 1 123.077 242.971)"> <g transform="matrix(1 0 0 1 123.077 242.971)">
<path class="st0" d="M68.7419434-72.4609299v2.0074997"/> <path class="st0" d="M-124.9818115,233.9629211v2.0074921"/>
</g> </g>
<g transform="matrix(1 0 0 1 123.077 242.971)"> <g transform="matrix(1 0 0 1 123.077 242.971)">
<path class="st0" d="M-109.4680557-181.4741669l0.3240204-0.0010071l0.3240204-0.0039978l0.3240128-0.0110016l0.324028-0.0189972 <path class="st0" d="M-303.191803,124.9496841l0.3240051-0.0010071l0.3240356-0.0039978l0.3240051-0.0110016l0.3240356-0.0189972
l0.3240051-0.0250092l0.3240204-0.0299988l0.3240204-0.0359955l0.3240204-0.0419922l0.3240204-0.0470123l0.3240204-0.0529938 l0.3240051-0.0250092l0.3240051-0.0299988l0.3240356-0.0359955l0.3240051-0.0419922l0.3240356-0.0470123l0.3240051-0.0529938
l0.3240204-0.0590057l0.3240204-0.0659943l0.3240128-0.0709991l0.3240204-0.072998l0.3240204-0.0769958l0.3240128-0.0850067 l0.3240356-0.0590057l0.3240051-0.0659943l0.3240356-0.0709991l0.3240051-0.072998l0.3240356-0.0769958l0.3240051-0.0850067
l0.3240204-0.095993l0.3240204-0.102005l0.3240204-0.1029968l0.3240204-0.1060028l0.3240204-0.1139984l0.3240128-0.1240082 l0.3240051-0.095993l0.3240356-0.102005l0.3240051-0.1029968l0.3240356-0.1060028l0.3240051-0.1139984l0.3240356-0.1240082
l0.3240204-0.1319885l0.3240204-0.1330109l0.3240204-0.1380005l0.3240204-0.1459961l0.3240204-0.1529999l0.3240128-0.1569977 l0.3240051-0.1319885l0.3240356-0.1330109l0.3240051-0.1380005l0.3240356-0.1459961l0.3240051-0.1529999l0.3240051-0.1569977
l0.3240204-0.1630096l0.3240128-0.1699982l0.3240433-0.1790009l0.3239975-0.1869965l0.3239975-0.1929932l0.3240051-0.1970062 l0.3240356-0.1630096l0.3240051-0.1699982l0.3240356-0.1790009l0.3240051-0.1869965l0.3240051-0.1929932l0.3240051-0.1970062
l0.3240967-0.2039948l0.3239975-0.2120056l0.3240051-0.2169952l0.3239975-0.2230072l0.3239975-0.2299957l0.3241043-0.2369995 l0.3240967-0.2039948l0.3240051-0.2120056l0.3240051-0.2169952l0.3239746-0.2230072l0.3240051-0.2299957l0.3240967-0.2369995
l0.3239975-0.2460022l0.3239975-0.2529907l0.3240051-0.2630005l0.3239975-0.2730103l0.3239975-0.2779999l0.3241043-0.2819977 l0.3240051-0.2460022l0.3240051-0.2529907l0.3240051-0.2630005l0.3240051-0.2730103l0.3239746-0.2779999l0.3241272-0.2819977
l0.3239975-0.2859955l0.3240051-0.2960052l0.3239975-0.3099976l0.3239975-0.3179932l0.3241043-0.3240051l0.3239975-0.3269958 l0.3239746-0.2859955l0.3240051-0.2960052l0.3240051-0.3099976l0.3240051-0.3179932l0.3240967-0.3240051l0.3240051-0.3269958
l0.3239975-0.3380127l0.3240051-0.3499908l0.3239975-0.3590088l0.3240967-0.3639984l0.3240051-0.3699951l0.3239975-0.3809967 l0.3240051-0.3380127l0.3240051-0.3499908l0.3239746-0.3590088l0.3240967-0.3639984l0.3240051-0.3699951l0.3240051-0.3809967
l0.3239975-0.3950043l0.3240051-0.4029999l0.3239975-0.4080048l0.3240967-0.4160004l0.3240051-0.4259949l0.3239975-0.4389954 l0.3240051-0.3950043l0.3240051-0.4029999l0.3240051-0.4080048l0.3240967-0.4160004l0.3240051-0.4259949l0.3239746-0.4389954
l0.3239975-0.4490051l0.3240051-0.4579926l0.3240967-0.4670105l0.3240051-0.4749908l0.3239975-0.4830017l0.3239975-0.4929962 l0.3240051-0.4490051l0.3240051-0.4579926l0.3240967-0.4670105l0.3240051-0.4749908l0.3240051-0.4830017l0.3240051-0.4929962
l0.3240051-0.506012l0.3240967-0.5179901l0.3239975-0.5270081l0.3240051-0.5339966l0.3239975-0.5419922l0.3239975-0.5540009 l0.3240051-0.506012l0.3240967-0.5179901l0.3239746-0.5270081l0.3240051-0.5339966l0.3240051-0.5419922l0.3240051-0.5540009
l0.3240051-0.5680084l0.3240967-0.5769958l0.3239975-0.5820007l0.3240051-0.5899963l0.3239975-0.602005l0.3239975-0.6129913 l0.3240051-0.5680084l0.3240967-0.5769958l0.3240051-0.5820007l0.3240051-0.5899963l0.3239746-0.602005l0.3240051-0.6129913
l0.3241043-0.6210022l0.3239975-0.6269989l0.3239975-0.6370087l0.3240051-0.6490021l0.3239975-0.6559906l0.3241043-0.6600037 l0.3240967-0.6210022l0.3240051-0.6269989l0.3240051-0.6370087l0.3240051-0.6490021l0.3240051-0.6559906l0.3240967-0.6600037
l0.3239975-0.6679993l0.3239975-0.677002l0.3240051-0.6860046l0.3239975-0.6879883l0.3240967-0.6880035l0.3240051-0.6930084 l0.3240051-0.6679993l0.3239746-0.677002l0.3240051-0.6860046l0.3240051-0.6879883l0.3240967-0.6880035l0.3240051-0.6930084
l0.3239975-0.7049866l0.3239975-0.7110138l0.3240051-0.7079926l0.3239975-0.6999969l0.3240967-0.6959991l0.3240051-0.7000122 l0.3240051-0.7049866l0.3240051-0.7110138l0.3240051-0.7079926l0.3239746-0.6999969l0.3240967-0.6959991l0.3240051-0.7000122
l0.3239975-0.6989899l0.3239975-0.6940002l0.3240051-0.6840057l0.3240967-0.6779938l0.3239975-0.6699982l0.3240051-0.6610107 l0.3240051-0.6989899l0.3240051-0.6940002l0.3240051-0.6840057l0.3240967-0.6779938l0.3240051-0.6699982l0.3240051-0.6610107
l0.3239975-0.6439972l0.3239975-0.6269989l0.3241043-0.6100006l0.3239975-0.5899963l0.3239975-0.5659943l0.3240051-0.5400085 l0.3239746-0.6439972l0.3240051-0.6269989l0.3240967-0.6100006l0.3240051-0.5899963l0.3240051-0.5659943l0.3240051-0.5400085
l0.3239975-0.5130005l0.3239975-0.4810028l0.3241043-0.4429932l0.3239975-0.4060059l0.3239975-0.3710022l0.3240051-0.3349915 l0.3240051-0.5130005l0.3239746-0.4810028l0.3241272-0.4429932l0.3239746-0.4060059l0.3240051-0.3710022l0.3240051-0.3349915
l0.3239975-0.2890015l0.3241043-0.2319946l0.3239975-0.1740112l0.3239975-0.1269989l0.3240051-0.0809937l0.3239975-0.0250092 l0.3240051-0.2890015l0.3240967-0.2319946l0.3240051-0.1740112l0.3240051-0.1269989l0.3240051-0.0809937l0.3239746-0.0250092
l0.3240967,0.0460052l0.3240051,0.1170044l0.3239975,0.1799927l0.3239975,0.2369995l0.3240051,0.3040009l0.3239975,0.378006 l0.3240967,0.0460052l0.3240051,0.1170044l0.3240051,0.1799927l0.3240051,0.2369995l0.3240051,0.3040009l0.3240051,0.378006
l0.3240967,0.4530029l0.3240051,0.5169983l0.3239975,0.5789948l0.3239975,0.647995l0.3240051,0.7220001l0.3240967,0.7920074 l0.3240967,0.4530029l0.3240051,0.5169983l0.3239746,0.5789948l0.3240051,0.647995l0.3240051,0.7220001l0.3240967,0.7920074
l0.3239975,0.8529968l0.3240051,0.9109955l0.3239975,0.9710083l0.3239975,1.0310059l0.3241043,1.0849915l0.3240013,1.1340027 l0.3240051,0.8529968l0.3240051,0.9109955l0.3240051,0.9710083l0.3239746,1.0310059l0.3241272,1.0849915l0.3239746,1.1340027
l0.3240013,1.1799927l0.3239975,1.2250061l0.3240013,1.2599945l0.3240013,1.2870026l0.3240967,1.3160095l0.3240013,1.345993 l0.3240051,1.1799927l0.3240051,1.2250061l0.3240051,1.2599945l0.3240051,1.2870026l0.3240967,1.3160095l0.3239899,1.345993
l0.3240013,1.3679962l0.3239975,1.3740082l0.3240013,1.3739929l0.3241005,1.3809967l0.3240013,1.3910065l0.3239975,1.3890076 l0.3240051,1.3679962l0.3240051,1.3740082l0.3239899,1.3739929l0.3241119,1.3809967l0.3239899,1.3910065l0.3240051,1.3890076
l0.3240013,1.3679962l0.3240013,1.3419952l0.3240967,1.3280029l0.3240013,1.3159943l0.3240013,1.2850037l0.3239975,1.2350006 l0.3240051,1.3679962l0.3239899,1.3419952l0.3240967,1.3280029l0.3240051,1.3159943l0.3240051,1.2850037l0.3239899,1.2350006
l0.3240013,1.1869965l0.3241005,1.1560059l0.3240013,1.1229858l0.3239975,1.0670013l0.3240013,0.9869995l0.3240013,0.9160004 l0.3240051,1.1869965l0.3240967,1.1560059l0.3240051,1.1229858l0.3240051,1.0670013l0.3239899,0.9869995l0.3240051,0.9160004
l0.3239975,0.8610077l0.3241005,0.798996l0.3240013,0.7070007l0.3239975,0.598999l0.3239975,0.503006l0.3240013,0.4199982 l0.3240051,0.8610077l0.3240967,0.798996l0.3240051,0.7070007l0.3239899,0.598999l0.3240051,0.503006l0.3239899,0.4199982
l0.3241005,0.3179932l0.3239975,0.178009l0.3240013,0.0249939l0.3240013-0.1159973l0.3239975-0.2539978l0.3241005-0.427002 l0.3241119,0.3179932l0.3239899,0.178009l0.3240051,0.0249939l0.3240051-0.1159973l0.3239899-0.2539978l0.3240967-0.427002
l0.3240013-0.6419983l0.3239975-0.8710022l0.3240013-1.095993l0.3240013-1.3460083l0.3239975-1.6539917l0.3241005-2.0110016 l0.3240051-0.6419983l0.3240051-0.8710022l0.3239899-1.095993l0.3240051-1.3460083l0.3240051-1.6539917l0.3240967-2.0110016
l0.3240013-2.378006l0.3240013-2.7539978l0.3239975-3.177002l0.3240013-3.6559906l0.3241005-4.128006l0.3239975-4.496994 l0.3240051-2.378006l0.3239899-2.7539978l0.3240051-3.177002l0.3240051-3.6559906l0.3240967-4.128006l0.3239899-4.496994
l0.3240013-4.6959991l0.3240013-4.628006l0.3239975-4.0659943l0.3241005-2.6800079l0.3240013-0.2570038l0.3240013,3.0680084 l0.3240051-4.6959991l0.3240051-4.628006l0.3239899-4.0659943l0.3241119-2.6800079l0.3239899-0.2570038l0.3240051,3.0680084
l0.3239975,6.75l0.3240013,10.0410004l0.3239975,12.2859955l0.3241043,13.1999969l0.3239975,12.9380951l0.3239975,11.9494019 l0.3240051,6.75l0.3239899,10.0410004l0.3240051,12.2859955l0.3240967,13.1999969l0.3240051,12.9380875l0.3239899,11.9494019
l0.3240051,10.6815033l0.3239975,9.3890991l0.3240967,8.1495056l0.3240051,7.0020905l0.3239975,6.0053024l0.3239975,5.1877975 l0.3240051,10.6815033l0.3240051,9.3890991l0.3240967,8.1495056l0.3240051,7.0020905l0.3239899,6.0053101l0.3240051,5.1877899
l0.3240051,4.5072021l0.3240967,3.9055023l0.3239975,3.3736954l0.3240051,2.9375l0.3239975,2.5923996l0.3239975,2.2934036 l0.3240051,4.5072021l0.3240967,3.9055023l0.3239899,3.373703l0.3240051,2.9375l0.3240051,2.592392l0.3239899,2.2934113
l0.3240051,2.0093994l0.3240967,1.7584l0.3240051,1.5651016l0.3239975,1.4132004l0.3239975,1.2637939l0.3240051,1.108963 l0.3240051,2.0093994l0.3240967,1.7583923l0.3240051,1.5651093l0.3240051,1.4131927l0.3239899,1.2637939l0.3240051,1.108963
l0.3240967,0.9781189l0.3239975,0.888504l0.3240051,0.8166275l0.3239975,0.7309113l0.3239975,0.6391068l0.3241043,0.5709686 l0.3240967,0.9781189l0.3240051,0.888504l0.3240051,0.8166351l0.3239899,0.7309113l0.3240051,0.6390991l0.3240967,0.5709686
l0.3239975,0.5320816l0.3239975,0.4941177l0.3240051,0.4368668l0.3239975,0.3771133l0.3239975,0.3414993l0.3241043,0.3250046 l0.3240051,0.5320892l0.3239899,0.4941101l0.3240051,0.4368744l0.3240051,0.3771057l0.3239899,0.341507l0.3241119,0.3249969
l0.3239975,0.3008881l0.3239975,0.2596588l0.3240051,0.2220154l0.3239975,0.2067566l0.3241043,0.2019424l0.3239975,0.1862259 l0.3239899,0.3008881l0.3240051,0.2596588l0.3240051,0.2220154l0.3239899,0.2067566l0.3241119,0.2019501l0.3239899,0.1862183
l0.3239975,0.157135l0.324007,0.1341095l0.3239975,0.1267853l0.3240967,0.1226044l0.3240051,0.1084366l0.3239975,0.0889893 l0.3240051,0.157135l0.3240051,0.1341095l0.3239899,0.1267853l0.3240967,0.1226044l0.3240051,0.1084442l0.3240051,0.0889893
l0.3239975,0.0785675l0.3240051,0.0779419l0.3240967,0.0754547l0.3239975,0.0642548l0.3240051,0.051651l0.3239975,0.0452728 l0.3239899,0.0785675l0.3240051,0.0779419l0.3240967,0.0754547l0.3240051,0.0642548l0.3240051,0.051651l0.3239899,0.0452728
l0.3239975,0.0438766l0.3240051,0.0401382l0.3240967,0.0348511l0.3239975,0.0315781l0.3240051,0.0287857l0.3239975,0.0225601 l0.3240051,0.043869l0.3240051,0.0401459l0.3240967,0.0348511l0.3239899,0.0315704l0.3240051,0.0287933l0.3240051,0.0225525
l0.3239975,0.0155563l0.3241043,0.0143127l0.3239975,0.0183563l0.3240051,0.0194473l0.3239975,0.0112l0.3239975,0.0028 l0.3239899,0.015564l0.3241119,0.0143127l0.3239899,0.0183563l0.3240051,0.0194397l0.3240051,0.0112l0.3239899,0.0028076
l0.3241043,0.0045166l0.3239975,0.010582l0.3239975,0.0121307l0.3240051,0.003891l0.3239975-0.0018692l0.3239975,0.0015564 l0.3241119,0.0045166l0.3239899,0.0105743l0.3240051,0.0121307l0.3240051,0.003891l0.3239899-0.0018616l0.3240051,0.0015564
l0.3241043,0.006691l0.3239975,0.0074692l0.3239975-0.001091l0.3240051-0.0029526l0.3239975-0.000473l0.3240967,0.0012512 l0.3240967,0.0066833l0.3240051,0.0074768l0.3239899-0.0010986l0.3240051-0.0029449l0.3240051-0.000473l0.3240967,0.0012512
l0.3240051,0.0007706l0.3239975,0.0001602l0.3239975,0.0007782l0.3240051,0.0015564l0.3240967,0.0018616l0.3240051,0.0015564 l0.3240051,0.0007629l0.3239899,0.0001678l0.3240051,0.0007782l0.3240051,0.0015564l0.3240967,0.0018616l0.3240051,0.0015564
l0.3239975,0.0012512l0.3239975,0.0003052l0.3240051-0.000618l0.3239975-0.0001602h0.3240967h0.3240051l0.3239975-0.000618 l0.3239899,0.0012512l0.3240051,0.0003052l0.3240051-0.0006256l0.3239899-0.0001526h0.3240967h0.3240051l0.3240051-0.0006256
l0.3239975-0.0007782l0.3240042-0.0001602l0.3240967,0.0006256l0.3239975,0.0020218l0.3240051-0.0024872l0.3239975-0.003891 l0.3239899-0.0007782l0.3240051-0.0001526l0.3240967,0.0006256l0.3240051,0.0020142l0.3240051-0.0024872l0.3239899-0.003891
l0.3239975-0.003891l0.3241043-0.0021744l0.3239975,0.0010834l0.3239975,0.004982l0.3240051,0.0023346l0.3239975-0.0085602 l0.3240051-0.003891l0.3240967-0.0021667l0.3240051,0.0010834l0.3239899,0.0049744l0.3240051,0.0023346l0.3240051-0.0085602
l0.3239975-0.006691l0.3241043-0.002327l0.3239975-0.0001602l0.3239975-0.0049744l0.3240051-0.0108948l0.3239975-0.0105743 l0.3239899-0.0066833l0.3241119-0.0023346l0.3239899-0.0001526l0.3240051-0.0049744l0.3240051-0.0108948l0.3239899-0.0105743
l0.3241043-0.0070038l0.3239975-0.0063782l0.3239975-0.0093384l0.3242035-0.0121307l0.3239975-0.0124512l0.3239975-0.0132217 l0.3241119-0.0070038l0.3239899-0.0063782l0.3240051-0.0093384l0.3242035-0.0121307l0.3239899-0.0124512l0.3240051-0.0132294
l0.3240051-0.0163345l0.3239975-0.0194473l0.3239975-0.0195999l0.3240051-0.0191422l0.3239975-0.0223999l0.3239975-0.0290909 l0.3240051-0.0163269l0.3239899-0.019455l0.3240051-0.0195923l0.3240051-0.0191498l0.3239899-0.0223999l0.3240051-0.0290833
l0.3240051-0.0332947l0.3239975-0.0325165l0.3239975-0.0315857l0.3240051-0.0343781l0.3239975-0.0409164l0.3239975-0.0463638 l0.3240051-0.0332947l0.3239899-0.0325165l0.3240051-0.0315857l0.3240051-0.0343781l0.3239899-0.0409241l0.3240051-0.0463562
l0.3240051-0.0490112l0.3239975-0.0514908l0.3239975-0.0552292l0.3240051-0.0598984l0.3239975-0.0637894l0.3239975-0.0686111 l0.3240051-0.0490112l0.3239899-0.0514984l0.3240051-0.0552216l0.3240051-0.059906l0.3239899-0.0637817l0.3240051-0.0686188
l0.3240051-0.0746765l0.3239975-0.0810547l0.3239975-0.0857239l0.3240051-0.0905457l0.3239974-0.0988007l0.3239976-0.1085892 l0.3240051-0.0746765l0.3239899-0.0810547l0.3240051-0.0857239l0.3240051-0.0905457l0.3239899-0.0988007l0.3240051-0.1085815
l0.3240051-0.1159058l0.3239975-0.1191711l0.3239975-0.1239929l0.3240051-0.1352005l0.3239975-0.1495056l0.3239975-0.1597824 l0.3240051-0.1159058l0.3239899-0.1191711l0.3240051-0.1239929l0.3240051-0.1352081l0.3239899-0.1495056l0.3240051-0.1597748
l0.3240051-0.1647568l0.3239975-0.1711349l0.3239975-0.1845169l0.324005-0.2019424l0.3249969-0.2173386l0.3239975-0.2279205 l0.3240051-0.1647644l0.3239899-0.1711273l0.3240051-0.1845245l0.3240051-0.2019348l0.3249969-0.2173462l0.3239899-0.2279205
l0.3240051-0.2381897L3.6149414-75.26091l0.3239975-0.2700806l0.3240054-0.2873459l0.3239975-0.3035431l0.3239975-0.3218842 l0.3240051-0.2381897l0.3240051-0.2528229l0.3239899-0.2700806l0.3240051-0.2873383l0.3240051-0.3035431l0.3239899-0.3218842
l0.3240051-0.3422699l0.3239975-0.3645248l0.3239975-0.3880081l0.3240051-0.4135284L6.530942-78.39254l0.3239975-0.4675064 l0.3240051-0.3422699l0.3240051-0.3645325l0.3239899-0.3880005l0.3240051-0.4135284l0.3240051-0.4404449l0.3239899-0.467514
l0.3240051-0.4942703l0.3239975-0.5238266l0.3239975-0.5577545l0.3240051-0.5943069l0.3239975-0.6308746l0.3239975-0.6689987 l0.3240051-0.4942627l0.3240051-0.5238342l0.3239899-0.5577545l0.3240051-0.5942993l0.3240051-0.6308746l0.3239899-0.6690063
l0.3240051-0.7124023l0.3239975-0.7621994l0.3239975-0.8135986l0.3240051-0.8652954l0.3239975-0.9192047l0.3239975-0.9807968 l0.3240051-0.7124023l0.3240051-0.7621918l0.3239899-0.8135986l0.3240051-0.8652954l0.3240051-0.9192047l0.3239899-0.9808044
l0.3240051-1.0490036l0.3239975-1.1198959l0.3239975-1.1925049l0.3240051-1.2720947l0.3239975-1.364006l0.3239975-1.4651947 l0.3240051-1.048996l0.3240051-1.1199036l0.3239899-1.1925049l0.3240051-1.2720947l0.3240051-1.3639984l0.3239899-1.4651947
l0.3239975-1.5709l0.3240051-1.6800995l0.3239975-1.7989044l0.3239975-1.9319l0.3240051-2.0792999l0.3239975-2.2369995 l0.3240051-1.5709076l0.3240051-1.6800995l0.3239899-1.7989044l0.3240051-1.9319l0.3240051-2.0792999l0.3239899-2.2369995
l0.3239975-2.405098l0.3240051-2.5865021l0.3239975-2.783699l0.3239975-2.9975967l0.3240042-3.2288055l0.3239975-3.4796906 l0.3240051-2.4050903l0.3240051-2.5865021l0.3239899-2.7837067l0.3240051-2.9975891l0.3240051-3.2288055l0.3239899-3.4796906
l0.3239975-3.7510071l0.3240051-4.0389023l0.3239975-4.3401947l0.3239975-4.6526947l0.3240051-4.9770966l0.3239975-5.3080139 l0.3240051-3.7510071l0.3240051-4.0389099l0.3239899-4.3401947l0.3240051-4.6526947l0.3240051-4.9770966l0.3239899-5.3080139
l0.3240051-5.6346893l0.3239899-5.9405975l0.3240051-6.2098083l0.3249969-6.4243927l0.3240051-6.5640106l0.3240051-6.6009979 l0.3240051-5.6346893l0.3239899-5.9405975l0.3240051-6.2098083l0.3249969-6.4243927l0.3240051-6.564003l0.3240051-6.6009979
l0.3239899-6.5110016l0.3240051-6.2709961l0.3240051-5.8730011l0.3239899-5.3149872l0.3240051-4.6130066l0.3240051-3.8000031 l0.3239899-6.5110016l0.3240051-6.2709961l0.3240051-5.8730011l0.3239899-5.3149872l0.3240051-4.6130066l0.3240051-3.8000031
l0.3239899-2.9279938l0.3240051-2.0440063l0.3240051-1.196991l0.3239899-0.4170074l0.3240051,0.2680054l0.3240051,0.8389893 l0.3239899-2.9279938l0.3240051-2.0440063l0.3240051-1.196991l0.3239899-0.4170074l0.3240051,0.2680054l0.3240051,0.8389893
l0.3239899,1.2900085l0.3240051,1.6289978l0.3240051,1.8699951l0.3239899,2.0340118l0.3240051,2.1269989l0.3240051,2.1649933 l0.3239899,1.2900085l0.3240051,1.6289978l0.3240051,1.8699951l0.3239899,2.0340118l0.3240051,2.1269989l0.3240051,2.1649933
@ -228,7 +229,7 @@
l0.3240051-0.4090118l0.3240051-0.4179993l0.3239899-0.4149933l0.3240051-0.4039917l0.3240051-0.401001l0.3239899-0.4070129 l0.3240051-0.4090118l0.3240051-0.4179993l0.3239899-0.4149933l0.3240051-0.4039917l0.3240051-0.401001l0.3239899-0.4070129
l0.3240051-0.4119873l0.3240051-0.4090118l0.3239899-0.4019928l0.3240051-0.3999939l0.3240051-0.404007l0.3239899-0.4060059 l0.3240051-0.4119873l0.3240051-0.4090118l0.3239899-0.4019928l0.3240051-0.3999939l0.3240051-0.404007l0.3239899-0.4060059
l0.3240051-0.3999939l0.3240051-0.3939972l0.3239899-0.3930054l0.3240051-0.3950043l0.3240051-0.394989l0.3239899-0.3899994 l0.3240051-0.3999939l0.3240051-0.3939972l0.3239899-0.3930054l0.3240051-0.3950043l0.3240051-0.394989l0.3239899-0.3899994
l0.3240051-0.3870087l0.3240051-0.3860016l0.3239861-0.3829956l0.3240051-0.378006l0.3240051-0.3779907l0.3239899-0.3809967 l0.3240051-0.3870087l0.3240051-0.3860016l0.3239899-0.3829956l0.3240051-0.378006l0.3240051-0.3779907l0.3239899-0.3809967
l0.3240051-0.3790131l0.3240051-0.368988l0.3239899-0.3590088l0.3240051-0.3609924l0.3240051-0.3670044l0.3239899-0.3679962 l0.3240051-0.3790131l0.3240051-0.368988l0.3239899-0.3590088l0.3240051-0.3609924l0.3240051-0.3670044l0.3239899-0.3679962
l0.3240051-0.3560028l0.3240051-0.3470001l0.3239899-0.3480072l0.3240051-0.3549957l0.3240051-0.3479919l0.3239899-0.3310089 l0.3240051-0.3560028l0.3240051-0.3470001l0.3239899-0.3480072l0.3240051-0.3549957l0.3240051-0.3479919l0.3239899-0.3310089
l0.3240051-0.3239899l0.3240051-0.3330078l0.3239899-0.3430023l0.3240051-0.3329926l0.3240051-0.3110046l0.3239899-0.3049927 l0.3240051-0.3239899l0.3240051-0.3330078l0.3239899-0.3430023l0.3240051-0.3329926l0.3240051-0.3110046l0.3239899-0.3049927
@ -241,51 +242,51 @@
l0.3239899-0.1579895l0.3240051-0.1569977l0.3240051-0.1660004l0.3239899-0.1650085l0.3240051-0.147995l0.3240051-0.1340027"/> l0.3239899-0.1579895l0.3240051-0.1569977l0.3240051-0.1660004l0.3239899-0.1650085l0.3240051-0.147995l0.3240051-0.1340027"/>
</g> </g>
<g transform="matrix(1 0 0 1 123.077 242.971)"> <g transform="matrix(1 0 0 1 123.077 242.971)">
<path class="st2" d="M-44.664257-181.4671783v110.0100021"/> <path class="st2" d="M-238.3880157,124.9566727v110.0100021"/>
</g> </g>
<g transform="matrix(1 0 0 1 123.077 242.971)"> <g transform="matrix(1 0 0 1 123.077 242.971)">
<path class="st2" d="M20.1399422-181.4671783v110.0100021"/> <path class="st2" d="M-173.5838165,124.9566727v110.0100021"/>
</g> </g>
<g transform="matrix(1 0 0 1 123.077 242.971)"> <g transform="matrix(1 0 0 1 123.077 242.971)">
<path class="st3" d="M-109.4680557-181.4671783H84.9429321"/> <path class="st3" d="M-303.191803,124.9566727h194.4109802"/>
</g> </g>
<g transform="matrix(1 0 0 1 123.077 242.971)"> <g transform="matrix(1 0 0 1 123.077 242.971)">
<path class="st3" d="M-109.4680557-227.0351715H84.9429321"/> <path class="st3" d="M-303.191803,79.3886795h194.4109802"/>
</g> </g>
<g transform="matrix(1 0 0 1 123.077 242.971)"> <g transform="matrix(1 0 0 1 123.077 242.971)">
<circle class="st1" cx="-44.664257" cy="-181.4671783" r="2.2584381"/> <circle class="st1" cx="-238.3880157" cy="124.9566727" r="2.2584381"/>
</g> </g>
<g transform="matrix(1 0 0 1 123.077 242.971)"> <g transform="matrix(1 0 0 1 123.077 242.971)">
<circle class="st1" cx="20.1399422" cy="-181.4671783" r="2.2584381"/> <circle class="st1" cx="-173.5838165" cy="124.9566727" r="2.2584381"/>
</g> </g>
</g> </g>
<text id="XMLID_40_" transform="matrix(1 0 0 1 18.7951565 10.3371954)" class="st4 st5">Gain</text> <text id="XMLID_40_" transform="matrix(1 0 0 1 -174.2048492 315.616272)" class="st4 st5">Gain</text>
<text id="XMLID_41_" transform="matrix(1 0 0 1 177.5969086 180.1228638)" class="st4 st5">Frequency</text> <text id="XMLID_41_" transform="matrix(1 0 0 1 -15.4030762 485.4019165)" class="st4 st5">Frequency</text>
<g id="XMLID_43_" transform="matrix(1 0 0 1 123.077 242.971)"> <g id="XMLID_43_" transform="matrix(1 0 0 1 123.077 242.971)">
<circle id="XMLID_44_" class="st1" cx="-38.5367203" cy="-81.9191666" r="2.2500005"/> <circle id="XMLID_44_" class="st1" cx="-231.5367126" cy="223.3598938" r="2.25"/>
</g> </g>
<g id="XMLID_42_" transform="matrix(1 0 0 1 123.077 242.971)"> <g id="XMLID_42_" transform="matrix(1 0 0 1 123.077 242.971)">
<circle id="XMLID_45_" class="st1" cx="7.6955371" cy="-81.8879166" r="2.2500005"/> <circle id="XMLID_45_" class="st1" cx="-185.3044586" cy="223.3911438" r="2.25"/>
</g> </g>
<path id="XMLID_47_" class="st3" d="M13.8289366,161.1231995h193.6846771"/> <path id="XMLID_47_" class="st3" d="M-179.1710663,466.4022522H14.5136108"/>
<text transform="matrix(1 0 0 1 80.7503586 69.8781815)" class="st6 st7">f</text> <text transform="matrix(1 0 0 1 -108.1125488 460.65271)" class="st4 st6">f</text>
<text transform="matrix(0.583 0 0 0.583 82.7943039 72.2092361)" class="st6 st7">3</text> <text transform="matrix(1 0 0 1 -106.0687866 462.9837952)" class="st4 st7">3</text>
<text transform="matrix(1 0 0 1 84.8875656 69.8781815)" class="st6 st7"></text> <text transform="matrix(1 0 0 1 -103.9753418 460.65271)" class="st4 st6"></text>
<text transform="matrix(0.583 0 0 0.583 92.146843 72.2092361)" class="st6 st7">3</text> <text transform="matrix(1 0 0 1 -96.7161865 462.9837952)" class="st4 st7">3</text>
<text transform="matrix(1 0 0 1 126.5224152 69.8781891)" class="st6 st7">f</text> <text transform="matrix(1 0 0 1 -75.8739929 460.6524963)" class="st4 st6">f</text>
<text transform="matrix(0.583 0 0 0.583 128.5663605 72.2092438)" class="st6 st7">4</text> <text transform="matrix(1 0 0 1 -73.829895 462.9835815)" class="st4 st7">4</text>
<text transform="matrix(1 0 0 1 130.6596222 69.8781891)" class="st6 st7"></text> <text transform="matrix(1 0 0 1 -71.7367859 460.6524963)" class="st4 st6"></text>
<text transform="matrix(0.583 0 0 0.583 137.9188995 72.2092438)" class="st6 st7">4</text> <text transform="matrix(1 0 0 1 -64.4772949 462.9835815)" class="st4 st7">4</text>
<text transform="matrix(1 0 0 1 86.7901535 155.3733673)" class="st6 st7">f</text> <text transform="matrix(1 0 0 1 -111.7669678 375.1573486)" class="st4 st6">f</text>
<text transform="matrix(0.583 0 0 0.583 88.8340988 157.704422)" class="st6 st7">1</text> <text transform="matrix(1 0 0 1 -109.7229614 377.4882813)" class="st4 st7">1</text>
<text transform="matrix(1 0 0 1 90.9273605 155.3733673)" class="st6 st7"></text> <text transform="matrix(1 0 0 1 -107.6297607 375.1573486)" class="st4 st6"></text>
<text transform="matrix(0.583 0 0 0.583 98.1866379 157.704422)" class="st6 st7">1</text> <text transform="matrix(1 0 0 1 -100.3703613 377.4882813)" class="st4 st7">1</text>
<text transform="matrix(1 0 0 1 115.5003586 155.3733826)" class="st6 st7">f</text> <text transform="matrix(1 0 0 1 -66.6755371 375.1572266)" class="st4 st6">f</text>
<text transform="matrix(0.583 0 0 0.583 117.5443039 157.7044373)" class="st6 st7">2</text> <text transform="matrix(1 0 0 1 -64.6317749 377.4880981)" class="st4 st7">2</text>
<text transform="matrix(1 0 0 1 119.6375656 155.3733826)" class="st6 st7"></text> <text transform="matrix(1 0 0 1 -62.5383301 375.1572266)" class="st4 st6"></text>
<text transform="matrix(0.583 0 0 0.583 126.896843 157.7044373)" class="st6 st7">2</text> <text transform="matrix(1 0 0 1 -55.2791901 377.4880981)" class="st4 st7">2</text>
<text transform="matrix(1 0 0 1 0.0003586 62.5240479)" class="st6 st7">α</text> <text transform="matrix(1 0 0 1 -192.9996338 367.8031006)" class="st4 st6">α</text>
<text transform="matrix(0.583 0 0 0.583 3.8572922 64.8551025)" class="st6 st7">max</text> <text transform="matrix(1 0 0 1 -189.1424103 370.1341553)" class="st4 st7">max</text>
<text transform="matrix(1 0 0 1 0.0002289 163.1235657)" class="st6 st7">α</text> <text transform="matrix(1 0 0 1 -192.9997711 468.4025879)" class="st4 st6">α</text>
<text transform="matrix(0.583 0 0 0.583 3.8571625 165.4546204)" class="st6 st7">min</text> <text transform="matrix(1 0 0 1 -189.1428528 470.7341919)" class="st4 st7">min</text>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 21 KiB

After

Width:  |  Height:  |  Size: 21 KiB

1738
report/3_band_elimination/assets/diagrams/matlab_band_elimination_chebyshev_HPN_unit_1_transfer_function.svg

File diff suppressed because it is too large

After

Width:  |  Height:  |  Size: 175 KiB

1737
report/3_band_elimination/assets/diagrams/matlab_band_elimination_chebyshev_HPN_unit_3_transfer_function.svg

File diff suppressed because it is too large

After

Width:  |  Height:  |  Size: 175 KiB

2031
report/3_band_elimination/assets/diagrams/matlab_band_elimination_chebyshev_LPN_unit_2_transfer_function.svg

File diff suppressed because it is too large

After

Width:  |  Height:  |  Size: 205 KiB

1912
report/3_band_elimination/assets/diagrams/matlab_band_elimination_chebyshev_LPN_unit_4_transfer_function.svg

File diff suppressed because it is too large

After

Width:  |  Height:  |  Size: 193 KiB

5682
report/3_band_elimination/assets/diagrams/matlab_band_elimination_chebyshev_original_gain_attenuation.svg

File diff suppressed because it is too large

After

Width:  |  Height:  |  Size: 587 KiB

533
report/3_band_elimination/assets/diagrams/matlab_band_elimination_chebyshev_total_attenuation.svg

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 419 KiB

6273
report/3_band_elimination/assets/diagrams/matlab_band_elimination_chebyshev_total_transfer_function.svg

File diff suppressed because it is too large

After

Width:  |  Height:  |  Size: 649 KiB

265
report/3_band_elimination/assets/diagrams/matlab_combined_transfer_functions_bode.svg

@ -0,0 +1,265 @@
<?xml version="1.0"?>
<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.0//EN'
'http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd'>
<svg xmlns:xlink="http://www.w3.org/1999/xlink" style="fill-opacity:1; color-rendering:auto; color-interpolation:auto; stroke:black; text-rendering:auto; stroke-linecap:square; stroke-miterlimit:10; stroke-opacity:1; shape-rendering:auto; fill:black; stroke-dasharray:none; font-weight:normal; stroke-width:1; font-family:'Dialog'; font-style:normal; stroke-linejoin:miter; font-size:12px; stroke-dashoffset:0; image-rendering:auto;" width="1920" height="964" xmlns="http://www.w3.org/2000/svg"
><!--Generated by the Batik Graphics2D SVG Generator--><defs id="genericDefs"
/><g
><defs id="defs1"
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath1"
><path d="M0 0 L1920 0 L1920 964 L0 964 L0 0 Z"
/></clipPath
><font horiz-adv-x="75.0" id="font1"
><font-face ascent="100.53711" descent="21.972656" units-per-em="100" style="font-style:normal; font-family:Dialog; font-weight:bold;"
/><missing-glyph horiz-adv-x="75.0" d="M12.5 0 L12.5 62.5 L62.5 62.5 L62.5 0 L12.5 0 ZM14.0625 1.5625 L60.9375 1.5625 L60.9375 60.9375 L14.0625 60.9375 L14.0625 1.5625 Z"
/><glyph unicode="m" horiz-adv-x="88.916016" d="M6.1562 51.8594 L18.7969 51.8594 L18.7969 44.7812 Q25.5938 53.0312 34.9688 53.0312 Q39.9375 53.0312 43.6016 50.9766 Q47.2656 48.9219 49.6094 44.7812 Q53.0312 48.9219 56.9844 50.9766 Q60.9375 53.0312 65.4375 53.0312 Q71.1406 53.0312 75.0938 50.7109 Q79.0469 48.3906 81 43.8906 Q82.4219 40.5781 82.4219 33.1562 L82.4219 0 L68.7031 0 L68.7031 29.6406 Q68.7031 37.3594 67.2812 39.5938 Q65.375 42.5312 61.4219 42.5312 Q58.5469 42.5312 56.0078 40.7734 Q53.4688 39.0156 52.3438 35.625 Q51.2188 32.2344 51.2188 24.9062 L51.2188 0 L37.5 0 L37.5 28.4219 Q37.5 35.9844 36.7656 38.1797 Q36.0312 40.375 34.4922 41.4531 Q32.9531 42.5312 30.3281 42.5312 Q27.1562 42.5312 24.6172 40.8203 Q22.0781 39.1094 20.9766 35.8906 Q19.875 32.6719 19.875 25.2031 L19.875 0 L6.1562 0 L6.1562 51.8594 Z"
/><glyph unicode="r" horiz-adv-x="38.916016" d="M20.3125 0 L6.5938 0 L6.5938 51.8594 L19.3438 51.8594 L19.3438 44.4844 Q22.6094 49.7031 25.2188 51.3672 Q27.8281 53.0312 31.1562 53.0312 Q35.8438 53.0312 40.1875 50.4375 L35.9375 38.4844 Q32.4688 40.7188 29.5 40.7188 Q26.6094 40.7188 24.6094 39.1328 Q22.6094 37.5469 21.4609 33.3984 Q20.3125 29.25 20.3125 16.0156 L20.3125 0 Z"
/><glyph unicode="g" horiz-adv-x="61.083984" d="M5.9062 -3.4219 L21.5781 -5.3281 Q21.9688 -8.0625 23.3906 -9.0781 Q25.3438 -10.5469 29.5469 -10.5469 Q34.9062 -10.5469 37.5938 -8.9375 Q39.4062 -7.8594 40.3281 -5.4688 Q40.9688 -3.7656 40.9688 0.8281 L40.9688 8.4062 Q34.8125 0 25.4375 0 Q14.9844 0 8.8906 8.8438 Q4.1094 15.8281 4.1094 26.2188 Q4.1094 39.2656 10.3828 46.1484 Q16.6562 53.0312 25.9844 53.0312 Q35.5938 53.0312 41.8438 44.5781 L41.8438 51.8594 L54.6875 51.8594 L54.6875 5.3281 Q54.6875 -3.8594 53.1719 -8.3984 Q51.6562 -12.9375 48.9219 -15.5234 Q46.1875 -18.1094 41.625 -19.5781 Q37.0625 -21.0469 30.0781 -21.0469 Q16.8906 -21.0469 11.375 -16.5312 Q5.8594 -12.0156 5.8594 -5.0781 Q5.8594 -4.3906 5.9062 -3.4219 ZM18.1719 27 Q18.1719 18.75 21.3672 14.9141 Q24.5625 11.0781 29.25 11.0781 Q34.2812 11.0781 37.75 15.0156 Q41.2188 18.9531 41.2188 26.6562 Q41.2188 34.7188 37.8984 38.625 Q34.5781 42.5312 29.5 42.5312 Q24.5625 42.5312 21.3672 38.6953 Q18.1719 34.8594 18.1719 27 Z"
/><glyph unicode="a" horiz-adv-x="55.615234" d="M17.4375 36.0312 L4.9844 38.2812 Q7.0781 45.7969 12.2031 49.4141 Q17.3281 53.0312 27.4375 53.0312 Q36.625 53.0312 41.1172 50.8594 Q45.6094 48.6875 47.4375 45.3438 Q49.2656 42 49.2656 33.0625 L49.125 17.0469 Q49.125 10.2031 49.7812 6.9609 Q50.4375 3.7188 52.25 0 L38.6719 0 Q38.1406 1.375 37.3594 4.0469 Q37.0156 5.2812 36.8594 5.6719 Q33.3438 2.25 29.3438 0.5391 Q25.3438 -1.1719 20.7969 -1.1719 Q12.7969 -1.1719 8.1797 3.1719 Q3.5625 7.5156 3.5625 14.1562 Q3.5625 18.5625 5.6641 22 Q7.7656 25.4375 11.5469 27.2734 Q15.3281 29.1094 22.4688 30.4688 Q32.0781 32.2812 35.7969 33.8438 L35.7969 35.2031 Q35.7969 39.1562 33.8438 40.8438 Q31.8906 42.5312 26.4688 42.5312 Q22.7969 42.5312 20.75 41.0938 Q18.7031 39.6562 17.4375 36.0312 ZM35.7969 24.9062 Q33.1562 24.0312 27.4453 22.8047 Q21.7344 21.5781 19.9688 20.4062 Q17.2812 18.5 17.2812 15.5781 Q17.2812 12.7031 19.4297 10.6016 Q21.5781 8.5 24.9062 8.5 Q28.6094 8.5 31.9844 10.9375 Q34.4688 12.7969 35.25 15.4844 Q35.7969 17.2344 35.7969 22.1719 L35.7969 24.9062 Z"
/><glyph unicode="i" horiz-adv-x="27.783203" d="M7.1719 58.8906 L7.1719 71.5781 L20.9062 71.5781 L20.9062 58.8906 L7.1719 58.8906 ZM7.1719 0 L7.1719 51.8594 L20.9062 51.8594 L20.9062 0 L7.1719 0 Z"
/><glyph unicode="D" horiz-adv-x="72.2168" d="M7.2344 71.5781 L33.6406 71.5781 Q42.5781 71.5781 47.2656 70.2188 Q53.5625 68.3594 58.0547 63.625 Q62.5469 58.8906 64.8906 52.0312 Q67.2344 45.1719 67.2344 35.1094 Q67.2344 26.2656 65.0469 19.875 Q62.3594 12.0625 57.375 7.2344 Q53.6094 3.5625 47.2188 1.5156 Q42.4375 0 34.4219 0 L7.2344 0 L7.2344 71.5781 ZM21.6875 59.4688 L21.6875 12.0625 L32.4688 12.0625 Q38.5312 12.0625 41.2188 12.75 Q44.7344 13.625 47.0469 15.7266 Q49.3594 17.8281 50.8281 22.6328 Q52.2969 27.4375 52.2969 35.75 Q52.2969 44.0469 50.8281 48.4922 Q49.3594 52.9375 46.7266 55.4219 Q44.0938 57.9062 40.0469 58.7969 Q37.0156 59.4688 28.1719 59.4688 L21.6875 59.4688 Z"
/><glyph unicode=" " horiz-adv-x="27.783203" d=""
/><glyph unicode="e" horiz-adv-x="55.615234" d="M37.2031 16.5 L50.875 14.2031 Q48.25 6.6875 42.5547 2.7578 Q36.8594 -1.1719 28.3281 -1.1719 Q14.7969 -1.1719 8.2969 7.6719 Q3.1719 14.75 3.1719 25.5312 Q3.1719 38.4219 9.9141 45.7266 Q16.6562 53.0312 26.9531 53.0312 Q38.5312 53.0312 45.2188 45.3906 Q51.9062 37.75 51.6094 21.9688 L17.2344 21.9688 Q17.3906 15.875 20.5625 12.4766 Q23.7344 9.0781 28.4688 9.0781 Q31.6875 9.0781 33.8828 10.8359 Q36.0781 12.5938 37.2031 16.5 ZM37.9844 30.375 Q37.8438 36.3281 34.9141 39.4297 Q31.9844 42.5312 27.7812 42.5312 Q23.2969 42.5312 20.3594 39.2656 Q17.4375 35.9844 17.4844 30.375 L37.9844 30.375 Z"
/><glyph unicode="d" horiz-adv-x="61.083984" d="M54.7344 0 L42 0 L42 7.625 Q38.8125 3.1719 34.4922 1 Q30.1719 -1.1719 25.7812 -1.1719 Q16.8438 -1.1719 10.4766 6.0312 Q4.1094 13.2344 4.1094 26.125 Q4.1094 39.3125 10.3047 46.1719 Q16.5 53.0312 25.9844 53.0312 Q34.6719 53.0312 41.0156 45.7969 L41.0156 71.5781 L54.7344 71.5781 L54.7344 0 ZM18.1094 27.0469 Q18.1094 18.75 20.4062 15.0469 Q23.7344 9.6719 29.6875 9.6719 Q34.4219 9.6719 37.7422 13.6953 Q41.0625 17.7188 41.0625 25.7344 Q41.0625 34.6719 37.8438 38.6016 Q34.625 42.5312 29.5938 42.5312 Q24.7031 42.5312 21.4062 38.6484 Q18.1094 34.7656 18.1094 27.0469 Z"
/><glyph unicode="o" horiz-adv-x="61.083984" d="M4 26.6562 Q4 33.5 7.375 39.8984 Q10.75 46.2969 16.9219 49.6641 Q23.0938 53.0312 30.7188 53.0312 Q42.4844 53.0312 50 45.3906 Q57.5156 37.75 57.5156 26.0781 Q57.5156 14.3125 49.9219 6.5703 Q42.3281 -1.1719 30.8125 -1.1719 Q23.6875 -1.1719 17.2188 2.0547 Q10.75 5.2812 7.375 11.5 Q4 17.7188 4 26.6562 ZM18.0625 25.9219 Q18.0625 18.2188 21.7266 14.1172 Q25.3906 10.0156 30.7656 10.0156 Q36.1406 10.0156 39.7734 14.1172 Q43.4062 18.2188 43.4062 26.0312 Q43.4062 33.6406 39.7734 37.7422 Q36.1406 41.8438 30.7656 41.8438 Q25.3906 41.8438 21.7266 37.7422 Q18.0625 33.6406 18.0625 25.9219 Z"
/><glyph unicode="B" horiz-adv-x="72.2168" d="M7.3281 71.5781 L35.9375 71.5781 Q44.4375 71.5781 48.6094 70.875 Q52.7812 70.1719 56.0781 67.9219 Q59.375 65.6719 61.5703 61.9375 Q63.7656 58.2031 63.7656 53.5625 Q63.7656 48.5312 61.0547 44.3359 Q58.3438 40.1406 53.7188 38.0312 Q60.25 36.1406 63.7656 31.5469 Q67.2812 26.9531 67.2812 20.75 Q67.2812 15.875 65.0156 11.2578 Q62.75 6.6406 58.8203 3.8828 Q54.8906 1.125 49.125 0.4844 Q45.5156 0.0938 31.6875 0 L7.3281 0 L7.3281 71.5781 ZM21.7812 59.6719 L21.7812 43.1094 L31.25 43.1094 Q39.7031 43.1094 41.75 43.3594 Q45.4531 43.7969 47.5781 45.9219 Q49.7031 48.0469 49.7031 51.5156 Q49.7031 54.8281 47.875 56.9062 Q46.0469 58.9844 42.4375 59.4219 Q40.2812 59.6719 30.0781 59.6719 L21.7812 59.6719 ZM21.7812 31.2031 L21.7812 12.0625 L35.1562 12.0625 Q42.9688 12.0625 45.0625 12.5 Q48.2969 13.0938 50.3203 15.3594 Q52.3438 17.625 52.3438 21.4375 Q52.3438 24.6562 50.7812 26.9062 Q49.2188 29.1562 46.2656 30.1797 Q43.3125 31.2031 33.4531 31.2031 L21.7812 31.2031 Z"
/></font
><font horiz-adv-x="75.0" id="font2"
><font-face ascent="100.53711" descent="21.972656" units-per-em="100" style="font-style:normal; font-family:Dialog; font-weight:normal;"
/><missing-glyph horiz-adv-x="75.0" d="M12.5 0 L12.5 62.5 L62.5 62.5 L62.5 0 L12.5 0 ZM14.0625 1.5625 L60.9375 1.5625 L60.9375 60.9375 L14.0625 60.9375 L14.0625 1.5625 Z"
/><glyph unicode=")" horiz-adv-x="33.30078" d="M12.3594 -21.0469 L6.0625 -21.0469 Q20.6562 2.3906 20.6562 25.875 Q20.6562 35.0625 18.5625 44.0938 Q16.8906 51.4219 13.9219 58.1562 Q12.0156 62.5469 6.0625 72.7969 L12.3594 72.7969 Q21.5312 60.5469 25.9219 48.1875 Q29.6875 37.5469 29.6875 25.9219 Q29.6875 12.75 24.6328 0.4453 Q19.5781 -11.8594 12.3594 -21.0469 Z"
/><glyph unicode="s" horiz-adv-x="50.0" d="M3.0781 15.4844 L11.7656 16.8438 Q12.5 11.625 15.8438 8.8438 Q19.1875 6.0625 25.2031 6.0625 Q31.25 6.0625 34.1797 8.5234 Q37.1094 10.9844 37.1094 14.3125 Q37.1094 17.2812 34.5156 19 Q32.7188 20.1719 25.5312 21.9688 Q15.875 24.4219 12.1406 26.2031 Q8.4062 27.9844 6.4766 31.1328 Q4.5469 34.2812 4.5469 38.0938 Q4.5469 41.5469 6.1328 44.5078 Q7.7188 47.4688 10.4531 49.4219 Q12.5 50.9219 16.0391 51.9766 Q19.5781 53.0312 23.6406 53.0312 Q29.7344 53.0312 34.3516 51.2734 Q38.9688 49.5156 41.1641 46.5078 Q43.3594 43.5 44.1875 38.4844 L35.5938 37.3125 Q35.0156 41.3125 32.2031 43.5547 Q29.3906 45.7969 24.2656 45.7969 Q18.2188 45.7969 15.625 43.7969 Q13.0312 41.7969 13.0312 39.1094 Q13.0312 37.4062 14.1094 36.0312 Q15.1875 34.625 17.4844 33.6875 Q18.7969 33.2031 25.25 31.4531 Q34.5781 28.9531 38.2578 27.3672 Q41.9375 25.7812 44.0391 22.7578 Q46.1406 19.7344 46.1406 15.2344 Q46.1406 10.8438 43.5781 6.9609 Q41.0156 3.0781 36.1797 0.9531 Q31.3438 -1.1719 25.25 -1.1719 Q15.1406 -1.1719 9.8438 3.0312 Q4.5469 7.2344 3.0781 15.4844 Z"
/><glyph unicode="/" horiz-adv-x="27.783203" d="M0 -1.2188 L20.75 72.7969 L27.7812 72.7969 L7.0781 -1.2188 L0 -1.2188 Z"
/><glyph unicode="d" horiz-adv-x="55.615234" d="M40.2344 0 L40.2344 6.5469 Q35.2969 -1.1719 25.7344 -1.1719 Q19.5312 -1.1719 14.3281 2.25 Q9.125 5.6719 6.2734 11.7969 Q3.4219 17.9219 3.4219 25.875 Q3.4219 33.6406 6.0078 39.9688 Q8.5938 46.2969 13.7734 49.6641 Q18.9531 53.0312 25.3438 53.0312 Q30.0312 53.0312 33.6953 51.0547 Q37.3594 49.0781 39.6562 45.9062 L39.6562 71.5781 L48.3906 71.5781 L48.3906 0 L40.2344 0 ZM12.4531 25.875 Q12.4531 15.9219 16.6484 10.9922 Q20.8438 6.0625 26.5625 6.0625 Q32.3281 6.0625 36.3516 10.7734 Q40.375 15.4844 40.375 25.1406 Q40.375 35.7969 36.2734 40.7734 Q32.1719 45.75 26.1719 45.75 Q20.3125 45.75 16.3828 40.9688 Q12.4531 36.1875 12.4531 25.875 Z"
/><glyph unicode="a" horiz-adv-x="55.615234" d="M40.4375 6.3906 Q35.5469 2.25 31.0312 0.5391 Q26.5156 -1.1719 21.3438 -1.1719 Q12.7969 -1.1719 8.2031 3 Q3.6094 7.1719 3.6094 13.6719 Q3.6094 17.4844 5.3438 20.6328 Q7.0781 23.7812 9.8906 25.6875 Q12.7031 27.5938 16.2188 28.5625 Q18.7969 29.25 24.0312 29.8906 Q34.6719 31.1562 39.7031 32.9062 Q39.75 34.7188 39.75 35.2031 Q39.75 40.5781 37.25 42.7812 Q33.8906 45.75 27.25 45.75 Q21.0469 45.75 18.0938 43.5781 Q15.1406 41.4062 13.7188 35.8906 L5.125 37.0625 Q6.2969 42.5781 8.9844 45.9688 Q11.6719 49.3594 16.75 51.1953 Q21.8281 53.0312 28.5156 53.0312 Q35.1562 53.0312 39.3047 51.4688 Q43.4531 49.9062 45.4062 47.5391 Q47.3594 45.1719 48.1406 41.5469 Q48.5781 39.3125 48.5781 33.4531 L48.5781 21.7344 Q48.5781 9.4688 49.1406 6.2266 Q49.7031 2.9844 51.375 0 L42.1875 0 Q40.8281 2.7344 40.4375 6.3906 ZM39.7031 26.0312 Q34.9062 24.0781 25.3438 22.7031 Q19.9219 21.9219 17.6797 20.9453 Q15.4375 19.9688 14.2109 18.0938 Q12.9844 16.2188 12.9844 13.9219 Q12.9844 10.4062 15.6484 8.0625 Q18.3125 5.7188 23.4375 5.7188 Q28.5156 5.7188 32.4688 7.9375 Q36.4219 10.1562 38.2812 14.0156 Q39.7031 17 39.7031 22.7969 L39.7031 26.0312 Z"
/><glyph unicode="(" horiz-adv-x="33.30078" d="M23.3906 -21.0469 Q16.1094 -11.8594 11.0859 0.4453 Q6.0625 12.75 6.0625 25.9219 Q6.0625 37.5469 9.8125 48.1875 Q14.2031 60.5469 23.3906 72.7969 L29.6875 72.7969 Q23.7812 62.6406 21.875 58.2969 Q18.8906 51.5625 17.1875 44.2344 Q15.0938 35.1094 15.0938 25.875 Q15.0938 2.3906 29.6875 -21.0469 L23.3906 -21.0469 Z"
/><glyph unicode=" " horiz-adv-x="27.783203" d=""
/><glyph unicode="y" horiz-adv-x="50.0" d="M6.2031 -19.9688 L5.2188 -11.7188 Q8.1094 -12.5 10.25 -12.5 Q13.1875 -12.5 14.9453 -11.5234 Q16.7031 -10.5469 17.8281 -8.7969 Q18.6562 -7.4688 20.5156 -2.25 Q20.75 -1.5156 21.2969 -0.0938 L1.6094 51.8594 L11.0781 51.8594 L21.875 21.8281 Q23.9688 16.1094 25.6406 9.8125 Q27.1562 15.875 29.25 21.625 L40.3281 51.8594 L49.125 51.8594 L29.3906 -0.875 Q26.2188 -9.4219 24.4688 -12.6406 Q22.125 -17 19.0938 -19.0234 Q16.0625 -21.0469 11.8594 -21.0469 Q9.3281 -21.0469 6.2031 -19.9688 Z"
/><glyph unicode="c" horiz-adv-x="50.0" d="M40.4375 19 L49.0781 17.875 Q47.6562 8.9375 41.8203 3.8828 Q35.9844 -1.1719 27.4844 -1.1719 Q16.8438 -1.1719 10.375 5.7891 Q3.9062 12.75 3.9062 25.7344 Q3.9062 34.125 6.6875 40.4297 Q9.4688 46.7344 15.1562 49.8828 Q20.8438 53.0312 27.5469 53.0312 Q35.9844 53.0312 41.3594 48.7578 Q46.7344 44.4844 48.25 36.625 L39.7031 35.2969 Q38.4844 40.5312 35.3828 43.1641 Q32.2812 45.7969 27.875 45.7969 Q21.2344 45.7969 17.0859 41.0391 Q12.9375 36.2812 12.9375 25.9844 Q12.9375 15.5312 16.9453 10.7969 Q20.9531 6.0625 27.3906 6.0625 Q32.5625 6.0625 36.0312 9.2344 Q39.5 12.4062 40.4375 19 Z"
/><glyph unicode="n" horiz-adv-x="55.615234" d="M6.5938 0 L6.5938 51.8594 L14.5 51.8594 L14.5 44.4844 Q20.2188 53.0312 31 53.0312 Q35.6875 53.0312 39.625 51.3438 Q43.5625 49.6562 45.5156 46.9219 Q47.4688 44.1875 48.25 40.4375 Q48.7344 37.9844 48.7344 31.8906 L48.7344 0 L39.9375 0 L39.9375 31.5469 Q39.9375 36.9219 38.9141 39.5781 Q37.8906 42.2344 35.2812 43.8203 Q32.6719 45.4062 29.1562 45.4062 Q23.5312 45.4062 19.4531 41.8438 Q15.375 38.2812 15.375 28.3281 L15.375 0 L6.5938 0 Z"
/><glyph unicode="u" horiz-adv-x="55.615234" d="M40.5781 0 L40.5781 7.625 Q34.5156 -1.1719 24.125 -1.1719 Q19.5312 -1.1719 15.5547 0.5859 Q11.5781 2.3438 9.6484 5.0078 Q7.7188 7.6719 6.9375 11.5312 Q6.3906 14.1094 6.3906 19.7344 L6.3906 51.8594 L15.1875 51.8594 L15.1875 23.0938 Q15.1875 16.2188 15.7188 13.8125 Q16.5469 10.3594 19.2344 8.375 Q21.9219 6.3906 25.875 6.3906 Q29.8281 6.3906 33.2969 8.4219 Q36.7656 10.4531 38.2109 13.9453 Q39.6562 17.4375 39.6562 24.0781 L39.6562 51.8594 L48.4375 51.8594 L48.4375 0 L40.5781 0 Z"
/><glyph unicode="q" horiz-adv-x="55.615234" d="M39.6562 -19.875 L39.6562 5.5156 Q37.5938 2.6406 33.9062 0.7344 Q30.2188 -1.1719 26.0781 -1.1719 Q16.8438 -1.1719 10.1797 6.2031 Q3.5156 13.5781 3.5156 26.4219 Q3.5156 34.2344 6.2266 40.4297 Q8.9375 46.625 14.0859 49.8281 Q19.2344 53.0312 25.3906 53.0312 Q35.0156 53.0312 40.5312 44.9219 L40.5312 51.8594 L48.4375 51.8594 L48.4375 -19.875 L39.6562 -19.875 ZM12.5469 26.0781 Q12.5469 16.0625 16.75 11.0625 Q20.9531 6.0625 26.8125 6.0625 Q32.4219 6.0625 36.4766 10.8203 Q40.5312 15.5781 40.5312 25.2969 Q40.5312 35.6406 36.2578 40.8672 Q31.9844 46.0938 26.2188 46.0938 Q20.5156 46.0938 16.5312 41.2344 Q12.5469 36.375 12.5469 26.0781 Z"
/><glyph unicode="e" horiz-adv-x="55.615234" d="M42.0938 16.7031 L51.1719 15.5781 Q49.0312 7.625 43.2188 3.2266 Q37.4062 -1.1719 28.375 -1.1719 Q17 -1.1719 10.3281 5.8359 Q3.6562 12.8438 3.6562 25.4844 Q3.6562 38.5781 10.3984 45.8047 Q17.1406 53.0312 27.875 53.0312 Q38.2812 53.0312 44.875 45.9531 Q51.4688 38.875 51.4688 26.0312 Q51.4688 25.25 51.4219 23.6875 L12.75 23.6875 Q13.2344 15.1406 17.5781 10.6016 Q21.9219 6.0625 28.4219 6.0625 Q33.25 6.0625 36.6719 8.6016 Q40.0938 11.1406 42.0938 16.7031 ZM13.2344 30.9062 L42.1875 30.9062 Q41.6094 37.4531 38.875 40.7188 Q34.6719 45.7969 27.9844 45.7969 Q21.9219 45.7969 17.7969 41.75 Q13.6719 37.7031 13.2344 30.9062 Z"
/><glyph unicode="r" horiz-adv-x="33.30078" d="M6.5 0 L6.5 51.8594 L14.4062 51.8594 L14.4062 44 Q17.4375 49.5156 20 51.2734 Q22.5625 53.0312 25.6406 53.0312 Q30.0781 53.0312 34.6719 50.2031 L31.6406 42.0469 Q28.4219 43.9531 25.2031 43.9531 Q22.3125 43.9531 20.0156 42.2188 Q17.7188 40.4844 16.75 37.4062 Q15.2812 32.7188 15.2812 27.1562 L15.2812 0 L6.5 0 Z"
/><glyph unicode="F" horiz-adv-x="61.083984" d="M8.2031 0 L8.2031 71.5781 L56.5 71.5781 L56.5 63.1406 L17.6719 63.1406 L17.6719 40.9688 L51.2656 40.9688 L51.2656 32.5156 L17.6719 32.5156 L17.6719 0 L8.2031 0 Z"
/><glyph unicode="0" horiz-adv-x="55.615234" d="M4.1562 35.2969 Q4.1562 48 6.7656 55.7422 Q9.375 63.4844 14.5234 67.6797 Q19.6719 71.875 27.4844 71.875 Q33.25 71.875 37.5938 69.5547 Q41.9375 67.2344 44.7734 62.8672 Q47.6094 58.5 49.2188 52.2266 Q50.8281 45.9531 50.8281 35.2969 Q50.8281 22.7031 48.2422 14.9688 Q45.6562 7.2344 40.5078 3.0078 Q35.3594 -1.2188 27.4844 -1.2188 Q17.1406 -1.2188 11.2344 6.2031 Q4.1562 15.1406 4.1562 35.2969 ZM13.1875 35.2969 Q13.1875 17.6719 17.3125 11.8359 Q21.4375 6 27.4844 6 Q33.5469 6 37.6719 11.8594 Q41.7969 17.7188 41.7969 35.2969 Q41.7969 52.9844 37.6719 58.7891 Q33.5469 64.5938 27.3906 64.5938 Q21.3438 64.5938 17.7188 59.4688 Q13.1875 52.9375 13.1875 35.2969 Z"
/><glyph unicode="1" horiz-adv-x="55.615234" d="M37.25 0 L28.4688 0 L28.4688 56 Q25.2969 52.9844 20.1406 49.9531 Q14.9844 46.9219 10.8906 45.4062 L10.8906 53.9062 Q18.2656 57.375 23.7812 62.3047 Q29.2969 67.2344 31.5938 71.875 L37.25 71.875 L37.25 0 Z"
/><glyph unicode="2" horiz-adv-x="55.615234" d="M50.3438 8.4531 L50.3438 0 L3.0312 0 Q2.9375 3.1719 4.0469 6.1094 Q5.8594 10.9375 9.8359 15.625 Q13.8125 20.3125 21.3438 26.4688 Q33.0156 36.0312 37.1172 41.625 Q41.2188 47.2188 41.2188 52.2031 Q41.2188 57.4219 37.4766 61.0078 Q33.7344 64.5938 27.7344 64.5938 Q21.3906 64.5938 17.5781 60.7891 Q13.7656 56.9844 13.7188 50.25 L4.6875 51.1719 Q5.6094 61.2812 11.6641 66.5781 Q17.7188 71.875 27.9375 71.875 Q38.2344 71.875 44.2422 66.1641 Q50.25 60.4531 50.25 52 Q50.25 47.7031 48.4922 43.5547 Q46.7344 39.4062 42.6562 34.8125 Q38.5781 30.2188 29.1094 22.2188 Q21.1875 15.5781 18.9453 13.2109 Q16.7031 10.8438 15.2344 8.4531 L50.3438 8.4531 Z"
/><glyph unicode="3" horiz-adv-x="55.615234" d="M4.2031 18.8906 L12.9844 20.0625 Q14.5 12.5938 18.1406 9.2969 Q21.7812 6 27 6 Q33.2031 6 37.4766 10.2969 Q41.75 14.5938 41.75 20.9531 Q41.75 27 37.7969 30.9297 Q33.8438 34.8594 27.7344 34.8594 Q25.25 34.8594 21.5312 33.8906 L22.5156 41.6094 Q23.3906 41.5 23.9219 41.5 Q29.5469 41.5 34.0391 44.4297 Q38.5312 47.3594 38.5312 53.4688 Q38.5312 58.2969 35.2578 61.4766 Q31.9844 64.6562 26.8125 64.6562 Q21.6875 64.6562 18.2656 61.4297 Q14.8438 58.2031 13.875 51.7656 L5.0781 53.3281 Q6.6875 62.1562 12.3984 67.0156 Q18.1094 71.875 26.6094 71.875 Q32.4688 71.875 37.3984 69.3594 Q42.3281 66.8438 44.9453 62.5 Q47.5625 58.1562 47.5625 53.2656 Q47.5625 48.6406 45.0703 44.8281 Q42.5781 41.0156 37.7031 38.7656 Q44.0469 37.3125 47.5625 32.6953 Q51.0781 28.0781 51.0781 21.1406 Q51.0781 11.7656 44.2422 5.25 Q37.4062 -1.2656 26.9531 -1.2656 Q17.5312 -1.2656 11.3047 4.3516 Q5.0781 9.9688 4.2031 18.8906 Z"
/><glyph unicode="4" horiz-adv-x="55.615234" d="M32.3281 0 L32.3281 17.1406 L1.2656 17.1406 L1.2656 25.2031 L33.9375 71.5781 L41.1094 71.5781 L41.1094 25.2031 L50.7812 25.2031 L50.7812 17.1406 L41.1094 17.1406 L41.1094 0 L32.3281 0 ZM32.3281 25.2031 L32.3281 57.4688 L9.9062 25.2031 L32.3281 25.2031 Z"
/><glyph unicode="5" horiz-adv-x="55.615234" d="M4.1562 18.75 L13.375 19.5312 Q14.4062 12.7969 18.1406 9.3984 Q21.875 6 27.1562 6 Q33.5 6 37.8906 10.7891 Q42.2812 15.5781 42.2812 23.4844 Q42.2812 31 38.0625 35.3516 Q33.8438 39.7031 27 39.7031 Q22.75 39.7031 19.3359 37.7734 Q15.9219 35.8438 13.9688 32.7656 L5.7188 33.8438 L12.6406 70.6094 L48.25 70.6094 L48.25 62.2031 L19.6719 62.2031 L15.8281 42.9688 Q22.2656 47.4688 29.3438 47.4688 Q38.7188 47.4688 45.1641 40.9688 Q51.6094 34.4688 51.6094 24.2656 Q51.6094 14.5469 45.9531 7.4688 Q39.0625 -1.2188 27.1562 -1.2188 Q17.3906 -1.2188 11.2109 4.25 Q5.0312 9.7188 4.1562 18.75 Z"
/><glyph unicode="6" horiz-adv-x="55.615234" d="M49.75 54.0469 L41.0156 53.375 Q39.8438 58.5469 37.7031 60.8906 Q34.125 64.6562 28.9062 64.6562 Q24.7031 64.6562 21.5312 62.3125 Q17.3906 59.2812 14.9922 53.4688 Q12.5938 47.6562 12.5 36.9219 Q15.6719 41.75 20.2656 44.0938 Q24.8594 46.4375 29.8906 46.4375 Q38.6719 46.4375 44.8516 39.9688 Q51.0312 33.5 51.0312 23.25 Q51.0312 16.5 48.125 10.7188 Q45.2188 4.9375 40.1406 1.8594 Q35.0625 -1.2188 28.6094 -1.2188 Q17.625 -1.2188 10.6953 6.8594 Q3.7656 14.9375 3.7656 33.5 Q3.7656 54.25 11.4219 63.6719 Q18.1094 71.875 29.4375 71.875 Q37.8906 71.875 43.2891 67.1406 Q48.6875 62.4062 49.75 54.0469 ZM13.875 23.1875 Q13.875 18.6562 15.7969 14.5078 Q17.7188 10.3594 21.1875 8.1797 Q24.6562 6 28.4688 6 Q34.0312 6 38.0391 10.4922 Q42.0469 14.9844 42.0469 22.7031 Q42.0469 30.125 38.0859 34.3984 Q34.125 38.6719 28.125 38.6719 Q22.1719 38.6719 18.0234 34.3984 Q13.875 30.125 13.875 23.1875 Z"
/><glyph unicode="-" horiz-adv-x="33.30078" d="M3.1719 21.4844 L3.1719 30.3281 L30.1719 30.3281 L30.1719 21.4844 L3.1719 21.4844 Z"
/><glyph unicode="B" horiz-adv-x="66.69922" d="M7.3281 0 L7.3281 71.5781 L34.1875 71.5781 Q42.3906 71.5781 47.3438 69.4062 Q52.2969 67.2344 55.1016 62.7188 Q57.9062 58.2031 57.9062 53.2656 Q57.9062 48.6875 55.4219 44.6328 Q52.9375 40.5781 47.9062 38.0938 Q54.3906 36.1875 57.8828 31.5938 Q61.375 27 61.375 20.75 Q61.375 15.7188 59.25 11.3984 Q57.125 7.0781 54 4.7344 Q50.875 2.3906 46.1641 1.1953 Q41.4531 0 34.625 0 L7.3281 0 ZM16.7969 41.5 L32.2812 41.5 Q38.5781 41.5 41.3125 42.3281 Q44.9219 43.4062 46.75 45.8984 Q48.5781 48.3906 48.5781 52.1562 Q48.5781 55.7188 46.875 58.4297 Q45.1719 61.1406 41.9922 62.1406 Q38.8125 63.1406 31.1094 63.1406 L16.7969 63.1406 L16.7969 41.5 ZM16.7969 8.4531 L34.625 8.4531 Q39.2031 8.4531 41.0625 8.7969 Q44.3438 9.375 46.5391 10.7422 Q48.7344 12.1094 50.1484 14.7188 Q51.5625 17.3281 51.5625 20.75 Q51.5625 24.75 49.5156 27.7109 Q47.4688 30.6719 43.8281 31.8672 Q40.1875 33.0625 33.3438 33.0625 L16.7969 33.0625 L16.7969 8.4531 Z"
/><glyph unicode="t" horiz-adv-x="27.783203" d="M25.7812 7.8594 L27.0469 0.0938 Q23.3438 -0.6875 20.4062 -0.6875 Q15.625 -0.6875 12.9922 0.8281 Q10.3594 2.3438 9.2812 4.8125 Q8.2031 7.2812 8.2031 15.1875 L8.2031 45.0156 L1.7656 45.0156 L1.7656 51.8594 L8.2031 51.8594 L8.2031 64.7031 L16.9375 69.9688 L16.9375 51.8594 L25.7812 51.8594 L25.7812 45.0156 L16.9375 45.0156 L16.9375 14.7031 Q16.9375 10.9375 17.4062 9.8672 Q17.875 8.7969 18.9219 8.1562 Q19.9688 7.5156 21.9219 7.5156 Q23.3906 7.5156 25.7812 7.8594 Z"
/><glyph unicode="i" horiz-adv-x="22.216797" d="M6.6406 61.4688 L6.6406 71.5781 L15.4375 71.5781 L15.4375 61.4688 L6.6406 61.4688 ZM6.6406 0 L6.6406 51.8594 L15.4375 51.8594 L15.4375 0 L6.6406 0 Z"
/><glyph unicode="g" horiz-adv-x="55.615234" d="M4.9844 -4.2969 L13.5312 -5.5625 Q14.0625 -9.5156 16.5 -11.3281 Q19.7812 -13.7656 25.4375 -13.7656 Q31.5469 -13.7656 34.8672 -11.3281 Q38.1875 -8.8906 39.3594 -4.5 Q40.0469 -1.8125 39.9844 6.7812 Q34.2344 0 25.6406 0 Q14.9375 0 9.0781 7.7188 Q3.2188 15.4375 3.2188 26.2188 Q3.2188 33.6406 5.9062 39.9141 Q8.5938 46.1875 13.6953 49.6094 Q18.7969 53.0312 25.6875 53.0312 Q34.8594 53.0312 40.8281 45.6094 L40.8281 51.8594 L48.9219 51.8594 L48.9219 7.0312 Q48.9219 -5.0781 46.4609 -10.1328 Q44 -15.1875 38.6484 -18.1172 Q33.2969 -21.0469 25.4844 -21.0469 Q16.2188 -21.0469 10.5 -16.875 Q4.7812 -12.7031 4.9844 -4.2969 ZM12.25 26.8594 Q12.25 16.6562 16.3047 11.9688 Q20.3594 7.2812 26.4688 7.2812 Q32.5156 7.2812 36.6172 11.9453 Q40.7188 16.6094 40.7188 26.5625 Q40.7188 36.0781 36.5 40.9141 Q32.2812 45.75 26.3125 45.75 Q20.4531 45.75 16.3516 40.9922 Q12.25 36.2344 12.25 26.8594 Z"
/><glyph unicode="M" horiz-adv-x="83.30078" d="M7.4219 0 L7.4219 71.5781 L21.6875 71.5781 L38.625 20.9062 Q40.9688 13.8125 42.0469 10.2969 Q43.2656 14.2031 45.8438 21.7812 L62.9844 71.5781 L75.7344 71.5781 L75.7344 0 L66.6094 0 L66.6094 59.9062 L45.7969 0 L37.25 0 L16.5469 60.9375 L16.5469 0 L7.4219 0 Z"
/></font
></defs
><g style="fill:white; stroke:white;"
><rect x="0" y="0" width="1920" style="clip-path:url(#clipPath1); stroke:none;" height="964"
/></g
><g style="fill:white; text-rendering:optimizeSpeed; color-rendering:optimizeSpeed; image-rendering:optimizeSpeed; shape-rendering:crispEdges; color-interpolation:sRGB; stroke:white;"
><rect x="0" width="1920" height="964" y="0" style="stroke:none;"
/></g
><g transform="translate(988,37.355)" style="font-size:15px; text-rendering:geometricPrecision; color-rendering:optimizeQuality; image-rendering:optimizeQuality; color-interpolation:linearRGB; font-weight:bold;"
><text x="-51" xml:space="preserve" y="-4" style="stroke:none;"
>Bode Diagram</text
></g
><g transform="translate(988,935.6667)" style="text-rendering:geometricPrecision; font-size:15px; color-interpolation:linearRGB; color-rendering:optimizeQuality; image-rendering:optimizeQuality;"
><text x="-61.5" xml:space="preserve" y="16" style="stroke:none;"
>Frequency (rad/s)</text
></g
><g style="fill:white; text-rendering:optimizeSpeed; color-rendering:optimizeSpeed; image-rendering:optimizeSpeed; shape-rendering:crispEdges; color-interpolation:sRGB; stroke:white;"
><path style="stroke:none;" d="M78 910 L1900 910 L1900 44 L78 44 Z"
/></g
><g style="fill:rgb(102,102,102); text-rendering:geometricPrecision; color-rendering:optimizeQuality; image-rendering:optimizeQuality; stroke-linejoin:round; color-interpolation:linearRGB; stroke:rgb(102,102,102); stroke-width:0.6667;"
><line y2="910" style="fill:none;" x1="78" x2="1900" y1="910"
/><line y2="44" style="fill:none;" x1="78" x2="1900" y1="44"
/><line y2="891.78" style="fill:none;" x1="78" x2="78" y1="910"
/><line y2="891.78" style="fill:none;" x1="533.5" x2="533.5" y1="910"
/><line y2="891.78" style="fill:none;" x1="989" x2="989" y1="910"
/><line y2="891.78" style="fill:none;" x1="1444.5" x2="1444.5" y1="910"
/><line y2="891.78" style="fill:none;" x1="1900" x2="1900" y1="910"
/><line y2="62.22" style="fill:none;" x1="78" x2="78" y1="44"
/><line y2="62.22" style="fill:none;" x1="533.5" x2="533.5" y1="44"
/><line y2="62.22" style="fill:none;" x1="989" x2="989" y1="44"
/><line y2="62.22" style="fill:none;" x1="1444.5" x2="1444.5" y1="44"
/><line y2="62.22" style="fill:none;" x1="1900" x2="1900" y1="44"
/><line y2="900.89" style="fill:none;" x1="215.1192" x2="215.1192" y1="910"
/><line y2="900.89" style="fill:none;" x1="295.3287" x2="295.3287" y1="910"
/><line y2="900.89" style="fill:none;" x1="352.2383" x2="352.2383" y1="910"
/><line y2="900.89" style="fill:none;" x1="396.3808" x2="396.3808" y1="910"
/><line y2="900.89" style="fill:none;" x1="432.4479" x2="432.4479" y1="910"
/><line y2="900.89" style="fill:none;" x1="462.9421" x2="462.9421" y1="910"
/><line y2="900.89" style="fill:none;" x1="489.3575" x2="489.3575" y1="910"
/><line y2="900.89" style="fill:none;" x1="512.6575" x2="512.6575" y1="910"
/><line y2="900.89" style="fill:none;" x1="670.6192" x2="670.6192" y1="910"
/><line y2="900.89" style="fill:none;" x1="750.8287" x2="750.8287" y1="910"
/><line y2="900.89" style="fill:none;" x1="807.7383" x2="807.7383" y1="910"
/><line y2="900.89" style="fill:none;" x1="851.8808" x2="851.8808" y1="910"
/><line y2="900.89" style="fill:none;" x1="887.9479" x2="887.9479" y1="910"
/><line y2="900.89" style="fill:none;" x1="918.4421" x2="918.4421" y1="910"
/><line y2="900.89" style="fill:none;" x1="944.8575" x2="944.8575" y1="910"
/><line y2="900.89" style="fill:none;" x1="968.1575" x2="968.1575" y1="910"
/><line y2="900.89" style="fill:none;" x1="1126.1191" x2="1126.1191" y1="910"
/><line y2="900.89" style="fill:none;" x1="1206.3287" x2="1206.3287" y1="910"
/><line y2="900.89" style="fill:none;" x1="1263.2384" x2="1263.2384" y1="910"
/><line y2="900.89" style="fill:none;" x1="1307.3809" x2="1307.3809" y1="910"
/><line y2="900.89" style="fill:none;" x1="1343.4479" x2="1343.4479" y1="910"
/><line y2="900.89" style="fill:none;" x1="1373.9421" x2="1373.9421" y1="910"
/><line y2="900.89" style="fill:none;" x1="1400.3575" x2="1400.3575" y1="910"
/><line y2="900.89" style="fill:none;" x1="1423.6575" x2="1423.6575" y1="910"
/><line y2="900.89" style="fill:none;" x1="1581.6191" x2="1581.6191" y1="910"
/><line y2="900.89" style="fill:none;" x1="1661.8287" x2="1661.8287" y1="910"
/><line y2="900.89" style="fill:none;" x1="1718.7384" x2="1718.7384" y1="910"
/><line y2="900.89" style="fill:none;" x1="1762.8809" x2="1762.8809" y1="910"
/><line y2="900.89" style="fill:none;" x1="1798.9479" x2="1798.9479" y1="910"
/><line y2="900.89" style="fill:none;" x1="1829.4421" x2="1829.4421" y1="910"
/><line y2="900.89" style="fill:none;" x1="1855.8575" x2="1855.8575" y1="910"
/><line y2="900.89" style="fill:none;" x1="1879.1575" x2="1879.1575" y1="910"
/><line y2="53.11" style="fill:none;" x1="215.1192" x2="215.1192" y1="44"
/><line y2="53.11" style="fill:none;" x1="295.3287" x2="295.3287" y1="44"
/><line y2="53.11" style="fill:none;" x1="352.2383" x2="352.2383" y1="44"
/><line y2="53.11" style="fill:none;" x1="396.3808" x2="396.3808" y1="44"
/><line y2="53.11" style="fill:none;" x1="432.4479" x2="432.4479" y1="44"
/><line y2="53.11" style="fill:none;" x1="462.9421" x2="462.9421" y1="44"
/><line y2="53.11" style="fill:none;" x1="489.3575" x2="489.3575" y1="44"
/><line y2="53.11" style="fill:none;" x1="512.6575" x2="512.6575" y1="44"
/><line y2="53.11" style="fill:none;" x1="670.6192" x2="670.6192" y1="44"
/><line y2="53.11" style="fill:none;" x1="750.8287" x2="750.8287" y1="44"
/><line y2="53.11" style="fill:none;" x1="807.7383" x2="807.7383" y1="44"
/><line y2="53.11" style="fill:none;" x1="851.8808" x2="851.8808" y1="44"
/><line y2="53.11" style="fill:none;" x1="887.9479" x2="887.9479" y1="44"
/><line y2="53.11" style="fill:none;" x1="918.4421" x2="918.4421" y1="44"
/><line y2="53.11" style="fill:none;" x1="944.8575" x2="944.8575" y1="44"
/><line y2="53.11" style="fill:none;" x1="968.1575" x2="968.1575" y1="44"
/><line y2="53.11" style="fill:none;" x1="1126.1191" x2="1126.1191" y1="44"
/><line y2="53.11" style="fill:none;" x1="1206.3287" x2="1206.3287" y1="44"
/><line y2="53.11" style="fill:none;" x1="1263.2384" x2="1263.2384" y1="44"
/><line y2="53.11" style="fill:none;" x1="1307.3809" x2="1307.3809" y1="44"
/><line y2="53.11" style="fill:none;" x1="1343.4479" x2="1343.4479" y1="44"
/><line y2="53.11" style="fill:none;" x1="1373.9421" x2="1373.9421" y1="44"
/><line y2="53.11" style="fill:none;" x1="1400.3575" x2="1400.3575" y1="44"
/><line y2="53.11" style="fill:none;" x1="1423.6575" x2="1423.6575" y1="44"
/><line y2="53.11" style="fill:none;" x1="1581.6191" x2="1581.6191" y1="44"
/><line y2="53.11" style="fill:none;" x1="1661.8287" x2="1661.8287" y1="44"
/><line y2="53.11" style="fill:none;" x1="1718.7384" x2="1718.7384" y1="44"
/><line y2="53.11" style="fill:none;" x1="1762.8809" x2="1762.8809" y1="44"
/><line y2="53.11" style="fill:none;" x1="1798.9479" x2="1798.9479" y1="44"
/><line y2="53.11" style="fill:none;" x1="1829.4421" x2="1829.4421" y1="44"
/><line y2="53.11" style="fill:none;" x1="1855.8575" x2="1855.8575" y1="44"
/><line y2="53.11" style="fill:none;" x1="1879.1575" x2="1879.1575" y1="44"
/></g
><g transform="translate(67,933)" style="font-size:13px; fill:rgb(102,102,102); text-rendering:geometricPrecision; color-rendering:optimizeQuality; image-rendering:optimizeQuality; color-interpolation:linearRGB; stroke:rgb(102,102,102);"
><text x="0" xml:space="preserve" y="0" style="stroke:none;"
>10</text
></g
><g transform="translate(82,927)" style="font-size:11px; fill:rgb(102,102,102); text-rendering:geometricPrecision; color-rendering:optimizeQuality; image-rendering:optimizeQuality; color-interpolation:linearRGB; stroke:rgb(102,102,102);"
><text x="0" xml:space="preserve" y="0" style="stroke:none;"
>2</text
></g
><g transform="translate(523,933)" style="font-size:13px; fill:rgb(102,102,102); text-rendering:geometricPrecision; color-rendering:optimizeQuality; image-rendering:optimizeQuality; color-interpolation:linearRGB; stroke:rgb(102,102,102);"
><text x="0" xml:space="preserve" y="0" style="stroke:none;"
>10</text
></g
><g transform="translate(538,927)" style="font-size:11px; fill:rgb(102,102,102); text-rendering:geometricPrecision; color-rendering:optimizeQuality; image-rendering:optimizeQuality; color-interpolation:linearRGB; stroke:rgb(102,102,102);"
><text x="0" xml:space="preserve" y="0" style="stroke:none;"
>3</text
></g
><g transform="translate(978,933)" style="font-size:13px; fill:rgb(102,102,102); text-rendering:geometricPrecision; color-rendering:optimizeQuality; image-rendering:optimizeQuality; color-interpolation:linearRGB; stroke:rgb(102,102,102);"
><text x="0" xml:space="preserve" y="0" style="stroke:none;"
>10</text
></g
><g transform="translate(993,927)" style="font-size:11px; fill:rgb(102,102,102); text-rendering:geometricPrecision; color-rendering:optimizeQuality; image-rendering:optimizeQuality; color-interpolation:linearRGB; stroke:rgb(102,102,102);"
><text x="0" xml:space="preserve" y="0" style="stroke:none;"
>4</text
></g
><g transform="translate(1434,933)" style="font-size:13px; fill:rgb(102,102,102); text-rendering:geometricPrecision; color-rendering:optimizeQuality; image-rendering:optimizeQuality; color-interpolation:linearRGB; stroke:rgb(102,102,102);"
><text x="0" xml:space="preserve" y="0" style="stroke:none;"
>10</text
></g
><g transform="translate(1449,927)" style="font-size:11px; fill:rgb(102,102,102); text-rendering:geometricPrecision; color-rendering:optimizeQuality; image-rendering:optimizeQuality; color-interpolation:linearRGB; stroke:rgb(102,102,102);"
><text x="0" xml:space="preserve" y="0" style="stroke:none;"
>5</text
></g
><g transform="translate(1889,933)" style="font-size:13px; fill:rgb(102,102,102); text-rendering:geometricPrecision; color-rendering:optimizeQuality; image-rendering:optimizeQuality; color-interpolation:linearRGB; stroke:rgb(102,102,102);"
><text x="0" xml:space="preserve" y="0" style="stroke:none;"
>10</text
></g
><g transform="translate(1904,927)" style="font-size:11px; fill:rgb(102,102,102); text-rendering:geometricPrecision; color-rendering:optimizeQuality; image-rendering:optimizeQuality; color-interpolation:linearRGB; stroke:rgb(102,102,102);"
><text x="0" xml:space="preserve" y="0" style="stroke:none;"
>6</text
></g
><g style="fill:rgb(102,102,102); text-rendering:geometricPrecision; color-rendering:optimizeQuality; image-rendering:optimizeQuality; stroke-linejoin:round; color-interpolation:linearRGB; stroke:rgb(102,102,102); stroke-width:0.6667;"
><line y2="44" style="fill:none;" x1="78" x2="78" y1="910"
/><line y2="44" style="fill:none;" x1="1900" x2="1900" y1="910"
/><line y2="910" style="fill:none;" x1="78" x2="96.22" y1="910"
/><line y2="801.75" style="fill:none;" x1="78" x2="96.22" y1="801.75"
/><line y2="693.5" style="fill:none;" x1="78" x2="96.22" y1="693.5"
/><line y2="585.25" style="fill:none;" x1="78" x2="96.22" y1="585.25"
/><line y2="477" style="fill:none;" x1="78" x2="96.22" y1="477"
/><line y2="368.75" style="fill:none;" x1="78" x2="96.22" y1="368.75"
/><line y2="260.5" style="fill:none;" x1="78" x2="96.22" y1="260.5"
/><line y2="152.25" style="fill:none;" x1="78" x2="96.22" y1="152.25"
/><line y2="44" style="fill:none;" x1="78" x2="96.22" y1="44"
/><line y2="910" style="fill:none;" x1="1900" x2="1881.78" y1="910"
/><line y2="801.75" style="fill:none;" x1="1900" x2="1881.78" y1="801.75"
/><line y2="693.5" style="fill:none;" x1="1900" x2="1881.78" y1="693.5"
/><line y2="585.25" style="fill:none;" x1="1900" x2="1881.78" y1="585.25"
/><line y2="477" style="fill:none;" x1="1900" x2="1881.78" y1="477"
/><line y2="368.75" style="fill:none;" x1="1900" x2="1881.78" y1="368.75"
/><line y2="260.5" style="fill:none;" x1="1900" x2="1881.78" y1="260.5"
/><line y2="152.25" style="fill:none;" x1="1900" x2="1881.78" y1="152.25"
/><line y2="44" style="fill:none;" x1="1900" x2="1881.78" y1="44"
/></g
><g transform="translate(72.6667,910)" style="font-size:13px; fill:rgb(102,102,102); text-rendering:geometricPrecision; color-rendering:optimizeQuality; image-rendering:optimizeQuality; color-interpolation:linearRGB; stroke:rgb(102,102,102);"
><text x="-27" xml:space="preserve" y="5.5" style="stroke:none;"
>-350</text
></g
><g transform="translate(72.6667,801.75)" style="font-size:13px; fill:rgb(102,102,102); text-rendering:geometricPrecision; color-rendering:optimizeQuality; image-rendering:optimizeQuality; color-interpolation:linearRGB; stroke:rgb(102,102,102);"
><text x="-27" xml:space="preserve" y="5.5" style="stroke:none;"
>-300</text
></g
><g transform="translate(72.6667,693.5)" style="font-size:13px; fill:rgb(102,102,102); text-rendering:geometricPrecision; color-rendering:optimizeQuality; image-rendering:optimizeQuality; color-interpolation:linearRGB; stroke:rgb(102,102,102);"
><text x="-27" xml:space="preserve" y="5.5" style="stroke:none;"
>-250</text
></g
><g transform="translate(72.6667,585.25)" style="font-size:13px; fill:rgb(102,102,102); text-rendering:geometricPrecision; color-rendering:optimizeQuality; image-rendering:optimizeQuality; color-interpolation:linearRGB; stroke:rgb(102,102,102);"
><text x="-27" xml:space="preserve" y="5.5" style="stroke:none;"
>-200</text
></g
><g transform="translate(72.6667,477)" style="font-size:13px; fill:rgb(102,102,102); text-rendering:geometricPrecision; color-rendering:optimizeQuality; image-rendering:optimizeQuality; color-interpolation:linearRGB; stroke:rgb(102,102,102);"
><text x="-27" xml:space="preserve" y="5.5" style="stroke:none;"
>-150</text
></g
><g transform="translate(72.6667,368.75)" style="font-size:13px; fill:rgb(102,102,102); text-rendering:geometricPrecision; color-rendering:optimizeQuality; image-rendering:optimizeQuality; color-interpolation:linearRGB; stroke:rgb(102,102,102);"
><text x="-27" xml:space="preserve" y="5.5" style="stroke:none;"
>-100</text
></g
><g transform="translate(72.6667,260.5)" style="font-size:13px; fill:rgb(102,102,102); text-rendering:geometricPrecision; color-rendering:optimizeQuality; image-rendering:optimizeQuality; color-interpolation:linearRGB; stroke:rgb(102,102,102);"
><text x="-19" xml:space="preserve" y="5.5" style="stroke:none;"
>-50</text
></g
><g transform="translate(72.6667,152.25)" style="font-size:13px; fill:rgb(102,102,102); text-rendering:geometricPrecision; color-rendering:optimizeQuality; image-rendering:optimizeQuality; color-interpolation:linearRGB; stroke:rgb(102,102,102);"
><text x="-8" xml:space="preserve" y="5.5" style="stroke:none;"
>0</text
></g
><g transform="translate(72.6667,44)" style="font-size:13px; fill:rgb(102,102,102); text-rendering:geometricPrecision; color-rendering:optimizeQuality; image-rendering:optimizeQuality; color-interpolation:linearRGB; stroke:rgb(102,102,102);"
><text x="-15" xml:space="preserve" y="5.5" style="stroke:none;"
>50</text
></g
><g style="stroke-linecap:butt; fill:rgb(0,114,189); text-rendering:geometricPrecision; color-rendering:optimizeQuality; image-rendering:optimizeQuality; stroke-linejoin:round; color-interpolation:linearRGB; stroke:rgb(0,114,189); stroke-width:0.6667;"
><path d="M77.8178 154.2728 L304.4518 154.2748 L334.8274 154.2763 L365.2031 154.2784 L395.5787 154.2811 L425.9544 154.2849 L456.33 154.29 L486.7057 154.297 L517.0814 154.3065 L547.457 154.3194 L577.8326 154.337 L608.2083 154.3611 L638.5839 154.3938 L668.9595 154.4387 L699.3352 154.5002 L729.7109 154.5847 L760.0865 154.7013 L790.4622 154.8632 L820.8378 155.0896 L851.2135 155.4096 L881.5891 155.869 L911.9648 156.5431 L933.7104 157.2275 L960.1012 158.4158 L981.9028 159.8711 L999.9132 161.6101 L1014.7916 163.6474 L1027.0828 165.9962 L1037.2366 168.67 L1045.6246 171.6862 L1052.5542 175.0703 L1058.2786 178.8644 L1063.0076 183.1391 L1066.9142 188.016 L1070.1416 193.7139 L1072.8075 200.6617 L1075.01 209.8454 L1076.8296 224.447 L1078.3325 455.6365 L1078.3325 483.1634 L1078.3325 483.1634 L1079.8357 223.925 L1081.6552 208.6919 L1083.8575 198.7449 L1086.5237 190.876 L1089.7511 184.0694 L1093.6576 177.8636 L1098.3867 172.0071 L1104.1111 166.3521 L1111.0405 160.8248 L1119.4286 155.435 L1129.5825 150.3246 L1134.2349 148.4212 L1141.8735 145.8314 L1147.1677 144.396 L1161.8933 141.7089 L1178.6602 140.3346 L1197.7516 139.9369 L1219.4894 140.0939 L1244.2408 140.4877 L1272.4233 140.9353 L1276.4725 140.9936 L1306.8481 141.3737 L1337.2239 141.6603 L1367.5995 141.8721 L1397.9751 142.0275 L1428.3508 142.1414 L1458.7264 142.2249 L1489.1021 142.286 L1519.4778 142.3309 L1549.8534 142.3638 L1580.229 142.388 L1610.6047 142.4057 L1640.9803 142.4188 L1671.356 142.4284 L1701.7317 142.4355 L1732.1073 142.4406 L1762.4829 142.4445 L1792.8586 142.4473 L1823.2343 142.4493 L1853.6099 142.4509 L1883.9856 142.452 L1900.1823 142.4524" style="fill:none; fill-rule:evenodd;"
/><path d="M77.8178 152.2962 L304.4518 152.2976 L335.1273 152.2986 L365.8027 152.3001 L396.4782 152.302 L427.1537 152.3047 L457.8292 152.3083 L488.5047 152.3132 L519.1802 152.32 L549.8557 152.3292 L580.5311 152.3419 L611.2067 152.3591 L641.8821 152.3828 L672.5576 152.4152 L703.2332 152.4599 L733.9086 152.5215 L764.584 152.6068 L795.2596 152.7258 L825.9351 152.8932 L856.6105 153.1314 L887.2861 153.4763 L917.9615 153.9886 L933.7104 154.3494 L960.1012 155.1849 L981.9028 156.2182 L999.9132 157.4695 L1014.7916 158.961 L1027.0828 160.7167 L1037.2366 162.7646 L1045.6246 165.1377 L1052.5542 167.8784 L1058.2786 171.0437 L1063.0076 174.7175 L1066.9142 179.0313 L1070.1416 184.2112 L1072.8075 190.6897 L1075.01 199.4543 L1076.8296 213.6861 L1078.3325 444.5526 L1078.3325 486.7552 L1078.3325 486.7552 L1079.8357 212.501 L1081.6552 196.8318 L1083.8575 186.318 L1086.5237 177.6993 L1089.7511 169.8786 L1093.6576 162.2607 L1098.3867 154.3603 L1104.1111 145.5885 L1110.1542 136.3649 L1116.1395 126.6243 L1121.1663 118.3561 L1125.3881 113.8415 L1129.6097 114.2878 L1134.6365 118.2629 L1140.6217 122.9016 L1147.7482 126.988 L1156.2335 130.3629 L1166.3367 133.1148 L1178.3662 135.3561 L1192.6896 137.1808 L1209.7439 138.6626 L1230.0499 139.8583 L1254.2279 140.8123 L1255.3918 140.8494 L1286.0673 141.6232 L1316.7428 142.1262 L1347.4183 142.4654 L1378.0938 142.6999 L1408.7693 142.8648 L1439.4448 142.9821 L1470.1202 143.0662 L1500.7958 143.127 L1531.4713 143.171 L1562.1467 143.203 L1592.8223 143.2264 L1623.4978 143.2434 L1654.1732 143.2558 L1684.8486 143.2649 L1715.5242 143.2716 L1746.1996 143.2765 L1776.8751 143.2801 L1807.5507 143.2827 L1838.2261 143.2846 L1868.9016 143.286 L1899.5771 143.2871 L1900.1823 143.2871" style="fill:none; fill-rule:evenodd; stroke:rgb(217,83,25);"
/><path d="M77.8178 145.4476 L242.304 145.4468 L272.6796 145.446 L303.0553 145.4449 L333.4309 145.4433 L363.8066 145.4413 L394.1822 145.4385 L424.5579 145.4347 L454.9335 145.4295 L485.3092 145.4224 L515.6848 145.4128 L546.0605 145.3998 L576.4361 145.382 L606.8118 145.3579 L637.1874 145.3249 L667.5631 145.2801 L697.9387 145.2189 L728.3144 145.1354 L758.6901 145.0216 L789.0657 144.8661 L819.4413 144.6544 L849.0345 144.3763 L877.217 144.0294 L901.9684 143.6547 L923.7063 143.2939 L942.7976 143.0175 L959.5646 142.933 L974.2902 143.1818 L987.2229 143.9138 L998.5811 145.2361 L1009.9393 147.4993 L1014.7916 148.8254 L1027.0828 153.3187 L1037.2366 158.429 L1045.6246 163.8188 L1052.5542 169.3462 L1058.2786 175.0011 L1063.0076 180.8577 L1066.9142 187.0635 L1070.1416 193.8701 L1072.8075 201.7389 L1075.01 211.6859 L1076.8296 226.9191 L1078.3325 458.6306 L1078.3325 491.0016 L1078.3325 491.0016 L1079.8357 227.4411 L1081.6552 212.8394 L1083.8575 203.6557 L1086.5237 196.7079 L1089.7511 191.01 L1093.6576 186.1331 L1098.3867 181.8584 L1104.1111 178.0643 L1111.0405 174.6802 L1119.4286 171.6641 L1129.5825 168.9903 L1141.8735 166.6415 L1156.7521 164.6041 L1174.7625 162.8651 L1196.5641 161.4099 L1222.9548 160.2215 L1244.7004 159.5372 L1275.076 158.8631 L1305.4517 158.4036 L1335.8274 158.0836 L1366.203 157.8572 L1396.5786 157.6954 L1426.9543 157.5788 L1457.33 157.4942 L1487.7056 157.4328 L1518.0813 157.3879 L1548.4569 157.3551 L1578.8325 157.3311 L1609.2083 157.3134 L1639.5839 157.3005 L1669.9595 157.291 L1700.3352 157.2841 L1730.7108 157.2789 L1761.0864 157.2752 L1791.4622 157.2724 L1821.8378 157.2703 L1852.2134 157.2688 L1900.1823 157.2684" style="fill:none; fill-rule:evenodd; stroke:rgb(237,177,32);"
/><path d="M77.8178 143.3377 L257.0881 143.3366 L287.7636 143.3355 L318.4391 143.3341 L349.1146 143.3322 L379.79 143.3296 L410.4655 143.326 L441.141 143.3211 L471.8165 143.3145 L502.492 143.3053 L533.1675 143.2929 L563.843 143.2759 L594.5184 143.2525 L625.194 143.2205 L655.8694 143.1765 L686.5449 143.1158 L717.2204 143.0316 L747.8959 142.9143 L778.5714 142.7494 L809.2469 142.5149 L839.9224 142.1757 L870.5978 141.6727 L901.2734 140.8989 L901.8206 140.8815 L925.9986 139.9373 L946.3047 138.756 L963.3591 137.2947 L977.6824 135.4997 L989.712 133.3017 L999.8151 130.6128 L1008.3004 127.3288 L1015.4269 123.3642 L1021.4121 118.835 L1026.4388 114.7289 L1030.6606 113.6415 L1034.8823 117.5111 L1039.9093 125.6329 L1045.8944 135.446 L1052.5542 145.638 L1058.2786 154.4098 L1063.0076 162.3102 L1066.9142 169.9281 L1070.1416 177.7488 L1072.8075 186.3675 L1075.01 196.8814 L1076.8296 212.5505 L1078.3325 444.6021 L1078.3325 727.739 L1079.8357 213.7356 L1081.6552 199.5038 L1083.8575 190.7392 L1086.5237 184.2607 L1089.7511 179.0808 L1093.6576 174.767 L1098.3867 171.0932 L1104.1111 167.9279 L1111.0405 165.1873 L1119.4286 162.8141 L1129.5825 160.7662 L1141.8735 159.0105 L1156.7521 157.5191 L1174.7625 156.2677 L1196.5641 155.2344 L1222.9548 154.3989 L1238.7037 154.0381 L1269.3792 153.5259 L1300.0547 153.1809 L1330.7301 152.9427 L1361.4056 152.7753 L1392.0811 152.6563 L1422.7566 152.571 L1453.4321 152.5094 L1484.1075 152.4647 L1514.7831 152.4323 L1545.4586 152.4086 L1576.134 152.3914 L1606.8096 152.3787 L1637.4851 152.3695 L1668.1605 152.3628 L1698.8359 152.3578 L1729.5115 152.3542 L1760.1869 152.3515 L1790.8624 152.3496 L1821.538 152.3482 L1852.2134 152.3471 L1900.1823 152.3468" style="fill:none; fill-rule:evenodd; stroke:rgb(126,47,142);"
/><path d="M77.8178 152.2494 L242.304 152.249 L272.705 152.2487 L303.106 152.2482 L333.5071 152.2476 L363.9081 152.2467 L394.3092 152.2455 L424.7102 152.2439 L455.1112 152.2416 L485.5123 152.2386 L515.9133 152.2345 L546.3144 152.2289 L576.7155 152.2213 L607.1165 152.2108 L637.5175 152.1966 L667.9185 152.1771 L698.3196 152.1503 L728.7206 152.1135 L759.1216 152.0627 L789.5227 151.9924 L819.9238 151.8949 L849.0345 151.7664 L877.217 151.5995 L901.8206 151.4155 L901.9684 151.4143 L923.7063 151.2319 L942.7976 151.0912 L959.5646 151.0503 L963.3591 151.0634 L974.2902 151.1757 L977.6824 151.2386 L987.2229 151.5009 L989.712 151.5899 L999.8151 152.0002 L1008.3004 152.2443 L1015.4269 152.0661 L1021.4121 151.4108 L1026.4388 151.1259 L1030.6606 153.7059 L1034.8823 161.7226 L1039.9093 175.5168 L1045.8944 193.3841 L1052.5341 214.7602 L1052.5542 214.8289 L1052.5542 214.8289 L1052.5741 214.8977 L1058.2585 236.1328 L1058.2786 236.2152 L1058.2786 236.2152 L1058.2986 236.2977 L1062.9875 257.8171 L1063.0076 257.9206 L1063.0076 257.9206 L1063.0276 258.0242 L1066.8942 280.7994 L1066.9142 280.935 L1066.9142 280.935 L1066.9343 281.0709 L1070.1215 306.2537 L1070.1416 306.4401 L1070.1416 306.4401 L1070.1615 306.627 L1072.7876 336.0799 L1072.8075 336.3539 L1072.8075 336.3539 L1072.8276 336.6289 L1074.9901 374.3099 L1075.01 374.7631 L1075.01 374.7631 L1075.03 375.2191 L1076.8094 433.5026 L1076.8296 434.4987 L1076.8296 434.4987 L1076.8495 435.5086 L1078.3126 883.475 L1078.3325 759.3117 L1078.3325 759.3117 L1078.3527 883.4907 L1079.8156 435.5085 L1079.8357 434.499 L1079.8357 434.4989 L1079.8557 433.5024 L1081.6351 375.2191 L1081.6552 374.7632 L1081.6552 374.7632 L1081.6752 374.3099 L1083.8376 336.6289 L1083.8575 336.3539 L1083.8575 336.3539 L1083.8777 336.0799 L1086.5037 306.627 L1086.5237 306.4402 L1086.5237 306.4402 L1086.5438 306.2537 L1089.731 281.0709 L1089.7511 280.9351 L1089.7511 280.9351 L1089.771 280.7993 L1093.6376 258.0242 L1093.6576 257.9206 L1093.6576 257.9206 L1093.6777 257.8171 L1098.3666 236.2977 L1098.3867 236.2153 L1098.3867 236.2153 L1098.4066 236.1328 L1104.0911 214.8977 L1104.1111 214.8289 L1104.1111 214.8289 L1104.1312 214.7602 L1110.1542 195.2795 L1116.1395 177.3163 L1121.1663 163.2672 L1125.3881 154.5295 L1129.6097 151.2423 L1134.6365 151.3274 L1140.6217 152.0211 L1147.7482 152.2486 L1156.2335 152.0247 L1166.3367 151.6131 L1178.3662 151.2517 L1192.6896 151.0666 L1209.7439 151.0702 L1230.0499 151.2079 L1254.2279 151.4104 L1272.4233 151.5505 L1275.9395 151.5754 L1306.3403 151.7597 L1336.7415 151.8949 L1367.1425 151.9924 L1397.5436 152.0627 L1427.9446 152.1135 L1458.3456 152.1503 L1488.7467 152.1771 L1519.1477 152.1966 L1549.5488 152.2108 L1579.9498 152.2213 L1610.3508 152.2289 L1640.7518 152.2345 L1671.153 152.2386 L1701.554 152.2416 L1731.955 152.2439 L1762.356 152.2455 L1792.7571 152.2467 L1823.1581 152.2476 L1853.5592 152.2482 L1883.9602 152.2487 L1900.1823 152.2489" style="fill:none; fill-rule:evenodd; stroke:rgb(119,172,48);"
/></g
><g transform="translate(41.6667,476.9996) rotate(-90)" style="text-rendering:geometricPrecision; font-size:15px; color-interpolation:linearRGB; color-rendering:optimizeQuality; image-rendering:optimizeQuality;"
><text x="-51.5" xml:space="preserve" y="-4" style="stroke:none;"
>Magnitude (dB)</text
></g
></g
></svg
>

After

Width:  |  Height:  |  Size: 50 KiB

4
report/4_high_pass/4_high_pass.pug

@ -47,6 +47,6 @@ figure.block-center.width-15cm
Στο γράφημα φαίνονται οι συχνότητες που ορίζουν τη ζώνη αποκοπής (f#[sub s]/ω#[sub s]) και τη ζώνη διόδου (f#[sub p]/ω#[sub p]), καθώς και οι προδιαγραφές α#[sub min] και α#[sub max]. Στο γράφημα φαίνονται οι συχνότητες που ορίζουν τη ζώνη αποκοπής (f#[sub s]/ω#[sub s]) και τη ζώνη διόδου (f#[sub p]/ω#[sub p]), καθώς και οι προδιαγραφές α#[sub min] και α#[sub max].
// Sub-Chapters // Sub-Chapters
include 4_high_pass_design //- include 4_high_pass_design
//- include 1_low_pass_transfer_function_matlab include 4_high_pass_transfer_function_matlab
//- include 1_low_pass_transfer_function_multisim //- include 1_low_pass_transfer_function_multisim

64
report/4_high_pass/4_high_pass_transfer_function_matlab.pug

@ -0,0 +1,64 @@
h3 Μελέτη συνάρτησης μεταφοράς στο Matlab
p.
Η σχεδίαση του φίλτρου έγινε στο λογισμικό Matlab. Σχεδιάστηκαν, με χρήση της συνάρτησης plot_transfer_function που δόθηκε καθώς και της ltiview που παρέχει το λογισμικό, οι αποκρίσεις πλάτους σε dB των επιμέρους μονάδων, καθώς και του συνολικού φίλτρου.
p.
Παρακάτω φαίνονται οι αποκρίσεις όπως προέκυψαν στο Matlab από την plot_transfer_function, με ορίσματα κάθε φορά την συνάρτηση μεταφοράς του επί μέρους συστήματος, καθώς και τυχόν κρίσιμες συχνότητες:
figure.block-center.width-15cm
img(src="4_high_pass/assets/diagrams/matlab_high_pass_butterworth_sallen_key_unit_1_transfer_function.svg").width-15cm
figcaption
.reference #[span.plot-count]
.caption.title.
Συνάρτηση μεταφοράς πρώτης υψηπερατής μονάδας Sallen-Key.
.caption.
Στο γράφημα φαίνεται η απόκριση της συνάρτησης μεταφοράς στις υψηλές συχνότητες, από όπου μπορούμε να επιβεβαιώσουμε ότι το κέρδος 1.23 dB που υπολογίστηκε νωρίτερα για την μονάδα είναι σωστό.
figure.block-center.width-15cm
img(src="4_high_pass/assets/diagrams/matlab_high_pass_butterworth_sallen_key_unit_2_transfer_function.svg").width-15cm
figcaption
.reference #[span.plot-count]
.caption.title.
Συνάρτηση μεταφοράς δεύτερης υψηπερατής μονάδας Sallen-Key.
.caption.
Στο γράφημα φαίνεται η απόκριση της συνάρτησης μεταφοράς στις υψηλές συχνότητες, από όπου μπορούμε να επιβεβαιώσουμε ότι το κέρδος 6.98 dB που υπολογίστηκε νωρίτερα για την μονάδα είναι σωστό.
figure.block-center.width-15cm
img(src="4_high_pass/assets/diagrams/matlab_high_pass_butterworth_total_transfer_function.svg").width-15cm
figcaption
.reference #[span.plot-count]
.caption.title.
Συνολική συνάρτηση μεταφοράς φίλτρου.
.caption.
Παρατηρούμε ότι η συνάρτηση μεταφοράς του φίλτρου έχει το αναμενόμενο σχήμα ενός ανωδιαβατού Butterworth φίλτρου. Πιο συγκεκριμένα, στις χαμηλές συχνότητες η συνάρτηση μεταφοράς είναι γνησίως αύξουσα, ενώ στην αποκοπή είναι επίπεδη. Στο γράφημα φαίνεται επίσης η απόκριση της συνάρτησης μεταφοράς στις κρίσιμες συχνότητες: f#[sub s]=1923.077 Hz, f#[sub hp]=3994.44 Hz, f#[sub p]=5000 Hz και (τυχαία) υψηλή συχνότητα=90000 Hz.
figure.block-center.width-15cm
img(src="4_high_pass/assets/diagrams/matlab_combined_transfer_functions_bode.svg").width-15cm
figcaption
.reference #[span.plot-count]
.caption.title.
Συνδυαστικό γράφημα συναρτήσεων μεταφοράς επιμέρους μονάδων και συνολικού φίλτρου.
figure.block-center.width-15cm
img(src="4_high_pass/assets/diagrams/matlab_high_pass_butterworth_total_attenuation.svg").width-15cm
figcaption
.reference #[span.plot-count]
.caption.title.
Απόσβεση φίλτρου.
.caption.
Στο γράφημα φαίνεται η απόσβεση του φίλτρου για τις κρίσιμες συχνότητες: f#[sub s]=1923.077 Hz, f#[sub hp]=3994.44 Hz, f#[sub p]=5000 Hz και (τυχαία) υψηλή συχνότητα=90000 Hz.
p.
Στα γραφήματα 2.2.3 και 2.2.5 έχουν σημειωθεί οι κρίσιμες συχνότητες οι οποίες καθορίζουν την ζώνη διόδου και αποκοπής, δηλαδή η f#[sub p]=5000 Hz και η f#[sub s]=1923.077 Hz, καθώς και οι αντίστοιχες αποσβέσεις. Παρατηρούμε ότι η απόκριση του φίλτρου στην ζώνη διόδου είναι 0.67 dB (10-9,33), ενώ στη ζώνη αποκοπής είναι 25.41 dB (10-(-15.41)). Επομένως είναι φανερό ότι πληρείτε ακριβώς η προδιαγραφή a#[sub max]=0.666 dB ενώ η προδιαγραφή a#[sub min]=24.666 dB υπερκαλύπτεται.
p.
Η συνάρτηση απόσβεσης, πριν τη ρύθμιση κέρδους, δίνεται από το παρακάτω διάγραμμα:
figure.block-center.width-15cm
img(src="4_high_pass/assets/diagrams/matlab_high_pass_butterworth_original_gain_attenuation.svg").width-15cm
figcaption
.reference #[span.plot-count]
.caption.title.
Απόσβεση φίλτρου πριν τη ρύθμιση κέρδους.
.caption.
Στο γράφημα σημειώνονται οι ίδιες κρίσιμες συχνότητες: f#[sub s]=1923.077 Hz, f#[sub hp]=3994.44 Hz, f#[sub p]=5000 Hz και (τυχαία) υψηλή συχνότητα=90000 Hz.

192
report/4_high_pass/assets/diagrams/matlab_combined_transfer_functions_bode.svg

@ -0,0 +1,192 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="678.7949219 -65.5141602 1885.3222656 936.0522461"
style="enable-background:new 678.7949219 -65.5141602 1885.3222656 936.0522461;" xml:space="preserve">
<style type="text/css">
.st0{font-family:'Arial-BoldMT';}
.st1{font-size:15px;}
.st2{font-family:'ArialMT';}
.st3{fill:#FFFFFF;}
.st4{fill:none;stroke:#666666;stroke-width:0.6667;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:10;}
.st5{fill:#666666;}
.st6{font-size:13px;}
.st7{font-size:11px;}
.st8{fill:none;stroke:#0072BD;stroke-width:0.6667;stroke-linejoin:round;stroke-miterlimit:10;}
.st9{fill:none;stroke:#D95319;stroke-width:0.6667;stroke-linejoin:round;stroke-miterlimit:10;}
.st10{fill:none;stroke:#EDB120;stroke-width:0.6667;stroke-linejoin:round;stroke-miterlimit:10;}
</style>
<g>
<g transform="translate(988,37.355)">
<text transform="matrix(1 0 0 1 603 -90.0000229)" class="st0 st1">Bode Diagram</text>
</g>
<g transform="translate(988,935.6667)">
<text transform="matrix(1 0 0 1 592.5 -70)" class="st2 st1">Frequency (rad/s)</text>
</g>
<g>
<path class="st3" d="M732,824h1822V-42H732V824z"/>
</g>
<g>
<line class="st4" x1="732" y1="824" x2="2554" y2="824"/>
<line class="st4" x1="732" y1="-42" x2="2554" y2="-42"/>
<line class="st4" x1="732" y1="824" x2="732" y2="805.7800293"/>
<line class="st4" x1="1339.333374" y1="824" x2="1339.333374" y2="805.7800293"/>
<line class="st4" x1="1946.666748" y1="824" x2="1946.666748" y2="805.7800293"/>
<line class="st4" x1="2554" y1="824" x2="2554" y2="805.7800293"/>
<line class="st4" x1="732" y1="-42" x2="732" y2="-23.7799988"/>
<line class="st4" x1="1339.333374" y1="-42" x2="1339.333374" y2="-23.7799988"/>
<line class="st4" x1="1946.666748" y1="-42" x2="1946.666748" y2="-23.7799988"/>
<line class="st4" x1="2554" y1="-42" x2="2554" y2="-23.7799988"/>
<line class="st4" x1="914.8255615" y1="824" x2="914.8255615" y2="814.8900146"/>
<line class="st4" x1="1021.7716064" y1="824" x2="1021.7716064" y2="814.8900146"/>
<line class="st4" x1="1097.651123" y1="824" x2="1097.651123" y2="814.8900146"/>
<line class="st4" x1="1156.5078125" y1="824" x2="1156.5078125" y2="814.8900146"/>
<line class="st4" x1="1204.597168" y1="824" x2="1204.597168" y2="814.8900146"/>
<line class="st4" x1="1245.2562256" y1="824" x2="1245.2562256" y2="814.8900146"/>
<line class="st4" x1="1280.4766846" y1="824" x2="1280.4766846" y2="814.8900146"/>
<line class="st4" x1="1311.5432129" y1="824" x2="1311.5432129" y2="814.8900146"/>
<line class="st4" x1="1522.1589355" y1="824" x2="1522.1589355" y2="814.8900146"/>
<line class="st4" x1="1629.1049805" y1="824" x2="1629.1049805" y2="814.8900146"/>
<line class="st4" x1="1704.9844971" y1="824" x2="1704.9844971" y2="814.8900146"/>
<line class="st4" x1="1763.8410645" y1="824" x2="1763.8410645" y2="814.8900146"/>
<line class="st4" x1="1811.930542" y1="824" x2="1811.930542" y2="814.8900146"/>
<line class="st4" x1="1852.5894775" y1="824" x2="1852.5894775" y2="814.8900146"/>
<line class="st4" x1="1887.8100586" y1="824" x2="1887.8100586" y2="814.8900146"/>
<line class="st4" x1="1918.8765869" y1="824" x2="1918.8765869" y2="814.8900146"/>
<line class="st4" x1="2129.4921875" y1="824" x2="2129.4921875" y2="814.8900146"/>
<line class="st4" x1="2236.4384766" y1="824" x2="2236.4384766" y2="814.8900146"/>
<line class="st4" x1="2312.3178711" y1="824" x2="2312.3178711" y2="814.8900146"/>
<line class="st4" x1="2371.1743164" y1="824" x2="2371.1743164" y2="814.8900146"/>
<line class="st4" x1="2419.263916" y1="824" x2="2419.263916" y2="814.8900146"/>
<line class="st4" x1="2459.9228516" y1="824" x2="2459.9228516" y2="814.8900146"/>
<line class="st4" x1="2495.1433105" y1="824" x2="2495.1433105" y2="814.8900146"/>
<line class="st4" x1="2526.2099609" y1="824" x2="2526.2099609" y2="814.8900146"/>
<line class="st4" x1="914.8255615" y1="-42" x2="914.8255615" y2="-32.8899994"/>
<line class="st4" x1="1021.7716064" y1="-42" x2="1021.7716064" y2="-32.8899994"/>
<line class="st4" x1="1097.651123" y1="-42" x2="1097.651123" y2="-32.8899994"/>
<line class="st4" x1="1156.5078125" y1="-42" x2="1156.5078125" y2="-32.8899994"/>
<line class="st4" x1="1204.597168" y1="-42" x2="1204.597168" y2="-32.8899994"/>
<line class="st4" x1="1245.2562256" y1="-42" x2="1245.2562256" y2="-32.8899994"/>
<line class="st4" x1="1280.4766846" y1="-42" x2="1280.4766846" y2="-32.8899994"/>
<line class="st4" x1="1311.5432129" y1="-42" x2="1311.5432129" y2="-32.8899994"/>
<line class="st4" x1="1522.1589355" y1="-42" x2="1522.1589355" y2="-32.8899994"/>
<line class="st4" x1="1629.1049805" y1="-42" x2="1629.1049805" y2="-32.8899994"/>
<line class="st4" x1="1704.9844971" y1="-42" x2="1704.9844971" y2="-32.8899994"/>
<line class="st4" x1="1763.8410645" y1="-42" x2="1763.8410645" y2="-32.8899994"/>
<line class="st4" x1="1811.930542" y1="-42" x2="1811.930542" y2="-32.8899994"/>
<line class="st4" x1="1852.5894775" y1="-42" x2="1852.5894775" y2="-32.8899994"/>
<line class="st4" x1="1887.8100586" y1="-42" x2="1887.8100586" y2="-32.8899994"/>
<line class="st4" x1="1918.8765869" y1="-42" x2="1918.8765869" y2="-32.8899994"/>
<line class="st4" x1="2129.4921875" y1="-42" x2="2129.4921875" y2="-32.8899994"/>
<line class="st4" x1="2236.4384766" y1="-42" x2="2236.4384766" y2="-32.8899994"/>
<line class="st4" x1="2312.3178711" y1="-42" x2="2312.3178711" y2="-32.8899994"/>
<line class="st4" x1="2371.1743164" y1="-42" x2="2371.1743164" y2="-32.8899994"/>
<line class="st4" x1="2419.263916" y1="-42" x2="2419.263916" y2="-32.8899994"/>
<line class="st4" x1="2459.9228516" y1="-42" x2="2459.9228516" y2="-32.8899994"/>
<line class="st4" x1="2495.1433105" y1="-42" x2="2495.1433105" y2="-32.8899994"/>
<line class="st4" x1="2526.2099609" y1="-42" x2="2526.2099609" y2="-32.8899994"/>
</g>
<g transform="translate(67,933)">
<text transform="matrix(1 0 0 1 654 -86)" class="st5 st2 st6">10</text>
</g>
<g transform="translate(82,927)">
<text transform="matrix(1 0 0 1 654 -86)" class="st5 st2 st7">3</text>
</g>
<g transform="translate(674,933)">
<text transform="matrix(1 0 0 1 654 -86)" class="st5 st2 st6">10</text>
</g>
<g transform="translate(689,927)">
<text transform="matrix(1 0 0 1 654 -86)" class="st5 st2 st7">4</text>
</g>
<g transform="translate(1282,933)">
<text transform="matrix(1 0 0 1 654 -86)" class="st5 st2 st6">10</text>
</g>
<g transform="translate(1297,927)">
<text transform="matrix(1 0 0 1 654 -86)" class="st5 st2 st7">5</text>
</g>
<g transform="translate(1889,933)">
<text transform="matrix(1 0 0 1 654 -86)" class="st5 st2 st6">10</text>
</g>
<g transform="translate(1904,927)">
<text transform="matrix(1 0 0 1 654 -86)" class="st5 st2 st7">6</text>
</g>
<g>
<line class="st4" x1="732" y1="824" x2="732" y2="-42"/>
<line class="st4" x1="2554" y1="824" x2="2554" y2="-42"/>
<line class="st4" x1="732" y1="824" x2="750.2199707" y2="824"/>
<line class="st4" x1="732" y1="700.2857056" x2="750.2199707" y2="700.2857056"/>
<line class="st4" x1="732" y1="576.5714111" x2="750.2199707" y2="576.5714111"/>
<line class="st4" x1="732" y1="452.8571167" x2="750.2199707" y2="452.8571167"/>
<line class="st4" x1="732" y1="329.1427917" x2="750.2199707" y2="329.1427917"/>
<line class="st4" x1="732" y1="205.4285889" x2="750.2199707" y2="205.4285889"/>
<line class="st4" x1="732" y1="81.7142944" x2="750.2199707" y2="81.7142944"/>
<line class="st4" x1="732" y1="-42" x2="750.2199707" y2="-42"/>
<line class="st4" x1="2554" y1="824" x2="2535.7800293" y2="824"/>
<line class="st4" x1="2554" y1="700.2857056" x2="2535.7800293" y2="700.2857056"/>
<line class="st4" x1="2554" y1="576.5714111" x2="2535.7800293" y2="576.5714111"/>
<line class="st4" x1="2554" y1="452.8571167" x2="2535.7800293" y2="452.8571167"/>
<line class="st4" x1="2554" y1="329.1427917" x2="2535.7800293" y2="329.1427917"/>
<line class="st4" x1="2554" y1="205.4285889" x2="2535.7800293" y2="205.4285889"/>
<line class="st4" x1="2554" y1="81.7142944" x2="2535.7800293" y2="81.7142944"/>
<line class="st4" x1="2554" y1="-42" x2="2535.7800293" y2="-42"/>
</g>
<g transform="translate(72.6667,910)">
<text transform="matrix(1 0 0 1 627 -80.5)" class="st5 st2 st6">-120</text>
</g>
<g transform="translate(72.6667,786.2857)">
<text transform="matrix(1 0 0 1 627 -80.5)" class="st5 st2 st6">-100</text>
</g>
<g transform="translate(72.6667,662.5714)">
<text transform="matrix(1 0 0 1 635 -80.5)" class="st5 st2 st6">-80</text>
</g>
<g transform="translate(72.6667,538.8571)">
<text transform="matrix(1 0 0 1 635 -80.5)" class="st5 st2 st6">-60</text>
</g>
<g transform="translate(72.6667,415.1428)">
<text transform="matrix(1 0 0 1 635 -80.5)" class="st5 st2 st6">-40</text>
</g>
<g transform="translate(72.6667,291.4286)">
<text transform="matrix(1 0 0 1 635 -80.5)" class="st5 st2 st6">-20</text>
</g>
<g transform="translate(72.6667,167.7143)">
<text transform="matrix(1 0 0 1 646 -80.5)" class="st5 st2 st6">0</text>
</g>
<g transform="translate(72.6667,44)">
<text transform="matrix(1 0 0 1 639 -80.5)" class="st5 st2 st6">20</text>
</g>
<g>
<path class="st8" d="M731.8178101,420.5455017l24.7545166-10.0733032l41.2736816-16.7882996l41.2736206-16.7784119
l41.2736816-16.7650757l41.2735596-16.7466125l41.2737427-16.7215881l41.2736206-16.6873169l41.2735596-16.6402893
l41.2736816-16.5762939l41.2736816-16.4887085l41.2736816-16.3691101l41.2735596-16.2059021l41.2736816-15.9837952
l41.2738037-15.6825867l41.2734375-15.2765198l41.2736816-14.7343903l41.2736816-14.0225983l41.2736816-13.1100922
l41.2735596-11.9817047l41.2735596-10.6511993l41.2736816-9.1734009l41.2736816-7.64151l41.2736816-6.1637878
l41.2736816-4.8332977l41.2735596-3.7048035l41.2736816-2.7924042l41.2735596-2.0805054l41.2736816-1.5384979
l41.2736816-1.1322937l41.2736816-0.8311005l41.2735596-0.6090088l41.2736816-0.4459991l41.2738037-0.3261871
l41.2734375-0.2387085l41.2739258-0.1744995l41.2734375-0.1277008l41.2736816-0.093399l41.2736816-0.0682983l41.2734375-0.0498962
l41.2736816-0.036499l41.2736816-0.0267029l41.2736816-0.0196075l41.2736816-0.0142975l41.2736816-0.0103912l22.8430176-0.0042114
"/>
<path class="st9" d="M731.8178101,384.8355103L756.5723267,374.7388l41.2736816-16.8416138l41.2736206-16.8515015
l41.2736816-16.8648987l41.2735596-16.8831787l41.2737427-16.9082947l41.2736206-16.942627l41.2735596-16.9895935
l41.2736816-17.0535889l41.2736816-17.1412048l41.2736816-17.2608032l41.2735596-17.4237061l41.2736816-17.6451874
l41.2738037-17.9443054l41.2734375-18.3430023l21.9893799-9.9754944l35.6508789-16.5296936l31.6739502-15.0886078
l28.1403809-13.6970978l25.0014648-12.2843018l22.2121582-10.7944031l19.734375-9.2071991l17.532959-7.5559998
l17.5328369-6.6052933l19.734375-5.8555069l22.2122803-4.2157974l25.0012207-1.8661957l28.1405029,0.5082932l31.6739502,2.1960068
l35.651001,2.976593l30.8547363,2.3964996l41.2736816,2.6647034l41.2735596,2.0438004l41.2736816,1.5279999l41.2736816,1.1294022
l41.2736816,0.8302002l41.2735596,0.6088943l41.2736816,0.4458008l41.2738037,0.3262024l41.2734375,0.2387009
l41.2739258,0.1745987l41.2734375,0.1276016l41.2736816,0.093399l41.2736816,0.0682983l41.2734375,0.0499039l41.2736816,0.036499
l41.2736816,0.0266953l41.2736816,0.0195007l41.2736816,0.0143051l41.2736816,0.010498l22.8430176,0.0041962"/>
<path class="st10" d="M731.8178101,712.6251221l24.7545166-20.1700439l41.2736816-33.6298828l41.2736206-33.6298828
l41.2736816-33.6298828l41.2735596-33.6299438l41.2737427-33.6298828l41.2736206-33.6298828l41.2735596-33.6299438
l41.2736816-33.6298828l41.2736816-33.6297913l41.2736816-33.6299133l41.2735596-33.6295776l41.2736816-33.6291199
l41.2738037-33.6268921l41.2734375-33.6193848l21.9893799-17.9031067l35.6508789-28.9927979l31.6739502-25.6725159
l28.1403809-22.6356964l25.0014648-19.8005981l22.2121582-17.0964966l19.734375-14.4835052l17.532959-11.9730988
l17.5328369-10.7565918l19.734375-10.2013092l22.2122803-8.6868973l25.0012207-6.3682022l28.1405029-3.9068985
l31.6739502-1.9986038l35.651001-0.8635941l30.8547363-0.2751007l41.2736816-0.1277008l41.2735596-0.0366974l41.2736816-0.0105057
l41.2736816-0.0028992l41.2736816-0.0009003l41.2735596-0.0002975h41.2736816h41.2738037h41.2734375h41.2739258h41.2734375
h41.2736816h41.2736816h41.2734375h41.2736816h41.2736816h41.2736816h41.2736816h41.2736816h22.8430176"/>
</g>
<g transform="translate(41.6667,476.9996) rotate(-90)">
<text transform="matrix(1 0 0 1 34.4996033 650.000061)" class="st2 st1">Magnitude (dB)</text>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 13 KiB

360
report/4_high_pass/assets/diagrams/matlab_high_pass_butterworth_original_gain_attenuation.svg

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 232 KiB

1595
report/4_high_pass/assets/diagrams/matlab_high_pass_butterworth_sallen_key_unit_1_transfer_function.svg

File diff suppressed because it is too large

After

Width:  |  Height:  |  Size: 161 KiB

1616
report/4_high_pass/assets/diagrams/matlab_high_pass_butterworth_sallen_key_unit_2_transfer_function.svg

File diff suppressed because it is too large

After

Width:  |  Height:  |  Size: 163 KiB

2928
report/4_high_pass/assets/diagrams/matlab_high_pass_butterworth_total_attenuation.svg

File diff suppressed because it is too large

After

Width:  |  Height:  |  Size: 299 KiB

2895
report/4_high_pass/assets/diagrams/matlab_high_pass_butterworth_total_transfer_function.svg

File diff suppressed because it is too large

After

Width:  |  Height:  |  Size: 295 KiB

Loading…
Cancel
Save