Ignore:
Timestamp:
Sep 23, 2008, 7:20:38 PM (15 years ago)
Author:
gerson bicca
Message:

updates

Location:
trunk/eml/heat_exchangers
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/eml/heat_exchangers/Heatex.mso

    r529 r632  
    1515*--------------------------------------------------------------------
    1616* Author: Gerson Balbueno Bicca
    17 * $  $
     17* $Id: Heatex.mso 574 2008-07-25 14:18:50Z rafael $
    1818*--------------------------------------------------------------------*#
    1919
    2020using "heat_exchangers/HEX_Engine";
    21 
    22 Model Basic_Pdrop
    23        
    24 ATTRIBUTES
    25         Pallete = false;
    26         Brief = "to be documented";
    27         Info =
    28         "to be documented";
    29        
    30 VARIABLES
    31 
    32 Pdrop           as press_delta  (Brief="Pressure Drop",Default=0.01, Lower=0,DisplayUnit='kPa' , Symbol ="\Delta P");
    33 FPdrop  as Real                         (Brief="Pressure Drop : Fraction of Inlet",Lower=0,Upper=0.8);
    34 
    35 end
    36 
    37 Model Main_Simplified
    38        
    39 ATTRIBUTES
    40         Pallete = false;
    41         Brief = "to be documented";
    42         Info =
    43         "to be documented";
    44        
    45 VARIABLES
    46 
    47 PressureDrop    as Basic_Pdrop                          (Brief="Pressure Drop", Symbol=" ");
    48 Properties              as Physical_Properties_Heatex           (Brief="Physical Properties", Symbol=" ");
    49 
    50 end
    5121
    5222Model Heatex_Basic
     
    5424ATTRIBUTES
    5525        Pallete         = false;
    56         Brief           = "Basic Model for Simplified Heat Exchangers";
     26        Brief   = "Basic Model for Simplified Heat Exchangers";
    5727        Info            =
    58         "to be documented.";
     28"Model of a simplified heat exchanger.
     29This model perform only material and heat balance.
     30
     31== Assumptions ==
     32* Steady-State operation;
     33* No heat loss to the surroundings.
     34
     35== Specify ==
     36* The Inlet streams: Hot and Cold;
     37";
    5938       
    6039PARAMETERS
    61 outer PP            as Plugin   (Brief="External Physical Properties", Type="PP");
     40outer PP                as Plugin       (Brief="External Physical Properties", Type="PP");
    6241outer NComp     as Integer  (Brief="Number of Components");
    6342       
     
    6645VARIABLES
    6746
    68 in  InletHot    as stream               (Brief="Inlet Hot Stream", PosX=0, PosY=0.4915, Symbol="^{inHot}");
     47in  InletHot            as stream                       (Brief="Inlet Hot Stream", PosX=0, PosY=0.4915, Symbol="^{inHot}");
    6948out OutletHot   as streamPH     (Brief="Outlet Hot Stream", PosX=1, PosY=0.4915, Symbol="^{outHot}");
    70 in  InletCold   as stream               (Brief="Inlet Cold Stream", PosX=0.5237, PosY=1, Symbol="^{inCold}");
     49in  InletCold           as stream                       (Brief="Inlet Cold Stream", PosX=0.5237, PosY=1, Symbol="^{inCold}");
    7150out OutletCold  as streamPH     (Brief="Outlet Cold Stream", PosX=0.5237, PosY=0, Symbol="^{outCold}");
    7251
    73         xh(NComp)       as fraction             (Brief = "Liquid Molar Fraction in Hot Side",Hidden=true);
    74         yh(NComp)       as fraction             (Brief = "Vapour Molar Fraction in Hot Side",Hidden=true);
    75         vh                      as fraction             (Brief = "Vapour Fraction in Hot Side",Hidden=true);
    76        
    77         xc(NComp)       as fraction             (Brief = "Liquid Molar Fraction in Cold Side",Hidden=true);
    78         yc(NComp)       as fraction             (Brief = "Vapour Molar Fraction in Cold Side",Hidden=true);
    79         vc                      as fraction             (Brief = "Vapour Fraction in Cold Side",Hidden=true);
    80 
    81         Details     as Details_Main     (Brief="Heat Exchanger Details", Symbol=" ");
    82         HotSide         as Main_Simplified      (Brief="Heat Exchanger Hot Side", Symbol="_{hot}");
    83         ColdSide        as Main_Simplified      (Brief="Heat Exchanger Cold Side", Symbol="_{cold}");
     52        A               as area                                         (Brief="Exchange Surface Area");
     53        Q               as power                                        (Brief="Duty", Default=7000, Lower=1e-6, Upper=1e10);
     54        U               as heat_trans_coeff     (Brief="Overall Heat Transfer Coefficient",Default=1,Lower=1e-6,Upper=1e10);
     55       
     56        PdropHotSide    as press_delta  (Brief="Pressure Drop Hot Side",Default=0.01, Lower=0,DisplayUnit='kPa' , Symbol ="\Delta P_{hot}");
     57        PdropColdSide   as press_delta  (Brief="Pressure Drop Cold Side",Default=0.01, Lower=0,DisplayUnit='kPa' , Symbol ="\Delta P_{cold}");
    8458
    8559SET
     
    9064EQUATIONS
    9165
    92 "Flash Calculation in Hot Side"
    93         [vh, xh, yh] = PP.Flash(InletHot.T, InletHot.P, InletHot.z);
    94 
    95 "Flash Calculation in Cold Side"
    96         [vc, xc, yc] = PP.Flash(InletCold.T, InletCold.P, InletCold.z);
    97 
    98 "Hot Stream Average Molecular Weight"
    99         HotSide.Properties.Mw = sum(M*InletHot.z);
    100 
    101 "Cold Stream Average Molecular Weight"
    102         ColdSide.Properties.Mw = sum(M*InletCold.z);
    103 
    104 "Cold Stream Average Heat Capacity"
    105         ColdSide.Properties.Cp  =       (1-InletCold.v)*PP.LiquidCp(0.5*InletCold.T+0.5*OutletCold.T,0.5*InletCold.P+0.5*OutletCold.P,xc)+
    106                 InletCold.v*PP.VapourCp(0.5*InletCold.T+0.5*OutletCold.T,0.5*InletCold.P+0.5*OutletCold.P,yc);
    107        
    108 "Cold Stream Inlet Mass Density"
    109         ColdSide.Properties.Inlet.rho   =       (1-InletCold.v)*PP.LiquidDensity(InletCold.T,InletCold.P,xc)+
    110                 InletCold.v*PP.VapourDensity(InletCold.T,InletCold.P,yc);
    111 
    112 "Cold Stream Outlet Mass Density"
    113         ColdSide.Properties.Outlet.rho  =       (1-OutletCold.v)*PP.LiquidDensity(OutletCold.T,OutletCold.P,OutletCold.x)+
    114                 OutletCold.v*PP.VapourDensity(OutletCold.T,OutletCold.P,OutletCold.y);
    115 
    116 "Hot Stream Average Heat Capacity"
    117         HotSide.Properties.Cp   =       (1-InletHot.v)*PP.LiquidCp(0.5*InletHot.T+0.5*OutletHot.T,0.5*InletHot.P+0.5*OutletHot.P,xh)+
    118                 InletHot.v*PP.VapourCp(0.5*InletHot.T+0.5*OutletHot.T,0.5*InletHot.P+0.5*OutletHot.P,yh);
    119        
    120 "Hot Stream Inlet Mass Density"
    121         HotSide.Properties.Inlet.rho    =       (1-InletHot.v)*PP.LiquidDensity(InletHot.T,InletHot.P,xc)+
    122                 InletHot.v*PP.VapourDensity(InletHot.T,InletHot.P,yc);
    123 
    124 "Hot Stream Outlet Mass Density"
    125         HotSide.Properties.Outlet.rho   =       (1-OutletHot.v)*PP.LiquidDensity(OutletHot.T,OutletHot.P,OutletHot.x)+
    126                 OutletHot.v*PP.VapourDensity(OutletHot.T,OutletHot.P,OutletHot.y);
    127 
    12866"Energy Balance Hot Stream"
    129         Details.Q = InletHot.F*(InletHot.h-OutletHot.h);
     67        Q = InletHot.F*(InletHot.h-OutletHot.h);
    13068
    13169"Energy Balance Cold Stream"
    132         Details.Q =-InletCold.F*(InletCold.h-OutletCold.h);
    133 
    134 "Flow Mass Inlet Cold Stream"
    135         ColdSide.Properties.Inlet.Fw    =  sum(M*InletCold.z)*InletCold.F;
    136 
    137 "Flow Mass Outlet Cold Stream"
    138         ColdSide.Properties.Outlet.Fw   =  sum(M*OutletCold.z)*OutletCold.F;
    139 
    140 "Flow Mass Inlet Hot Stream"
    141         HotSide.Properties.Inlet.Fw             =  sum(M*InletHot.z)*InletHot.F;
    142 
    143 "Flow Mass Outlet Hot Stream"   
    144         HotSide.Properties.Outlet.Fw    =  sum(M*OutletHot.z)*OutletHot.F;
     70        Q =-InletCold.F*(InletCold.h-OutletCold.h);
    14571
    14672"Molar Balance Hot Stream"
     
    15177
    15278"Hot Stream Molar Fraction Constraint"
    153         OutletHot.z             =       InletHot.z;
     79        OutletHot.z     =       InletHot.z;
    15480       
    15581"Cold Stream Molar Fraction Constraint"
     
    15783       
    15884"Pressure Drop Hot Stream"
    159         OutletHot.P  = InletHot.P - HotSide.PressureDrop.Pdrop;
     85        OutletHot.P  = InletHot.P - PdropHotSide;
    16086       
    16187"Pressure Drop Cold Stream"
    162         OutletCold.P  = InletCold.P - ColdSide.PressureDrop.Pdrop;
    163        
    164 "Fraction of Inlet Pressure : Hot Stream"
    165         HotSide.PressureDrop.Pdrop  = InletHot.P*HotSide.PressureDrop.FPdrop;
    166        
    167 "Fraction of Inlet Pressure : Cold Stream"
    168         ColdSide.PressureDrop.Pdrop  = InletCold.P*ColdSide.PressureDrop.FPdrop;
    169        
    170 end
    171 
    172 Model Heatex_LMTD       as Heatex_Basic
     88        OutletCold.P  = InletCold.P - PdropColdSide;
     89       
     90end
     91
     92Model Heatex_LMTD  as Heatex_Basic
    17393
    17494ATTRIBUTES
    17595        Pallete         = true;
    17696        Icon            = "icon/HeatExchanger_LMTD";   
    177         Brief           = "Simplified model for Heat Exchangers";
     97        Brief   = "Simplified model for Heat Exchangers";
    17898        Info            =
    179         "to be documented.";
     99"This model perform material and heat balance using the Log Mean Temperature Difference Approach.
     100This shortcut calculation does not require exchanger configuration or geometry data.
     101
     102== Assumptions ==
     103* Steady-State operation;
     104* No heat loss to the surroundings.
     105
     106== Specify ==
     107* The Inlet streams: Hot and Cold.
     108
     109== References ==
     110[1] E.A.D. Saunders, Heat Exchangers: Selection, Design and
     111 Construction, Longman, Harlow, 1988.
     112
     113[2] Taborek, J., Shell-and-tube heat exchangers, in Heat Exchanger Design Handbook, Vol. 3
     114 Hemisphere Publishing Corp., New York, 1988.
     115
     116[3] Fakheri, A. , Alternative approach for determining log mean temperature difference correction factor
     117 and number of shells of shell and tube heat exchangers, Journal of Enhanced Heat Transfer, v. 10, p. 407- 420, 2003.
     118";
    180119       
    181120PARAMETERS
     
    186125VARIABLES
    187126
    188         Method  as LMTD_Basic   (Brief="LMTD Method of Calculation", Symbol =" ");
     127        Method  as LMTD_Basic           (Brief="LMTD Method of Calculation", Symbol =" ");
    189128        R                               as positive                     (Brief="Capacity Ratio for LMTD Correction Fator",Lower=1e-6,Hidden=true);
    190129        P                               as positive                     (Brief="Non - Dimensional Variable for LMTD Correction Fator ",Lower=1e-6,Hidden=true);
    191         Rho             as positive                     (Brief="Non - Dimensional Variable for LMTD Correction Fator in Fakheri Equation",Lower=1e-6,Hidden=true);
     130        Rho                     as positive                     (Brief="Non - Dimensional Variable for LMTD Correction Fator in Fakheri Equation",Lower=1e-6,Hidden=true);
    192131        Phi             as positive                     (Brief="Non - Dimensional Variable for LMTD Correction Fator in Fakheri Equation",Lower=1e-6, Symbol ="\phi",Hidden=true);
    193132
     
    195134
    196135"Duty"
    197         Details.Q = Details.Ud*Details.A*Method.LMTD*Method.Fc;
     136        Q = U*A*Method.LMTD*Method.Fc;
    198137
    199138switch ExchangerType
     
    317256end
    318257
    319 Model Heatex_NTU                as Heatex_Basic
     258Model Heatex_NTU        as Heatex_Basic
    320259
    321260ATTRIBUTES
    322261        Pallete         = true;
    323262        Icon            = "icon/HeatExchanger_NTU";     
    324         Brief           = "Simplified model for Heat Exchangers";
     263        Brief   = "Simplified model for Heat Exchangers";
    325264        Info            =
    326         "to be documented.";
     265"This model perform material and heat balance using the NTU-Effectiveness Approach.
     266This shortcut calculation does not require exchanger configuration or geometry data.
     267
     268== Assumptions ==
     269* Steady-State operation;
     270* No heat loss to the surroundings.
     271
     272== Specify ==
     273* The Inlet streams: Hot and Cold.
     274
     275== References ==
     276[1] E.A.D. Saunders, Heat Exchangers: Selection, Design and
     277 Construction, Longman, Harlow, 1988.
     278
     279";
    327280       
    328281PARAMETERS
     
    334287Method  as NTU_Basic    (Brief="NTU Method of Calculation", Symbol =" ");
    335288
     289        xh(NComp)       as fraction             (Brief = "Liquid Molar Fraction in Hot Side",Hidden=true);
     290        yh(NComp)       as fraction             (Brief = "Vapour Molar Fraction in Hot Side",Hidden=true);
     291        vh                              as fraction             (Brief = "Vapour Fraction in Hot Side",Hidden=true);
     292       
     293        xc(NComp)       as fraction             (Brief = "Liquid Molar Fraction in Cold Side",Hidden=true);
     294        yc(NComp)       as fraction             (Brief = "Vapour Molar Fraction in Cold Side",Hidden=true);
     295        vc                              as fraction             (Brief = "Vapour Fraction in Cold Side",Hidden=true);
     296
    336297EQUATIONS
    337298
     299"Flash Calculation in Hot Side"
     300        [vh, xh, yh] = PP.Flash(InletHot.T, InletHot.P, InletHot.z);
     301
     302"Flash Calculation in Cold Side"
     303        [vc, xc, yc] = PP.Flash(InletCold.T, InletCold.P, InletCold.z);
     304
    338305"Number of Units Transference"
    339         Method.NTU*Method.Cmin = Details.Ud*Details.A;
     306        Method.NTU*Method.Cmin = U*A;
    340307       
    341308"Minimum Heat Capacity"
     
    349316
    350317"Duty"
    351         Details.Q       = Method.Eft*Method.Cmin*(InletHot.T-InletCold.T);
    352 
    353 "Hot Stream Heat Capacity"
    354         Method.Ch  = InletHot.F*HotSide.Properties.Cp;
    355        
    356 "Cold Stream Heat Capacity"
    357         Method.Cc = InletCold.F*ColdSide.Properties.Cp;
     318        Q       = Method.Eft*Method.Cmin*(InletHot.T-InletCold.T);
     319
     320"Hot Stream Average Heat Capacity"
     321        Method.Ch       = InletHot.F*((1-InletHot.v)*PP.LiquidCp(0.5*InletHot.T+0.5*OutletHot.T,0.5*InletHot.P+0.5*OutletHot.P,xh)+
     322                InletHot.v*PP.VapourCp(0.5*InletHot.T+0.5*OutletHot.T,0.5*InletHot.P+0.5*OutletHot.P,yh));
     323       
     324"Cold Stream Average Heat Capacity"
     325        Method.Cc       =       InletCold.F*((1-InletCold.v)*PP.LiquidCp(0.5*InletCold.T+0.5*OutletCold.T,0.5*InletCold.P+0.5*OutletCold.P,xc)+
     326                InletCold.v*PP.VapourCp(0.5*InletCold.T+0.5*OutletCold.T,0.5*InletCold.P+0.5*OutletCold.P,yc));
    358327       
    359328"Effectiveness Correction"
     
    393362       
    394363"TEMA E Shell Effectiveness"
    395         Method.Eft      = 2*(1+Method.Cr+sqrt(1+Method.Cr^2)*((1+exp(-Method.NTU*sqrt(1+Method.Cr^2)))/(1-exp(-Method.NTU*sqrt(1+Method.Cr^2)))) )^-1;
    396 
    397 end
    398 
    399 
    400 end
    401 
    402 end
    403  
     364        Method.Eft      = 2*(1+Method.Cr+sqrt(1+Method.Cr^2)*((1+exp(-Method.NTU*sqrt(1+Method.Cr^2)))/(1-exp(-Method.NTU*sqrt(1+Method.Cr^2)))) )^(-1);
     365
     366end
     367
     368
     369end
     370
     371end
  • trunk/eml/heat_exchangers/heater.mso

    r546 r632  
    2929
    3030 PARAMETERS
    31         outer PP                        as Plugin               (Brief="Physical Properties", Type="PP");
     31        outer PP        as Plugin       (Brief="Physical Properties", Type="PP");
    3232        outer NComp     as Integer      (Brief="Number of Components");
    33         Ninlet                          as Integer      (Brief="Number of Inlet Streams");
    34         Kvalues                 as Switcher     (Brief="Option for Display Phase Equilibrium K-values",Valid=["yes","no"], Default="yes");
     33        Kvalues         as Switcher (Brief="Option for Display Phase Equilibrium K-values",Valid=["yes","no"], Default="yes");
    3534
    3635 VARIABLES
    37         QDuty                                   as power                                (Brief = "Actual Duty",Symbol="Q_{Duty}");
    38         Vfrac                                   as fraction                     (Brief = "Vapor fraction Outlet Stream",Symbol="V_{frac}");
    39         Lfrac                                           as fraction                     (Brief = "Liquid fraction Outlet Stream",Symbol="L_{frac}");
    40         Kvalue(NComp)   as Real                                 (Brief = "Phase Equilibrium K-values",Symbol="K_{value}");
    41         Pratio(Ninlet )                 as positive                     (Brief = "Pressure Ratio for each stream", Symbol ="P_{ratio}");       
    42         Pdrop(Ninlet )          as press_delta          (Brief = "Pressure Drop for each stream", DisplayUnit = 'kPa', Symbol ="\Delta P");
    43 in  Inlet(Ninlet )              as stream                       (Brief = "Inlet Streams", PosX=0, PosY=0.4833, Symbol="^{in}");
    44 out Outlet                              as streamPH                     (Brief = "Outlet Stream", PosX=1, PosY=0.4782, Symbol="^{out}");
     36        Duty                    as power                (Brief = "Actual Duty",Symbol="Q_{Duty}");
     37        Vfrac                   as fraction     (Brief = "Vapor fraction Outlet Stream",Symbol="V_{frac}");
     38        Lfrac                   as fraction     (Brief = "Liquid fraction Outlet Stream",Symbol="L_{frac}");
     39        Kvalue(NComp)   as Real                 (Brief = "Phase Equilibrium K-values",Lower=1E-30,Upper=1E30,Symbol="K_{value}");
     40        Pratio                  as positive             (Brief = "Pressure Ratio", Symbol ="P_{ratio}");       
     41        Pdrop                   as press_delta  (Brief = "Pressure Drop", DisplayUnit = 'kPa', Symbol ="\Delta P");
     42
     43in  Inlet                       as stream               (Brief = "Inlet Stream", PosX=0, PosY=0.45, Symbol="^{in}");
     44out Outlet              as streamPH             (Brief = "Outlet Stream", PosX=1, PosY=0.45, Symbol="^{out}");
    4545       
    4646 EQUATIONS
    4747
    4848 "Flow"
    49         Outlet.F = sum(Inlet.F);       
     49        Outlet.F = Inlet.F;     
    5050
    51  for j in [1 : NComp]
     51 for j in [1 : NComp] 
    5252       
    5353 "Composition"
    54         Outlet.F*Outlet.z(j) = sum(Inlet.F*Inlet.z(j));
     54        Outlet.F*Outlet.z(j) = Inlet.F*Inlet.z(j);     
    5555       
    5656 end
     
    6363
    6464 "Heat Duty"
    65         QDuty = Outlet.F*Outlet.h - sum(Inlet.F*Inlet.h);
     65        Duty = Outlet.F*Outlet.h - Inlet.F*Inlet.h;
    6666
    6767 "Pressure Drop"
     
    7272       
    7373 switch Kvalues # Fix for better convergence !!!
     74
    7475        case "yes":
    7576 "K-values Phase Equilibrium"
     
    8182
    8283 end
     84
    8385end
    8486
     
    9395
    9496== Specify ==
    95 * The Inlet streams: Any Number
     97* The Inlet stream
    9698* Specify:
    9799**The outlet temperature and the outlet pressure or
     
    102104 VARIABLES
    103105
    104 in  InletQ              as energy_stream        (Brief ="Inlet Heat Stream", PosX=0.5, PosY=1, Symbol="_{out}");
     106in  Heat                as energy_stream        (Brief ="Inlet Heat Stream", PosX=0.5, PosY=1, Symbol="_{out}");
    105107
    106108 EQUATIONS
    107  "Net Duty"
    108         InletQ.Q = QDuty;
     109
     110 "Duty Specification"
     111        Heat.Q = Duty;
    109112
    110113end
     
    120123
    121124== Specify ==
    122 * The Inlet streams: Any Number
     125* The Inlet stream
    123126* Specify:
    124127**The outlet temperature and the outlet pressure or
     
    129132 VARIABLES
    130133
    131 in  InletQ              as energy_stream        (Brief ="Inlet Heat Stream", PosX=0.5, PosY=1, Symbol="_{out}");
     134in  Heat                as energy_stream        (Brief ="Inlet Heat Stream", PosX=0.5, PosY=1, Symbol="_{out}");
    132135
    133136 EQUATIONS
    134  "Net Duty"
    135         InletQ.Q = -QDuty;
     137
     138 "Duty Specification"
     139        Heat.Q = -Duty;
    136140
    137141end
  • trunk/eml/heat_exchangers/icon/Shell_and_Tubes_LMTD.svg

    r335 r632  
    33<svg
    44   xmlns:dc="http://purl.org/dc/elements/1.1/"
    5    xmlns:cc="http://web.resource.org/cc/"
     5   xmlns:cc="http://creativecommons.org/ns#"
    66   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    77   xmlns:svg="http://www.w3.org/2000/svg"
     
    1212   id="svg2064"
    1313   sodipodi:version="0.32"
    14    inkscape:version="0.45"
    15    width="210mm"
    16    height="297mm"
     14   inkscape:version="0.46"
     15   width="191.96149"
     16   height="73.427681"
    1717   sodipodi:docbase="/home/gerson/Desktop/projetos/curso/figuras"
    18    sodipodi:docname="base.svg"
    19    inkscape:export-filename="C:\Documents and Settings\Administrador\Meus documentos\Bolsa Simulação\Desenhos Prontos 5\pfr.png"
    20    inkscape:export-xdpi="90"
    21    inkscape:export-ydpi="90"
     18   sodipodi:docname="Shell_and_Tubes_LMTD.svg"
     19   inkscape:export-filename="/media/sdb5/gerson/projetos/repositorio/biblioteca/trunk/eml/heat_exchangers/icon/Shell_and_Tubes_LMTD.png"
     20   inkscape:export-xdpi="108"
     21   inkscape:export-ydpi="108"
    2222   inkscape:output_extension="org.inkscape.output.svg.inkscape"
    23    sodipodi:modified="true">
     23   sodipodi:modified="true"
     24   version="1.0">
    2425  <metadata
    2526     id="metadata2069">
     
    3536  <defs
    3637     id="defs2067">
     38    <inkscape:perspective
     39       sodipodi:type="inkscape:persp3d"
     40       inkscape:vp_x="0 : 526.18109 : 1"
     41       inkscape:vp_y="0 : 1000 : 0"
     42       inkscape:vp_z="744.09448 : 526.18109 : 1"
     43       inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
     44       id="perspective76" />
    3745    <linearGradient
    3846       id="linearGradient10543">
     
    120128       xlink:href="#linearGradient6760"
    121129       id="linearGradient6385"
    122        x1="243.3891"
    123        y1="444.52151"
    124        x2="365.66113"
    125        y2="444.52158"
    126        gradientUnits="userSpaceOnUse"
    127        gradientTransform="matrix(0.3768791,0,0,0.6135983,-620.23828,-44.668469)" />
     130       x1="245.61723"
     131       y1="443.98077"
     132       x2="373.95956"
     133       y2="443.98083"
     134       gradientUnits="userSpaceOnUse"
     135       gradientTransform="matrix(0.4032455,0,0,0.4255443,-161.9293,-106.27941)" />
    128136    <linearGradient
    129137       inkscape:collect="always"
     
    287295       id="linearGradient26547"
    288296       gradientUnits="userSpaceOnUse"
    289        gradientTransform="matrix(0.4830015,0,0,3.8741889e-3,-650.42995,351.4482)"
     297       gradientTransform="matrix(0.7069901,0,0,3.3539357e-3,-735.15446,318.94755)"
    290298       x1="243.3891"
    291299       y1="444.52151"
     
    297305       id="linearGradient26549"
    298306       gradientUnits="userSpaceOnUse"
    299        gradientTransform="matrix(0.4830013,0,0,3.8741884e-3,-650.42997,353.34533)"
     307       gradientTransform="matrix(0.7069898,0,0,3.3539353e-3,-735.15449,320.58992)"
    300308       x1="243.3891"
    301309       y1="444.52151"
     
    307315       id="linearGradient2235"
    308316       gradientUnits="userSpaceOnUse"
    309        gradientTransform="matrix(0.3821741,0,0,0.100001,-621.87864,301.35055)"
    310        x1="245.2805"
     317       gradientTransform="matrix(0.408911,0,0,6.9352962e-2,-163.68442,133.69264)"
     318       x1="245.62129"
    311319       y1="367.63547"
    312320       x2="373.31812"
     
    317325       id="linearGradient3569"
    318326       gradientUnits="userSpaceOnUse"
    319        gradientTransform="matrix(0.4826426,0,0,4.2874738e-3,-650.3205,108.88575)"
    320        x1="243.3891"
    321        y1="444.52151"
    322        x2="366.54971"
    323        y2="444.52151" />
    324     <linearGradient
    325        inkscape:collect="always"
    326        xlink:href="#linearGradient6760"
    327        id="linearGradient3571"
    328        gradientUnits="userSpaceOnUse"
    329        gradientTransform="matrix(0.4826423,0,0,4.2874733e-3,-650.32053,110.98527)"
    330        x1="243.3891"
    331        y1="444.52151"
    332        x2="366.54971"
    333        y2="444.52151" />
    334     <linearGradient
    335        inkscape:collect="always"
    336        xlink:href="#linearGradient6760"
    337        id="linearGradient3577"
    338        gradientUnits="userSpaceOnUse"
    339        gradientTransform="matrix(0.4821333,0,0,4.9101553e-3,-650.16524,151.31056)"
    340        x1="243.3891"
    341        y1="444.52151"
    342        x2="366.54971"
    343        y2="444.52151" />
    344     <linearGradient
    345        inkscape:collect="always"
    346        xlink:href="#linearGradient6760"
    347        id="linearGradient3579"
    348        gradientUnits="userSpaceOnUse"
    349        gradientTransform="matrix(0.4821331,0,0,4.910155e-3,-650.16527,153.715)"
     327       gradientTransform="matrix(0.7064647,0,0,3.7117218e-3,-734.99425,108.95809)"
    350328       x1="243.3891"
    351329       y1="444.52151"
     
    357335       id="linearGradient3585"
    358336       gradientUnits="userSpaceOnUse"
    359        gradientTransform="matrix(8.6645573e-2,0,0,2.9257297e-2,-500.31478,119.31507)"
     337       gradientTransform="matrix(9.2707331e-2,0,0,2.0290599e-2,-35.077904,7.446901)"
    360338       x1="305.26898"
    361339       y1="212.32526"
     
    367345       id="linearGradient3587"
    368346       gradientUnits="userSpaceOnUse"
    369        gradientTransform="matrix(0.1597401,0,0,2.8645335e-3,83.264444,466.92037)"
     347       gradientTransform="matrix(0.1107834,0,0,3.0649362e-3,-17.555022,-0.6536283)"
    370348       x1="243.3891"
    371349       y1="444.52151"
     
    397375       id="linearGradient3623"
    398376       gradientUnits="userSpaceOnUse"
    399        gradientTransform="matrix(8.6645573e-2,0,0,2.9257297e-2,-500.31478,161.04458)"
     377       gradientTransform="matrix(9.2707331e-2,0,0,2.0290599e-2,-35.077904,36.387264)"
    400378       x1="305.26898"
    401379       y1="212.32526"
     
    407385       id="linearGradient3625"
    408386       gradientUnits="userSpaceOnUse"
    409        gradientTransform="matrix(0.1597401,0,0,2.8645335e-3,124.99394,466.92081)"
     387       gradientTransform="matrix(0.1107834,0,0,3.0649362e-3,11.385333,-0.6531531)"
    410388       x1="243.3891"
    411389       y1="444.52151"
     
    432410       x2="366.54971"
    433411       y2="444.52151" />
     412    <linearGradient
     413       inkscape:collect="always"
     414       xlink:href="#linearGradient6760"
     415       id="linearGradient3222"
     416       gradientUnits="userSpaceOnUse"
     417       gradientTransform="matrix(0.1107833,0,0,3.0649359e-3,-50.01597,-74.08173)"
     418       x1="243.3891"
     419       y1="444.52151"
     420       x2="366.54971"
     421       y2="444.52151" />
     422    <linearGradient
     423       inkscape:collect="always"
     424       xlink:href="#linearGradient6760"
     425       id="linearGradient3225"
     426       gradientUnits="userSpaceOnUse"
     427       gradientTransform="matrix(9.2707258e-2,0,0,2.0290601e-2,38.349851,-25.014039)"
     428       x1="305.26898"
     429       y1="212.32526"
     430       x2="305.26898"
     431       y2="646.74139" />
     432    <linearGradient
     433       inkscape:collect="always"
     434       xlink:href="#linearGradient6760"
     435       id="linearGradient3228"
     436       gradientUnits="userSpaceOnUse"
     437       gradientTransform="matrix(0.1107833,0,0,3.0649359e-3,-194.00573,-74.083346)"
     438       x1="243.3891"
     439       y1="444.52151"
     440       x2="366.54971"
     441       y2="444.52151" />
     442    <linearGradient
     443       inkscape:collect="always"
     444       xlink:href="#linearGradient6760"
     445       id="linearGradient3231"
     446       gradientUnits="userSpaceOnUse"
     447       gradientTransform="matrix(9.2707258e-2,0,0,2.0290601e-2,38.349851,-169.0038)"
     448       x1="305.26898"
     449       y1="212.32526"
     450       x2="305.26898"
     451       y2="646.74139" />
    434452  </defs>
    435453  <sodipodi:namedview
    436      inkscape:window-height="949"
    437      inkscape:window-width="1280"
     454     inkscape:window-height="926"
     455     inkscape:window-width="1268"
    438456     inkscape:pageshadow="2"
    439457     inkscape:pageopacity="0.0"
     
    447465     showgrid="true"
    448466     showguides="true"
    449      inkscape:zoom="2.4616542"
    450      inkscape:cx="278.83791"
    451      inkscape:cy="536.25393"
     467     inkscape:zoom="3.4813048"
     468     inkscape:cx="126.67534"
     469     inkscape:cy="28.853068"
    452470     inkscape:window-x="0"
    453      inkscape:window-y="25"
     471     inkscape:window-y="44"
    454472     inkscape:current-layer="svg2064"
    455      inkscape:guide-bbox="true" />
     473     inkscape:guide-bbox="true"
     474     showborder="false"
     475     inkscape:showpageshadow="false" />
    456476  <rect
    457477     transform="matrix(0,-1,1,0,0,0)"
    458      rx="23.681614"
    459      ry="10.377322"
    460      y="326.43665"
    461      x="-527.90607"
    462      height="58.767086"
    463      width="48.467449"
     478     rx="25.338377"
     479     ry="7.1969085"
     480     y="151.09039"
     481     x="-63.13752"
     482     height="40.756306"
     483     width="51.858234"
    464484     id="rect2229"
    465      style="opacity:1;fill:url(#linearGradient2235);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.45099375;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
     485     style="opacity:1;fill:url(#linearGradient2235);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.22957045;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
    466486  <g
    467487     id="g5069"
    468488     style="fill:url(#linearGradient5143);fill-opacity:1;fill-rule:nonzero"
    469      transform="matrix(1.158344e-8,-0.836391,-1.541764,0,1677.846,672.6111)" />
    470   <rect
    471      style="fill:url(#linearGradient6385);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.10938132;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
     489     transform="matrix(1.158344e-8,-0.836391,-1.541764,0,1569.1662,203.16318)" />
     490  <rect
     491     style="fill:url(#linearGradient6385);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.22957045;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
    472492     id="rect16940"
    473      width="48.164581"
    474      height="245.18755"
    475      x="-527.56781"
    476      y="109.25777"
    477      ry="0"
    478      rx="13.87402"
     493     width="51.534176"
     494     height="170.04312"
     495     x="-62.7756"
     496     y="0.47193456"
     497     ry="0"
     498     rx="14.844646"
    479499     transform="matrix(0,-1,1,0,0,0)" />
    480500  <rect
    481      style="fill:url(#linearGradient26547);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.713902;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
    482      id="rect26543"
    483      width="57.071758"
    484      height="1.5005769"
    485      x="-531.6651"
    486      y="352.42014"
    487      ry="0"
    488      rx="28.535879"
     501     transform="matrix(0,-1,1,0,0,0)"
     502     rx="30.509558"
     503     ry="0"
     504     y="0.11478522"
     505     x="-67.136963"
     506     height="1.1517005"
     507     width="61.019115"
     508     id="rect3567"
     509     style="fill:#280b0b;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.22957045;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
     510  <rect
     511     style="fill:#280b0b;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.22957045;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
     512     id="rect3575"
     513     width="60.954746"
     514     height="1.318965"
     515     x="-67.104614"
     516     y="32.158321"
     517     ry="0"
     518     rx="30.477373"
    489519     transform="matrix(0,-1,1,0,0,0)" />
    490520  <rect
    491      style="fill:url(#linearGradient26549);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.71390188;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
    492      id="rect26545"
    493      width="57.071758"
    494      height="1.5005769"
    495      x="-531.6651"
    496      y="354.31726"
    497      ry="0"
    498      rx="28.535879"
     521     transform="matrix(0,-1,1,0,0,0)"
     522     rx="5.4494071"
     523     ry="0"
     524     y="11.928657"
     525     x="-12.226699"
     526     height="8.4674559"
     527     width="10.898814"
     528     id="rect3581"
     529     style="fill:url(#linearGradient3585);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.22957045;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
     530  <rect
     531     transform="matrix(1,-1.122173e-5,0,1,0,0)"
     532     rx="6.545114"
     533     ry="0"
     534     y="0.11504081"
     535     x="9.6853418"
     536     height="1.1871309"
     537     width="13.090228"
     538     id="rect3583"
     539     style="fill:url(#linearGradient3587);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.22957045;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
     540  <rect
     541     style="fill:url(#linearGradient3225);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.22957045;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
     542     id="rect3603"
     543     width="10.898814"
     544     height="8.4674559"
     545     x="61.20113"
     546     y="-20.532284"
     547     ry="0"
     548     rx="5.4494071"
     549     transform="matrix(0,1,-1,0,0,0)" />
     550  <rect
     551     style="fill:url(#linearGradient3222);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.22957045;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
     552     id="rect3605"
     553     width="13.090226"
     554     height="1.1871308"
     555     x="-22.775587"
     556     y="-73.313004"
     557     ry="0"
     558     rx="6.5451131"
     559     transform="matrix(-1,1.1221729e-5,0,-1,0,0)" />
     560  <rect
     561     style="fill:url(#linearGradient3623);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.22957045;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
     562     id="rect3619"
     563     width="10.898814"
     564     height="8.4674559"
     565     x="-12.226699"
     566     y="40.869038"
     567     ry="0"
     568     rx="5.4494071"
    499569     transform="matrix(0,-1,1,0,0,0)" />
    500570  <rect
    501      transform="matrix(0,-1,1,0,0,0)"
    502      rx="28.514671"
    503      ry="0"
    504      y="109.96134"
    505      x="-531.64398"
    506      height="1.6606534"
    507      width="57.029343"
    508      id="rect3565"
    509      style="fill:url(#linearGradient3569);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.75073647;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
    510   <rect
    511      transform="matrix(0,-1,1,0,0,0)"
    512      rx="28.514671"
    513      ry="0"
    514      y="112.06085"
    515      x="-531.64398"
    516      height="1.6606531"
    517      width="57.029343"
    518      id="rect3567"
    519      style="fill:url(#linearGradient3571);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.7507363;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
    520   <rect
    521      style="fill:url(#linearGradient3577);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.80298078;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
    522      id="rect3573"
    523      width="56.969181"
    524      height="1.9018342"
    525      x="-531.61377"
    526      y="152.54237"
    527      ry="0"
    528      rx="28.484591"
    529      transform="matrix(0,-1,1,0,0,0)" />
    530   <rect
    531      style="fill:url(#linearGradient3579);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.80298072;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
    532      id="rect3575"
    533      width="56.969181"
    534      height="1.9018341"
    535      x="-531.61377"
    536      y="154.94681"
    537      ry="0"
    538      rx="28.484591"
    539      transform="matrix(0,-1,1,0,0,0)" />
    540   <rect
    541      transform="matrix(0,-1,1,0,0,0)"
    542      rx="5.0930943"
    543      ry="0"
    544      y="125.77737"
    545      x="-478.9577"
    546      height="12.209343"
    547      width="10.186189"
    548      id="rect3581"
    549      style="fill:url(#linearGradient3585);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.40073827;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
    550   <rect
    551      transform="matrix(1,-7.273659e-6,0,1,0,0)"
    552      rx="9.4374914"
    553      ry="0"
    554      y="467.63876"
    555      x="122.54271"
    556      height="1.1095097"
    557      width="18.874983"
    558      id="rect3583"
    559      style="fill:url(#linearGradient3587);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.35302672;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
    560   <g
    561      id="g3611"
    562      transform="matrix(-0.6386346,0,0,-0.6795485,269.92064,933.35158)">
    563     <rect
    564        transform="matrix(0,-1,1,0,0,0)"
    565        rx="7.4948206"
    566        ry="0"
    567        y="206.28006"
    568        x="-597.29205"
    569        height="19.117886"
    570        width="14.989641"
    571        id="rect3603"
    572        style="fill:url(#linearGradient3615);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.60830927;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
    573     <rect
    574        transform="matrix(1,-6.835729e-6,0,1,0,0)"
    575        rx="14.777607"
    576        ry="0"
    577        y="580.63574"
    578        x="201.21512"
    579        height="1.6327158"
    580        width="29.555214"
    581        id="rect3605"
    582        style="fill:url(#linearGradient3617);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.53588444;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
    583   </g>
    584   <rect
    585      style="fill:url(#linearGradient3623);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.40073827;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
    586      id="rect3619"
    587      width="10.186189"
    588      height="12.209343"
    589      x="-478.9577"
    590      y="167.50691"
    591      ry="0"
    592      rx="5.0930943"
    593      transform="matrix(0,-1,1,0,0,0)" />
    594   <rect
    595      style="fill:url(#linearGradient3625);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.35302672;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
     571     style="fill:url(#linearGradient3625);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.22957045;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
    596572     id="rect3621"
    597      width="18.874983"
    598      height="1.1095097"
    599      x="164.27225"
    600      y="467.6395"
    601      ry="0"
    602      rx="9.4374914"
    603      transform="matrix(1,-7.273659e-6,0,1,0,0)" />
    604   <g
    605      transform="matrix(-0.6386346,0,0,-0.6795485,477.54149,933.35158)"
    606      id="g3627">
    607     <rect
    608        style="fill:url(#linearGradient3633);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.60830927;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
    609        id="rect3629"
    610        width="14.989641"
    611        height="19.117886"
    612        x="-597.29205"
    613        y="206.28006"
    614        ry="0"
    615        rx="7.4948206"
    616        transform="matrix(0,-1,1,0,0,0)" />
    617     <rect
    618        style="fill:url(#linearGradient3635);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.53588444;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
    619        id="rect3631"
    620        width="29.555214"
    621        height="1.6327158"
    622        x="201.21512"
    623        y="580.63574"
    624        ry="0"
    625        rx="14.777607"
    626        transform="matrix(1,-6.835729e-6,0,1,0,0)" />
    627   </g>
     573     width="13.090228"
     574     height="1.1871309"
     575     x="38.625725"
     576     y="0.11582158"
     577     ry="0"
     578     rx="6.545114"
     579     transform="matrix(1,-1.122173e-5,0,1,0,0)" />
     580  <rect
     581     transform="matrix(0,1,-1,0,0,0)"
     582     rx="5.4494071"
     583     ry="0"
     584     y="-164.52205"
     585     x="61.20113"
     586     height="8.4674559"
     587     width="10.898814"
     588     id="rect3629"
     589     style="fill:url(#linearGradient3231);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.22957045;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
     590  <rect
     591     transform="matrix(-1,1.1221729e-5,0,-1,0,0)"
     592     rx="6.5451131"
     593     ry="0"
     594     y="-73.314606"
     595     x="-166.76534"
     596     height="1.1871308"
     597     width="13.090226"
     598     id="rect3631"
     599     style="fill:url(#linearGradient3228);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.22957045;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
    628600  <path
    629      style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.99190265px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
    630      d="M 187,479.85412 C 187,489.69283 187,499.53154 187,509.37024"
     601     style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.85444307px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
     602     d="M 54.387932,11.723871 C 54.387932,22.250895 54.387932,32.777926 54.387932,43.304935"
    631603     id="path2220" />
    632604  <path
    633      style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.96354789px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
    634      d="M 214.86197,499.04145 C 214.86197,508.3257 214.86197,517.60994 214.86197,526.89418"
     605     style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.83001781px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
     606     d="M 73.71084,32.253546 C 73.71084,42.187325 73.71084,52.121089 73.71084,62.054853"
    635607     id="path2222" />
    636608  <path
    637609     id="path2226"
    638      d="M 242.86197,479.04145 C 242.86197,488.3257 242.86197,497.60994 242.86197,506.89418"
    639      style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.96354789px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
     610     d="M 93.129472,12.316297 C 93.129472,22.250076 93.129472,32.18384 93.129472,42.117604"
     611     style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.83001781px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
    640612  <path
    641613     id="path2230"
    642      d="M 270.86197,499.04145 C 270.86197,508.3257 270.86197,517.60994 270.86197,526.89418"
    643      style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.96354789px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
     614     d="M 112.5481,32.253546 C 112.5481,42.187325 112.5481,52.121089 112.5481,62.054853"
     615     style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.83001781px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
    644616  <path
    645      style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.96354789px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
    646      d="M 298.86197,479.04145 C 298.86197,488.3257 298.86197,497.60994 298.86197,506.89418"
     617     style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.83001781px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
     618     d="M 131.96674,12.316297 C 131.96674,22.250076 131.96674,32.18384 131.96674,42.117604"
    647619     id="path2234" />
    648620  <path
    649      style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.96354789px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
    650      d="M 326.86197,499.04145 C 326.86197,508.3257 326.86197,517.60994 326.86197,526.89418"
     621     style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.83001781px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
     622     d="M 151.38537,32.253546 C 151.38537,42.187325 151.38537,52.121089 151.38537,62.054853"
    651623     id="path2239" />
     624  <rect
     625     style="fill:#280b0b;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.22957045;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
     626     id="rect3219"
     627     width="60.954746"
     628     height="1.318965"
     629     x="-67.084137"
     630     y="170.19449"
     631     ry="0"
     632     rx="30.477373"
     633     transform="matrix(0,-1,1,0,0,0)" />
    652634</svg>
Note: See TracChangeset for help on using the changeset viewer.