Commit b8f1a2b6 authored by claes's avatar claes

Drawing of gradients added to Ge

parent 11e5bf2d
This diff is collapsed.
/* /*
* Proview $Id: ge_gtk.h,v 1.10 2008-10-31 12:51:33 claes Exp $ * Proview $Id: ge_gtk.h,v 1.11 2008-11-20 10:30:51 claes Exp $
* Copyright (C) 2005 SSAB Oxelsund AB. * Copyright (C) 2005 SSAB Oxelsund AB.
* *
* This program is free software; you can redistribute it and/or * This program is free software; you can redistribute it and/or
...@@ -194,6 +194,27 @@ class GeGtk : public Ge { ...@@ -194,6 +194,27 @@ class GeGtk : public Ge {
static void activate_decr_intensity( GtkWidget *w, gpointer gectx); static void activate_decr_intensity( GtkWidget *w, gpointer gectx);
static void activate_incr_shift( GtkWidget *w, gpointer gectx); static void activate_incr_shift( GtkWidget *w, gpointer gectx);
static void activate_decr_shift( GtkWidget *w, gpointer gectx); static void activate_decr_shift( GtkWidget *w, gpointer gectx);
static void activate_gradient_no( GtkWidget *w, gpointer gectx);
static void activate_gradient_horizup( GtkWidget *w, gpointer gectx);
static void activate_gradient_horizdown( GtkWidget *w, gpointer gectx);
static void activate_gradient_horiztube1( GtkWidget *w, gpointer gectx);
static void activate_gradient_horiztube2( GtkWidget *w, gpointer gectx);
static void activate_gradient_vertleft( GtkWidget *w, gpointer gectx);
static void activate_gradient_vertright( GtkWidget *w, gpointer gectx);
static void activate_gradient_verttube1( GtkWidget *w, gpointer gectx);
static void activate_gradient_verttube2( GtkWidget *w, gpointer gectx);
static void activate_gradient_diagupperleft( GtkWidget *w, gpointer gectx);
static void activate_gradient_diaglowerleft( GtkWidget *w, gpointer gectx);
static void activate_gradient_diagupperright( GtkWidget *w, gpointer gectx);
static void activate_gradient_diaglowerright( GtkWidget *w, gpointer gectx);
static void activate_gradient_diaguptube( GtkWidget *w, gpointer gectx);
static void activate_gradient_diagdowntube( GtkWidget *w, gpointer gectx);
static void activate_gradient_globe( GtkWidget *w, gpointer gectx);
static void activate_gradient_radcenter( GtkWidget *w, gpointer gectx);
static void activate_gradient_radupperleft( GtkWidget *w, gpointer gectx);
static void activate_gradient_radlowerleft( GtkWidget *w, gpointer gectx);
static void activate_gradient_radupperright( GtkWidget *w, gpointer gectx);
static void activate_gradient_radlowerright( GtkWidget *w, gpointer gectx);
static void activate_scale( GtkWidget *w, gpointer gectx); static void activate_scale( GtkWidget *w, gpointer gectx);
static void activate_scale_double( GtkWidget *w, gpointer gectx); static void activate_scale_double( GtkWidget *w, gpointer gectx);
static void activate_scale_half( GtkWidget *w, gpointer gectx); static void activate_scale_half( GtkWidget *w, gpointer gectx);
......
/* /*
* Proview $Id: ge.cpp,v 1.33 2008-10-31 12:51:33 claes Exp $ * Proview $Id: ge.cpp,v 1.34 2008-11-20 10:30:51 claes Exp $
* Copyright (C) 2005 SSAB Oxelsund AB. * Copyright (C) 2005 SSAB Oxelsund AB.
* *
* This program is free software; you can redistribute it and/or * This program is free software; you can redistribute it and/or
...@@ -1763,6 +1763,11 @@ void Ge::activate_background_color() ...@@ -1763,6 +1763,11 @@ void Ge::activate_background_color()
graph->set_background_color(); graph->set_background_color();
} }
void Ge::activate_gradient( glow_eGradient gradient)
{
graph->set_select_gradient( gradient);
}
void Ge::activate_help() void Ge::activate_help()
{ {
CoXHelp::dhelp( "index", "", navh_eHelpFile_Other, "$pwr_lang/man_geref.dat", false); CoXHelp::dhelp( "index", "", navh_eHelpFile_Other, "$pwr_lang/man_geref.dat", false);
......
/* /*
* Proview $Id: ge.h,v 1.14 2008-10-31 12:51:34 claes Exp $ * Proview $Id: ge.h,v 1.15 2008-11-20 10:30:51 claes Exp $
* Copyright (C) 2005 SSAB Oxelsund AB. * Copyright (C) 2005 SSAB Oxelsund AB.
* *
* This program is free software; you can redistribute it and/or * This program is free software; you can redistribute it and/or
...@@ -246,6 +246,7 @@ class Ge { ...@@ -246,6 +246,7 @@ class Ge {
void activate_condir_up(); void activate_condir_up();
void activate_condir_down(); void activate_condir_down();
void activate_background_color(); void activate_background_color();
void activate_gradient( glow_eGradient gradient);
void activate_help(); void activate_help();
void activate_help_subgraph(); void activate_help_subgraph();
void activate_india_ok( char *value); void activate_india_ok( char *value);
......
/* /*
* Proview $Id: ge_attrnav.cpp,v 1.22 2008-10-31 12:51:34 claes Exp $ * Proview $Id: ge_attrnav.cpp,v 1.23 2008-11-20 10:30:51 claes Exp $
* Copyright (C) 2005 SSAB Oxelsund AB. * Copyright (C) 2005 SSAB Oxelsund AB.
* *
* This program is free software; you can redistribute it and/or * This program is free software; you can redistribute it and/or
...@@ -914,6 +914,30 @@ static attrnav_sEnumElement elem_curve_datatype[] = { ...@@ -914,6 +914,30 @@ static attrnav_sEnumElement elem_curve_datatype[] = {
{ (int) ge_eCurveDataType_TableObject, "TableObject"}, { (int) ge_eCurveDataType_TableObject, "TableObject"},
{ 0, ""}}; { 0, ""}};
static attrnav_sEnumElement elem_gradient[] = {
{ (int) glow_eGradient_No, "No"},
{ (int) glow_eGradient_HorizontalUp, "HorizontalUp"},
{ (int) glow_eGradient_HorizontalDown, "HorizontalDown"},
{ (int) glow_eGradient_HorizontalTube1, "HorizontalTube1"},
{ (int) glow_eGradient_HorizontalTube2, "HorizontalTube2"},
{ (int) glow_eGradient_VerticalLeft, "VerticalLeft"},
{ (int) glow_eGradient_VerticalRight, "VerticalRight"},
{ (int) glow_eGradient_VerticalTube1, "VerticalTube1"},
{ (int) glow_eGradient_VerticalTube2, "VerticalTube2"},
{ (int) glow_eGradient_DiagonalUpperLeft, "DiagonalUpperLeft"},
{ (int) glow_eGradient_DiagonalLowerLeft, "DiagonalLowerLeft"},
{ (int) glow_eGradient_DiagonalUpperRight, "DiagonalUpperRight"},
{ (int) glow_eGradient_DiagonalLowerRight, "DiagonalLowerRight"},
{ (int) glow_eGradient_DiagonalUpTube, "DiagonalUpTube"},
{ (int) glow_eGradient_DiagonalDownTube, "DiagonalDownTube"},
{ (int) glow_eGradient_Globe, "Globe"},
{ (int) glow_eGradient_RadialCenter, "RadialCenter"},
{ (int) glow_eGradient_RadialUpperLeft, "RadialUpperLeft"},
{ (int) glow_eGradient_RadialLowerLeft, "RadialLowerLeft"},
{ (int) glow_eGradient_RadialUpperRight, "RadialUpperRight"},
{ (int) glow_eGradient_RadialLowerRight, "RadialLowerRight"},
{ 0, ""}};
static attrnav_sEnum enum_types[] = { static attrnav_sEnum enum_types[] = {
{ (int) glow_eType_Direction, (attrnav_sEnumElement *) &elem_direction}, { (int) glow_eType_Direction, (attrnav_sEnumElement *) &elem_direction},
{ (int) glow_eType_Color, (attrnav_sEnumElement *) &elem_color}, { (int) glow_eType_Color, (attrnav_sEnumElement *) &elem_color},
...@@ -930,6 +954,7 @@ static attrnav_sEnum enum_types[] = { ...@@ -930,6 +954,7 @@ static attrnav_sEnum enum_types[] = {
{ (int) glow_eType_Adjustment, (attrnav_sEnumElement *) &elem_adjustment}, { (int) glow_eType_Adjustment, (attrnav_sEnumElement *) &elem_adjustment},
{ (int) glow_eType_Font, (attrnav_sEnumElement *) &elem_font}, { (int) glow_eType_Font, (attrnav_sEnumElement *) &elem_font},
{ (int) ge_eAttrType_CurveDataType, (attrnav_sEnumElement *) &elem_curve_datatype}, { (int) ge_eAttrType_CurveDataType, (attrnav_sEnumElement *) &elem_curve_datatype},
{ (int) glow_eType_Gradient, (attrnav_sEnumElement *) &elem_gradient},
{ 0, NULL}}; { 0, NULL}};
static attrnav_sEnum mask_types[] = { static attrnav_sEnum mask_types[] = {
...@@ -992,6 +1017,7 @@ int attrnav_attr_string_to_value( int type_id, char *value_str, ...@@ -992,6 +1017,7 @@ int attrnav_attr_string_to_value( int type_id, char *value_str,
case glow_eType_InputFocusMark: case glow_eType_InputFocusMark:
case glow_eType_Relief: case glow_eType_Relief:
case glow_eType_TextSize: case glow_eType_TextSize:
case glow_eType_Gradient:
case ge_eAttrType_DynType: case ge_eAttrType_DynType:
case ge_eAttrType_DynTypeTone: case ge_eAttrType_DynTypeTone:
case ge_eAttrType_ActionType: case ge_eAttrType_ActionType:
...@@ -1074,6 +1100,7 @@ void attrnav_attrvalue_to_string( int type_id, void *value_ptr, ...@@ -1074,6 +1100,7 @@ void attrnav_attrvalue_to_string( int type_id, void *value_ptr,
case glow_eType_InputFocusMark: case glow_eType_InputFocusMark:
case glow_eType_Relief: case glow_eType_Relief:
case glow_eType_TextSize: case glow_eType_TextSize:
case glow_eType_Gradient:
case ge_eAttrType_AnimSequence: case ge_eAttrType_AnimSequence:
case ge_eAttrType_LimitType: case ge_eAttrType_LimitType:
case ge_eAttrType_ScaleType: case ge_eAttrType_ScaleType:
...@@ -2129,6 +2156,7 @@ ItemLocal::ItemLocal( AttrNav *attrnav, const char *item_name, const char *attr, ...@@ -2129,6 +2156,7 @@ ItemLocal::ItemLocal( AttrNav *attrnav, const char *item_name, const char *attr,
case glow_eType_InputFocusMark: case glow_eType_InputFocusMark:
case glow_eType_Relief: case glow_eType_Relief:
case glow_eType_TextSize: case glow_eType_TextSize:
case glow_eType_Gradient:
case ge_eAttrType_DynType: case ge_eAttrType_DynType:
case ge_eAttrType_DynTypeTone: case ge_eAttrType_DynTypeTone:
case ge_eAttrType_ActionType: case ge_eAttrType_ActionType:
......
/* /*
* Proview $Id: ge_graph.cpp,v 1.55 2008-10-31 12:51:34 claes Exp $ * Proview $Id: ge_graph.cpp,v 1.56 2008-11-20 10:30:51 claes Exp $
* Copyright (C) 2005 SSAB Oxelsund AB. * Copyright (C) 2005 SSAB Oxelsund AB.
* *
* This program is free software; you can redistribute it and/or * This program is free software; you can redistribute it and/or
...@@ -1035,6 +1035,15 @@ void Graph::set_select_shadow( int border) ...@@ -1035,6 +1035,15 @@ void Graph::set_select_shadow( int border)
journal_store( journal_eAction_PostPropertiesSelect, 0); journal_store( journal_eAction_PostPropertiesSelect, 0);
} }
void Graph::set_select_gradient( glow_eGradient gradient)
{
journal_store( journal_eAction_AntePropertiesSelect, 0);
grow_SetSelectGradient( grow->ctx, gradient);
journal_store( journal_eAction_PostPropertiesSelect, 0);
}
void Graph::set_select_textsize( int size) void Graph::set_select_textsize( int size)
{ {
int textsize; int textsize;
......
/* /*
* Proview $Id: ge_graph.h,v 1.35 2008-10-31 12:51:34 claes Exp $ * Proview $Id: ge_graph.h,v 1.36 2008-11-20 10:30:52 claes Exp $
* Copyright (C) 2005 SSAB Oxelsund AB. * Copyright (C) 2005 SSAB Oxelsund AB.
* *
* This program is free software; you can redistribute it and/or * This program is free software; you can redistribute it and/or
...@@ -662,6 +662,10 @@ class Graph { ...@@ -662,6 +662,10 @@ class Graph {
/*! /param shadow Shadow. */ /*! /param shadow Shadow. */
void set_select_shadow( int shadow); void set_select_shadow( int shadow);
//! Set gradient type on all selected objects.
/*! /param gradient Gradient. */
void set_select_gradient( glow_eGradient gradient);
//! Set backgound color. //! Set backgound color.
/*! Background color is set to the currently selected fill color. */ /*! Background color is set to the currently selected fill color. */
void set_background_color(); void set_background_color();
......
...@@ -18,19 +18,19 @@ ...@@ -18,19 +18,19 @@
101 20 101 20
102 -33 102 -33
103 -151 103 -151
104 13.2992 104 12.1923
136 13.2992 136 12.1923
105 100 105 100
106 -6 106 -6
107 -30 107 -28
108 5.1 108 5.1
109 0.2 109 0.2
110 1.8 110 1.8
111 0.2 111 0.2
116 0 116 0
117 0 117 0
118 137 118 126
119 126 119 113
120 1 120 1
121 Claes context 121 Claes context
122 0 122 0
...@@ -127,6 +127,9 @@ pwr_exe: ...@@ -127,6 +127,9 @@ pwr_exe:
1919 0 1919 0
1920 0 1920 0
1917 0 1917 0
1921 0
1922 2
1923 0
1907 0 1907 0
1906 1906
1905 1905
......
...@@ -22,6 +22,9 @@ ...@@ -22,6 +22,9 @@
1919 0 1919 0
1920 0 1920 0
1917 0 1917 0
1921 0
1922 2
1923 0
1907 0 1907 0
1906 1906
1905 1905
......
...@@ -18,19 +18,19 @@ ...@@ -18,19 +18,19 @@
101 20 101 20
102 -33 102 -33
103 -151 103 -151
104 13.2992 104 12.1923
136 13.2992 136 12.1923
105 100 105 100
106 -6 106 -6
107 -30 107 -28
108 5.1 108 5.1
109 0.2 109 0.2
110 1.8 110 1.8
111 0.2 111 0.2
116 0 116 0
117 0 117 0
118 137 118 126
119 126 119 113
120 1 120 1
121 Claes context 121 Claes context
122 0 122 0
...@@ -127,6 +127,9 @@ pwr_exe: ...@@ -127,6 +127,9 @@ pwr_exe:
1919 0 1919 0
1920 0 1920 0
1917 0 1917 0
1921 0
1922 2
1923 0
1907 0 1907 0
1906 1906
1905 1905
......
...@@ -22,6 +22,9 @@ ...@@ -22,6 +22,9 @@
1919 0 1919 0
1920 0 1920 0
1917 0 1917 0
1921 0
1922 2
1923 0
1907 0 1907 0
1906 1906
1905 1905
......
...@@ -19,19 +19,19 @@ ...@@ -19,19 +19,19 @@
101 20 101 20
102 -33 102 -33
103 -151 103 -151
104 13.2992 104 12.1923
136 13.2992 136 12.1923
105 100 105 100
106 -6 106 -6
107 -30 107 -28
108 5.1 108 5.1
109 0.2 109 0.2
110 1.8 110 1.8
111 0.2 111 0.2
116 0 116 0
117 0 117 0
118 137 118 126
119 126 119 113
120 1 120 1
121 Claes context 121 Claes context
122 0 122 0
...@@ -128,6 +128,9 @@ pwr_exe: ...@@ -128,6 +128,9 @@ pwr_exe:
1919 0 1919 0
1920 0 1920 0
1917 0 1917 0
1921 0
1922 2
1923 0
1907 0 1907 0
1906 1906
1905 1905
......
...@@ -22,6 +22,9 @@ ...@@ -22,6 +22,9 @@
1919 0 1919 0
1920 0 1920 0
1917 0 1917 0
1921 0
1922 2
1923 0
1907 0 1907 0
1906 1906
1905 1905
......
...@@ -18,19 +18,19 @@ ...@@ -18,19 +18,19 @@
101 20 101 20
102 -123 102 -123
103 -155 103 -155
104 8.45416 104 7.7505
136 8.45416 136 7.7505
105 100 105 100
106 -25 106 -22
107 -31 107 -28
108 5.1 108 5.1
109 0.2 109 0.2
110 1.8 110 1.8
111 0.2 111 0.2
116 0 116 0
117 0 117 0
118 138 118 126
119 126 119 113
120 1 120 1
121 Claes context 121 Claes context
122 0 122 0
...@@ -127,6 +127,9 @@ pwr_exe: ...@@ -127,6 +127,9 @@ pwr_exe:
1919 0 1919 0
1920 0 1920 0
1917 0 1917 0
1921 0
1922 2
1923 0
1907 0 1907 0
1906 1906
1905 1905
...@@ -215,6 +218,9 @@ pwr_exe: ...@@ -215,6 +218,9 @@ pwr_exe:
2620 0 2620 0
2621 0 2621 0
2622 0 2622 0
2623 0
2624 2
2625 0
99 99
99 99
99 99
...@@ -22,6 +22,9 @@ ...@@ -22,6 +22,9 @@
1919 0 1919 0
1920 0 1920 0
1917 0 1917 0
1921 0
1922 2
1923 0
1907 0 1907 0
1906 1906
1905 1905
...@@ -110,6 +113,9 @@ ...@@ -110,6 +113,9 @@
2620 0 2620 0
2621 0 2621 0
2622 0 2622 0
2623 0
2624 2
2625 0
99 99
99 99
302 0 302 0
......
...@@ -18,10 +18,10 @@ ...@@ -18,10 +18,10 @@
101 20 101 20
102 -102 102 -102
103 -44 103 -44
104 32.7742 104 30.0463
136 32.7742 136 30.0463
105 100 105 100
106 -20 106 -19
107 -8 107 -8
108 1.5 108 1.5
109 0 109 0
...@@ -29,8 +29,8 @@ ...@@ -29,8 +29,8 @@
111 0 111 0
116 0 116 0
117 0 117 0
118 137 118 127
119 126 119 113
120 0 120 0
121 Claes context 121 Claes context
122 0 122 0
...@@ -127,6 +127,9 @@ pwr_exe: ...@@ -127,6 +127,9 @@ pwr_exe:
1919 0 1919 0
1920 0 1920 0
1917 0 1917 0
1921 0
1922 4
1923 0
1907 0 1907 0
1906 1906
1905 1905
...@@ -253,7 +256,7 @@ pwr_exe: ...@@ -253,7 +256,7 @@ pwr_exe:
2614 7 2614 7
2617 2 2617 2
2615 1 2615 1
2618 0 2618 1
2607 0 2607 0
2606 2606
2612 2612
...@@ -271,6 +274,9 @@ pwr_exe: ...@@ -271,6 +274,9 @@ pwr_exe:
2620 0 2620 0
2621 0 2621 0
2622 0 2622 0
2623 0
2624 4
2625 1
99 99
19 19
1904 O3 1904 O3
...@@ -289,7 +295,10 @@ pwr_exe: ...@@ -289,7 +295,10 @@ pwr_exe:
1918 0 1918 0
1919 0 1919 0
1920 0 1920 0
1917 0 1917 1
1921 0
1922 4
1923 1
1907 0 1907 0
1906 1906
1905 1905
......
...@@ -22,6 +22,9 @@ ...@@ -22,6 +22,9 @@
1919 0 1919 0
1920 0 1920 0
1917 0 1917 0
1921 0
1922 4
1923 0
1907 0 1907 0
1906 1906
1905 1905
...@@ -148,7 +151,7 @@ ...@@ -148,7 +151,7 @@
2614 7 2614 7
2617 2 2617 2
2615 1 2615 1
2618 0 2618 1
2607 0 2607 0
2606 2606
2612 2612
...@@ -166,6 +169,9 @@ ...@@ -166,6 +169,9 @@
2620 0 2620 0
2621 0 2621 0
2622 0 2622 0
2623 0
2624 4
2625 1
99 99
19 19
1904 O3 1904 O3
...@@ -184,7 +190,10 @@ ...@@ -184,7 +190,10 @@
1918 0 1918 0
1919 0 1919 0
1920 0 1920 0
1917 0 1917 1
1921 0
1922 4
1923 1
1907 0 1907 0
1906 1906
1905 1905
......
...@@ -18,19 +18,19 @@ ...@@ -18,19 +18,19 @@
101 20 101 20
102 -231 102 -231
103 -280 103 -280
104 3.82924 104 3.51053
136 3.82924 136 3.51053
105 100 105 100
106 -47 106 -43
107 -57 107 -52
108 4.5 108 4.5
109 0 109 0
110 4 110 4
111 0 111 0
116 0 116 0
117 0 117 0
118 138 118 126
119 126 119 113
120 1 120 1
121 Claes context 121 Claes context
122 0 122 0
...@@ -127,6 +127,9 @@ pwr_exe: ...@@ -127,6 +127,9 @@ pwr_exe:
1919 0 1919 0
1920 0 1920 0
1917 0 1917 0
1921 0
1922 2
1923 0
1907 0 1907 0
1906 1906
1905 1905
...@@ -174,7 +177,10 @@ pwr_exe: ...@@ -174,7 +177,10 @@ pwr_exe:
1918 0 1918 0
1919 0 1919 0
1920 0 1920 0
1917 0 1917 1
1921 0
1922 2
1923 0
1907 0 1907 0
1906 1906
1905 1905
...@@ -303,6 +309,9 @@ pwr_exe: ...@@ -303,6 +309,9 @@ pwr_exe:
2620 0 2620 0
2621 0 2621 0
2622 0 2622 0
2623 0
2624 4
2625 1
99 99
24 24
2404 O3 2404 O3
...@@ -319,6 +328,9 @@ pwr_exe: ...@@ -319,6 +328,9 @@ pwr_exe:
2416 2 2416 2
2414 0 2414 0
2417 1 2417 1
2418 0
2419 4
2420 1
2407 0 2407 0
2406 2406
2405 2405
...@@ -343,7 +355,7 @@ pwr_exe: ...@@ -343,7 +355,7 @@ pwr_exe:
28 28
2800 1 2800 1
2801 0 2801 0
2802 0 2802 2.22045e-16
2803 0 2803 0
2804 1 2804 1
2805 0 2805 0
...@@ -368,6 +380,9 @@ pwr_exe: ...@@ -368,6 +380,9 @@ pwr_exe:
1919 0 1919 0
1920 0 1920 0
1917 0 1917 0
1921 0
1922 4
1923 0
1907 0 1907 0
1906 1906
1905 1905
......
...@@ -22,6 +22,9 @@ ...@@ -22,6 +22,9 @@
1919 0 1919 0
1920 0 1920 0
1917 0 1917 0
1921 0
1922 2
1923 0
1907 0 1907 0
1906 1906
1905 1905
...@@ -69,7 +72,10 @@ ...@@ -69,7 +72,10 @@
1918 0 1918 0
1919 0 1919 0
1920 0 1920 0
1917 0 1917 1
1921 0
1922 2
1923 0
1907 0 1907 0
1906 1906
1905 1905
...@@ -198,6 +204,9 @@ ...@@ -198,6 +204,9 @@
2620 0 2620 0
2621 0 2621 0
2622 0 2622 0
2623 0
2624 4
2625 1
99 99
24 24
2404 O3 2404 O3
...@@ -214,6 +223,9 @@ ...@@ -214,6 +223,9 @@
2416 2 2416 2
2414 0 2414 0
2417 1 2417 1
2418 0
2419 4
2420 1
2407 0 2407 0
2406 2406
2405 2405
...@@ -238,7 +250,7 @@ ...@@ -238,7 +250,7 @@
28 28
2800 1 2800 1
2801 0 2801 0
2802 0 2802 2.22045e-16
2803 0 2803 0
2804 1 2804 1
2805 0 2805 0
...@@ -263,6 +275,9 @@ ...@@ -263,6 +275,9 @@
1919 0 1919 0
1920 0 1920 0
1917 0 1917 0
1921 0
1922 4
1923 0
1907 0 1907 0
1906 1906
1905 1905
......
...@@ -18,19 +18,19 @@ ...@@ -18,19 +18,19 @@
101 20 101 20
102 -90 102 -90
103 -182 103 -182
104 10.145 104 9.30061
136 10.145 136 9.30061
105 100 105 100
106 -18 106 -16
107 -37 107 -34
108 5.1 108 5.1
109 0.2 109 0.2
110 1.8 110 1.8
111 0.2 111 0.2
116 0 116 0
117 0 117 0
118 138 118 126
119 126 119 113
120 1 120 1
121 Claes context 121 Claes context
122 0 122 0
...@@ -127,6 +127,9 @@ pwr_exe: ...@@ -127,6 +127,9 @@ pwr_exe:
1919 0 1919 0
1920 0 1920 0
1917 0 1917 0
1921 0
1922 2
1923 0
1907 0 1907 0
1906 1906
1905 1905
...@@ -215,6 +218,9 @@ pwr_exe: ...@@ -215,6 +218,9 @@ pwr_exe:
2620 0 2620 0
2621 0 2621 0
2622 0 2622 0
2623 0
2624 2
2625 0
99 99
99 99
99 99
...@@ -22,6 +22,9 @@ ...@@ -22,6 +22,9 @@
1919 0 1919 0
1920 0 1920 0
1917 0 1917 0
1921 0
1922 2
1923 0
1907 0 1907 0
1906 1906
1905 1905
...@@ -110,6 +113,9 @@ ...@@ -110,6 +113,9 @@
2620 0 2620 0
2621 0 2621 0
2622 0 2622 0
2623 0
2624 2
2625 0
99 99
99 99
302 0 302 0
......
...@@ -18,19 +18,19 @@ ...@@ -18,19 +18,19 @@
101 20 101 20
102 -33 102 -33
103 -151 103 -151
104 13.2992 104 12.1923
136 13.2992 136 12.1923
105 100 105 100
106 -6 106 -6
107 -30 107 -28
108 5.08896 108 5.08896
109 0.199266 109 0.199266
110 1.7934 110 1.7934
111 0.199266 111 0.199266
116 0 116 0
117 0 117 0
118 137 118 126
119 126 119 113
120 1 120 1
121 Claes context 121 Claes context
122 0 122 0
...@@ -127,6 +127,9 @@ pwr_exe: ...@@ -127,6 +127,9 @@ pwr_exe:
1919 0 1919 0
1920 0 1920 0
1917 0 1917 0
1921 0
1922 2
1923 0
1907 0 1907 0
1906 1906
1905 1905
......
...@@ -22,6 +22,9 @@ ...@@ -22,6 +22,9 @@
1919 0 1919 0
1920 0 1920 0
1917 0 1917 0
1921 0
1922 2
1923 0
1907 0 1907 0
1906 1906
1905 1905
......
...@@ -18,19 +18,19 @@ ...@@ -18,19 +18,19 @@
101 20 101 20
102 -33 102 -33
103 -151 103 -151
104 13.2992 104 12.1923
136 13.2992 136 12.1923
105 100 105 100
106 -6 106 -6
107 -30 107 -28
108 5.1 108 5.1
109 0.2 109 0.2
110 1.8 110 1.8
111 0.2 111 0.2
116 0 116 0
117 0 117 0
118 137 118 126
119 126 119 113
120 1 120 1
121 Claes context 121 Claes context
122 0 122 0
...@@ -127,6 +127,9 @@ pwr_exe: ...@@ -127,6 +127,9 @@ pwr_exe:
1919 0 1919 0
1920 0 1920 0
1917 0 1917 0
1921 0
1922 2
1923 0
1907 0 1907 0
1906 1906
1905 1905
......
...@@ -22,6 +22,9 @@ ...@@ -22,6 +22,9 @@
1919 0 1919 0
1920 0 1920 0
1917 0 1917 0
1921 0
1922 2
1923 0
1907 0 1907 0
1906 1906
1905 1905
......
...@@ -19,19 +19,19 @@ ...@@ -19,19 +19,19 @@
101 20 101 20
102 -33 102 -33
103 -151 103 -151
104 13.2992 104 12.1923
136 13.2992 136 12.1923
105 100 105 100
106 -6 106 -6
107 -30 107 -28
108 5.1 108 5.1
109 0.2 109 0.2
110 1.8 110 1.8
111 0.2 111 0.2
116 0 116 0
117 0 117 0
118 137 118 126
119 126 119 113
120 1 120 1
121 Claes context 121 Claes context
122 0 122 0
...@@ -128,6 +128,9 @@ pwr_exe: ...@@ -128,6 +128,9 @@ pwr_exe:
1919 0 1919 0
1920 0 1920 0
1917 0 1917 0
1921 0
1922 2
1923 0
1907 0 1907 0
1906 1906
1905 1905
......
...@@ -22,6 +22,9 @@ ...@@ -22,6 +22,9 @@
1919 0 1919 0
1920 0 1920 0
1917 0 1917 0
1921 0
1922 2
1923 0
1907 0 1907 0
1906 1906
1905 1905
......
...@@ -18,19 +18,19 @@ ...@@ -18,19 +18,19 @@
101 20 101 20
102 -106 102 -106
103 -166 103 -166
104 10.145 104 9.30061
136 10.145 136 9.30061
105 100 105 100
106 -21 106 -19
107 -33 107 -31
108 5.1 108 5.1
109 0.2 109 0.2
110 1.8 110 1.8
111 0.2 111 0.2
116 0 116 0
117 0 117 0
118 138 118 126
119 126 119 113
120 1 120 1
121 Claes context 121 Claes context
122 0 122 0
...@@ -127,6 +127,9 @@ pwr_exe: ...@@ -127,6 +127,9 @@ pwr_exe:
1919 0 1919 0
1920 0 1920 0
1917 0 1917 0
1921 0
1922 2
1923 0
1907 0 1907 0
1906 1906
1905 1905
...@@ -215,6 +218,9 @@ pwr_exe: ...@@ -215,6 +218,9 @@ pwr_exe:
2620 0 2620 0
2621 0 2621 0
2622 0 2622 0
2623 0
2624 2
2625 0
99 99
99 99
99 99
...@@ -22,6 +22,9 @@ ...@@ -22,6 +22,9 @@
1919 0 1919 0
1920 0 1920 0
1917 0 1917 0
1921 0
1922 2
1923 0
1907 0 1907 0
1906 1906
1905 1905
...@@ -110,6 +113,9 @@ ...@@ -110,6 +113,9 @@
2620 0 2620 0
2621 0 2621 0
2622 0 2622 0
2623 0
2624 2
2625 0
99 99
99 99
302 0 302 0
......
...@@ -18,19 +18,19 @@ ...@@ -18,19 +18,19 @@
101 20 101 20
102 -33 102 -33
103 -151 103 -151
104 13.2992 104 12.1923
136 13.2992 136 12.1923
105 100 105 100
106 -6 106 -6
107 -30 107 -28
108 5.1 108 5.1
109 0.2 109 0.2
110 1.8 110 1.8
111 0.2 111 0.2
116 0 116 0
117 0 117 0
118 137 118 126
119 126 119 113
120 1 120 1
121 Claes context 121 Claes context
122 0 122 0
...@@ -127,6 +127,9 @@ pwr_exe: ...@@ -127,6 +127,9 @@ pwr_exe:
1919 0 1919 0
1920 0 1920 0
1917 0 1917 0
1921 0
1922 2
1923 0
1907 0 1907 0
1906 1906
1905 1905
......
...@@ -22,6 +22,9 @@ ...@@ -22,6 +22,9 @@
1919 0 1919 0
1920 0 1920 0
1917 0 1917 0
1921 0
1922 2
1923 0
1907 0 1907 0
1906 1906
1905 1905
......
...@@ -18,19 +18,19 @@ ...@@ -18,19 +18,19 @@
101 20 101 20
102 -33 102 -33
103 -151 103 -151
104 13.2992 104 12.1923
136 13.2992 136 12.1923
105 100 105 100
106 -6 106 -6
107 -30 107 -28
108 5.1 108 5.1
109 0.2 109 0.2
110 1.8 110 1.8
111 0.2 111 0.2
116 0 116 0
117 0 117 0
118 137 118 126
119 126 119 113
120 1 120 1
121 Claes context 121 Claes context
122 0 122 0
...@@ -127,6 +127,9 @@ pwr_exe: ...@@ -127,6 +127,9 @@ pwr_exe:
1919 0 1919 0
1920 0 1920 0
1917 0 1917 0
1921 0
1922 2
1923 0
1907 0 1907 0
1906 1906
1905 1905
......
...@@ -22,6 +22,9 @@ ...@@ -22,6 +22,9 @@
1919 0 1919 0
1920 0 1920 0
1917 0 1917 0
1921 0
1922 2
1923 0
1907 0 1907 0
1906 1906
1905 1905
......
...@@ -19,19 +19,19 @@ ...@@ -19,19 +19,19 @@
101 20 101 20
102 -33 102 -33
103 -151 103 -151
104 13.2992 104 12.1923
136 13.2992 136 12.1923
105 100 105 100
106 -6 106 -6
107 -30 107 -28
108 5.1 108 5.1
109 0.2 109 0.2
110 1.8 110 1.8
111 0.2 111 0.2
116 0 116 0
117 0 117 0
118 137 118 126
119 126 119 113
120 1 120 1
121 Claes context 121 Claes context
122 0 122 0
...@@ -128,6 +128,9 @@ pwr_exe: ...@@ -128,6 +128,9 @@ pwr_exe:
1919 0 1919 0
1920 0 1920 0
1917 0 1917 0
1921 0
1922 2
1923 0
1907 0 1907 0
1906 1906
1905 1905
......
...@@ -22,6 +22,9 @@ ...@@ -22,6 +22,9 @@
1919 0 1919 0
1920 0 1920 0
1917 0 1917 0
1921 0
1922 2
1923 0
1907 0 1907 0
1906 1906
1905 1905
......
...@@ -18,19 +18,19 @@ ...@@ -18,19 +18,19 @@
101 20 101 20
102 -33 102 -33
103 -151 103 -151
104 13.2992 104 12.1923
136 13.2992 136 12.1923
105 100 105 100
106 -6 106 -6
107 -30 107 -28
108 5.1 108 5.1
109 0.2 109 0.2
110 1.8 110 1.8
111 0.2 111 0.2
116 0 116 0
117 0 117 0
118 137 118 126
119 126 119 113
120 1 120 1
121 Claes context 121 Claes context
122 0 122 0
...@@ -127,6 +127,9 @@ pwr_exe: ...@@ -127,6 +127,9 @@ pwr_exe:
1919 0 1919 0
1920 0 1920 0
1917 0 1917 0
1921 0
1922 2
1923 0
1907 0 1907 0
1906 1906
1905 1905
......
...@@ -22,6 +22,9 @@ ...@@ -22,6 +22,9 @@
1919 0 1919 0
1920 0 1920 0
1917 0 1917 0
1921 0
1922 2
1923 0
1907 0 1907 0
1906 1906
1905 1905
......
...@@ -18,19 +18,19 @@ ...@@ -18,19 +18,19 @@
101 20 101 20
102 -33 102 -33
103 -151 103 -151
104 13.2992 104 12.1923
136 13.2992 136 12.1923
105 100 105 100
106 -6 106 -6
107 -30 107 -28
108 5.1 108 5.1
109 0.2 109 0.2
110 1.8 110 1.8
111 0.2 111 0.2
116 0 116 0
117 0 117 0
118 137 118 126
119 126 119 113
120 1 120 1
121 Claes context 121 Claes context
122 0 122 0
...@@ -127,6 +127,9 @@ pwr_exe: ...@@ -127,6 +127,9 @@ pwr_exe:
1919 0 1919 0
1920 0 1920 0
1917 0 1917 0
1921 0
1922 2
1923 0
1907 0 1907 0
1906 1906
1905 1905
......
...@@ -22,6 +22,9 @@ ...@@ -22,6 +22,9 @@
1919 0 1919 0
1920 0 1920 0
1917 0 1917 0
1921 0
1922 2
1923 0
1907 0 1907 0
1906 1906
1905 1905
......
...@@ -19,19 +19,19 @@ ...@@ -19,19 +19,19 @@
101 20 101 20
102 -33 102 -33
103 -151 103 -151
104 13.2992 104 12.1923
136 13.2992 136 12.1923
105 100 105 100
106 -6 106 -6
107 -30 107 -28
108 5.1 108 5.1
109 0.2 109 0.2
110 1.8 110 1.8
111 0.2 111 0.2
116 0 116 0
117 0 117 0
118 137 118 126
119 126 119 113
120 1 120 1
121 Claes context 121 Claes context
122 0 122 0
...@@ -128,6 +128,9 @@ pwr_exe: ...@@ -128,6 +128,9 @@ pwr_exe:
1919 0 1919 0
1920 0 1920 0
1917 0 1917 0
1921 0
1922 2
1923 0
1907 0 1907 0
1906 1906
1905 1905
......
...@@ -22,6 +22,9 @@ ...@@ -22,6 +22,9 @@
1919 0 1919 0
1920 0 1920 0
1917 0 1917 0
1921 0
1922 2
1923 0
1907 0 1907 0
1906 1906
1905 1905
......
...@@ -18,19 +18,19 @@ ...@@ -18,19 +18,19 @@
101 20 101 20
102 -121 102 -121
103 -237 103 -237
104 10.2647 104 9.41038
136 10.2647 136 9.41038
105 100 105 100
106 -24 106 -22
107 -48 107 -44
108 5.1 108 5.1
109 0.2 109 0.2
110 1.8 110 1.8
111 0.2 111 0.2
116 0 116 0
117 0 117 0
118 137 118 126
119 126 119 113
120 1 120 1
121 Claes context 121 Claes context
122 0 122 0
...@@ -127,6 +127,9 @@ pwr_exe: ...@@ -127,6 +127,9 @@ pwr_exe:
1919 0 1919 0
1920 0 1920 0
1917 0 1917 0
1921 0
1922 2
1923 0
1907 0 1907 0
1906 1906
1905 1905
...@@ -215,6 +218,9 @@ pwr_exe: ...@@ -215,6 +218,9 @@ pwr_exe:
2620 0 2620 0
2621 0 2621 0
2622 0 2622 0
2623 0
2624 2
2625 0
99 99
99 99
99 99
...@@ -22,6 +22,9 @@ ...@@ -22,6 +22,9 @@
1919 0 1919 0
1920 0 1920 0
1917 0 1917 0
1921 0
1922 2
1923 0
1907 0 1907 0
1906 1906
1905 1905
...@@ -110,6 +113,9 @@ ...@@ -110,6 +113,9 @@
2620 0 2620 0
2621 0 2621 0
2622 0 2622 0
2623 0
2624 2
2625 0
99 99
99 99
302 0 302 0
......
...@@ -23,19 +23,19 @@ ...@@ -23,19 +23,19 @@
101 20 101 20
102 -266 102 -266
103 -250 103 -250
104 14.6088 104 13.3929
136 14.6088 136 13.3929
105 100 105 100
106 -54 106 -49
107 -50 107 -46
108 2.2 108 2.2
109 0 109 0
110 1 110 1
111 -0.5 111 -0.5
116 0 116 0
117 0 117 0
118 138 118 126
119 126 119 113
120 1 120 1
121 Claes context 121 Claes context
122 0 122 0
...@@ -132,6 +132,9 @@ pwr_exe: ...@@ -132,6 +132,9 @@ pwr_exe:
1919 0 1919 0
1920 0 1920 0
1917 0 1917 0
1921 0
1922 4
1923 0
1907 0 1907 0
1906 1906
1905 1905
...@@ -318,6 +321,9 @@ pwr_exe: ...@@ -318,6 +321,9 @@ pwr_exe:
2620 0 2620 0
2621 0 2621 0
2622 0 2622 0
2623 0
2624 4
2625 1
99 99
20 20
2004 O5 2004 O5
...@@ -371,6 +377,9 @@ pwr_exe: ...@@ -371,6 +377,9 @@ pwr_exe:
1919 1 1919 1
1920 0 1920 0
1917 1 1917 1
1921 0
1922 4
1923 1
1907 0 1907 0
1906 1906
1905 1905
......
...@@ -22,6 +22,9 @@ ...@@ -22,6 +22,9 @@
1919 0 1919 0
1920 0 1920 0
1917 0 1917 0
1921 0
1922 4
1923 0
1907 0 1907 0
1906 1906
1905 1905
...@@ -156,6 +159,9 @@ ...@@ -156,6 +159,9 @@
2620 0 2620 0
2621 0 2621 0
2622 0 2622 0
2623 0
2624 4
2625 1
99 99
20 20
2004 O5 2004 O5
...@@ -209,6 +215,9 @@ ...@@ -209,6 +215,9 @@
1919 1 1919 1
1920 0 1920 0
1917 1 1917 1
1921 0
1922 4
1923 1
1907 0 1907 0
1906 1906
1905 1905
......
...@@ -13,19 +13,19 @@ ...@@ -13,19 +13,19 @@
101 20 101 20
102 -266 102 -266
103 -250 103 -250
104 14.6088 104 13.3929
136 14.6088 136 13.3929
105 100 105 100
106 -54 106 -49
107 -50 107 -46
108 2.2 108 2.2
109 0 109 0
110 1 110 1
111 -0.5 111 -0.5
116 0 116 0
117 0 117 0
118 138 118 126
119 126 119 113
120 1 120 1
121 Claes context 121 Claes context
122 0 122 0
...@@ -122,6 +122,9 @@ pwr_exe: ...@@ -122,6 +122,9 @@ pwr_exe:
1919 0 1919 0
1920 0 1920 0
1917 0 1917 0
1921 0
1922 4
1923 0
1907 0 1907 0
1906 1906
1905 1905
...@@ -308,6 +311,9 @@ pwr_exe: ...@@ -308,6 +311,9 @@ pwr_exe:
2620 0 2620 0
2621 0 2621 0
2622 0 2622 0
2623 0
2624 4
2625 1
99 99
20 20
2004 O5 2004 O5
...@@ -361,6 +367,9 @@ pwr_exe: ...@@ -361,6 +367,9 @@ pwr_exe:
1919 1 1919 1
1920 0 1920 0
1917 1 1917 1
1921 0
1922 4
1923 1
1907 0 1907 0
1906 1906
1905 1905
......
...@@ -22,6 +22,9 @@ ...@@ -22,6 +22,9 @@
1919 0 1919 0
1920 0 1920 0
1917 0 1917 0
1921 0
1922 4
1923 0
1907 0 1907 0
1906 1906
1905 1905
...@@ -156,6 +159,9 @@ ...@@ -156,6 +159,9 @@
2620 0 2620 0
2621 0 2621 0
2622 0 2622 0
2623 0
2624 4
2625 1
99 99
20 20
2004 O5 2004 O5
...@@ -209,6 +215,9 @@ ...@@ -209,6 +215,9 @@
1919 1 1919 1
1920 0 1920 0
1917 1 1917 1
1921 0
1922 4
1923 1
1907 0 1907 0
1906 1906
1905 1905
......
...@@ -13,19 +13,19 @@ ...@@ -13,19 +13,19 @@
101 20 101 20
102 -266 102 -266
103 -250 103 -250
104 14.6088 104 13.3929
136 14.6088 136 13.3929
105 100 105 100
106 -54 106 -49
107 -50 107 -46
108 2.2 108 2.2
109 0 109 0
110 1 110 1
111 -0.5 111 -0.5
116 0 116 0
117 0 117 0
118 138 118 126
119 126 119 113
120 1 120 1
121 Claes context 121 Claes context
122 0 122 0
...@@ -122,6 +122,9 @@ pwr_exe: ...@@ -122,6 +122,9 @@ pwr_exe:
1919 0 1919 0
1920 0 1920 0
1917 0 1917 0
1921 0
1922 4
1923 0
1907 0 1907 0
1906 1906
1905 1905
...@@ -308,6 +311,9 @@ pwr_exe: ...@@ -308,6 +311,9 @@ pwr_exe:
2620 0 2620 0
2621 0 2621 0
2622 0 2622 0
2623 0
2624 4
2625 1
99 99
20 20
2004 O5 2004 O5
...@@ -361,6 +367,9 @@ pwr_exe: ...@@ -361,6 +367,9 @@ pwr_exe:
1919 1 1919 1
1920 0 1920 0
1917 1 1917 1
1921 0
1922 4
1923 1
1907 0 1907 0
1906 1906
1905 1905
......
...@@ -22,6 +22,9 @@ ...@@ -22,6 +22,9 @@
1919 0 1919 0
1920 0 1920 0
1917 0 1917 0
1921 0
1922 4
1923 0
1907 0 1907 0
1906 1906
1905 1905
...@@ -156,6 +159,9 @@ ...@@ -156,6 +159,9 @@
2620 0 2620 0
2621 0 2621 0
2622 0 2622 0
2623 0
2624 4
2625 1
99 99
20 20
2004 O5 2004 O5
...@@ -209,6 +215,9 @@ ...@@ -209,6 +215,9 @@
1919 1 1919 1
1920 0 1920 0
1917 1 1917 1
1921 0
1922 4
1923 1
1907 0 1907 0
1906 1906
1905 1905
......
...@@ -13,19 +13,19 @@ ...@@ -13,19 +13,19 @@
101 20 101 20
102 -266 102 -266
103 -250 103 -250
104 14.6088 104 13.3929
136 14.6088 136 13.3929
105 100 105 100
106 -54 106 -49
107 -50 107 -46
108 2.2 108 2.2
109 0 109 0
110 1 110 1
111 -0.5 111 -0.5
116 0 116 0
117 0 117 0
118 138 118 126
119 126 119 113
120 1 120 1
121 Claes context 121 Claes context
122 0 122 0
...@@ -122,6 +122,9 @@ pwr_exe: ...@@ -122,6 +122,9 @@ pwr_exe:
1919 0 1919 0
1920 0 1920 0
1917 0 1917 0
1921 0
1922 4
1923 0
1907 0 1907 0
1906 1906
1905 1905
...@@ -308,6 +311,9 @@ pwr_exe: ...@@ -308,6 +311,9 @@ pwr_exe:
2620 0 2620 0
2621 0 2621 0
2622 0 2622 0
2623 0
2624 4
2625 1
99 99
20 20
2004 O5 2004 O5
...@@ -361,6 +367,9 @@ pwr_exe: ...@@ -361,6 +367,9 @@ pwr_exe:
1919 1 1919 1
1920 0 1920 0
1917 1 1917 1
1921 0
1922 4
1923 1
1907 0 1907 0
1906 1906
1905 1905
......
...@@ -22,6 +22,9 @@ ...@@ -22,6 +22,9 @@
1919 0 1919 0
1920 0 1920 0
1917 0 1917 0
1921 0
1922 4
1923 0
1907 0 1907 0
1906 1906
1905 1905
...@@ -156,6 +159,9 @@ ...@@ -156,6 +159,9 @@
2620 0 2620 0
2621 0 2621 0
2622 0 2622 0
2623 0
2624 4
2625 1
99 99
20 20
2004 O5 2004 O5
...@@ -209,6 +215,9 @@ ...@@ -209,6 +215,9 @@
1919 1 1919 1
1920 0 1920 0
1917 1 1917 1
1921 0
1922 4
1923 1
1907 0 1907 0
1906 1906
1905 1905
......
...@@ -13,19 +13,19 @@ ...@@ -13,19 +13,19 @@
101 20 101 20
102 -266 102 -266
103 -250 103 -250
104 14.6088 104 13.3929
136 14.6088 136 13.3929
105 100 105 100
106 -54 106 -49
107 -50 107 -46
108 2.2 108 2.2
109 0 109 0
110 1 110 1
111 -0.5 111 -0.5
116 0 116 0
117 0 117 0
118 138 118 126
119 126 119 113
120 1 120 1
121 Claes context 121 Claes context
122 0 122 0
...@@ -122,6 +122,9 @@ pwr_exe: ...@@ -122,6 +122,9 @@ pwr_exe:
1919 0 1919 0
1920 0 1920 0
1917 0 1917 0
1921 0
1922 4
1923 0
1907 0 1907 0
1906 1906
1905 1905
...@@ -308,6 +311,9 @@ pwr_exe: ...@@ -308,6 +311,9 @@ pwr_exe:
2620 0 2620 0
2621 0 2621 0
2622 0 2622 0
2623 0
2624 4
2625 1
99 99
20 20
2004 O5 2004 O5
...@@ -361,6 +367,9 @@ pwr_exe: ...@@ -361,6 +367,9 @@ pwr_exe:
1919 1 1919 1
1920 0 1920 0
1917 1 1917 1
1921 0
1922 4
1923 1
1907 0 1907 0
1906 1906
1905 1905
......
...@@ -22,6 +22,9 @@ ...@@ -22,6 +22,9 @@
1919 0 1919 0
1920 0 1920 0
1917 0 1917 0
1921 0
1922 4
1923 0
1907 0 1907 0
1906 1906
1905 1905
...@@ -156,6 +159,9 @@ ...@@ -156,6 +159,9 @@
2620 0 2620 0
2621 0 2621 0
2622 0 2622 0
2623 0
2624 4
2625 1
99 99
20 20
2004 O5 2004 O5
...@@ -209,6 +215,9 @@ ...@@ -209,6 +215,9 @@
1919 1 1919 1
1920 0 1920 0
1917 1 1917 1
1921 0
1922 4
1923 1
1907 0 1907 0
1906 1906
1905 1905
......
...@@ -13,19 +13,19 @@ ...@@ -13,19 +13,19 @@
101 20 101 20
102 -266 102 -266
103 -250 103 -250
104 14.6088 104 13.3929
136 14.6088 136 13.3929
105 100 105 100
106 -54 106 -49
107 -50 107 -46
108 2.2 108 2.2
109 0 109 0
110 1 110 1
111 -0.5 111 -0.5
116 0 116 0
117 0 117 0
118 138 118 126
119 126 119 113
120 1 120 1
121 Claes context 121 Claes context
122 0 122 0
...@@ -122,6 +122,9 @@ pwr_exe: ...@@ -122,6 +122,9 @@ pwr_exe:
1919 0 1919 0
1920 0 1920 0
1917 0 1917 0
1921 0
1922 4
1923 0
1907 0 1907 0
1906 1906
1905 1905
...@@ -308,6 +311,9 @@ pwr_exe: ...@@ -308,6 +311,9 @@ pwr_exe:
2620 0 2620 0
2621 0 2621 0
2622 0 2622 0
2623 0
2624 4
2625 1
99 99
20 20
2004 O5 2004 O5
...@@ -361,6 +367,9 @@ pwr_exe: ...@@ -361,6 +367,9 @@ pwr_exe:
1919 1 1919 1
1920 0 1920 0
1917 1 1917 1
1921 0
1922 4
1923 1
1907 0 1907 0
1906 1906
1905 1905
......
...@@ -22,6 +22,9 @@ ...@@ -22,6 +22,9 @@
1919 0 1919 0
1920 0 1920 0
1917 0 1917 0
1921 0
1922 4
1923 0
1907 0 1907 0
1906 1906
1905 1905
...@@ -156,6 +159,9 @@ ...@@ -156,6 +159,9 @@
2620 0 2620 0
2621 0 2621 0
2622 0 2622 0
2623 0
2624 4
2625 1
99 99
20 20
2004 O5 2004 O5
...@@ -209,6 +215,9 @@ ...@@ -209,6 +215,9 @@
1919 1 1919 1
1920 0 1920 0
1917 1 1917 1
1921 0
1922 4
1923 1
1907 0 1907 0
1906 1906
1905 1905
......
...@@ -13,19 +13,19 @@ ...@@ -13,19 +13,19 @@
101 20 101 20
102 -266 102 -266
103 -250 103 -250
104 14.6088 104 13.3929
136 14.6088 136 13.3929
105 100 105 100
106 -54 106 -49
107 -50 107 -46
108 2.2 108 2.2
109 0 109 0
110 1 110 1
111 -0.5 111 -0.5
116 0 116 0
117 0 117 0
118 138 118 126
119 126 119 113
120 1 120 1
121 Claes context 121 Claes context
122 0 122 0
...@@ -122,6 +122,9 @@ pwr_exe: ...@@ -122,6 +122,9 @@ pwr_exe:
1919 0 1919 0
1920 0 1920 0
1917 0 1917 0
1921 0
1922 4
1923 0
1907 0 1907 0
1906 1906
1905 1905
...@@ -308,6 +311,9 @@ pwr_exe: ...@@ -308,6 +311,9 @@ pwr_exe:
2620 0 2620 0
2621 0 2621 0
2622 0 2622 0
2623 0
2624 4
2625 1
99 99
20 20
2004 O5 2004 O5
...@@ -361,6 +367,9 @@ pwr_exe: ...@@ -361,6 +367,9 @@ pwr_exe:
1919 1 1919 1
1920 0 1920 0
1917 1 1917 1
1921 0
1922 4
1923 1
1907 0 1907 0
1906 1906
1905 1905
......
...@@ -22,6 +22,9 @@ ...@@ -22,6 +22,9 @@
1919 0 1919 0
1920 0 1920 0
1917 0 1917 0
1921 0
1922 4
1923 0
1907 0 1907 0
1906 1906
1905 1905
...@@ -156,6 +159,9 @@ ...@@ -156,6 +159,9 @@
2620 0 2620 0
2621 0 2621 0
2622 0 2622 0
2623 0
2624 4
2625 1
99 99
20 20
2004 O5 2004 O5
...@@ -209,6 +215,9 @@ ...@@ -209,6 +215,9 @@
1919 1 1919 1
1920 0 1920 0
1917 1 1917 1
1921 0
1922 4
1923 1
1907 0 1907 0
1906 1906
1905 1905
......
...@@ -21,19 +21,19 @@ ...@@ -21,19 +21,19 @@
101 20 101 20
102 -223 102 -223
103 -438 103 -438
104 18.4803 104 16.9422
136 18.4803 136 16.9422
105 100 105 100
106 -45 106 -41
107 -89 107 -81
108 2.67349 108 2.67349
109 0.5 109 0.5
110 0.5 110 0.5
111 -1.5 111 -1.5
116 0 116 0
117 0 117 0
118 138 118 126
119 126 119 113
120 1 120 1
121 Claes context 121 Claes context
122 0 122 0
...@@ -153,6 +153,9 @@ pwr_exe: ...@@ -153,6 +153,9 @@ pwr_exe:
2416 2 2416 2
2414 0 2414 0
2417 0 2417 0
2418 0
2419 4
2420 0
2407 0 2407 0
2406 2406
2405 2405
...@@ -202,6 +205,9 @@ pwr_exe: ...@@ -202,6 +205,9 @@ pwr_exe:
1919 1 1919 1
1920 0 1920 0
1917 1 1917 1
1921 0
1922 4
1923 1
1907 0 1907 0
1906 1906
1905 1905
...@@ -284,6 +290,9 @@ pwr_exe: ...@@ -284,6 +290,9 @@ pwr_exe:
1919 0 1919 0
1920 0 1920 0
1917 0 1917 0
1921 0
1922 4
1923 0
1907 0 1907 0
1906 1906
1905 1905
...@@ -410,6 +419,9 @@ pwr_exe: ...@@ -410,6 +419,9 @@ pwr_exe:
2620 0 2620 0
2621 0 2621 0
2622 0 2622 0
2623 0
2624 4
2625 1
99 99
21 21
2104 O8 2104 O8
......
...@@ -19,6 +19,9 @@ ...@@ -19,6 +19,9 @@
2416 2 2416 2
2414 0 2414 0
2417 0 2417 0
2418 0
2419 4
2420 0
2407 0 2407 0
2406 2406
2405 2405
...@@ -68,6 +71,9 @@ ...@@ -68,6 +71,9 @@
1919 1 1919 1
1920 0 1920 0
1917 1 1917 1
1921 0
1922 4
1923 1
1907 0 1907 0
1906 1906
1905 1905
...@@ -150,6 +156,9 @@ ...@@ -150,6 +156,9 @@
1919 0 1919 0
1920 0 1920 0
1917 0 1917 0
1921 0
1922 4
1923 0
1907 0 1907 0
1906 1906
1905 1905
...@@ -276,6 +285,9 @@ ...@@ -276,6 +285,9 @@
2620 0 2620 0
2621 0 2621 0
2622 0 2622 0
2623 0
2624 4
2625 1
99 99
12 12
1200 0 1200 0
......
...@@ -25,19 +25,19 @@ ...@@ -25,19 +25,19 @@
101 20 101 20
102 -261 102 -261
103 -350 103 -350
104 12.8335 104 11.7654
136 12.8335 136 11.7654
105 100 105 100
106 -53 106 -48
107 -71 107 -65
108 2.67349 108 2.67349
109 0.5 109 0.5
110 0.5 110 0.5
111 -1.5 111 -1.5
116 0 116 0
117 0 117 0
118 138 118 126
119 126 119 113
120 1 120 1
121 Claes context 121 Claes context
122 0 122 0
...@@ -157,6 +157,9 @@ pwr_exe: ...@@ -157,6 +157,9 @@ pwr_exe:
2416 2 2416 2
2414 0 2414 0
2417 0 2417 0
2418 0
2419 4
2420 0
2407 0 2407 0
2406 2406
2405 2405
...@@ -206,6 +209,9 @@ pwr_exe: ...@@ -206,6 +209,9 @@ pwr_exe:
1919 1 1919 1
1920 0 1920 0
1917 1 1917 1
1921 0
1922 4
1923 1
1907 0 1907 0
1906 1906
1905 1905
...@@ -288,6 +294,9 @@ pwr_exe: ...@@ -288,6 +294,9 @@ pwr_exe:
1919 0 1919 0
1920 0 1920 0
1917 0 1917 0
1921 0
1922 4
1923 0
1907 0 1907 0
1906 1906
1905 1905
...@@ -414,6 +423,9 @@ pwr_exe: ...@@ -414,6 +423,9 @@ pwr_exe:
2620 0 2620 0
2621 0 2621 0
2622 0 2622 0
2623 0
2624 4
2625 1
99 99
21 21
2104 O8 2104 O8
......
...@@ -19,6 +19,9 @@ ...@@ -19,6 +19,9 @@
2416 2 2416 2
2414 0 2414 0
2417 0 2417 0
2418 0
2419 4
2420 0
2407 0 2407 0
2406 2406
2405 2405
...@@ -68,6 +71,9 @@ ...@@ -68,6 +71,9 @@
1919 1 1919 1
1920 0 1920 0
1917 1 1917 1
1921 0
1922 4
1923 1
1907 0 1907 0
1906 1906
1905 1905
...@@ -150,6 +156,9 @@ ...@@ -150,6 +156,9 @@
1919 0 1919 0
1920 0 1920 0
1917 0 1917 0
1921 0
1922 4
1923 0
1907 0 1907 0
1906 1906
1905 1905
...@@ -276,6 +285,9 @@ ...@@ -276,6 +285,9 @@
2620 0 2620 0
2621 0 2621 0
2622 0 2622 0
2623 0
2624 4
2625 1
99 99
12 12
1200 0 1200 0
......
...@@ -24,24 +24,24 @@ ...@@ -24,24 +24,24 @@
101 20 101 20
102 -85 102 -85
103 -128 103 -128
104 20.0931 104 18.4207
136 20.0931 136 18.4207
105 100 105 100
106 -17 106 -15
107 -26 107 -23
108 3 108 3
109 0 109 0
110 2 110 2
111 0 111 0
116 0 116 0
117 0 117 0
118 138 118 126
119 126 119 113
120 0 120 0
121 Claes context 121 Claes context
122 0 122 0
126 0.2 126 0.1
127 0.2 127 0.1
128 0 128 0
129 0.3 129 0.3
130 1.5 130 1.5
...@@ -133,6 +133,9 @@ pwr_exe: ...@@ -133,6 +133,9 @@ pwr_exe:
1919 1 1919 1
1920 0 1920 0
1917 1 1917 1
1921 0
1922 4
1923 1
1907 0 1907 0
1906 1906
1905 1905
...@@ -178,6 +181,9 @@ pwr_exe: ...@@ -178,6 +181,9 @@ pwr_exe:
2416 2 2416 2
2414 0 2414 0
2417 0 2417 0
2418 0
2419 4
2420 0
2407 0 2407 0
2406 2406
2405 2405
...@@ -212,7 +218,7 @@ pwr_exe: ...@@ -212,7 +218,7 @@ pwr_exe:
26 26
2604 O3 2604 O3
2600 1.7 2600 1.7
2601 0.290507 2601 0.3
2602 1.8 2602 1.8
2603 0.6 2603 0.6
2605 2605
...@@ -236,8 +242,8 @@ pwr_exe: ...@@ -236,8 +242,8 @@ pwr_exe:
701 1.8 701 1.8
99 99
7 7
700 0.290507 700 0.3
701 0.624053 701 0.6
99 99
99 99
99 99
...@@ -267,6 +273,9 @@ pwr_exe: ...@@ -267,6 +273,9 @@ pwr_exe:
2620 0 2620 0
2621 0 2621 0
2622 0 2622 0
2623 0
2624 4
2625 0
99 99
23 23
2304 O4 2304 O4
......
...@@ -22,6 +22,9 @@ ...@@ -22,6 +22,9 @@
1919 1 1919 1
1920 0 1920 0
1917 1 1917 1
1921 0
1922 4
1923 1
1907 0 1907 0
1906 1906
1905 1905
...@@ -67,6 +70,9 @@ ...@@ -67,6 +70,9 @@
2416 2 2416 2
2414 0 2414 0
2417 0 2417 0
2418 0
2419 4
2420 0
2407 0 2407 0
2406 2406
2405 2405
...@@ -101,7 +107,7 @@ ...@@ -101,7 +107,7 @@
26 26
2604 O3 2604 O3
2600 1.7 2600 1.7
2601 0.290507 2601 0.3
2602 1.8 2602 1.8
2603 0.6 2603 0.6
2605 2605
...@@ -125,8 +131,8 @@ ...@@ -125,8 +131,8 @@
701 1.8 701 1.8
99 99
7 7
700 0.290507 700 0.3
701 0.624053 701 0.6
99 99
99 99
99 99
...@@ -156,6 +162,9 @@ ...@@ -156,6 +162,9 @@
2620 0 2620 0
2621 0 2621 0
2622 0 2622 0
2623 0
2624 4
2625 0
99 99
29 29
2907 2907
......
...@@ -25,19 +25,19 @@ ...@@ -25,19 +25,19 @@
101 20 101 20
102 -85 102 -85
103 -128 103 -128
104 20.0931 104 18.4207
136 20.0931 136 18.4207
105 100 105 100
106 -17 106 -15
107 -26 107 -23
108 3 108 3
109 0 109 0
110 2 110 2
111 0 111 0
116 0 116 0
117 0 117 0
118 138 118 126
119 126 119 113
120 0 120 0
121 Claes context 121 Claes context
122 0 122 0
...@@ -134,6 +134,9 @@ pwr_exe: ...@@ -134,6 +134,9 @@ pwr_exe:
1919 1 1919 1
1920 0 1920 0
1917 1 1917 1
1921 0
1922 4
1923 1
1907 0 1907 0
1906 1906
1905 1905
...@@ -179,6 +182,9 @@ pwr_exe: ...@@ -179,6 +182,9 @@ pwr_exe:
2416 2 2416 2
2414 0 2414 0
2417 0 2417 0
2418 0
2419 4
2420 0
2407 0 2407 0
2406 2406
2405 2405
...@@ -268,6 +274,9 @@ pwr_exe: ...@@ -268,6 +274,9 @@ pwr_exe:
2620 0 2620 0
2621 0 2621 0
2622 0 2622 0
2623 0
2624 4
2625 0
99 99
23 23
2304 O4 2304 O4
......
...@@ -22,6 +22,9 @@ ...@@ -22,6 +22,9 @@
1919 1 1919 1
1920 0 1920 0
1917 1 1917 1
1921 0
1922 4
1923 1
1907 0 1907 0
1906 1906
1905 1905
...@@ -67,6 +70,9 @@ ...@@ -67,6 +70,9 @@
2416 2 2416 2
2414 0 2414 0
2417 0 2417 0
2418 0
2419 4
2420 0
2407 0 2407 0
2406 2406
2405 2405
...@@ -156,6 +162,9 @@ ...@@ -156,6 +162,9 @@
2620 0 2620 0
2621 0 2621 0
2622 0 2622 0
2623 0
2624 4
2625 0
99 99
29 29
2907 2907
......
...@@ -22,19 +22,19 @@ ...@@ -22,19 +22,19 @@
101 20 101 20
102 -85 102 -85
103 -128 103 -128
104 20.0931 104 18.4207
136 20.0931 136 18.4207
105 100 105 100
106 -17 106 -15
107 -26 107 -23
108 3 108 3
109 0 109 0
110 2 110 2
111 0 111 0
116 0 116 0
117 0 117 0
118 138 118 126
119 126 119 113
120 0 120 0
121 Claes context 121 Claes context
122 0 122 0
...@@ -131,6 +131,9 @@ pwr_exe: ...@@ -131,6 +131,9 @@ pwr_exe:
1919 1 1919 1
1920 0 1920 0
1917 1 1917 1
1921 0
1922 4
1923 1
1907 0 1907 0
1906 1906
1905 1905
...@@ -176,6 +179,9 @@ pwr_exe: ...@@ -176,6 +179,9 @@ pwr_exe:
2416 2 2416 2
2414 0 2414 0
2417 0 2417 0
2418 0
2419 4
2420 0
2407 0 2407 0
2406 2406
2405 2405
...@@ -265,6 +271,9 @@ pwr_exe: ...@@ -265,6 +271,9 @@ pwr_exe:
2620 0 2620 0
2621 0 2621 0
2622 0 2622 0
2623 0
2624 4
2625 0
99 99
23 23
2304 O4 2304 O4
......
...@@ -22,6 +22,9 @@ ...@@ -22,6 +22,9 @@
1919 1 1919 1
1920 0 1920 0
1917 1 1917 1
1921 0
1922 4
1923 1
1907 0 1907 0
1906 1906
1905 1905
...@@ -67,6 +70,9 @@ ...@@ -67,6 +70,9 @@
2416 2 2416 2
2414 0 2414 0
2417 0 2417 0
2418 0
2419 4
2420 0
2407 0 2407 0
2406 2406
2405 2405
...@@ -156,6 +162,9 @@ ...@@ -156,6 +162,9 @@
2620 0 2620 0
2621 0 2621 0
2622 0 2622 0
2623 0
2624 4
2625 0
99 99
29 29
2907 2907
......
...@@ -22,19 +22,19 @@ ...@@ -22,19 +22,19 @@
101 20 101 20
102 -85 102 -85
103 -128 103 -128
104 20.0931 104 18.4207
136 20.0931 136 18.4207
105 100 105 100
106 -17 106 -15
107 -26 107 -23
108 3 108 3
109 0 109 0
110 2 110 2
111 0 111 0
116 0 116 0
117 0 117 0
118 138 118 126
119 126 119 113
120 0 120 0
121 Claes context 121 Claes context
122 0 122 0
...@@ -131,6 +131,9 @@ pwr_exe: ...@@ -131,6 +131,9 @@ pwr_exe:
1919 1 1919 1
1920 0 1920 0
1917 1 1917 1
1921 0
1922 4
1923 1
1907 0 1907 0
1906 1906
1905 1905
...@@ -176,6 +179,9 @@ pwr_exe: ...@@ -176,6 +179,9 @@ pwr_exe:
2416 2 2416 2
2414 0 2414 0
2417 0 2417 0
2418 0
2419 4
2420 0
2407 0 2407 0
2406 2406
2405 2405
...@@ -265,6 +271,9 @@ pwr_exe: ...@@ -265,6 +271,9 @@ pwr_exe:
2620 0 2620 0
2621 0 2621 0
2622 0 2622 0
2623 0
2624 4
2625 0
99 99
23 23
2304 O4 2304 O4
......
...@@ -22,6 +22,9 @@ ...@@ -22,6 +22,9 @@
1919 1 1919 1
1920 0 1920 0
1917 1 1917 1
1921 0
1922 4
1923 1
1907 0 1907 0
1906 1906
1905 1905
...@@ -67,6 +70,9 @@ ...@@ -67,6 +70,9 @@
2416 2 2416 2
2414 0 2414 0
2417 0 2417 0
2418 0
2419 4
2420 0
2407 0 2407 0
2406 2406
2405 2405
...@@ -156,6 +162,9 @@ ...@@ -156,6 +162,9 @@
2620 0 2620 0
2621 0 2621 0
2622 0 2622 0
2623 0
2624 4
2625 0
99 99
29 29
2907 2907
......
...@@ -22,19 +22,19 @@ ...@@ -22,19 +22,19 @@
101 20 101 20
102 -85 102 -85
103 -128 103 -128
104 20.0931 104 18.4207
136 20.0931 136 18.4207
105 100 105 100
106 -17 106 -15
107 -26 107 -23
108 3 108 3
109 0 109 0
110 2 110 2
111 0 111 0
116 0 116 0
117 0 117 0
118 138 118 126
119 126 119 113
120 0 120 0
121 Claes context 121 Claes context
122 0 122 0
...@@ -131,6 +131,9 @@ pwr_exe: ...@@ -131,6 +131,9 @@ pwr_exe:
1919 1 1919 1
1920 0 1920 0
1917 1 1917 1
1921 0
1922 4
1923 1
1907 0 1907 0
1906 1906
1905 1905
...@@ -176,6 +179,9 @@ pwr_exe: ...@@ -176,6 +179,9 @@ pwr_exe:
2416 2 2416 2
2414 0 2414 0
2417 0 2417 0
2418 0
2419 4
2420 0
2407 0 2407 0
2406 2406
2405 2405
...@@ -265,6 +271,9 @@ pwr_exe: ...@@ -265,6 +271,9 @@ pwr_exe:
2620 0 2620 0
2621 0 2621 0
2622 0 2622 0
2623 0
2624 4
2625 0
99 99
23 23
2304 O4 2304 O4
......
...@@ -22,6 +22,9 @@ ...@@ -22,6 +22,9 @@
1919 1 1919 1
1920 0 1920 0
1917 1 1917 1
1921 0
1922 4
1923 1
1907 0 1907 0
1906 1906
1905 1905
...@@ -67,6 +70,9 @@ ...@@ -67,6 +70,9 @@
2416 2 2416 2
2414 0 2414 0
2417 0 2417 0
2418 0
2419 4
2420 0
2407 0 2407 0
2406 2406
2405 2405
...@@ -156,6 +162,9 @@ ...@@ -156,6 +162,9 @@
2620 0 2620 0
2621 0 2621 0
2622 0 2622 0
2623 0
2624 4
2625 0
99 99
29 29
2907 2907
......
...@@ -22,19 +22,19 @@ ...@@ -22,19 +22,19 @@
101 20 101 20
102 -85 102 -85
103 -128 103 -128
104 20.0931 104 18.4207
136 20.0931 136 18.4207
105 100 105 100
106 -17 106 -15
107 -26 107 -23
108 3 108 3
109 0 109 0
110 2 110 2
111 0 111 0
116 0 116 0
117 0 117 0
118 138 118 126
119 126 119 113
120 0 120 0
121 Claes context 121 Claes context
122 0 122 0
...@@ -131,6 +131,9 @@ pwr_exe: ...@@ -131,6 +131,9 @@ pwr_exe:
1919 1 1919 1
1920 0 1920 0
1917 1 1917 1
1921 0
1922 4
1923 1
1907 0 1907 0
1906 1906
1905 1905
...@@ -176,6 +179,9 @@ pwr_exe: ...@@ -176,6 +179,9 @@ pwr_exe:
2416 2 2416 2
2414 0 2414 0
2417 0 2417 0
2418 0
2419 4
2420 0
2407 0 2407 0
2406 2406
2405 2405
...@@ -265,6 +271,9 @@ pwr_exe: ...@@ -265,6 +271,9 @@ pwr_exe:
2620 0 2620 0
2621 0 2621 0
2622 0 2622 0
2623 0
2624 4
2625 0
99 99
23 23
2304 O4 2304 O4
......
...@@ -22,6 +22,9 @@ ...@@ -22,6 +22,9 @@
1919 1 1919 1
1920 0 1920 0
1917 1 1917 1
1921 0
1922 4
1923 1
1907 0 1907 0
1906 1906
1905 1905
...@@ -67,6 +70,9 @@ ...@@ -67,6 +70,9 @@
2416 2 2416 2
2414 0 2414 0
2417 0 2417 0
2418 0
2419 4
2420 0
2407 0 2407 0
2406 2406
2405 2405
...@@ -156,6 +162,9 @@ ...@@ -156,6 +162,9 @@
2620 0 2620 0
2621 0 2621 0
2622 0 2622 0
2623 0
2624 4
2625 0
99 99
29 29
2907 2907
......
...@@ -22,19 +22,19 @@ ...@@ -22,19 +22,19 @@
101 20 101 20
102 -85 102 -85
103 -128 103 -128
104 20.0931 104 18.4207
136 20.0931 136 18.4207
105 100 105 100
106 -17 106 -15
107 -26 107 -23
108 3 108 3
109 0 109 0
110 2 110 2
111 0 111 0
116 0 116 0
117 0 117 0
118 138 118 126
119 126 119 113
120 0 120 0
121 Claes context 121 Claes context
122 0 122 0
...@@ -131,6 +131,9 @@ pwr_exe: ...@@ -131,6 +131,9 @@ pwr_exe:
1919 1 1919 1
1920 0 1920 0
1917 1 1917 1
1921 0
1922 4
1923 1
1907 0 1907 0
1906 1906
1905 1905
...@@ -176,6 +179,9 @@ pwr_exe: ...@@ -176,6 +179,9 @@ pwr_exe:
2416 2 2416 2
2414 0 2414 0
2417 0 2417 0
2418 0
2419 4
2420 0
2407 0 2407 0
2406 2406
2405 2405
...@@ -265,6 +271,9 @@ pwr_exe: ...@@ -265,6 +271,9 @@ pwr_exe:
2620 0 2620 0
2621 0 2621 0
2622 0 2622 0
2623 0
2624 4
2625 0
99 99
23 23
2304 O4 2304 O4
......
...@@ -22,6 +22,9 @@ ...@@ -22,6 +22,9 @@
1919 1 1919 1
1920 0 1920 0
1917 1 1917 1
1921 0
1922 4
1923 1
1907 0 1907 0
1906 1906
1905 1905
...@@ -67,6 +70,9 @@ ...@@ -67,6 +70,9 @@
2416 2 2416 2
2414 0 2414 0
2417 0 2417 0
2418 0
2419 4
2420 0
2407 0 2407 0
2406 2406
2405 2405
...@@ -156,6 +162,9 @@ ...@@ -156,6 +162,9 @@
2620 0 2620 0
2621 0 2621 0
2622 0 2622 0
2623 0
2624 4
2625 0
99 99
29 29
2907 2907
......
...@@ -19,19 +19,19 @@ ...@@ -19,19 +19,19 @@
101 20 101 20
102 -167 102 -167
103 -136 103 -136
104 7.11962 104 6.52704
136 7.11962 136 6.52704
105 100 105 100
106 -34 106 -31
107 -27 107 -25
108 0.99101 108 0.99101
109 -1.00899 109 -1.00899
110 2.01953 110 2.01953
111 0 111 0
116 0 116 0
117 0 117 0
118 138 118 126
119 126 119 113
120 1 120 1
121 Claes context 121 Claes context
122 0 122 0
...@@ -125,6 +125,9 @@ pwr_exe: ...@@ -125,6 +125,9 @@ pwr_exe:
2416 2 2416 2
2414 0 2414 0
2417 0 2417 0
2418 0
2419 4
2420 0
2407 0 2407 0
2406 2406
2405 2405
...@@ -214,6 +217,9 @@ pwr_exe: ...@@ -214,6 +217,9 @@ pwr_exe:
2620 0 2620 0
2621 0 2621 0
2622 0 2622 0
2623 0
2624 4
2625 1
99 99
21 21
2104 O2 2104 O2
......
...@@ -19,6 +19,9 @@ ...@@ -19,6 +19,9 @@
2416 2 2416 2
2414 0 2414 0
2417 0 2417 0
2418 0
2419 4
2420 0
2407 0 2407 0
2406 2406
2405 2405
...@@ -108,6 +111,9 @@ ...@@ -108,6 +111,9 @@
2620 0 2620 0
2621 0 2621 0
2622 0 2622 0
2623 0
2624 4
2625 1
99 99
12 12
1200 2 1200 2
......
...@@ -18,19 +18,19 @@ ...@@ -18,19 +18,19 @@
101 20 101 20
102 -33 102 -33
103 -205 103 -205
104 8.45416 104 7.7505
136 8.45416 136 7.7505
105 100 105 100
106 -6 106 -6
107 -41 107 -38
108 7.57137 108 7.57137
109 0.192901 109 0.192901
110 1.80845 110 1.80845
111 0.192901 111 0.192901
116 0 116 0
117 0 117 0
118 137 118 126
119 126 119 113
120 1 120 1
121 Claes context 121 Claes context
122 0 122 0
...@@ -127,6 +127,9 @@ pwr_exe: ...@@ -127,6 +127,9 @@ pwr_exe:
1919 0 1919 0
1920 0 1920 0
1917 0 1917 0
1921 0
1922 2
1923 0
1907 0 1907 0
1906 1906
1905 1905
......
...@@ -22,6 +22,9 @@ ...@@ -22,6 +22,9 @@
1919 0 1919 0
1920 0 1920 0
1917 0 1917 0
1921 0
1922 2
1923 0
1907 0 1907 0
1906 1906
1905 1905
......
...@@ -18,19 +18,19 @@ ...@@ -18,19 +18,19 @@
101 20 101 20
102 -146 102 -146
103 -95 103 -95
104 9.34453 104 8.56676
136 9.34453 136 8.56676
105 100 105 100
106 -29 106 -27
107 -19 107 -17
108 5 108 5
109 0 109 0
110 3 110 3
111 -0.4 111 -0.4
116 0 116 0
117 0 117 0
118 137 118 126
119 126 119 113
120 1 120 1
121 Claes context 121 Claes context
122 0 122 0
...@@ -191,6 +191,9 @@ pwr_exe: ...@@ -191,6 +191,9 @@ pwr_exe:
2620 0 2620 0
2621 0 2621 0
2622 0 2622 0
2623 0
2624 2
2625 0
99 99
24 24
2404 O1 2404 O1
...@@ -207,6 +210,9 @@ pwr_exe: ...@@ -207,6 +210,9 @@ pwr_exe:
2416 2 2416 2
2414 1 2414 1
2417 0 2417 0
2418 0
2419 2
2420 0
2407 0 2407 0
2406 2406
2405 2405
...@@ -243,7 +249,7 @@ pwr_exe: ...@@ -243,7 +249,7 @@ pwr_exe:
2400 4 2400 4
2401 3 2401 3
2402 1.2 2402 1.2
2403 0.200003 2403 0.2
2408 226 2408 226
2409 222 2409 222
2410 222 2410 222
...@@ -253,6 +259,9 @@ pwr_exe: ...@@ -253,6 +259,9 @@ pwr_exe:
2416 2 2416 2
2414 1 2414 1
2417 0 2417 0
2418 0
2419 2
2420 0
2407 0 2407 0
2406 2406
2405 2405
...@@ -289,7 +298,7 @@ pwr_exe: ...@@ -289,7 +298,7 @@ pwr_exe:
2600 4.5 2600 4.5
2601 0.6 2601 0.6
2602 1.41598 2602 1.41598
2603 -0.399997 2603 -0.4
2605 2605
25 25
2500 226 2500 226
...@@ -374,6 +383,9 @@ pwr_exe: ...@@ -374,6 +383,9 @@ pwr_exe:
2620 0 2620 0
2621 0 2621 0
2622 0 2622 0
2623 0
2624 2
2625 0
99 99
99 99
99 99
...@@ -86,6 +86,9 @@ ...@@ -86,6 +86,9 @@
2620 0 2620 0
2621 0 2621 0
2622 0 2622 0
2623 0
2624 2
2625 0
99 99
24 24
2404 O1 2404 O1
...@@ -102,6 +105,9 @@ ...@@ -102,6 +105,9 @@
2416 2 2416 2
2414 1 2414 1
2417 0 2417 0
2418 0
2419 2
2420 0
2407 0 2407 0
2406 2406
2405 2405
...@@ -138,7 +144,7 @@ ...@@ -138,7 +144,7 @@
2400 4 2400 4
2401 3 2401 3
2402 1.2 2402 1.2
2403 0.200003 2403 0.2
2408 226 2408 226
2409 222 2409 222
2410 222 2410 222
...@@ -148,6 +154,9 @@ ...@@ -148,6 +154,9 @@
2416 2 2416 2
2414 1 2414 1
2417 0 2417 0
2418 0
2419 2
2420 0
2407 0 2407 0
2406 2406
2405 2405
...@@ -184,7 +193,7 @@ ...@@ -184,7 +193,7 @@
2600 4.5 2600 4.5
2601 0.6 2601 0.6
2602 1.41598 2602 1.41598
2603 -0.399997 2603 -0.4
2605 2605
25 25
2500 226 2500 226
...@@ -269,6 +278,9 @@ ...@@ -269,6 +278,9 @@
2620 0 2620 0
2621 0 2621 0
2622 0 2622 0
2623 0
2624 2
2625 0
99 99
99 99
302 0 302 0
......
...@@ -22,19 +22,19 @@ ...@@ -22,19 +22,19 @@
101 20 101 20
102 -101 102 -101
103 -68 103 -68
104 20.6309 104 18.9137
136 20.6309 136 18.9137
105 100 105 100
106 -20 106 -18
107 -13 107 -12
108 3 108 3
109 0 109 0
110 3 110 3
111 0 111 0
116 0 116 0
117 0 117 0
118 138 118 126
119 126 119 113
120 1 120 1
121 Claes context 121 Claes context
122 0 122 0
...@@ -131,6 +131,9 @@ pwr_exe: ...@@ -131,6 +131,9 @@ pwr_exe:
1919 0 1919 0
1920 0 1920 0
1917 0 1917 0
1921 0
1922 4
1923 0
1907 0 1907 0
1906 1906
1905 1905
...@@ -397,6 +400,9 @@ pwr_exe: ...@@ -397,6 +400,9 @@ pwr_exe:
2416 2 2416 2
2414 0 2414 0
2417 0 2417 0
2418 0
2419 4
2420 0
2407 0 2407 0
2406 2406
2405 2405
...@@ -490,6 +496,9 @@ pwr_exe: ...@@ -490,6 +496,9 @@ pwr_exe:
2620 1 2620 1
2621 0 2621 0
2622 0 2622 0
2623 0
2624 4
2625 1
99 99
19 19
1904 O8 1904 O8
...@@ -509,6 +518,9 @@ pwr_exe: ...@@ -509,6 +518,9 @@ pwr_exe:
1919 0 1919 0
1920 0 1920 0
1917 0 1917 0
1921 0
1922 4
1923 0
1907 0 1907 0
1906 1906
1905 1905
......
...@@ -22,6 +22,9 @@ ...@@ -22,6 +22,9 @@
1919 0 1919 0
1920 0 1920 0
1917 0 1917 0
1921 0
1922 4
1923 0
1907 0 1907 0
1906 1906
1905 1905
...@@ -184,6 +187,9 @@ ...@@ -184,6 +187,9 @@
2416 2 2416 2
2414 0 2414 0
2417 0 2417 0
2418 0
2419 4
2420 0
2407 0 2407 0
2406 2406
2405 2405
...@@ -277,6 +283,9 @@ ...@@ -277,6 +283,9 @@
2620 1 2620 1
2621 0 2621 0
2622 0 2622 0
2623 0
2624 4
2625 1
99 99
19 19
1904 O8 1904 O8
...@@ -296,6 +305,9 @@ ...@@ -296,6 +305,9 @@
1919 0 1919 0
1920 0 1920 0
1917 0 1917 0
1921 0
1922 4
1923 0
1907 0 1907 0
1906 1906
1905 1905
......
...@@ -22,19 +22,19 @@ ...@@ -22,19 +22,19 @@
101 20 101 20
102 -135 102 -135
103 -48 103 -48
104 14.6834 104 13.4613
136 14.6834 136 13.4613
105 100 105 100
106 -27 106 -25
107 -9 107 -8
108 3 108 3
109 0 109 0
110 3 110 3
111 0 111 0
116 0 116 0
117 0 117 0
118 138 118 126
119 126 119 113
120 0 120 0
121 Claes context 121 Claes context
122 0 122 0
...@@ -131,6 +131,9 @@ pwr_exe: ...@@ -131,6 +131,9 @@ pwr_exe:
1919 0 1919 0
1920 0 1920 0
1917 0 1917 0
1921 0
1922 4
1923 0
1907 0 1907 0
1906 1906
1905 1905
...@@ -179,6 +182,9 @@ pwr_exe: ...@@ -179,6 +182,9 @@ pwr_exe:
1919 0 1919 0
1920 0 1920 0
1917 0 1917 0
1921 0
1922 4
1923 0
1907 0 1907 0
1906 1906
1905 1905
...@@ -227,6 +233,9 @@ pwr_exe: ...@@ -227,6 +233,9 @@ pwr_exe:
1919 0 1919 0
1920 0 1920 0
1917 0 1917 0
1921 0
1922 4
1923 0
1907 0 1907 0
1906 1906
1905 1905
...@@ -275,6 +284,9 @@ pwr_exe: ...@@ -275,6 +284,9 @@ pwr_exe:
1919 0 1919 0
1920 0 1920 0
1917 1 1917 1
1921 0
1922 4
1923 1
1907 0 1907 0
1906 1906
1905 1905
...@@ -323,6 +335,9 @@ pwr_exe: ...@@ -323,6 +335,9 @@ pwr_exe:
1919 0 1919 0
1920 0 1920 0
1917 1 1917 1
1921 0
1922 4
1923 1
1907 0 1907 0
1906 1906
1905 1905
...@@ -423,6 +438,9 @@ pwr_exe: ...@@ -423,6 +438,9 @@ pwr_exe:
2620 1 2620 1
2621 0 2621 0
2622 0 2622 0
2623 0
2624 4
2625 0
99 99
26 26
2604 O6 2604 O6
...@@ -494,6 +512,9 @@ pwr_exe: ...@@ -494,6 +512,9 @@ pwr_exe:
2620 0 2620 0
2621 0 2621 0
2622 0 2622 0
2623 0
2624 4
2625 0
99 99
26 26
2604 O7 2604 O7
...@@ -565,6 +586,9 @@ pwr_exe: ...@@ -565,6 +586,9 @@ pwr_exe:
2620 0 2620 0
2621 0 2621 0
2622 0 2622 0
2623 0
2624 4
2625 0
99 99
26 26
2604 O8 2604 O8
...@@ -636,6 +660,9 @@ pwr_exe: ...@@ -636,6 +660,9 @@ pwr_exe:
2620 1 2620 1
2621 0 2621 0
2622 0 2622 0
2623 0
2624 4
2625 0
99 99
26 26
2604 O9 2604 O9
...@@ -707,6 +734,9 @@ pwr_exe: ...@@ -707,6 +734,9 @@ pwr_exe:
2620 0 2620 0
2621 0 2621 0
2622 0 2622 0
2623 0
2624 4
2625 1
99 99
19 19
1904 O10 1904 O10
...@@ -726,6 +756,9 @@ pwr_exe: ...@@ -726,6 +756,9 @@ pwr_exe:
1919 0 1919 0
1920 0 1920 0
1917 1 1917 1
1921 0
1922 4
1923 0
1907 0 1907 0
1906 1906
1905 1905
...@@ -774,6 +807,9 @@ pwr_exe: ...@@ -774,6 +807,9 @@ pwr_exe:
1919 0 1919 0
1920 0 1920 0
1917 1 1917 1
1921 0
1922 4
1923 0
1907 0 1907 0
1906 1906
1905 1905
......
...@@ -22,6 +22,9 @@ ...@@ -22,6 +22,9 @@
1919 0 1919 0
1920 0 1920 0
1917 0 1917 0
1921 0
1922 4
1923 0
1907 0 1907 0
1906 1906
1905 1905
...@@ -70,6 +73,9 @@ ...@@ -70,6 +73,9 @@
1919 0 1919 0
1920 0 1920 0
1917 0 1917 0
1921 0
1922 4
1923 0
1907 0 1907 0
1906 1906
1905 1905
...@@ -118,6 +124,9 @@ ...@@ -118,6 +124,9 @@
1919 0 1919 0
1920 0 1920 0
1917 0 1917 0
1921 0
1922 4
1923 0
1907 0 1907 0
1906 1906
1905 1905
...@@ -166,6 +175,9 @@ ...@@ -166,6 +175,9 @@
1919 0 1919 0
1920 0 1920 0
1917 1 1917 1
1921 0
1922 4
1923 1
1907 0 1907 0
1906 1906
1905 1905
...@@ -214,6 +226,9 @@ ...@@ -214,6 +226,9 @@
1919 0 1919 0
1920 0 1920 0
1917 1 1917 1
1921 0
1922 4
1923 1
1907 0 1907 0
1906 1906
1905 1905
...@@ -314,6 +329,9 @@ ...@@ -314,6 +329,9 @@
2620 1 2620 1
2621 0 2621 0
2622 0 2622 0
2623 0
2624 4
2625 0
99 99
26 26
2604 O6 2604 O6
...@@ -385,6 +403,9 @@ ...@@ -385,6 +403,9 @@
2620 0 2620 0
2621 0 2621 0
2622 0 2622 0
2623 0
2624 4
2625 0
99 99
26 26
2604 O7 2604 O7
...@@ -456,6 +477,9 @@ ...@@ -456,6 +477,9 @@
2620 0 2620 0
2621 0 2621 0
2622 0 2622 0
2623 0
2624 4
2625 0
99 99
26 26
2604 O8 2604 O8
...@@ -527,6 +551,9 @@ ...@@ -527,6 +551,9 @@
2620 1 2620 1
2621 0 2621 0
2622 0 2622 0
2623 0
2624 4
2625 0
99 99
26 26
2604 O9 2604 O9
...@@ -598,6 +625,9 @@ ...@@ -598,6 +625,9 @@
2620 0 2620 0
2621 0 2621 0
2622 0 2622 0
2623 0
2624 4
2625 1
99 99
19 19
1904 O10 1904 O10
...@@ -617,6 +647,9 @@ ...@@ -617,6 +647,9 @@
1919 0 1919 0
1920 0 1920 0
1917 1 1917 1
1921 0
1922 4
1923 0
1907 0 1907 0
1906 1906
1905 1905
...@@ -665,6 +698,9 @@ ...@@ -665,6 +698,9 @@
1919 0 1919 0
1920 0 1920 0
1917 1 1917 1
1921 0
1922 4
1923 0
1907 0 1907 0
1906 1906
1905 1905
......
...@@ -19,8 +19,8 @@ ...@@ -19,8 +19,8 @@
101 20 101 20
102 0 102 0
103 0 103 0
104 4.07705 104 3.7377
136 4.07705 136 3.7377
105 100 105 100
106 0 106 0
107 0 107 0
...@@ -30,8 +30,8 @@ ...@@ -30,8 +30,8 @@
111 0 111 0
116 0 116 0
117 0 117 0
118 138 118 127
119 127 119 114
120 1 120 1
121 Claes context 121 Claes context
122 0 122 0
...@@ -128,6 +128,9 @@ pwr_exe: ...@@ -128,6 +128,9 @@ pwr_exe:
1919 0 1919 0
1920 0 1920 0
1917 0 1917 0
1921 0
1922 2
1923 0
1907 0 1907 0
1906 1906
1905 1905
......
...@@ -22,6 +22,9 @@ ...@@ -22,6 +22,9 @@
1919 0 1919 0
1920 0 1920 0
1917 0 1917 0
1921 0
1922 2
1923 0
1907 0 1907 0
1906 1906
1905 1905
......
...@@ -19,20 +19,20 @@ ...@@ -19,20 +19,20 @@
101 20 101 20
102 -197 102 -197
103 -93 103 -93
104 19.6981 104 18.3154
136 19.6981 136 18.3154
105 100 105 100
106 -40 106 -37
107 -18 107 -17
108 1.4 108 1.4
109 0.2 109 0.2
110 1.4 110 1.4
111 0.2 111 0.2
116 0 116 0
117 0 117 0
118 138 118 128
119 126 119 115
120 1 120 0
121 Claes context 121 Claes context
122 0 122 0
126 0.1 126 0.1
...@@ -125,6 +125,9 @@ pwr_exe: ...@@ -125,6 +125,9 @@ pwr_exe:
2416 2 2416 2
2414 0 2414 0
2417 0 2417 0
2418 0
2419 4
2420 0
2407 0 2407 0
2406 2406
2405 2405
...@@ -388,7 +391,7 @@ pwr_exe: ...@@ -388,7 +391,7 @@ pwr_exe:
2614 5 2614 5
2617 2 2617 2
2615 0 2615 0
2618 0 2618 1
2607 0 2607 0
2606 2606
2612 2612
...@@ -406,6 +409,9 @@ pwr_exe: ...@@ -406,6 +409,9 @@ pwr_exe:
2620 0 2620 0
2621 0 2621 0
2622 0 2622 0
2623 0
2624 4
2625 0
99 99
99 99
99 99
...@@ -19,6 +19,9 @@ ...@@ -19,6 +19,9 @@
2416 2 2416 2
2414 0 2414 0
2417 0 2417 0
2418 0
2419 4
2420 0
2407 0 2407 0
2406 2406
2405 2405
...@@ -178,7 +181,7 @@ ...@@ -178,7 +181,7 @@
2614 5 2614 5
2617 2 2617 2
2615 0 2615 0
2618 0 2618 1
2607 0 2607 0
2606 2606
2612 2612
...@@ -196,6 +199,9 @@ ...@@ -196,6 +199,9 @@
2620 0 2620 0
2621 0 2621 0
2622 0 2622 0
2623 0
2624 4
2625 0
99 99
99 99
302 0 302 0
......
...@@ -20,19 +20,19 @@ ...@@ -20,19 +20,19 @@
101 20 101 20
102 -259 102 -259
103 -176 103 -176
104 4.07705 104 3.7377
136 4.07705 136 3.7377
105 100 105 100
106 -52 106 -48
107 -35 107 -32
108 3 108 3
109 0 109 0
110 2 110 2
111 0 111 0
116 0 116 0
117 0 117 0
118 137 118 126
119 126 119 113
120 0 120 0
121 Claes context 121 Claes context
122 0 122 0
...@@ -129,6 +129,9 @@ pwr_exe: ...@@ -129,6 +129,9 @@ pwr_exe:
1919 1 1919 1
1920 0 1920 0
1917 1 1917 1
1921 0
1922 4
1923 1
1907 0 1907 0
1906 1906
1905 1905
...@@ -174,6 +177,9 @@ pwr_exe: ...@@ -174,6 +177,9 @@ pwr_exe:
2416 2 2416 2
2414 0 2414 0
2417 0 2417 0
2418 0
2419 4
2420 0
2407 0 2407 0
2406 2406
2405 2405
...@@ -423,6 +429,9 @@ pwr_exe: ...@@ -423,6 +429,9 @@ pwr_exe:
2620 0 2620 0
2621 0 2621 0
2622 0 2622 0
2623 0
2624 4
2625 0
99 99
21 21
2104 O7 2104 O7
......
...@@ -22,6 +22,9 @@ ...@@ -22,6 +22,9 @@
1919 1 1919 1
1920 0 1920 0
1917 1 1917 1
1921 0
1922 4
1923 1
1907 0 1907 0
1906 1906
1905 1905
...@@ -67,6 +70,9 @@ ...@@ -67,6 +70,9 @@
2416 2 2416 2
2414 0 2414 0
2417 0 2417 0
2418 0
2419 4
2420 0
2407 0 2407 0
2406 2406
2405 2405
...@@ -230,6 +236,9 @@ ...@@ -230,6 +236,9 @@
2620 0 2620 0
2621 0 2621 0
2622 0 2622 0
2623 0
2624 4
2625 0
99 99
12 12
1200 2 1200 2
......
...@@ -18,19 +18,19 @@ ...@@ -18,19 +18,19 @@
101 20 101 20
102 -70 102 -70
103 -159 103 -159
104 12.174 104 11.1607
136 12.174 136 11.1607
105 100 105 100
106 -14 106 -13
107 -32 107 -29
108 8.5172 108 8.5172
109 -1 109 -1
110 1 110 1
111 -1 111 -1
116 0 116 0
117 0 117 0
118 138 118 127
119 126 119 113
120 0 120 0
121 Claes context 121 Claes context
122 0 122 0
...@@ -187,6 +187,9 @@ pwr_exe: ...@@ -187,6 +187,9 @@ pwr_exe:
2620 0 2620 0
2621 0 2621 0
2622 0 2622 0
2623 0
2624 4
2625 0
99 99
26 26
2604 O5 2604 O5
...@@ -246,6 +249,9 @@ pwr_exe: ...@@ -246,6 +249,9 @@ pwr_exe:
2620 1 2620 1
2621 0 2621 0
2622 0 2622 0
2623 0
2624 4
2625 1
99 99
26 26
2604 O6 2604 O6
...@@ -305,6 +311,9 @@ pwr_exe: ...@@ -305,6 +311,9 @@ pwr_exe:
2620 0 2620 0
2621 0 2621 0
2622 0 2622 0
2623 0
2624 4
2625 1
99 99
26 26
2604 O7 2604 O7
...@@ -360,6 +369,9 @@ pwr_exe: ...@@ -360,6 +369,9 @@ pwr_exe:
2620 0 2620 0
2621 0 2621 0
2622 0 2622 0
2623 0
2624 4
2625 0
99 99
99 99
99 99
...@@ -82,6 +82,9 @@ ...@@ -82,6 +82,9 @@
2620 0 2620 0
2621 0 2621 0
2622 0 2622 0
2623 0
2624 4
2625 0
99 99
26 26
2604 O5 2604 O5
...@@ -141,6 +144,9 @@ ...@@ -141,6 +144,9 @@
2620 1 2620 1
2621 0 2621 0
2622 0 2622 0
2623 0
2624 4
2625 1
99 99
26 26
2604 O6 2604 O6
...@@ -200,6 +206,9 @@ ...@@ -200,6 +206,9 @@
2620 0 2620 0
2621 0 2621 0
2622 0 2622 0
2623 0
2624 4
2625 1
99 99
26 26
2604 O7 2604 O7
...@@ -255,6 +264,9 @@ ...@@ -255,6 +264,9 @@
2620 0 2620 0
2621 0 2621 0
2622 0 2622 0
2623 0
2624 4
2625 0
99 99
99 99
302 0 302 0
......
...@@ -18,19 +18,19 @@ ...@@ -18,19 +18,19 @@
101 20 101 20
102 0 102 0
103 -45 103 -45
104 22.7071 104 20.8171
136 22.7071 136 20.8171
105 100 105 100
106 0 106 0
107 -9 107 -8
108 5 108 5
109 0 109 0
110 1 110 1
111 0 111 0
116 0 116 0
117 0 117 0
118 138 118 127
119 126 119 113
120 1 120 1
121 Claes context 121 Claes context
122 0 122 0
...@@ -139,6 +139,9 @@ pwr_exe: ...@@ -139,6 +139,9 @@ pwr_exe:
1919 0 1919 0
1920 0 1920 0
1917 0 1917 0
1921 0
1922 2
1923 0
1907 0 1907 0
1906 1906
1905 1905
...@@ -261,6 +264,9 @@ pwr_exe: ...@@ -261,6 +264,9 @@ pwr_exe:
2620 0 2620 0
2621 0 2621 0
2622 0 2622 0
2623 0
2624 4
2625 1
99 99
23 23
2304 O3 2304 O3
......
...@@ -22,6 +22,9 @@ ...@@ -22,6 +22,9 @@
1919 0 1919 0
1920 0 1920 0
1917 0 1917 0
1921 0
1922 2
1923 0
1907 0 1907 0
1906 1906
1905 1905
...@@ -144,6 +147,9 @@ ...@@ -144,6 +147,9 @@
2620 0 2620 0
2621 0 2621 0
2622 0 2622 0
2623 0
2624 4
2625 1
99 99
29 29
2907 2907
......
...@@ -18,19 +18,19 @@ ...@@ -18,19 +18,19 @@
101 20 101 20
102 -26 102 -26
103 -115 103 -115
104 34.3819 104 31.5203
136 34.3819 136 31.5203
105 100 105 100
106 -5 106 -4
107 -23 107 -21
108 3 108 3
109 0 109 0
110 1 110 1
111 0 111 0
116 0 116 0
117 0 117 0
118 138 118 126
119 126 119 113
120 0 120 0
121 Claes context 121 Claes context
122 0 122 0
...@@ -127,6 +127,9 @@ pwr_exe: ...@@ -127,6 +127,9 @@ pwr_exe:
1919 0 1919 0
1920 0 1920 0
1917 1 1917 1
1921 0
1922 2
1923 0
1907 0 1907 0
1906 1906
1905 1905
...@@ -219,6 +222,9 @@ pwr_exe: ...@@ -219,6 +222,9 @@ pwr_exe:
2620 1 2620 1
2621 0 2621 0
2622 0 2622 0
2623 0
2624 4
2625 1
99 99
26 26
2604 O2 2604 O2
...@@ -282,6 +288,9 @@ pwr_exe: ...@@ -282,6 +288,9 @@ pwr_exe:
2620 0 2620 0
2621 0 2621 0
2622 0 2622 0
2623 0
2624 4
2625 1
99 99
23 23
2304 O3 2304 O3
......
...@@ -22,6 +22,9 @@ ...@@ -22,6 +22,9 @@
1919 0 1919 0
1920 0 1920 0
1917 1 1917 1
1921 0
1922 2
1923 0
1907 0 1907 0
1906 1906
1905 1905
...@@ -114,6 +117,9 @@ ...@@ -114,6 +117,9 @@
2620 1 2620 1
2621 0 2621 0
2622 0 2622 0
2623 0
2624 4
2625 1
99 99
26 26
2604 O2 2604 O2
...@@ -177,6 +183,9 @@ ...@@ -177,6 +183,9 @@
2620 0 2620 0
2621 0 2621 0
2622 0 2622 0
2623 0
2624 4
2625 1
99 99
29 29
2907 2907
......
...@@ -25,19 +25,19 @@ ...@@ -25,19 +25,19 @@
101 20 101 20
102 -85 102 -85
103 -128 103 -128
104 20.0931 104 18.4207
136 20.0931 136 18.4207
105 100 105 100
106 -17 106 -15
107 -26 107 -23
108 3 108 3
109 0 109 0
110 2 110 2
111 0 111 0
116 0 116 0
117 0 117 0
118 138 118 126
119 126 119 113
120 0 120 0
121 Claes context 121 Claes context
122 0 122 0
...@@ -134,6 +134,9 @@ pwr_exe: ...@@ -134,6 +134,9 @@ pwr_exe:
1919 1 1919 1
1920 0 1920 0
1917 1 1917 1
1921 0
1922 4
1923 1
1907 0 1907 0
1906 1906
1905 1905
...@@ -179,6 +182,9 @@ pwr_exe: ...@@ -179,6 +182,9 @@ pwr_exe:
2416 2 2416 2
2414 0 2414 0
2417 0 2417 0
2418 0
2419 4
2420 0
2407 0 2407 0
2406 2406
2405 2405
...@@ -268,6 +274,9 @@ pwr_exe: ...@@ -268,6 +274,9 @@ pwr_exe:
2620 0 2620 0
2621 0 2621 0
2622 0 2622 0
2623 0
2624 4
2625 1
99 99
23 23
2304 O4 2304 O4
......
...@@ -22,6 +22,9 @@ ...@@ -22,6 +22,9 @@
1919 1 1919 1
1920 0 1920 0
1917 1 1917 1
1921 0
1922 4
1923 1
1907 0 1907 0
1906 1906
1905 1905
...@@ -67,6 +70,9 @@ ...@@ -67,6 +70,9 @@
2416 2 2416 2
2414 0 2414 0
2417 0 2417 0
2418 0
2419 4
2420 0
2407 0 2407 0
2406 2406
2405 2405
...@@ -156,6 +162,9 @@ ...@@ -156,6 +162,9 @@
2620 0 2620 0
2621 0 2621 0
2622 0 2622 0
2623 0
2624 4
2625 1
99 99
29 29
2907 2907
......
...@@ -18,19 +18,19 @@ ...@@ -18,19 +18,19 @@
101 20 101 20
102 -85 102 -85
103 -128 103 -128
104 20.0931 104 18.4207
136 20.0931 136 18.4207
105 100 105 100
106 -17 106 -15
107 -26 107 -23
108 3 108 3
109 0 109 0
110 2 110 2
111 0 111 0
116 0 116 0
117 0 117 0
118 138 118 126
119 126 119 113
120 1 120 1
121 Claes context 121 Claes context
122 0 122 0
...@@ -127,6 +127,9 @@ pwr_exe: ...@@ -127,6 +127,9 @@ pwr_exe:
1919 1 1919 1
1920 0 1920 0
1917 1 1917 1
1921 0
1922 4
1923 1
1907 0 1907 0
1906 1906
1905 1905
...@@ -172,6 +175,9 @@ pwr_exe: ...@@ -172,6 +175,9 @@ pwr_exe:
2416 2 2416 2
2414 0 2414 0
2417 0 2417 0
2418 0
2419 4
2420 0
2407 0 2407 0
2406 2406
2405 2405
...@@ -261,6 +267,9 @@ pwr_exe: ...@@ -261,6 +267,9 @@ pwr_exe:
2620 0 2620 0
2621 0 2621 0
2622 0 2622 0
2623 0
2624 4
2625 1
99 99
23 23
2304 O4 2304 O4
......
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment