Android Open Source - i_search Shape Table






From Project

Back to project page i_search.

License

The source code is released under:

GNU General Public License

If you think the Android project i_search listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package com.shapes.shapes;
 //from  w  w w  . j av  a2s . c  om
import java.util.ArrayList;
import java.util.List;

import android.content.ContentValues;
import android.content.Context;
import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteOpenHelper;

public final class ShapeTable
{

  public static boolean CREATED = false;
  public static int DATABASE_VERSION = 1;
    // Database Name
    public static final String DATABASE_NAME = "shape_app";
    // table names
    public static final String TABLE_SHAPES = "Shapes";
    private static final String TABLE_SETTINGS = "Settings";
    private static final String TABLE_SEARCH = "Search";
    private static final String TABLE_COLUMN_ANALYSIS = "Column_Analysis";
    private static final String TABLE_BEAM_ANALYSIS = "Beam_Analysis";
    private static final String TABLE_SELECTED_SHAPE = "Selected_Shape";
   
    // Creating Tables
    public static void onCreate(SQLiteDatabase db) 
    {
      // create tables
        String SHAPES_TABLE_CREATE = "CREATE TABLE " + TABLE_SHAPES + "(" +
                "id INTEGER PRIMARY KEY, " +
                "start_year INTEGER, " +
                "end_year INTEGER, " +
                "edition TEXT, " +
                "designation TEXT, " +
                "ag REAL, " +
                "d REAL, " + 
                "tw REAL, " +
                "bf REAL, " +
                "tf REAL, " +
                "h REAL, " +
                "ho REAL, " +
                "aweb REAL, " +
                "aw REAL, " +
                "bf_2tf REAL, " +
                "h_tw REAL, " +
                "ix REAL, " +
                "zx REAL, " +
                "sx REAL, " +
                "rx REAL, " +
                "iy REAL, " +
                "iyc_over_iy REAL, " +
                "ry REAL, " +
                "j REAL, " +
                "rt REAL, " +
                "rts REAL " +    
        ");";
        
        db.execSQL(SHAPES_TABLE_CREATE);
        
        String SETTINGS_TABLE_CREATE = "CREATE TABLE " + TABLE_SETTINGS + "(" +
                "id INTEGER PRIMARY KEY, " +
        "d_tolerance REAL, " +
        "bf_tolerance REAL, " +
        "tf_tolerance REAL, " +
        "tw_tolerance REAL, " +
        "year_tolerance REAL," +
        "code INTEGER" +        
        ");";
        
        db.execSQL(SETTINGS_TABLE_CREATE);
        
        String SEARCH_TABLE_CREATE = "CREATE TABLE " + TABLE_SEARCH + "(" + 
            "id INTEGER PRIMARY KEY, " +
            "d REAL, " +
        "bf REAL, " +
        "tf REAL, " +
        "tw REAL, " +
        "year INTEGER " +
            ");";
        
        db.execSQL(SEARCH_TABLE_CREATE);
        
        String BEAM_ANALYSIS_TABLE_CREATE = "CREATE TABLE " + TABLE_BEAM_ANALYSIS + "(" +
            "id INTEGER PRIMARY KEY," + 
            "left_cantilever REAL," +
            "main_span REAL," +
            "right_cantilever REAL," +
            "top_flange REAL," +
            "bottom_flange REAL," +
            "yield_strength INTEGER," +
            "live_limit INTEGER," +
            "live_absolute REAL," +
            "total_limit INTEGER," +
            "total_absolute REAL," +
            "dead_load REAL," +
            "live_load REAL," +
            "d REAL," +
            "bf REAL," +
            "tf REAL," +
            "tw REAL" +
            ");";
        
        db.execSQL(BEAM_ANALYSIS_TABLE_CREATE);      
        
        String COLUMN_ANALYSIS_TABLE_CREATE = "CREATE TABLE " + TABLE_COLUMN_ANALYSIS + "(" +
            "id INTEGER PRIMARY KEY," + 
            "height REAL," +
            "weak_axis REAL," +
            "strong_axis REAL," +
            "yield_strength INTEGER," +
            "d REAL," +
            "bf REAL," +
            "tf REAL," +
            "tw REAL" +
            ");";
        
        db.execSQL(COLUMN_ANALYSIS_TABLE_CREATE);   
        
        String SELECTED_SHAPES_TABLE_CREATE = "CREATE TABLE " + TABLE_SELECTED_SHAPE + "(" +
            "id INTEGER PRIMARY KEY, " +
                "start_year INTEGER, " +
                "end_year INTEGER, " +
                "edition TEXT, " +
                "designation TEXT, " +
                "ag REAL, " +
                "d REAL, " + 
                "tw REAL, " +
                "bf REAL, " +
                "tf REAL, " +
                "h REAL, " +
                "ho REAL, " +
                "aweb REAL, " +
                "aw REAL, " +
                "bf_2tf REAL, " +
                "h_tw REAL, " +
                "ix REAL, " +
                "zx REAL, " +
                "sx REAL, " +
                "rx REAL, " +
                "iy REAL, " +
                "iyc_over_iy REAL, " +
                "ry REAL, " +
                "j REAL, " +
                "rt REAL, " +
                "rts REAL " +        
        ");";
    
        db.execSQL(SELECTED_SHAPES_TABLE_CREATE);   
        
        // insert default values
        String sql = "INSERT INTO " + TABLE_SETTINGS +
          "(" +
            "id" +
            ", d_tolerance" +
            ", bf_tolerance" +
            ", tf_tolerance" +
            ", tw_tolerance" +
            ", year_tolerance" +
            ", code" +
          ")" +
          "VALUES" +
          "(" +
            "'1'" +
            ", '0.5000'" +
            ", '0.2500'" +
            ", '0.0625'" +
            ", '0.0625'" +            
            ", '10'" +
            ", '0'" +
          "); ";
        
        db.execSQL(sql);
        
        sql = "INSERT INTO " + TABLE_SELECTED_SHAPE + 
            "(" +
            "id" +
            ",start_year" +
            ", end_year" +
            ", edition" +
            ", designation" +
            ", ag" +
            ", d" +
            ", tw" +
            ", bf" +
            ", tf" +
            ", h" +
            ", ho" +
            ", aweb" +
            ", aw" +
            ", bf_2tf" +
            ", h_tw" +
            ", ix" +
            ", zx" +
            ", sx" +
            ", rx" +
            ", iy" +
            ", iyc_over_iy" +
            ", ry" +
            ", j" +
            ", rt" +
            ", rts" +
            ") " +
            "VALUES" +
            "(" +
            "'1'" +
            ",'0'" +
            ",'0'" +
            ",''" +
            ",''" +
            ",'0'" +
            ",'0'" +
            ",'0'" +
            ",'0'" +
            ",'0'" +
            ",'0'" +
            ",'0'" +
            ",'0'" +
            ",'0'" +
            ",'0'" +
            ",'0'" +
            ",'0'" +
            ",'0'" +
            ",'0'" +
            ",'0'" +
            ",'0'" +
            ",'0'" +
            ",'0'" +
            ",'0'" +
            ",'0'" +
            ",'0'" +
            ");";
        
        db.execSQL(sql);
        
        sql = "INSERT INTO " + TABLE_COLUMN_ANALYSIS +
            "(" +
            "id" +
            ", height" +
            ", weak_axis" +
            ", strong_axis" +
            ", yield_strength" +
            ", d" +
            ", bf" +
            ", tf" +
            ", tw" +
            ")" +
            "VALUES" +
            "(" +
            "'1'" +
            ",'0'" +
            ",'0'" +
            ",'0'" +
            ",'0'" +
            ",'0'" +
            ",'0'" +
            ",'0'" +
            ",'0'" +
            ");";
        
        db.execSQL(sql);            
        
        sql = "INSERT INTO " + TABLE_BEAM_ANALYSIS + 
            "(" +
            "id" + 
            ", left_cantilever" +
            ", main_span" +
            ", right_cantilever" +
            ", top_flange" +
            ", bottom_flange" +
            ", yield_strength" +
            ", live_limit" +
            ", live_absolute" +
            ", total_limit" +
            ", total_absolute" +
            ", dead_load" +
            ", live_load" +
            ", d" +
            ", bf" +
            ", tf" +
            ", tw" +
            ")" +
            "VALUES" +
            "(" +
            "'1'" +
            ",'0'" +
            ",'0'" +
            ",'0'" +
            ",'0'" +
            ",'0'" +
            ",'0'" +
            ",'360'" +
            ",'0'" +
            ",'240'" +
            ",'0'" +
            ",'0'" +
            ",'0'" +
            ",'0'" +
            ",'0'" +
            ",'0'" +
            ",'0'" +
            ");";
        
        db.execSQL(sql);
        
        sql = "INSERT INTO " + TABLE_SEARCH + 
            "(" +
            "id" +
            ", d" +
            ", bf" +
            ", tf" +
            ", tw" +
            ", year" +
            ")" +
            " VALUES" +
            "(" +
            "'1'" +
            ",'0'" +
            ",'0'" +
            ",'0'" +
            ",'0'" +
            ",'0'" +
            ");";
            
        db.execSQL(sql);
        
        create_database(db);       
    }
 
    // Upgrading database
    public static void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) 
    {
        // Drop older table if existed
        db.execSQL("DROP TABLE IF EXISTS " + TABLE_SHAPES);
        db.execSQL("DROP TABLE IF EXISTS " + TABLE_SETTINGS);
        db.execSQL("DROP TABLE IF EXISTS " + TABLE_SEARCH);
        db.execSQL("DROP TABLE IF EXISTS " + TABLE_COLUMN_ANALYSIS);
        db.execSQL("DROP TABLE IF EXISTS " + TABLE_BEAM_ANALYSIS);
        db.execSQL("DROP TABLE IF EXISTS " + TABLE_SELECTED_SHAPE);
        
        // Create tables again
        onCreate(db);
  }
  
  public Shape[] getShapes(final Context context, float d, float bf, float tf, float tw, float year, float d_tolerance, float bf_tolerance, float tf_tolerance, float tw_tolerance, float year_tolerance) 
  {      
    SQLiteOpenHelper openHelper = new OpenHelper(context);
      SQLiteDatabase db = openHelper.getWritableDatabase();
      List<Shape> shapes_list = new ArrayList<Shape>();
      String q = null;
      Cursor c = null;
      Shape[] shapes;
    
    q = "SELECT * " +
      "FROM " + TABLE_SHAPES +
      " WHERE " +
      "1=1 ";
    
    if(d > 0)
    {      
      String upper = Float.toString(d + d_tolerance);
      String lower = Float.toString(d - d_tolerance);
      
      q += " AND (d >= '" + lower + "' AND d <= '" + upper + "')";
    }
    if(bf > 0)
    {      
      String upper = Float.toString(bf + bf_tolerance);
      String lower = Float.toString(bf - bf_tolerance);
      
      q += " AND (bf >= '" + lower + "' AND bf <= '" + upper + "')";
    }
    if(tf > 0)
    {
      String upper = Float.toString(tf + tf_tolerance);
      String lower = Float.toString(tf - tf_tolerance);      
      
      q += " AND (tf >= '" + lower + "' AND tf <= '" + upper + "')";
    }
    if(tw > 0)
    {
      String upper = Float.toString(tw + tw_tolerance);
      String lower = Float.toString(tw - tw_tolerance);    
      
      q += " AND (tw >= '" + lower + "' AND tw <= '" + upper + "')";
    }
    if(year > 0)
    {
      String upper = Float.toString(year + year_tolerance);
      String lower = Float.toString(year - year_tolerance);    
      
      q += " AND ((start_year <= '" + lower + "' AND end_year >= '" + lower + "') OR (('" + upper + "' >= start_year) AND ('" + upper + "' < end_year)))";
    }
    
    q += " ORDER BY designation DESC, end_year DESC, start_year DESC;";
    
        c = db.rawQuery(q, null);
    
    while(c.moveToNext())
      shapes_list.add(this.buildShapeFromCursor(c));
    
    if(!c.isClosed())
      c.close();
    
    db.close();
    
    shapes = new Shape[shapes_list.size()];
    shapes_list.toArray(shapes);
    
    // return shape
    return shapes;
  }
  
  public Shape getShape(final Context context, int shape_id)
  {
    SQLiteOpenHelper openHelper = new OpenHelper(context);
      SQLiteDatabase db = openHelper.getWritableDatabase();
      String q = null;
      Cursor c = null;
      Shape selected = new Shape();
    
    q = "SELECT * " +
      "FROM " + TABLE_SHAPES +
      " WHERE id = " + shape_id + ";";
    
        c = db.rawQuery(q, null);
    
        // build class from cursor
    if(c.moveToFirst())
      selected = buildShapeFromCursor(c);
    
    if(!c.isClosed())
      c.close();
    
    db.close();
    
    return selected;
  }
  
  private Shape buildShapeFromCursor(Cursor c)
  {
    Shape shape = null;
    if(c != null)
    {
      shape = new Shape(c.getInt(0),
        c.getInt(1),
        c.getInt(2),
        c.getString(3),
        c.getString(4),
        c.getDouble(5),
        c.getDouble(6),
        c.getDouble(7),
        c.getDouble(8),
        c.getDouble(9),
        c.getDouble(10),
        c.getDouble(11),
        c.getDouble(12),
        c.getDouble(13),
        c.getDouble(14),
        c.getDouble(15),
        c.getDouble(16),
        c.getDouble(17),
        c.getDouble(18),
        c.getDouble(19),
        c.getDouble(20),
        c.getDouble(21),
        c.getDouble(22),
        c.getDouble(23),
        c.getDouble(24),
        c.getDouble(25)
      );
    }
    return shape;
  }
  
  public float[] getSettings(final Context context)
  {
    SQLiteOpenHelper openHelper = new OpenHelper(context);
      SQLiteDatabase db = openHelper.getWritableDatabase();
      String q = null;
      Cursor c = null;
      
    float[] settings = new float[7];
    /* 0 - id
     * 1 - d tolerance
     * 2 - bf tolerance
     * 3 - tf tolerance
     * 4 - tw tolerance 
     * 5 - years tolerance
     * 6 - code
     */
    
    q = "SELECT * " +
      "FROM " + TABLE_SETTINGS +
      " WHERE id = '1'";
    
        c = db.rawQuery(q, null);
    
    if(c.moveToFirst())
    {
      settings[1] = c.getFloat(1);
      settings[2] = c.getFloat(2);
      settings[3] = c.getFloat(3);
      settings[4] = c.getFloat(4);
      settings[5] = c.getFloat(5);
      settings[6] = c.getFloat(6);
    }
    
    if(!c.isClosed())
      c.close();
    
    db.close();
    
    // return shape
    return settings;
  }
  
  public boolean updateSettings(float[] settings, Context context) 
  {
    boolean result = false;
    
    SQLiteOpenHelper openHelper = new OpenHelper(context);
      SQLiteDatabase db = openHelper.getWritableDatabase();
   
    ContentValues values = new ContentValues();
    values.put("d_tolerance", settings[1]);
    values.put("bf_tolerance", settings[2]);
    values.put("tf_tolerance", settings[3]);
    values.put("tw_tolerance", settings[4]);
    values.put("year_tolerance", settings[5]);
    values.put("code", settings[6]);
   
    // updating row
    if((db.update(TABLE_SETTINGS, values, "id = 1", null)) > 0)
      result = true;
    
    db.close();
    
    return result;
  }
  
  public float[] getSearch(final Context context)
  {
    SQLiteOpenHelper openHelper = new OpenHelper(context);
      SQLiteDatabase db = openHelper.getWritableDatabase();
      String q = null;
      Cursor c = null;
      
    float[] search = new float[6];
    /* 1 - d tolerance
     * 2 - bf tolerance
     * 3 - tf tolerance
     * 4 - tw tolerance 
     * 5 - years
     */
    
    q = "SELECT * " +
      "FROM " + TABLE_SEARCH +
      " WHERE id = '1'";
    
        c = db.rawQuery(q, null);
    
    if(c.moveToFirst())
    {
      search[0] = c.getFloat(0);
      search[1] = c.getFloat(1);
      search[2] = c.getFloat(2);
      search[3] = c.getFloat(3);
      search[4] = c.getFloat(4);
      search[5] = c.getInt(5);
    }
    
    if(!c.isClosed())
      c.close();
    
    db.close();
    
    // return shape
    return search;
  }
  
  // Update search
  public boolean updateSearch(float[] search, Context context) 
  {
    boolean result = false;
    
    SQLiteOpenHelper openHelper = new OpenHelper(context);
      SQLiteDatabase db = openHelper.getWritableDatabase();
   
    ContentValues values = new ContentValues();
    values.put("d", search[1]);
    values.put("bf", search[2]);
    values.put("tf", search[3]);
    values.put("tw", search[4]);
    values.put("year", search[5]);
   
    // updating row
    if((db.update(TABLE_SEARCH, values, "id = 1", null)) > 0)
      result = true;
    
    db.close();
    
    return result;
  }
  
  // get column analysis
  public ColumnAnalysis getColumnAnalysis(final Context context)
  {
    SQLiteOpenHelper openHelper = new OpenHelper(context);
      SQLiteDatabase db = openHelper.getWritableDatabase();
      String q = null;
      Cursor c = null;
      ColumnAnalysis column = new ColumnAnalysis();
    
    q = "SELECT * " +
      "FROM " + TABLE_COLUMN_ANALYSIS +
      " WHERE id = '1'";
    
        c = db.rawQuery(q, null);
    
        // build class from cursor
    if(c.moveToFirst())
    {
      column.setHeight(c.getDouble(1));
      column.setWeakAxis(c.getDouble(2));
      column.setStrongAxis(c.getDouble(3));
      column.setYieldStrength(c.getInt(4));
      column.set_d(c.getDouble(5));
      column.set_bf(c.getDouble(6));
      column.set_tf(c.getDouble(7));
      column.set_tw(c.getDouble(8));    
    }
    
    if(!c.isClosed())
      c.close();
    
    db.close();
    
    return column;
  }
  
  // Update column analysis
  public boolean updateColumnAnalysis(ColumnAnalysis column, Context context) 
  {
    boolean result = false;
    
    SQLiteOpenHelper openHelper = new OpenHelper(context);
      SQLiteDatabase db = openHelper.getWritableDatabase();
   
    ContentValues values = new ContentValues();
    values.put("height", column.getHeight());
    values.put("weak_axis", column.getWeakAxis());
    values.put("strong_axis", column.getStrongAxis());
    values.put("yield_strength", column.getYieldStrength());
    values.put("d", column.get_d());
    values.put("bf", column.get_bf());
    values.put("tf", column.get_tf());
    values.put("tw", column.get_tw());
   
    // updating row
    if((db.update(TABLE_COLUMN_ANALYSIS, values, "id = 1", null)) > 0)
      result = true;
    
    db.close();
    
    return result;
  }
  
  // get beam analysis
  public BeamAnalysis getBeamAnalysis(final Context context)
  {
    SQLiteOpenHelper openHelper = new OpenHelper(context);
      SQLiteDatabase db = openHelper.getWritableDatabase();
      String q = null;
      Cursor c = null;
      BeamAnalysis beam = new BeamAnalysis();
    
    q = "SELECT * " +
      "FROM " + TABLE_BEAM_ANALYSIS +
      " WHERE id = '1'";
    
        c = db.rawQuery(q, null);
    
        // build class from cursor
    if(c.moveToFirst())
    {
      beam.setLeftCantilever(c.getDouble(1));
      beam.setMainSpan(c.getDouble(2));
      beam.setRightCantilever(c.getDouble(3));
      beam.setTopFlange(c.getDouble(4));
      beam.setBottomFlange(c.getDouble(5));
      beam.setYieldStrength(c.getInt(6));
      beam.setLiveLimit(c.getInt(7));
      beam.setLiveAbsolute(c.getDouble(8));
      beam.setTotalLimit(c.getInt(9));
      beam.setTotalAbsolute(c.getDouble(10));      
      beam.setDeadLoad(c.getDouble(11));
      beam.setLiveLoad(c.getDouble(12));
      beam.set_d(c.getDouble(13));
      beam.set_bf(c.getDouble(14));
      beam.set_tf(c.getDouble(15));
      beam.set_tw(c.getDouble(16));    
    }
    
    if(!c.isClosed())
      c.close();
    
    db.close();
    
    return beam;
  }
  
  // Update column analysis
  public boolean updateBeamAnalysis(BeamAnalysis beam, Context context) 
  {
    boolean result = false;
    
    SQLiteOpenHelper openHelper = new OpenHelper(context);
      SQLiteDatabase db = openHelper.getWritableDatabase();
   
    ContentValues values = new ContentValues();
    
    // if(beam.getLeftCantilever() > 0)
      values.put("left_cantilever", beam.getLeftCantilever());
    if(beam.getMainSpan() > 0)
      values.put("main_span", beam.getMainSpan());
    // if(beam.getRightCantilever() > 0)
      values.put("right_cantilever", beam.getRightCantilever());
    // if(beam.getTopFlange() > 0)
      values.put("top_flange", beam.getTopFlange());
    // if(beam.getBottomFlange() > 0)
      values.put("bottom_flange", beam.getBottomFlange());
    if(beam.getYieldStrength() > 0)
      values.put("yield_strength", beam.getYieldStrength());
    // if(beam.getLiveLimit() > 0)
      values.put("live_limit", beam.getLiveLimit());
    // if(beam.getLiveAbsolute() > 0)
      values.put("live_absolute",  beam.getLiveAbsolute());
    // if(beam.getTotalLimit() > 0)
      values.put("total_limit",  beam.getTotalLimit());
    // if(beam.getTotalAbsolute() > 0)
      values.put("total_absolute", beam.getTotalAbsolute());
    // if(beam.getDeadLoad() > 0)
      values.put("dead_load", beam.getDeadLoad());
    // if(beam.getLiveLoad() > 0)
      values.put("live_load", beam.getLiveLoad());
    // if( beam.get_d() > 0)
      values.put("d", beam.get_d());
    // if(beam.get_bf() > 0)
      values.put("bf", beam.get_bf());
    // if(beam.get_tf() > 0)
      values.put("tf", beam.get_tf());
    // if(beam.get_tw() > 0)
      values.put("tw", beam.get_tw());
   
    // updating row
    if((db.update(TABLE_BEAM_ANALYSIS, values, "id = 1", null)) > 0)
      result = true;
    
    db.close();
    
    return result;
  }
  
  public Shape getSelected(final Context context)
  {
    SQLiteOpenHelper openHelper = new OpenHelper(context);
      SQLiteDatabase db = openHelper.getWritableDatabase();
      String q = null;
      Cursor c = null;
      Shape selected = new Shape();
    
    q = "SELECT * " +
      "FROM " + TABLE_SELECTED_SHAPE +
      " WHERE id = '1';";
    
        c = db.rawQuery(q, null);
    
        // build class from cursor
    if(c.moveToFirst())
      selected = buildShapeFromCursor(c);
    
    if(!c.isClosed())
      c.close();
    
    db.close();
    
    return selected;
  }
  
  public boolean updateSelected(Shape selected, Context context)
  {
    boolean result = false;
    
    SQLiteOpenHelper openHelper = new OpenHelper(context);
      SQLiteDatabase db = openHelper.getWritableDatabase();
      
    ContentValues values = new ContentValues();
    values.put("start_year", selected.get_start_year());
    values.put("end_year", selected.get_end_year());
    values.put("edition", selected.get_edition());
    values.put("designation", selected.get_designation());
    values.put("ag", selected.get_ag());
    values.put("d", selected.get_d());
    values.put("tw", selected.get_tw());
    values.put("bf", selected.get_bf());
    values.put("tf", selected.get_tf());
    values.put("h", selected.get_h());
    values.put("ho", selected.get_ho());
    values.put("aweb", selected.get_aweb());
    values.put("aw", selected.get_aw());
    values.put("bf_2tf", selected.get_bf_2tf());
    values.put("h_tw", selected.get_h_tw());
    values.put("ix", selected.get_ix());
    values.put("zx", selected.get_zx());
    values.put("sx", selected.get_sx());
    values.put("rx", selected.get_rx());
    values.put("iy", selected.get_iy());
    values.put("iyc_over_iy", selected.get_iyc_over_iy());
    values.put("ry", selected.get_ry());
    values.put("j", selected.get_j());
    values.put("rt", selected.get_rt());
    values.put("rts", selected.get_rts());
    
    // updating row
    if((db.update(TABLE_SELECTED_SHAPE, values, "id = 1", null)) > 0)
      result = true;
    
    db.close();
    
    return result;
  }
  
  /* 
   db.execSQL("CREATE TABLE customer (_id INTEGER PRIMARY KEY NOT NULL, " 
                       + "phone_number INTEGER NOT NULL, "
                       + "name TEXT NOT NULL, "
                       + "email TEXT NOT NULL, "
                       + "address TEXT);");


   //get code
String q = "SELECT * FROM customer WHERE _id = " + customerDbId +";"
       Cursor mCursor = mDb.rawQuery(q, null);

       Customer customer = new Customer (mCursor);
   
  // Getting All Contacts
  public List<Contact> getAllContacts() 
  {
    List<Contact> contactList = new ArrayList<Contact>();
    // Select All Query
    String selectQuery = "SELECT  * FROM " + TABLE_CONTACTS;
   
    SQLiteDatabase db = this.getWritableDatabase();
    Cursor cursor = db.rawQuery(selectQuery, null);
   
    // looping through all rows and adding to list
    if (cursor.moveToFirst()) {
      do {
        Contact contact = new Contact();
        contact.setID(Integer.parseInt(cursor.getString(0)));
        contact.setName(cursor.getString(1));
        contact.setPhoneNumber(cursor.getString(2));
        // Adding contact to list
        contactList.add(contact);
      } while (cursor.moveToNext());
    }
   
    // return contact list
    return contactList;
  }
    
  // Adding new contact
  public void addContact(Contact contact) {
    SQLiteDatabase db = this.getWritableDatabase();
   
    ContentValues values = new ContentValues();
    values.put(KEY_NAME, contact.getName()); // Contact Name
    values.put(KEY_PH_NO, contact.getPhoneNumber()); // Contact Phone Number
   
    // Inserting Row
    db.insert(TABLE_CONTACTS, null, values);
    db.close(); // Closing database connection
  }
  
  // Getting contacts Count
    public int getContactsCount() 
    {
       String countQuery = "SELECT  * FROM " + TABLE_CONTACTS;
       SQLiteDatabase db = this.getReadableDatabase();
       Cursor cursor = db.rawQuery(countQuery, null);
       cursor.close();

       // return count
       return cursor.getCount();
   }
  
  // Updating single contact
  public int updateContact(Contact contact) {
    SQLiteDatabase db = this.getWritableDatabase();
   
    ContentValues values = new ContentValues();
    values.put(KEY_NAME, contact.getName());
    values.put(KEY_PH_NO, contact.getPhoneNumber());
   
    // updating row
    return db.update(TABLE_CONTACTS, values, KEY_ID + " = ?",
        new String[] { String.valueOf(contact.getID()) });
  }
   
  // Deleting single contact
  public void deleteContact(Contact contact) {
    SQLiteDatabase db = this.getWritableDatabase();
    db.delete(TABLE_CONTACTS, KEY_ID + " = ?",
        new String[] { String.valueOf(contact.getID()) });
    db.close();
  }  
  */
  
  public static void create_database(SQLiteDatabase db)
  {
    ArrayList<String> sql = new ArrayList<String>();
    
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('2001', '2100', 'LRFD3-13th', 'W44x335', '98.5', '44', '1.03', '15.9', '1.77', '38.88', '42.23', '45.32', '1.422961305', '4.491525424', '37.74757282', '31100', '1620', '1410', '17.8', '1200', '0.494085544', '3.49', '74.7', '4.275098227', '4.239128774');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('2001', '2100', 'LRFD3-13th', 'W44x290', '85.4', '43.6', '0.865', '15.8', '1.58', '38.88', '42.02', '37.714', '1.347187951', '5', '44.94797688', '27000', '1410', '1240', '17.8', '1040', '0.499360013', '3.49', '50.9', '4.255023557', '4.197772067');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('2001', '2100', 'LRFD3-13th', 'W44x262', '76.9', '43.3', '0.785', '15.8', '1.42', '38.9', '41.88', '33.9905', '1.361049207', '5.563380282', '49.55414013', '24100', '1270', '1110', '17.7', '923', '0.505681026', '3.47', '37.3', '4.241256323', '4.17280125');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('2001', '2100', 'LRFD3-13th', 'W44x230', '67.7', '42.9', '0.71', '15.8', '1.22', '38.88', '41.68', '30.459', '1.432081345', '6.475409836', '54.76056338', '20800', '1100', '971', '17.5', '796', '0.503775193', '3.43', '24.9', '4.210694147', '4.133289038');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2100', 'LRFD1-13th', 'W40x593', '174', '43', '1.79', '16.7', '3.23', '34.18', '39.77', '76.97', '1.134242969', '2.585139319', '19.09497207', '50400', '2760', '2340', '17', '2520', '0.497473727', '3.8', '445', '4.695694021', '4.627592828');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('2001', '2100', 'LRFD3-13th', 'W40x503', '148', '42.1', '1.54', '16.4', '2.76', '34.22', '39.34', '64.834', '1.164254153', '2.971014493', '22.22077922', '41600', '2320', '1980', '16.8', '2040', '0.497312314', '3.72', '277', '4.573295859', '4.501784158');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('2001', '2100', 'LRFD3-13th', 'W40x431', '127', '41.3', '1.34', '16.2', '2.36', '34.22', '38.94', '55.342', '1.199382716', '3.43220339', '25.53731343', '34800', '1960', '1690', '16.6', '1690', '0.494753751', '3.65', '177', '4.482580963', '4.412482295');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2100', 'LRFD1-13th', 'W40x397', '117', '41', '1.22', '16.1', '2.2', '34.24', '38.8', '50.02', '1.179356296', '3.659090909', '28.06557377', '32000', '1800', '1560', '16.6', '1540', '0.496819167', '3.64', '142', '4.44921064', '4.376217779');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('2001', '2100', 'LRFD3-13th', 'W40x372', '109', '40.6', '1.16', '16.1', '2.05', '34.14', '38.55', '47.096', '1.199890926', '3.926829268', '29.43103448', '29600', '1680', '1460', '16.5', '1420', '0.502067256', '3.6', '116', '4.434540442', '4.329771103');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2100', 'LRFD1-13th', 'W40x362', '107', '40.6', '1.12', '16', '2.01', '34.22', '38.59', '45.472', '1.191741294', '3.980099502', '30.55357143', '28900', '1640', '1420', '16.5', '1380', '0.49715942', '3.6', '109', '4.405966549', '4.330297781');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2100', 'LRFD1-13th', 'W40x324', '95.3', '40.2', '1', '15.9', '1.81', '34.22', '38.39', '40.2', '1.189061468', '4.392265193', '34.22', '25600', '1460', '1280', '16.4', '1220', '0.49696851', '3.58', '79.4', '4.365731552', '4.277292879');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2100', 'LRFD1-13th', 'W40x297', '87.4', '39.8', '0.93', '15.8', '1.65', '34.14', '38.15', '37.014', '1.217882624', '4.787878788', '36.70967742', '23200', '1330', '1170', '16.3', '1090', '0.497562294', '3.54', '61.2', '4.320704328', '4.215533951');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2100', 'LRFD1-13th', 'W40x277', '81.4', '39.7', '0.83', '15.8', '1.58', '34.18', '38.12', '32.951', '1.136412434', '5', '41.18072289', '21900', '1250', '1100', '16.4', '1040', '0.499360013', '3.58', '51.5', '4.336182659', '4.245039886');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2100', 'LRFD1-13th', 'W40x249', '73.3', '39.4', '0.75', '15.8', '1.42', '34.2', '37.98', '29.55', '1.143251917', '5.563380282', '45.6', '19600', '1120', '993', '16.3', '926', '0.50404275', '3.55', '38.1', '4.323543424', '4.208170732');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2100', 'LRFD1-13th', 'W40x215', '63.4', '39', '0.65', '15.8', '1.22', '34.2', '37.78', '25.35', '1.153247562', '6.475409836', '52.61538462', '16700', '964', '859', '16.2', '796', '0.503775193', '3.54', '24.8', '4.30730867', '4.183848316');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2100', 'LRFD1-13th', 'W40x199', '58.5', '38.7', '0.65', '15.8', '1.07', '34.2', '37.63', '25.155', '1.314917781', '7.38317757', '52.61538462', '14900', '869', '770', '16', '695', '0.506044825', '3.45', '18.3', '4.256237575', '4.120967135');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('2001', '2100', 'LRFD3-13th', 'W40x392', '115', '41.6', '1.42', '12.4', '2.52', '34.2', '39.08', '59.072', '1.554147465', '2.46031746', '24.08450704', '29900', '1710', '1440', '16.1', '803', '0.498618979', '2.64', '172', '3.373683342', '3.300948938');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('2001', '2100', 'LRFD3-13th', 'W40x331', '97.5', '40.8', '1.22', '12.2', '2.13', '34.18', '38.67', '49.776', '1.604694836', '2.863849765', '28.01639344', '24700', '1430', '1210', '15.9', '644', '0.500486056', '2.57', '105', '3.290095467', '3.207911192');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('2001', '2100', 'LRFD3-13th', 'W40x327', '96', '40.8', '1.18', '12.1', '2.13', '34.18', '38.67', '48.144', '1.564909013', '2.840375587', '28.96610169', '24500', '1410', '1200', '16', '640', '0.491331371', '2.58', '103', '3.270141508', '3.211230294');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('2005', '2100', '13th', 'W40x294', '86.3', '40.4', '1.06', '12', '1.93', '34.18', '38.47', '42.824', '1.564369603', '3.10880829', '32.24528302', '21900', '1270', '1080', '15.9', '562', '0.494519573', '2.55', '76.6', '3.232800811', '3.163751582');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('2001', '2100', 'LRFD3-13th', 'W40x278', '82', '40.2', '1.03', '12', '1.81', '34.22', '38.39', '41.406', '1.622771639', '3.314917127', '33.22330097', '20500', '1190', '1020', '15.8', '521', '0.500268714', '2.52', '65', '3.216065608', '3.131214605');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('2001', '2100', 'LRFD3-13th', 'W40x264', '77.6', '40', '0.96', '11.9', '1.73', '34.18', '38.27', '38.4', '1.593860203', '3.439306358', '35.60416667', '19400', '1130', '971', '15.8', '493', '0.492786523', '2.52', '56.1', '3.190245676', '3.116937385');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('2001', '2100', 'LRFD3-13th', 'W40x235', '69', '39.7', '0.83', '11.9', '1.58', '34.18', '38.12', '32.951', '1.508850122', '3.765822785', '41.18072289', '17400', '1010', '875', '15.9', '444', '0.499728082', '2.54', '41.3', '3.1973547', '3.109917776');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('2001', '2100', 'LRFD3-13th', 'W40x211', '62', '39.4', '0.75', '11.8', '1.42', '34.2', '37.98', '29.55', '1.530794939', '4.154929577', '45.6', '15500', '906', '786', '15.8', '390', '0.498526803', '2.51', '30.4', '3.15813627', '3.069612204');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2100', 'LRFD1-13th', 'W40x183', '53.3', '39', '0.65', '11.8', '1.2', '34.24', '37.8', '25.35', '1.571751412', '4.916666667', '52.67692308', '13200', '774', '675', '15.7', '331', '0.49638429', '2.49', '19.3', '3.139065924', '3.044339009');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2100', 'LRFD1-13th', 'W40x167', '49.2', '38.6', '0.65', '11.8', '1.03', '34.18', '37.57', '25.09', '1.827957874', '5.72815534', '52.58461538', '11600', '693', '600', '15.3', '283', '0.498328316', '2.4', '14', '3.085563435', '2.976618607');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2100', 'LRFD1-13th', 'W40x149', '43.8', '38.2', '0.63', '11.8', '0.83', '34.18', '37.37', '24.066', '2.198631815', '7.108433735', '54.25396825', '9800', '598', '513', '15', '229', '0.496257846', '2.29', '9.36', '3.012997358', '2.888055998');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('2005', '2100', '13th', 'W36x800', '236', '42.6', '2.38', '18', '4.29', '32.12', '38.31', '101.388', '0.98997151', '2.097902098', '13.49579832', '64700', '3650', '3040', '16.6', '4200', '0.496414286', '4.22', '1060', '5.18682523', '5.144331321');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('2005', '2100', '13th', 'W36x652', '192', '41.1', '1.97', '17.6', '3.54', '32.12', '37.56', '80.967', '1.015607345', '2.485875706', '16.30456853', '50600', '2910', '2460', '16.2', '3230', '0.497917622', '4.1', '593', '5.013467365', '4.9657117');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('2005', '2100', '13th', 'W36x529', '156', '39.8', '1.61', '17.2', '2.91', '32.08', '36.89', '64.078', '1.031902821', '2.95532646', '19.92546584', '39600', '2330', '1990', '16', '2490', '0.495561703', '4', '327', '4.851483477', '4.804104715');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('2005', '2100', '13th', 'W36x487', '143', '39.3', '1.5', '17.1', '2.68', '32.04', '36.62', '58.95', '1.048703849', '3.190298507', '21.36', '36000', '2130', '1830', '15.8', '2250', '0.49631724', '3.96', '258', '4.802581351', '4.744712329');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('2005', '2100', '13th', 'W36x441', '130', '38.9', '1.36', '17', '2.44', '32.12', '36.46', '52.904', '1.053114754', '3.483606557', '23.61764706', '32100', '1910', '1650', '15.7', '1990', '0.501998325', '3.92', '194', '4.755470295', '4.688974818');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('2005', '2100', '13th', 'W36x395', '116', '38.4', '1.22', '16.8', '2.2', '32.1', '36.2', '46.848', '1.059577922', '3.818181818', '26.31147541', '28500', '1710', '1490', '15.7', '1750', '0.4967424', '3.88', '142', '4.680529357', '4.610682082');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('2005', '2100', '13th', 'W36x361', '106', '38', '1.12', '16.7', '2.01', '32.08', '35.99', '42.56', '1.070384604', '4.154228856', '28.64285714', '25700', '1550', '1350', '15.6', '1570', '0.496894938', '3.85', '109', '4.635995869', '4.574660481');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('2005', '2100', '13th', 'W36x330', '97', '37.7', '1.02', '16.6', '1.85', '32.1', '35.85', '38.454', '1.066167372', '4.486486486', '31.47058824', '23300', '1410', '1240', '15.5', '1420', '0.496622512', '3.83', '84.3', '4.597505437', '4.530675019');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('2005', '2100', '13th', 'W36x302', '88.8', '37.3', '0.945', '16.7', '1.68', '32.04', '35.62', '35.2485', '1.079191617', '4.970238095', '33.9047619', '21100', '1280', '1130', '15.4', '1300', '0.501572938', '3.82', '64.3', '4.609253382', '4.526519693');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W36x282', '82.9', '37.1', '0.885', '16.6', '1.57', '32.06', '35.53', '32.8335', '1.088677001', '5.286624204', '36.2259887', '19600', '1190', '1050', '15.4', '1200', '0.498725328', '3.8', '52.7', '4.570733893', '4.505869188');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('2005', '2100', '13th', 'W36x262', '77', '36.9', '0.84', '16.6', '1.44', '32.12', '35.46', '30.996', '1.128714859', '5.763888889', '38.23809524', '17900', '1100', '972', '15.3', '1090', '0.50359222', '3.76', '41.6', '4.549802352', '4.458969321');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('2005', '2100', '13th', 'W36x247', '72.5', '36.7', '0.8', '16.5', '1.35', '32.1', '35.35', '29.36', '1.152861953', '6.111111111', '40.125', '16700', '1030', '913', '15.2', '1010', '0.500360458', '3.74', '34.7', '4.509157323', '4.421860214');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('2005', '2100', '13th', 'W36x231', '68.1', '36.5', '0.76', '16.5', '1.26', '32.08', '35.24', '27.74', '1.172717653', '6.547619048', '42.21052632', '15600', '963', '854', '15.1', '940', '0.50177992', '3.71', '28.7', '4.497011816', '4.403905016');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2100', 'LRFD1-13th', 'W36x256', '75.4', '37.4', '0.96', '12.2', '1.73', '32.44', '35.67', '35.904', '1.475523548', '3.526011561', '33.79166667', '16800', '1040', '895', '14.9', '528', '0.495804457', '2.65', '52.9', '3.287369335', '3.243709856');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('2005', '2100', '13th', 'W36x232', '68.1', '37.1', '0.87', '12.1', '1.57', '32.46', '35.53', '32.277', '1.486561036', '3.853503185', '37.31034483', '15000', '936', '809', '14.8', '468', '0.495254767', '2.62', '39.6', '3.249133172', '3.205761963');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '2100', 'ASD8-13th', 'W36x210', '61.8', '36.7', '0.83', '12.2', '1.36', '32.48', '35.34', '30.461', '1.624783028', '4.485294118', '39.13253012', '13200', '833', '719', '14.6', '411', '0.500720454', '2.58', '28', '3.237716957', '3.178152559');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W36x194', '57', '36.5', '0.765', '12.1', '1.26', '32.48', '35.24', '27.9225', '1.629752066', '4.801587302', '42.45751634', '12100', '767', '664', '14.6', '375', '0.49603708', '2.56', '22.2', '3.204345638', '3.154529159');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W36x182', '53.6', '36.3', '0.725', '12.1', '1.18', '32.44', '35.12', '26.3175', '1.647219499', '5.127118644', '44.74482759', '11300', '718', '623', '14.5', '347', '0.502027373', '2.55', '18.5', '3.196478383', '3.127396673');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W36x170', '50.1', '36.2', '0.68', '12', '1.1', '32.5', '35.1', '24.616', '1.674242424', '5.454545455', '47.79411765', '10500', '668', '581', '14.5', '320', '0.495', '2.53', '15.1', '3.160203214', '3.109034085');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W36x160', '47', '36', '0.65', '12', '1.02', '32.46', '34.98', '23.4', '1.72377451', '5.882352941', '49.93846154', '9760', '624', '542', '14.4', '295', '0.497898305', '2.5', '12.4', '3.14651928', '3.085363017');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W36x150', '44.2', '35.9', '0.625', '12', '0.94', '32.52', '34.96', '22.4375', '1.801861702', '6.382978723', '52.032', '9040', '581', '504', '14.3', '270', '0.501333333', '2.47', '10.1', '3.127462611', '3.060112043');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W36x135', '39.7', '35.6', '0.6', '12', '0.79', '32.52', '34.81', '21.36', '2.058227848', '7.594936709', '54.2', '7800', '509', '439', '14', '225', '0.5056', '2.38', '7', '3.073223094', '2.986730334');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2100', 'LRFD1-13th', 'W33x387', '114', '36', '1.26', '16.2', '2.28', '29.86', '33.72', '45.36', '1.018615984', '3.552631579', '23.6984127', '24300', '1560', '1350', '14.6', '1620', '0.498636', '3.77', '148', '4.539339947', '4.497999555');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2100', 'LRFD1-13th', 'W33x354', '104', '35.6', '1.16', '16.1', '2.09', '29.84', '33.51', '41.296', '1.028690303', '3.851674641', '25.72413793', '22000', '1420', '1240', '14.5', '1460', '0.497840028', '3.74', '115', '4.494622822', '4.441583196');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2100', 'LRFD1-13th', 'W33x318', '93.6', '35.2', '1.04', '16', '1.89', '29.84', '33.31', '36.608', '1.026243386', '4.232804233', '28.69230769', '19500', '1270', '1110', '14.5', '1290', '0.500093023', '3.71', '84.4', '4.452288333', '4.39952393');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2100', 'LRFD1-13th', 'W33x291', '85.7', '34.8', '0.96', '15.9', '1.73', '29.76', '33.07', '33.408', '1.038630167', '4.595375723', '31', '17700', '1160', '1020', '14.4', '1160', '0.499572175', '3.68', '65.1', '4.409516986', '4.336416701');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2100', 'LRFD1-13th', 'W33x263', '77.5', '34.5', '0.87', '15.8', '1.57', '29.78', '32.93', '30.015', '1.044448924', '5.031847134', '34.22988506', '15900', '1040', '919', '14.3', '1040', '0.496199506', '3.66', '48.7', '4.367951283', '4.316579874');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '2100', 'ASD8-13th', 'W33x241', '71', '34.2', '0.83', '15.9', '1.4', '29.82', '32.8', '28.386', '1.111886792', '5.678571429', '35.92771084', '14200', '940', '831', '14.1', '933', '0.502639389', '3.62', '36.2', '4.364512606', '4.29103675');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '2100', 'ASD8-13th', 'W33x221', '65.2', '33.9', '0.775', '15.8', '1.28', '29.78', '32.62', '26.2725', '1.141193631', '6.171875', '38.42580645', '12900', '857', '759', '14.1', '840', '0.500865016', '3.59', '27.8', '4.319885051', '4.248598932');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '2100', 'ASD8-13th', 'W33x201', '59.2', '33.7', '0.715', '15.7', '1.15', '29.82', '32.55', '24.0955', '1.180908336', '6.826086957', '41.70629371', '11600', '773', '686', '14', '749', '0.495146523', '3.56', '20.8', '4.272189423', '4.21540542');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2100', 'LRFD1-13th', 'W33x169', '49.5', '33.8', '0.67', '11.5', '1.22', '29.96', '32.58', '22.646', '1.430734141', '4.713114754', '44.71641791', '9290', '629', '549', '13.7', '310', '0.498781586', '2.5', '17.7', '3.084620878', '3.032879928');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W33x152', '44.8', '33.5', '0.635', '11.6', '1.06', '29.98', '32.44', '21.2725', '1.548251464', '5.471698113', '47.21259843', '8160', '559', '487', '13.5', '273', '0.505051819', '2.47', '12.4', '3.080349771', '3.015381513');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W33x141', '41.6', '33.3', '0.605', '11.5', '0.96', '29.98', '32.34', '20.1465', '1.642925725', '5.989583333', '49.55371901', '7450', '514', '448', '13.4', '246', '0.494593496', '2.43', '9.7', '3.030891857', '2.979775579');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W33x130', '38.3', '33.1', '0.58', '11.5', '0.855', '29.98', '32.245', '19.198', '1.768461734', '6.725146199', '51.68965517', '6710', '467', '406', '13.2', '218', '0.497074971', '2.39', '7.37', '3.002648153', '2.942262542');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W33x118', '34.7', '32.9', '0.55', '11.5', '0.74', '30.02', '32.16', '18.095', '1.940188014', '7.77027027', '54.58181818', '5900', '415', '359', '13', '187', '0.501536319', '2.32', '5.3', '2.965811273', '2.894120445');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2005', 'LRFD1-ASD9', 'W30x391', '115', '33.2', '1.36', '15.6', '2.44', '26.74', '30.76', '45.152', '0.955401429', '3.196721311', '19.66176471', '20700', '1450', '1250', '13.4', '1550', '0.498024465', '3.67', '173', '4.42014265', '4.367058507');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2100', '13th', 'W30x357', '105', '32.8', '1.24', '15.5', '2.24', '26.74', '30.56', '40.672', '0.955', '3.459821429', '21.56451613', '18700', '1320', '1140', '13.3', '1390', '0.500088729', '3.64', '134', '4.376547106', '4.316349985');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2100', 'LRFD1-13th', 'W30x326', '95.8', '32.4', '1.14', '15.4', '2.05', '26.72', '30.35', '36.936', '0.964865379', '3.756097561', '23.43859649', '16800', '1190', '1040', '13.2', '1240', '0.503168091', '3.6', '103', '4.331274827', '4.253618369');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2100', 'LRFD1-13th', 'W30x292', '85.9', '32', '1.02', '15.3', '1.85', '26.72', '30.15', '32.64', '0.962882883', '4.135135135', '26.19607843', '14900', '1060', '930', '13.2', '1100', '0.501963443', '3.58', '75.2', '4.287997788', '4.22263486');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2100', 'LRFD1-13th', 'W30x261', '76.9', '31.6', '0.93', '15.2', '1.65', '26.72', '29.95', '29.388', '0.990813397', '4.606060606', '28.7311828', '13100', '943', '829', '13.1', '959', '0.503517831', '3.53', '54.1', '4.237237182', '4.162128208');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2100', 'LRFD1-13th', 'W30x235', '69.2', '31.3', '0.83', '15.1', '1.5', '26.72', '29.8', '25.979', '0.979143488', '5.033333333', '32.19277108', '11700', '847', '748', '13', '855', '0.503355409', '3.51', '40.3', '4.200302492', '4.126913751');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '2100', 'ASD8-13th', 'W30x211', '62.2', '30.9', '0.775', '15.1', '1.32', '26.7', '29.58', '23.9475', '1.038154726', '5.71969697', '34.4516129', '10300', '751', '665', '12.9', '757', '0.500296711', '3.49', '28.4', '4.17088993', '4.103185999');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '2100', 'ASD8-13th', 'W30x191', '56.3', '30.7', '0.71', '15', '1.19', '26.76', '29.51', '21.797', '1.064403361', '6.302521008', '37.69014085', '9200', '675', '600', '12.8', '673', '0.497306835', '3.46', '21', '4.125875254', '4.068192678');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '2100', 'ASD8-13th', 'W30x173', '51', '30.4', '0.655', '15', '1.07', '26.7', '29.33', '19.912', '1.089626168', '7.009345794', '40.76335878', '8230', '607', '541', '12.7', '598', '0.503239967', '3.42', '15.6', '4.109971956', '4.026178201');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2100', 'LRFD1-13th', 'W30x148', '43.5', '30.7', '0.65', '10.5', '1.18', '27.04', '29.52', '19.955', '1.418563358', '4.449152542', '41.6', '6680', '500', '436', '12.4', '227', '0.501467511', '2.28', '14.5', '2.823670679', '2.77212534');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W30x132', '38.9', '30.3', '0.615', '10.5', '1', '27', '29.3', '18.6345', '1.581428571', '5.25', '43.90243902', '5770', '437', '380', '12.2', '196', '0.4921875', '2.25', '9.72', '2.786301851', '2.748875368');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W30x124', '36.5', '30.2', '0.585', '10.5', '0.93', '27.04', '29.27', '17.667', '1.619907834', '5.64516129', '46.22222222', '5360', '408', '355', '12.1', '181', '0.495668163', '2.23', '7.99', '2.775654014', '2.731627488');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W30x116', '34.2', '30', '0.565', '10.5', '0.85', '27', '29.15', '16.95', '1.709243697', '6.176470588', '47.78761062', '4930', '378', '329', '12', '164', '0.499990473', '2.19', '6.43', '2.756511646', '2.695431235');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W30x108', '31.7', '29.8', '0.545', '10.5', '0.76', '26.98', '29.04', '16.241', '1.842619048', '6.907894737', '49.50458716', '4470', '346', '299', '11.9', '146', '0.502166096', '2.15', '4.99', '2.729918713', '2.662711671');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W30x99', '29.1', '29.7', '0.52', '10.5', '0.67', '27.06', '29.03', '15.444', '2.000170576', '7.835820896', '52.03846154', '3990', '312', '269', '11.7', '128', '0.504953613', '2.1', '3.77', '2.699709463', '2.62807264');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2100', 'LRFD1-13th', 'W30x90', '26.4', '29.5', '0.47', '10.4', '0.61', '26.98', '28.89', '13.865', '1.998833544', '8.524590164', '57.40425532', '3610', '283', '245', '11.7', '115', '0.497222493', '2.09', '2.84', '2.670504347', '2.603902095');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2005', 'LRFD1-ASD9', 'W27x539', '159', '32.5', '1.97', '15.3', '3.54', '23.84', '28.96', '64.025', '0.867117167', '2.161016949', '12.10152284', '25600', '1890', '1570', '12.7', '2110', '0.500741808', '3.65', '496', '4.465341892', '4.411392316');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2100', 'LRFD1-13th', 'W27x368', '108', '30.4', '1.38', '14.7', '2.48', '23.86', '27.92', '41.952', '0.90319289', '2.963709677', '17.28985507', '16200', '1240', '1060', '12.2', '1310', '0.501130855', '3.48', '170', '4.2029755', '4.153607207');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2100', 'LRFD1-13th', 'W27x336', '98.9', '30', '1.26', '14.6', '2.28', '23.86', '27.72', '37.8', '0.903136265', '3.201754386', '18.93650794', '14600', '1130', '972', '12.1', '1180', '0.501106644', '3.45', '131', '4.158794117', '4.101941726');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2100', 'LRFD1-13th', 'W27x307', '90.4', '29.6', '1.16', '14.4', '2.09', '23.84', '27.51', '34.336', '0.91887294', '3.444976077', '20.55172414', '13100', '1030', '887', '12', '1050', '0.495294171', '3.41', '101', '4.083504625', '4.035182087');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2100', 'LRFD1-13th', 'W27x281', '82.9', '29.3', '1.06', '14.4', '1.93', '23.86', '27.37', '31.058', '0.910031664', '3.730569948', '22.50943396', '11900', '936', '814', '12', '953', '0.503930493', '3.39', '79.5', '4.072670655', '4.002733249');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2100', 'LRFD1-13th', 'W27x258', '76', '29', '0.98', '14.3', '1.77', '23.88', '27.23', '28.42', '0.92459405', '4.039548023', '24.36734694', '10800', '852', '745', '11.9', '859', '0.502119363', '3.36', '61.6', '4.028094888', '3.962116748');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2100', 'LRFD1-13th', 'W27x235', '69.4', '28.7', '0.91', '14.2', '1.61', '23.9', '27.09', '26.117', '0.951316595', '4.409937888', '26.26373626', '9700', '772', '677', '11.8', '769', '0.499555015', '3.33', '47', '3.980750471', '3.922458345');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2100', 'LRFD1-13th', 'W27x217', '64', '28.4', '0.83', '14.1', '1.5', '23.82', '26.9', '23.572', '0.934780142', '4.7', '28.69879518', '8910', '711', '627', '11.8', '704', '0.497731001', '3.32', '37.6', '3.94805945', '3.886097578');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2100', 'LRFD1-13th', 'W27x194', '57.2', '28.1', '0.75', '14', '1.34', '23.84', '26.76', '21.075', '0.953091684', '5.223880597', '31.78666667', '7860', '631', '559', '11.7', '619', '0.495013463', '3.29', '27.1', '3.902690887', '3.849173412');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '2100', 'ASD8-13th', 'W27x178', '52.5', '27.8', '0.725', '14.1', '1.19', '23.84', '26.61', '20.155', '1.030097145', '5.924369748', '32.88275862', '7020', '570', '505', '11.6', '555', '0.500875824', '3.25', '20.1', '3.900277047', '3.823915105');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '2100', 'ASD8-13th', 'W27x161', '47.6', '27.6', '0.66', '14', '1.08', '23.86', '26.52', '18.216', '1.041507937', '6.481481481', '36.15151515', '6310', '515', '458', '11.5', '497', '0.496901408', '3.23', '15.1', '3.860608584', '3.79330023');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '2100', 'ASD8-13th', 'W27x146', '43.1', '27.4', '0.605', '14', '0.975', '23.88', '26.425', '16.577', '1.058417582', '7.179487179', '39.47107438', '5660', '464', '414', '11.5', '443', '0.503273138', '3.2', '11.3', '3.847518617', '3.760054958');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2100', 'LRFD1-13th', 'W27x129', '37.8', '27.6', '0.61', '10', '1.1', '24.2', '26.5', '16.836', '1.342', '4.545454545', '39.67213115', '4760', '395', '345', '11.2', '184', '0.498188406', '2.21', '11.1', '2.704595262', '2.658320272');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W27x114', '33.5', '27.3', '0.57', '10.1', '0.93', '24.24', '26.37', '15.561', '1.470967742', '5.430107527', '42.52631579', '4080', '343', '299', '11', '159', '0.502190739', '2.18', '7.33', '2.700072131', '2.647908874');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W27x102', '30', '27.1', '0.515', '10', '0.83', '24.24', '26.27', '13.9565', '1.504048193', '6.024096386', '47.06796117', '3620', '305', '267', '11', '139', '0.497601918', '2.15', '5.28', '2.661684719', '2.614970585');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W27x94', '27.7', '26.9', '0.49', '10', '0.745', '24.22', '26.155', '13.181', '1.592993289', '6.711409396', '49.42857143', '3270', '278', '243', '10.9', '124', '0.500672043', '2.12', '4.03', '2.642212424', '2.583271604');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W27x84', '24.8', '26.7', '0.46', '10', '0.64', '24.22', '26.06', '12.282', '1.7408125', '7.8125', '52.65217391', '2850', '244', '213', '10.7', '106', '0.503144654', '2.07', '2.81', '2.612863202', '2.546451088');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2100', 'LRFD1-13th', 'W24x370', '109', '28', '1.52', '13.7', '2.72', '21.56', '25.28', '42.56', '0.879433233', '2.518382353', '14.18421053', '13400', '1130', '957', '11.1', '1160', '0.502448287', '3.27', '201', '3.95661025', '3.914231996');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2100', 'LRFD1-13th', 'W24x335', '98.4', '27.5', '1.38', '13.5', '2.48', '21.54', '25.02', '37.95', '0.887849462', '2.721774194', '15.60869565', '11900', '1020', '864', '11', '1030', '0.493667476', '3.23', '152', '3.878538222', '3.861805493');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2100', 'LRFD1-13th', 'W24x306', '89.8', '27.1', '1.26', '13.4', '2.28', '21.54', '24.82', '34.146', '0.888334643', '2.938596491', '17.0952381', '10700', '922', '789', '10.9', '919', '0.497453493', '3.2', '117', '3.833904373', '3.801939002');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2100', 'LRFD1-13th', 'W24x279', '82', '26.7', '1.16', '13.3', '2.09', '21.52', '24.61', '30.972', '0.898053747', '3.181818182', '18.55172414', '9600', '835', '718', '10.8', '823', '0.49787478', '3.17', '90.5', '3.78818101', '3.755592858');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2100', 'LRFD1-13th', 'W24x250', '73.5', '26.3', '1.04', '13.2', '1.89', '21.52', '24.41', '27.352', '0.897097964', '3.492063492', '20.69230769', '8490', '744', '644', '10.7', '724', '0.500338343', '3.14', '66.6', '3.743731086', '3.704206942');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2100', 'LRFD1-13th', 'W24x229', '67.2', '26', '0.96', '13.1', '1.73', '21.54', '24.27', '24.96', '0.912429952', '3.786127168', '22.4375', '7650', '675', '588', '10.7', '651', '0.497849133', '3.11', '51.3', '3.698837561', '3.665402921');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2100', 'LRFD1-13th', 'W24x207', '60.7', '25.7', '0.87', '13', '1.57', '21.56', '24.13', '22.359', '0.919020088', '4.140127389', '24.7816092', '6820', '606', '531', '10.6', '578', '0.49730248', '3.08', '38.3', '3.655863342', '3.623934352');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2100', 'LRFD1-13th', 'W24x192', '56.3', '25.5', '0.81', '13', '1.46', '21.58', '24.04', '20.655', '0.920958904', '4.452054795', '26.64197531', '6260', '559', '491', '10.5', '530', '0.504342767', '3.07', '30.8', '3.646136894', '3.602047392');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2100', 'LRFD1-13th', 'W24x176', '51.7', '25.2', '0.75', '12.9', '1.34', '21.52', '23.86', '18.9', '0.933703575', '4.813432836', '28.69333333', '5680', '511', '450', '10.5', '479', '0.500445939', '3.04', '23.9', '3.605629332', '3.563540686');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '2100', 'ASD8-13th', 'W24x162', '47.7', '25', '0.705', '13', '1.22', '21.56', '23.78', '17.625', '0.958373266', '5.327868852', '30.58156028', '5170', '468', '414', '10.4', '443', '0.504202408', '3.05', '18.5', '3.617665003', '3.566913848');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '2100', 'ASD8-13th', 'W24x146', '43', '24.7', '0.65', '12.9', '1.09', '21.52', '23.61', '16.055', '0.994808335', '5.917431193', '33.10769231', '4580', '418', '371', '10.3', '391', '0.498697999', '3.01', '13.4', '3.570892754', '3.527235198');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '2100', 'ASD8-13th', 'W24x131', '38.5', '24.5', '0.605', '12.9', '0.96', '21.58', '23.54', '14.8225', '1.054255491', '6.71875', '35.66942149', '4020', '370', '329', '10.2', '340', '0.505103294', '2.97', '9.5', '3.546262505', '3.48762467');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '2100', 'ASD8-13th', 'W24x117', '34.4', '24.3', '0.55', '12.8', '0.85', '21.6', '23.45', '13.365', '1.091911765', '7.529411765', '39.27272727', '3540', '327', '291', '10.1', '297', '0.500162514', '2.94', '6.72', '3.50083932', '3.459299434');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '2100', 'ASD8-13th', 'W24x104', '30.6', '24.1', '0.5', '12.8', '0.75', '21.6', '23.35', '12.05', '1.125', '8.533333333', '43.2', '3100', '289', '258', '10.1', '259', '0.506069498', '2.91', '4.72', '3.484749265', '3.423485349');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2100', 'LRFD1-13th', 'W24x103', '30.3', '24.5', '0.55', '9', '0.98', '21.54', '23.52', '13.475', '1.343197279', '4.591836735', '39.16363636', '3000', '280', '245', '10', '119', '0.500294118', '1.99', '7.07', '2.433053984', '2.389979079');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W24x94', '27.7', '24.3', '0.515', '9.07', '0.875', '21.54', '23.425', '12.5145', '1.397776028', '5.182857143', '41.82524272', '2700', '254', '222', '9.87', '109', '0.499139765', '1.98', '5.26', '2.437456366', '2.398068386');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W24x84', '24.7', '24.1', '0.47', '9.02', '0.77', '21.56', '23.33', '11.327', '1.458980044', '5.857142857', '45.87234043', '2370', '224', '196', '9.79', '94.4', '0.498835207', '1.95', '3.7', '2.408205717', '2.370283717');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W24x76', '22.4', '23.9', '0.44', '8.99', '0.68', '21.54', '23.22', '10.516', '1.550350062', '6.610294118', '48.95454545', '2100', '200', '176', '9.69', '82.5', '0.499060036', '1.92', '2.68', '2.381432977', '2.332849652');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W24x68', '20.1', '23.7', '0.415', '8.97', '0.585', '21.52', '23.115', '9.8355', '1.701931414', '7.666666667', '51.85542169', '1830', '177', '154', '9.55', '70.4', '0.49978048', '1.87', '1.87', '2.349061873', '2.298570985');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '2100', 'ASD8-13th', 'W24x62', '18.2', '23.7', '0.43', '7.04', '0.59', '21.52', '23.11', '10.191', '2.227850539', '5.966101695', '50.04651163', '1550', '153', '131', '9.23', '34.5', '0.497244111', '1.38', '1.71', '1.789966673', '1.7444514');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W24x55', '16.2', '23.6', '0.395', '7.01', '0.505', '21.58', '23.095', '9.322', '2.407903843', '6.940594059', '54.63291139', '1350', '134', '114', '9.11', '29.1', '0.498162689', '1.34', '1.18', '1.760331255', '1.716872539');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2100', 'LRFD1-13th', 'W21x201', '59.2', '23', '0.91', '12.6', '1.63', '18.74', '21.37', '20.93', '0.830334015', '3.865030675', '20.59340659', '5310', '530', '461', '9.47', '542', '0.501324244', '3.02', '40.9', '3.587411233', '3.544348714');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2100', 'LRFD1-13th', 'W21x182', '53.6', '22.7', '0.83', '12.5', '1.48', '18.74', '21.22', '18.841', '0.840767568', '4.222972973', '22.57831325', '4730', '476', '417', '9.4', '483', '0.498727571', '3', '30.7', '3.54354082', '3.50560702');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2100', 'LRFD1-13th', 'W21x166', '48.8', '22.5', '0.75', '12.4', '1.36', '18.78', '21.14', '16.875', '0.835211101', '4.558823529', '25.04', '4280', '432', '380', '9.36', '435', '0.49674495', '2.99', '23.6', '3.505390393', '3.478486513');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '2100', 'ASD8-13th', 'W21x147', '43.2', '22.1', '0.72', '12.5', '1.15', '18.8', '20.95', '15.912', '0.941634783', '5.434782609', '26.11111111', '3630', '373', '329', '9.17', '376', '0.497804466', '2.95', '15.4', '3.492054539', '3.459975227');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '2100', 'ASD8-13th', 'W21x132', '38.8', '21.8', '0.65', '12.4', '1.04', '18.72', '20.76', '14.17', '0.943548387', '5.961538462', '28.8', '3220', '333', '295', '9.12', '333', '0.496218458', '2.93', '11.3', '3.453949956', '3.42302275');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '2100', 'ASD8-13th', 'W21x122', '35.9', '21.7', '0.6', '12.4', '0.96', '18.78', '20.74', '13.02', '0.946572581', '6.458333333', '31.3', '2960', '307', '273', '9.09', '305', '0.500098098', '2.92', '8.98', '3.445416328', '3.403752508');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '2100', 'ASD8-13th', 'W21x111', '32.7', '21.5', '0.55', '12.3', '0.875', '18.74', '20.625', '11.825', '0.95767712', '7.028571429', '34.07272727', '2670', '279', '249', '9.05', '274', '0.495212477', '2.9', '6.83', '3.407669765', '3.368663172');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '2100', 'ASD8-13th', 'W21x101', '29.8', '21.4', '0.5', '12.3', '0.8', '18.8', '20.6', '10.7', '0.955284553', '7.6875', '37.6', '2420', '253', '227', '9.02', '248', '0.500233065', '2.89', '5.21', '3.400543698', '3.354528795');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '2100', 'ASD8-13th', 'W21x93', '27.3', '21.6', '0.58', '8.42', '0.93', '18.74', '20.67', '12.528', '1.388041785', '4.52688172', '32.31034483', '2070', '221', '192', '8.7', '92.9', '0.497991882', '1.84', '6.03', '2.277593435', '2.236209474');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '2100', 'ASD8-13th', 'W21x83', '24.3', '21.4', '0.515', '8.36', '0.835', '18.72', '20.565', '11.021', '1.381084721', '5.005988024', '36.34951456', '1830', '196', '171', '8.67', '81.4', '0.499458786', '1.83', '4.34', '2.256062829', '2.212399269');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W21x73', '21.5', '21.2', '0.455', '8.3', '0.74', '18.72', '20.46', '9.646', '1.386779551', '5.608108108', '41.14285714', '1600', '172', '151', '8.64', '70.6', '0.499436237', '1.81', '3.02', '2.232509667', '2.187014658');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W21x68', '20', '21.1', '0.43', '8.27', '0.685', '18.72', '20.415', '9.073', '1.420948111', '6.03649635', '43.53488372', '1480', '160', '140', '8.6', '64.7', '0.499024161', '1.8', '2.45', '2.216399393', '2.171939966');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W21x62', '18.3', '21', '0.4', '8.24', '0.615', '18.76', '20.385', '8.4', '1.480779856', '6.699186992', '46.9', '1330', '144', '127', '8.54', '57.5', '0.498663591', '1.77', '1.83', '2.195707637', '2.148188671');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W21x55', '16.2', '20.8', '0.375', '8.22', '0.522', '18.76', '20.278', '7.8', '1.639539111', '7.873563218', '50.02666667', '1140', '126', '110', '8.4', '48.4', '0.499182496', '1.73', '1.24', '2.16353794', '2.112145828');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('2001', '2100', 'LRFD3-13th', 'W21x48', '14.1', '20.6', '0.35', '8.14', '0.43', '18.74', '20.17', '7.21', '1.87389292', '9.465116279', '53.54285714', '959', '107', '93', '8.24', '38.7', '0.499401059', '1.66', '0.803', '2.107564521', '2.048575429');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '2100', 'ASD8-13th', 'W21x57', '16.7', '21.1', '0.405', '6.56', '0.65', '18.8', '20.45', '8.5455', '1.78564728', '5.046153846', '46.41975309', '1170', '129', '111', '8.36', '30.6', '0.499714789', '1.35', '1.77', '1.719446996', '1.6789234');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('2005', '2100', '13th', 'W21x50', '14.7', '20.8', '0.38', '6.53', '0.535', '18.72', '20.265', '7.904', '2.036209586', '6.102803738', '49.26315789', '984', '110', '94.5', '8.18', '24.9', '0.498554606', '1.3', '1.14', '1.681722768', '1.633962464');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W21x44', '13', '20.7', '0.35', '6.5', '0.45', '18.8', '20.25', '7.245', '2.24957265', '7.222222222', '53.71428571', '843', '95.4', '81.6', '8.06', '20.7', '0.497509058', '1.26', '0.77', '1.649261798', '1.60264602');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2100', 'LRFD1-13th', 'W18x311', '91.6', '22.3', '1.52', '12', '2.74', '15.82', '19.56', '33.896', '0.7313382', '2.189781022', '10.40789474', '6970', '754', '624', '8.72', '795', '0.496301887', '2.95', '176', '3.559592542', '3.529886139');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2100', 'LRFD1-13th', 'W18x283', '83.3', '21.9', '1.4', '11.9', '2.5', '15.9', '19.4', '30.66', '0.748235294', '2.38', '11.35714286', '6170', '676', '565', '8.61', '704', '0.498685784', '2.91', '134', '3.505979603', '3.476545941');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2100', 'LRFD1-13th', 'W18x258', '75.9', '21.5', '1.28', '11.8', '2.3', '16.1', '19.2', '27.52', '0.759322034', '2.565217391', '12.578125', '5510', '611', '514', '8.53', '628', '0.501456157', '2.88', '103', '3.454210143', '3.424789465');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2100', 'LRFD1-13th', 'W18x234', '68.8', '21.1', '1.16', '11.7', '2.11', '16.08', '18.99', '24.476', '0.755571758', '2.772511848', '13.86206897', '4900', '549', '466', '8.44', '558', '0.504689879', '2.85', '78.7', '3.4095941', '3.371876237');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2100', 'LRFD1-13th', 'W18x211', '62.1', '20.7', '1.06', '11.6', '1.91', '16.08', '18.79', '21.942', '0.769308539', '3.036649215', '15.16981132', '4330', '490', '419', '8.35', '493', '0.503940392', '2.82', '58.6', '3.360471694', '3.324794752');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2100', 'LRFD1-13th', 'W18x192', '56.4', '20.4', '0.96', '11.5', '1.75', '16.1', '18.65', '19.584', '0.768', '3.285714286', '16.77083333', '3870', '442', '380', '8.28', '440', '0.504077888', '2.79', '44.7', '3.317404617', '3.285934939');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2100', 'LRFD1-13th', 'W18x175', '51.3', '20', '0.89', '11.4', '1.59', '16.02', '18.41', '17.8', '0.786593843', '3.58490566', '18', '3450', '398', '344', '8.2', '391', '0.502057749', '2.76', '33.8', '3.271524687', '3.234603513');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2100', 'LRFD1-13th', 'W18x158', '46.3', '19.7', '0.81', '11.3', '1.44', '16.02', '18.26', '15.957', '0.797455752', '3.923611111', '19.77777778', '3060', '356', '310', '8.12', '347', '0.498984553', '2.74', '25.2', '3.227159981', '3.196828065');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2100', 'LRFD1-13th', 'W18x143', '42.1', '19.5', '0.73', '11.2', '1.32', '16.06', '18.18', '14.235', '0.793005952', '4.242424242', '22', '2750', '322', '282', '8.09', '311', '0.496919871', '2.72', '19.2', '3.188103298', '3.16619444');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2100', 'LRFD1-13th', 'W18x130', '38.2', '19.3', '0.67', '11.2', '1.2', '16.1', '18.1', '12.931', '0.802604167', '4.666666667', '24.02985075', '2460', '290', '256', '8.03', '278', '0.505369784', '2.7', '14.5', '3.174832824', '3.134921749');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '2100', 'ASD8-13th', 'W18x119', '35.1', '19', '0.655', '11.3', '1.06', '16.08', '17.94', '12.445', '0.879312072', '5.330188679', '24.54961832', '2190', '262', '231', '7.9', '253', '0.503778267', '2.69', '10.6', '3.175289083', '3.134371662');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '2100', 'ASD8-13th', 'W18x106', '31.1', '18.7', '0.59', '11.2', '0.94', '16.02', '17.76', '11.033', '0.897777356', '5.957446809', '27.15254237', '1910', '230', '204', '7.84', '220', '0.500239515', '2.66', '7.48', '3.132415469', '3.094587305');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '2100', 'ASD8-13th', 'W18x97', '28.5', '18.6', '0.535', '11.1', '0.87', '16.06', '17.73', '9.951', '0.889727659', '6.379310345', '30.01869159', '1750', '211', '188', '7.82', '201', '0.493299739', '2.65', '5.86', '3.098861225', '3.078636926');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '2100', 'ASD8-13th', 'W18x86', '25.3', '18.4', '0.48', '11.1', '0.77', '16.06', '17.63', '8.832', '0.901930502', '7.207792208', '33.45833333', '1530', '186', '166', '7.77', '175', '0.5014647', '2.63', '4.1', '3.086660753', '3.04842938');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '2100', 'ASD8-13th', 'W18x76', '22.3', '18.2', '0.425', '11', '0.68', '16.04', '17.52', '7.735', '0.911363636', '8.088235294', '37.74117647', '1330', '163', '146', '7.73', '152', '0.49620614', '2.61', '2.83', '3.048231758', '3.019933774');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '2100', 'ASD8-13th', 'W18x71', '20.8', '18.5', '0.495', '7.64', '0.81', '16.08', '17.69', '9.1575', '1.286212914', '4.716049383', '32.48484848', '1170', '146', '127', '7.5', '60.3', '0.499190758', '1.7', '3.49', '2.078803928', '2.049300822');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '2100', 'ASD8-13th', 'W18x65', '19.1', '18.4', '0.45', '7.59', '0.75', '16.1', '17.65', '8.28', '1.272727273', '5.06', '35.77777778', '1070', '133', '117', '7.49', '54.8', '0.498683256', '1.69', '2.73', '2.062488874', '2.033081111');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W18x60', '17.6', '18.2', '0.415', '7.56', '0.695', '16', '17.505', '7.553', '1.263750904', '5.438848921', '38.55421687', '984', '123', '108', '7.47', '50.1', '0.499495085', '1.68', '2.17', '2.052053293', '2.014990695');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W18x55', '16.2', '18.1', '0.39', '7.53', '0.63', '16.04', '17.47', '7.059', '1.31866186', '5.976190476', '41.12820513', '890', '112', '98.3', '7.41', '44.9', '0.499226799', '1.67', '1.66', '2.032303388', '1.997458966');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W18x50', '14.7', '18', '0.355', '7.5', '0.57', '16.056', '17.43', '6.39', '1.333305263', '6.578947368', '45.22816901', '800', '101', '88.9', '7.38', '40.1', '0.499727244', '1.65', '1.24', '2.018119843', '1.982690846');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '2100', 'ASD8-13th', 'W18x46', '13.5', '18.1', '0.36', '6.06', '0.605', '16.08', '17.495', '6.516', '1.578921529', '5.008264463', '44.66666667', '712', '90.7', '78.8', '7.25', '22.5', '0.498665684', '1.29', '1.22', '1.609437564', '1.580411299');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W18x40', '11.8', '17.9', '0.315', '6.02', '0.525', '16.046', '17.375', '5.6385', '1.599269103', '5.733333333', '50.93968254', '612', '78.4', '68.4', '7.21', '19.1', '0.499728552', '1.27', '0.81', '1.592170358', '1.557528641');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W18x35', '10.3', '17.7', '0.3', '6', '0.425', '16.046', '17.275', '5.31', '1.887764706', '7.058823529', '53.48666667', '510', '66.5', '57.6', '7.04', '15.3', '0.5', '1.22', '0.506', '1.554848711', '1.514706552');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '2100', 'ASD8-13th', 'W16x100', '29.5', '17', '0.585', '10.4', '0.985', '14.22', '16.015', '9.945', '0.812055838', '5.279187817', '24.30769231', '1490', '198', '175', '7.1', '186', '0.496411756', '2.51', '7.73', '2.940275342', '2.917332441');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '2100', 'ASD8-13th', 'W16x89', '26.2', '16.8', '0.525', '10.4', '0.875', '14.24', '15.925', '8.82', '0.821538462', '5.942857143', '27.12380952', '1300', '175', '155', '7.05', '163', '0.503198364', '2.49', '5.45', '2.927505716', '2.89369448');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '2100', 'ASD8-13th', 'W16x77', '22.6', '16.5', '0.455', '10.3', '0.76', '14.18', '15.74', '7.5075', '0.824207971', '6.776315789', '31.16483516', '1110', '150', '134', '7', '138', '0.501493068', '2.47', '3.57', '2.887578493', '2.846915063');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '2100', 'ASD8-13th', 'W16x67', '19.7', '16.3', '0.395', '10.2', '0.665', '14.16', '15.635', '6.4385', '0.824590889', '7.669172932', '35.84810127', '954', '130', '117', '6.96', '119', '0.49419', '2.46', '2.39', '2.850103281', '2.819775253');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '2100', 'ASD8-13th', 'W16x57', '16.8', '16.4', '0.43', '7.12', '0.715', '14.16', '15.685', '7.052', '1.196039915', '4.979020979', '32.93023256', '758', '105', '92.2', '6.72', '43.1', '0.498985018', '1.6', '2.22', '1.949304316', '1.914698682');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W16x50', '14.7', '16.3', '0.38', '7.07', '0.63', '14.24', '15.67', '6.194', '1.214880672', '5.611111111', '37.47368421', '659', '92', '81', '6.68', '37.2', '0.498740464', '1.59', '1.52', '1.9266971', '1.896917578');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W16x45', '13.3', '16.1', '0.345', '7.04', '0.565', '14.166', '15.535', '5.5545', '1.22869821', '6.230088496', '41.06086957', '586', '82.3', '72.7', '6.65', '32.8', '0.500854218', '1.57', '1.11', '1.912468484', '1.87201941');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W16x40', '11.8', '16', '0.305', '7', '0.505', '14.186', '15.495', '4.88', '1.223968883', '6.930693069', '46.51147541', '518', '73', '64.7', '6.63', '28.9', '0.499466551', '1.57', '0.794', '1.897562583', '1.860276815');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W16x36', '10.6', '15.9', '0.295', '6.99', '0.43', '14.236', '15.47', '4.6905', '1.397218618', '8.127906977', '48.25762712', '448', '64', '56.5', '6.51', '24.5', '0.499519737', '1.52', '0.545', '1.869633485', '1.831424321');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W16x31', '9.13', '15.9', '0.275', '5.53', '0.44', '14.216', '15.46', '4.3725', '1.606690778', '6.284090909', '51.69454545', '375', '54', '47.2', '6.41', '12.4', '0.50006348', '1.17', '0.461', '1.461869208', '1.425048319');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W16x26', '7.68', '15.7', '0.25', '5.5', '0.345', '14.206', '15.355', '3.925', '1.871673254', '7.971014493', '56.824', '301', '44.2', '38.4', '6.26', '9.59', '0.498778024', '1.12', '0.262', '1.426288771', '1.384693342');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W14x730', '215', '22.4', '3.07', '17.9', '4.91', '11.38', '17.49', '68.768', '0.397508221', '1.822810591', '3.706840391', '14300', '1660', '1280', '8.17', '4720', '0.497184225', '4.69', '1450', '5.767463373', '5.678660714');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W14x665', '196', '21.6', '2.83', '17.7', '4.52', '11.36', '17.08', '61.128', '0.401839908', '1.957964602', '4.014134276', '12400', '1480', '1150', '7.98', '4170', '0.500888353', '4.62', '1120', '5.662727921', '5.564780554');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W14x605', '178', '20.9', '2.6', '17.4', '4.16', '11.38', '16.74', '54.34', '0.408764368', '2.091346154', '4.376923077', '10800', '1320', '1040', '7.8', '3680', '0.49626313', '4.55', '869', '5.526150518', '5.442143243');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W14x550', '162', '20.2', '2.38', '17.2', '3.82', '11.36', '16.38', '48.076', '0.411493973', '2.251308901', '4.773109244', '9430', '1180', '931', '7.63', '3250', '0.498406958', '4.49', '669', '5.425117633', '5.346982847');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W14x500', '147', '19.6', '2.19', '17', '3.5', '11.4', '16.1', '42.924', '0.419596639', '2.428571429', '5.205479452', '8210', '1050', '838', '7.48', '2880', '0.497554977', '4.43', '514', '5.322187609', '5.259835655');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W14x455', '134', '19', '2.02', '16.8', '3.21', '11.38', '15.79', '38.38', '0.426264649', '2.61682243', '5.633663366', '7190', '936', '756', '7.33', '2560', '0.4954635', '4.38', '395', '5.224389718', '5.170531069');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W14x426', '125', '18.7', '1.88', '16.7', '3.04', '11.44', '15.66', '35.156', '0.423636937', '2.746710526', '6.085106383', '6600', '869', '706', '7.26', '2360', '0.499953655', '4.34', '331', '5.171529967', '5.116047075');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W14x398', '117', '18.3', '1.77', '16.6', '2.85', '11.42', '15.45', '32.391', '0.42725428', '2.912280702', '6.451977401', '6000', '801', '656', '7.16', '2170', '0.500642995', '4.31', '273', '5.116709448', '5.055070203');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W14x370', '109', '17.9', '1.66', '16.5', '2.66', '11.38', '15.24', '29.714', '0.430412395', '3.101503759', '6.855421687', '5440', '736', '607', '7.07', '1990', '0.500379083', '4.27', '222', '5.061869122', '4.998154519');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W14x342', '101', '17.5', '1.54', '16.4', '2.47', '11.36', '15.03', '26.95', '0.431875185', '3.319838057', '7.376623377', '4900', '672', '558', '6.98', '1810', '0.501612877', '4.24', '178', '5.006595568', '4.937267757');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '2100', 'ASD8-13th', 'W14x311', '91.4', '17.1', '1.41', '16.2', '2.26', '11.38', '14.84', '24.111', '0.438266142', '3.584070796', '8.070921986', '4330', '603', '506', '6.88', '1610', '0.49733195', '4.2', '136', '4.915559119', '4.858918698');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '2100', 'ASD8-13th', 'W14x283', '83.3', '16.7', '1.29', '16.1', '2.07', '11.36', '14.63', '21.543', '0.439715546', '3.888888889', '8.80620155', '3840', '542', '459', '6.79', '1440', '0.499924286', '4.17', '104', '4.859396204', '4.790513501');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '2100', 'ASD8-13th', 'W14x257', '75.6', '16.4', '1.18', '16', '1.89', '11.42', '14.51', '19.352', '0.445621693', '4.232804233', '9.677966102', '3400', '487', '415', '6.71', '1290', '0.500093023', '4.13', '79.1', '4.801208143', '4.748861626');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '2100', 'ASD8-13th', 'W14x233', '68.5', '16', '1.07', '15.9', '1.72', '11.36', '14.28', '17.12', '0.444463946', '4.622093023', '10.61682243', '3010', '436', '375', '6.63', '1150', '0.50100347', '4.1', '59.5', '4.748473118', '4.679316189');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W14x211', '62', '15.7', '0.98', '15.8', '1.56', '11.38', '14.14', '15.386', '0.452466732', '5.064102564', '11.6122449', '2660', '390', '338', '6.55', '1030', '0.497825786', '4.07', '44.6', '4.692841716', '4.641624129');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W14x193', '56.8', '15.5', '0.89', '15.7', '1.44', '11.42', '14.06', '13.795', '0.449566525', '5.451388889', '12.83146067', '2400', '355', '310', '6.5', '931', '0.498804683', '4.05', '34.8', '4.645207928', '4.594853362');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W14x176', '51.8', '15.2', '0.83', '15.7', '1.31', '11.38', '13.89', '12.616', '0.459250255', '5.992366412', '13.71084337', '2140', '320', '281', '6.43', '838', '0.504132839', '4.02', '26.5', '4.623812701', '4.550980497');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '2100', 'ASD8-13th', 'W14x159', '46.7', '15', '0.745', '15.6', '1.19', '11.42', '13.81', '11.175', '0.458301013', '6.554621849', '15.32885906', '1900', '287', '254', '6.38', '748', '0.503312727', '4', '19.7', '4.575376322', '4.509369074');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '2100', 'ASD8-13th', 'W14x145', '42.7', '14.8', '0.68', '15.5', '1.09', '11.42', '13.71', '10.064', '0.459638946', '7.110091743', '16.79411765', '1710', '260', '232', '6.33', '677', '0.499633647', '3.98', '15.2', '4.530097975', '4.472538333');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '2100', 'ASD8-13th', 'W14x132', '38.8', '14.7', '0.645', '14.7', '1.03', '11.44', '13.67', '9.4815', '0.487339013', '7.13592233', '17.73643411', '1530', '234', '209', '6.28', '548', '0.497539339', '3.76', '12.3', '4.280429322', '4.233371636');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '2100', 'ASD8-13th', 'W14x120', '35.3', '14.5', '0.59', '14.7', '0.94', '11.42', '13.56', '8.555', '0.487610363', '7.819148936', '19.3559322', '1380', '212', '190', '6.24', '495', '0.502682091', '3.74', '9.37', '4.266891969', '4.202818603');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '2100', 'ASD8-13th', 'W14x109', '32', '14.3', '0.525', '14.6', '0.86', '11.38', '13.44', '7.5075', '0.475828289', '8.488372093', '21.67619048', '1240', '192', '173', '6.22', '447', '0.498962893', '3.73', '7.12', '4.228851888', '4.166921765');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '2100', 'ASD8-13th', 'W14x99', '29.1', '14.2', '0.485', '14.6', '0.78', '11.44', '13.42', '6.887', '0.487214612', '9.358974359', '23.58762887', '1110', '173', '157', '6.17', '402', '0.50320607', '3.71', '5.37', '4.212892548', '4.144999289');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '2100', 'ASD8-13th', 'W14x90', '26.5', '14', '0.44', '14.5', '0.71', '11.38', '13.29', '6.16', '0.486372025', '10.21126761', '25.86363636', '999', '157', '143', '6.14', '362', '0.498278948', '3.7', '4.06', '4.173894602', '4.101415413');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '2100', 'ASD8-13th', 'W14x82', '24', '14.3', '0.51', '10.1', '0.855', '11.4', '13.445', '7.293', '0.673267327', '5.906432749', '22.35294118', '881', '139', '123', '6.05', '148', '0.496006394', '2.48', '5.07', '2.89248662', '2.844092437');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W14x74', '21.8', '14.2', '0.45', '10.1', '0.785', '11.44', '13.415', '6.39', '0.649303147', '6.433121019', '25.42222222', '795', '126', '112', '6.04', '134', '0.502976545', '2.48', '3.87', '2.888215065', '2.832850974');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W14x68', '20', '14', '0.415', '10', '0.72', '11.38', '13.28', '5.81', '0.655930556', '6.944444444', '27.42168675', '722', '115', '103', '6.01', '121', '0.495867769', '2.46', '3.01', '2.851718476', '2.792917534');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W14x61', '17.9', '13.9', '0.375', '10', '0.645', '11.42', '13.255', '5.2125', '0.663953488', '7.751937984', '30.45333333', '640', '102', '92.1', '5.98', '107', '0.502336449', '2.45', '2.19', '2.841744426', '2.774833583');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W14x53', '15.6', '13.9', '0.37', '8.06', '0.66', '11.4', '13.24', '5.143', '0.792916761', '6.106060606', '30.81081081', '541', '87.1', '77.8', '5.89', '57.7', '0.499105093', '1.92', '1.94', '2.275159416', '2.215782371');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W14x48', '14.1', '13.8', '0.34', '8.03', '0.595', '11.42', '13.205', '4.692', '0.812666785', '6.74789916', '33.58823529', '484', '78.4', '70.2', '5.85', '51.4', '0.499481304', '1.91', '1.45', '2.258094492', '2.198706237');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W14x43', '12.6', '13.7', '0.305', '8', '0.53', '11.46', '13.17', '4.1785', '0.824363208', '7.547169811', '37.57377049', '428', '69.6', '62.6', '5.82', '45.2', '0.500294985', '1.89', '1.05', '2.2416924', '2.180519327');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W14x38', '11.2', '14.1', '0.31', '6.77', '0.515', '12.27', '13.585', '4.371', '1.090963847', '6.572815534', '39.58064516', '385', '61.5', '54.6', '5.87', '26.7', '0.498747495', '1.55', '0.798', '1.857994518', '1.82252768');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W14x34', '10', '14', '0.285', '6.75', '0.455', '12.29', '13.545', '3.99', '1.14046398', '7.417582418', '43.12280702', '340', '54.6', '48.6', '5.83', '23.3', '0.500478641', '1.53', '0.569', '1.842117947', '1.801915133');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W14x30', '8.85', '13.8', '0.27', '6.73', '0.385', '12.23', '13.415', '3.726', '1.274425426', '8.74025974', '45.2962963', '291', '47.3', '42', '5.73', '19.6', '0.498963302', '1.49', '0.38', '1.816627677', '1.769227703');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W14x26', '7.69', '13.9', '0.255', '5.03', '0.42', '12.26', '13.48', '3.5445', '1.479835274', '5.988095238', '48.07843137', '245', '40.2', '35.3', '5.65', '8.91', '0.499912845', '1.08', '0.358', '1.343766368', '1.304311873');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W14x22', '6.49', '13.7', '0.23', '5', '0.335', '12.23', '13.365', '3.151', '1.679343284', '7.462686567', '53.17391304', '199', '33.2', '29', '5.54', '7', '0.498511905', '1.04', '0.208', '1.315322928', '1.270046157');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '2100', 'ASD8-13th', 'W12x336', '98.8', '16.8', '1.78', '13.4', '2.96', '9.7', '13.84', '29.904', '0.435306575', '2.263513514', '5.449438202', '4060', '603', '483', '6.41', '1190', '0.498744246', '3.47', '243', '4.187904302', '4.129076817');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '2100', 'ASD8-13th', 'W12x305', '89.6', '16.3', '1.63', '13.2', '2.71', '9.7', '13.59', '26.569', '0.441993738', '2.435424354', '5.950920245', '3550', '537', '435', '6.29', '1050', '0.494675657', '3.42', '185', '4.09701181', '4.049904213');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '2100', 'ASD8-13th', 'W12x279', '81.9', '15.9', '1.53', '13.1', '2.47', '9.76', '13.43', '24.327', '0.461501375', '2.651821862', '6.379084967', '3110', '481', '393', '6.16', '937', '0.493844252', '3.38', '143', '4.033616173', '4.001257754');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '2100', 'ASD8-13th', 'W12x252', '74', '15.4', '1.4', '13', '2.25', '9.7', '13.15', '21.56', '0.464273504', '2.888888889', '6.928571429', '2720', '428', '353', '6.06', '828', '0.497509058', '3.34', '108', '3.97827553', '3.927133764');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '2100', 'ASD8-13th', 'W12x230', '67.7', '15.1', '1.29', '12.9', '2.07', '9.76', '13.03', '19.479', '0.471497585', '3.115942029', '7.565891473', '2420', '386', '321', '5.97', '742', '0.499061796', '3.31', '83.8', '3.923253832', '3.880669403');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '2100', 'ASD8-13th', 'W12x210', '61.8', '14.7', '1.18', '12.8', '1.9', '9.7', '12.8', '17.346', '0.470641447', '3.368421053', '8.220338983', '2140', '348', '292', '5.89', '664', '0.500073896', '3.28', '64.7', '3.873514549', '3.814895104');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W12x190', '55.8', '14.4', '1.06', '12.7', '1.74', '9.74', '12.66', '15.264', '0.467209702', '3.649425287', '9.188679245', '1890', '311', '263', '5.82', '589', '0.504270857', '3.25', '48.8', '3.822899394', '3.765144325');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '2100', 'ASD8-13th', 'W12x170', '50', '14', '0.96', '12.6', '1.56', '9.68', '12.44', '13.44', '0.472771673', '4.038461538', '10.08333333', '1650', '275', '235', '5.74', '517', '0.502995899', '3.22', '35.6', '3.769755543', '3.6991891');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '2100', 'ASD8-13th', 'W12x152', '44.7', '13.7', '0.87', '12.5', '1.4', '9.7', '12.3', '11.919', '0.482228571', '4.464285714', '11.14942529', '1430', '243', '209', '5.66', '454', '0.501904369', '3.19', '25.8', '3.716513236', '3.655041743');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '2100', 'ASD8-13th', 'W12x136', '39.9', '13.4', '0.79', '12.4', '1.25', '9.7', '12.15', '10.586', '0.494387097', '4.96', '12.27848101', '1240', '214', '186', '5.58', '398', '0.499011725', '3.16', '18.5', '3.664211987', '3.605439439');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W12x120', '35.3', '13.1', '0.71', '12.3', '1.11', '9.7', '11.99', '9.301', '0.504431261', '5.540540541', '13.66197183', '1070', '186', '163', '5.51', '345', '0.498928109', '3.13', '12.9', '3.613343746', '3.562134708');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W12x106', '31.2', '12.9', '0.61', '12.2', '0.99', '9.72', '11.91', '7.869', '0.490909091', '6.161616162', '15.93442623', '933', '164', '145', '5.47', '301', '0.497699203', '3.11', '9.13', '3.569323107', '3.515929268');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '2100', 'ASD8-13th', 'W12x96', '28.2', '12.7', '0.55', '12.2', '0.9', '9.7', '11.8', '6.985', '0.485883424', '6.777777778', '17.63636364', '833', '147', '131', '5.44', '270', '0.504402222', '3.09', '6.85', '3.557632677', '3.487162936');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '2100', 'ASD8-13th', 'W12x87', '25.6', '12.5', '0.515', '12.1', '0.81', '9.68', '11.69', '6.4375', '0.508641975', '7.469135802', '18.7961165', '740', '132', '118', '5.38', '241', '0.496184098', '3.07', '5.1', '3.51134474', '3.455093268');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W12x79', '23.2', '12.4', '0.47', '12.1', '0.735', '9.74', '11.665', '5.828', '0.514735481', '8.231292517', '20.72340426', '662', '119', '107', '5.34', '216', '0.502352367', '3.05', '3.84', '3.498235162', '3.431328998');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W12x72', '21.1', '12.3', '0.43', '12', '0.67', '9.76', '11.63', '5.289', '0.52199005', '8.955223881', '22.69767442', '597', '108', '97.4', '5.31', '195', '0.494769231', '3.04', '2.93', '3.458121773', '3.412028788');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W12x65', '19.1', '12.1', '0.39', '12', '0.605', '9.7', '11.495', '4.719', '0.52107438', '9.917355372', '24.87179487', '533', '96.8', '87.9', '5.28', '174', '0.500689655', '3.02', '2.18', '3.449047285', '3.373025905');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W12x58', '17', '12.2', '0.36', '10', '0.64', '9.72', '11.56', '4.392', '0.54675', '7.8125', '27', '475', '86.4', '78', '5.28', '107', '0.498442368', '2.51', '2.1', '2.87443732', '2.815843454');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W12x53', '15.6', '12.1', '0.345', '10', '0.575', '9.74', '11.525', '4.1745', '0.5844', '8.695652174', '28.23188406', '425', '77.9', '70.6', '5.23', '95.8', '0.500173974', '2.48', '1.58', '2.86007793', '2.796313589');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W12x50', '14.6', '12.2', '0.37', '8.08', '0.64', '9.92', '11.56', '4.514', '0.709777228', '6.3125', '26.81081081', '391', '71.9', '64.2', '5.18', '56.3', '0.499717335', '1.96', '1.71', '2.298182806', '2.251389325');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W12x45', '13.1', '12.1', '0.335', '8.05', '0.575', '9.94', '11.525', '4.0535', '0.719395085', '7', '29.67164179', '348', '64.2', '57.7', '5.15', '50', '0.499924286', '1.95', '1.26', '2.281529157', '2.234614255');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W12x40', '11.7', '11.9', '0.295', '8.01', '0.515', '9.86', '11.385', '3.5105', '0.705113753', '7.776699029', '33.42372881', '307', '57', '51.5', '5.13', '44.1', '0.500132344', '1.94', '0.906', '2.266238177', '2.207837979');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '2100', 'ASD8-13th', 'W12x35', '10.3', '12.5', '0.3', '6.56', '0.52', '10.86', '11.98', '3.75', '0.955089118', '6.307692308', '36.2', '285', '51.2', '45.6', '5.25', '24.5', '0.499306858', '1.54', '0.741', '1.819052049', '1.793965274');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '2100', 'ASD8-13th', 'W12x30', '8.79', '12.3', '0.26', '6.52', '0.44', '10.82', '11.86', '3.198', '0.980619074', '7.409090909', '41.61538462', '238', '43.1', '38.6', '5.21', '20.3', '0.500631509', '1.52', '0.457', '1.798342102', '1.76596346');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '2100', 'ASD8-13th', 'W12x26', '7.65', '12.2', '0.23', '6.49', '0.38', '10.84', '11.82', '2.806', '1.010948017', '8.539473684', '47.13043478', '204', '37.2', '33.4', '5.17', '17.3', '0.500368934', '1.51', '0.3', '1.781341992', '1.749619291');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W12x22', '6.48', '12.3', '0.26', '4.03', '0.425', '10.85', '11.875', '3.198', '1.647058824', '4.741176471', '41.73076923', '156', '29.3', '25.4', '4.91', '4.66', '0.497435649', '0.848', '0.293', '1.067935217', '1.043705354');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W12x19', '5.57', '12.2', '0.235', '4.01', '0.35', '10.9', '11.85', '2.867', '1.825080157', '5.728571429', '46.38297872', '130', '24.7', '21.3', '4.82', '3.76', '0.500186621', '0.822', '0.18', '1.047475953', '1.022700099');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '2100', 'ASD8-13th', 'W12x16', '4.71', '12', '0.22', '3.99', '0.265', '10.87', '11.735', '2.64', '2.261691966', '7.528301887', '49.40909091', '103', '20.1', '17.1', '4.67', '2.82', '0.497432557', '0.773', '0.103', '1.012468443', '0.983678203');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W12x14', '4.16', '11.9', '0.2', '3.97', '0.225', '10.85', '11.675', '2.38', '2.429331094', '8.822222222', '54.25', '88.6', '17.4', '14.9', '4.62', '2.36', '0.497119489', '0.753', '0.0704', '0.995928524', '0.961559835');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W10x112', '32.9', '11.4', '0.755', '10.4', '1.25', '7.9', '10.15', '8.607', '0.458807692', '4.16', '10.46357616', '716', '147', '126', '4.66', '236', '0.496497175', '2.68', '15.1', '3.110492276', '3.0831081');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W10x100', '29.4', '11.1', '0.68', '10.3', '1.12', '7.86', '9.98', '7.548', '0.46331484', '4.598214286', '11.55882353', '623', '130', '112', '4.6', '207', '0.492694944', '2.65', '10.9', '3.06325751', '3.036871628');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '2100', 'ASD8-13th', 'W10x88', '25.9', '10.8', '0.605', '10.3', '0.99', '7.82', '9.81', '6.534', '0.463969795', '5.202020202', '12.92561983', '534', '113', '98.5', '4.54', '179', '0.503631159', '2.63', '7.53', '3.045844655', '2.985574454');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W10x77', '22.6', '10.6', '0.53', '10.2', '0.87', '7.86', '9.73', '5.618', '0.46943881', '5.862068966', '14.83018868', '455', '97.6', '85.9', '4.49', '154', '0.499594675', '2.6', '5.11', '2.997734213', '2.95328392');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '2100', 'ASD8-13th', 'W10x68', '20', '10.4', '0.47', '10.1', '0.77', '7.86', '9.63', '4.888', '0.475016073', '6.558441558', '16.72340426', '394', '85.3', '75.7', '4.44', '134', '0.493365529', '2.59', '3.56', '2.953068206', '2.91946051');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W10x60', '17.6', '10.2', '0.42', '10.1', '0.68', '7.84', '9.52', '4.284', '0.479440885', '7.426470588', '18.66666667', '341', '74.6', '66.7', '4.39', '116', '0.50330796', '2.57', '2.48', '2.939356941', '2.877196703');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W10x54', '15.8', '10.1', '0.37', '10', '0.615', '7.86', '9.485', '3.737', '0.472878049', '8.130081301', '21.24324324', '303', '66.6', '60', '4.37', '103', '0.497572816', '2.56', '1.82', '2.901389928', '2.853294879');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W10x49', '14.4', '10', '0.34', '10', '0.56', '7.88', '9.44', '3.4', '0.478428571', '8.928571429', '23.17647059', '272', '60.4', '54.6', '4.35', '93.4', '0.499643112', '2.54', '1.39', '2.891888872', '2.841502982');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W10x45', '13.3', '10.1', '0.35', '8.02', '0.62', '7.86', '9.48', '3.535', '0.553253962', '6.467741935', '22.45714286', '248', '54.9', '49.1', '4.32', '53.4', '0.499105426', '2.01', '1.51', '2.317365544', '2.270487176');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W10x39', '11.5', '9.92', '0.315', '7.99', '0.53', '7.86', '9.39', '3.1248', '0.584669516', '7.537735849', '24.95238095', '209', '46.8', '42.1', '4.27', '45', '0.500636429', '1.98', '0.976', '2.293703617', '2.240180473');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W10x33', '9.71', '9.73', '0.29', '7.96', '0.435', '7.86', '9.295', '2.8217', '0.658291457', '9.149425287', '27.10344828', '171', '38.8', '35', '4.19', '36.6', '0.499535237', '1.94', '0.583', '2.263880096', '2.204531048');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '2100', 'ASD8-13th', 'W10x30', '8.84', '10.5', '0.3', '5.81', '0.51', '8.88', '9.99', '3.15', '0.899058419', '5.696078431', '29.6', '170', '36.6', '32.4', '4.38', '16.7', '0.499115269', '1.37', '0.622', '1.625922716', '1.60455082');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '2100', 'ASD8-13th', 'W10x26', '7.61', '10.3', '0.26', '5.77', '0.44', '8.82', '9.86', '2.678', '0.903261383', '6.556818182', '33.92307692', '144', '31.3', '27.9', '4.35', '14.1', '0.499550913', '1.36', '0.402', '1.608299855', '1.578450308');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '2100', 'ASD8-13th', 'W10x22', '6.49', '10.2', '0.24', '5.75', '0.36', '8.88', '9.84', '2.448', '1.029565217', '7.986111111', '37', '118', '26', '23.2', '4.27', '11.4', '0.500287829', '1.33', '0.239', '1.582981297', '1.554858903');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W10x19', '5.62', '10.2', '0.25', '4.02', '0.395', '8.81', '9.805', '2.55', '1.387052081', '5.088607595', '35.24', '96.3', '21.6', '18.8', '4.14', '4.29', '0.49846735', '0.874', '0.233', '1.086557573', '1.057690303');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W10x17', '4.99', '10.1', '0.24', '4.01', '0.33', '8.84', '9.77', '2.424', '1.603264566', '6.075757576', '36.83333333', '81.9', '18.7', '16.2', '4.05', '3.56', '0.498099165', '0.845', '0.156', '1.066124516', '1.036095472');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W10x15', '4.41', '10', '0.23', '4', '0.27', '8.86', '9.73', '2.3', '1.886851852', '7.407407407', '38.52173913', '68.9', '16', '13.8', '3.95', '2.89', '0.498269896', '0.81', '0.104', '1.042552769', '1.009370948');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '2100', 'ASD8-13th', 'W10x12', '3.54', '9.87', '0.19', '3.96', '0.21', '8.85', '9.66', '1.8753', '2.022005772', '9.428571429', '46.57894737', '53.8', '12.6', '10.9', '3.9', '2.18', '0.498502239', '0.785', '0.0547', '1.020201219', '0.98285299');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W8X67', '19.7', '9', '0.57', '8.28', '0.935', '6.34', '8.065', '5.13', '0.466790669', '4.427807487', '11.12280702', '272', '70.1', '60.4', '3.72', '88.6', '0.499215031', '2.12', '5.05', '2.466392045', '2.432123251');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W8X58', '17.1', '8.75', '0.51', '8.22', '0.81', '6.35', '7.94', '4.4625', '0.486392719', '5.074074074', '12.45098039', '228', '59.8', '52', '3.65', '75.1', '0.499205416', '2.1', '3.33', '2.428836185', '2.39449288');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W8X48', '14.1', '8.5', '0.4', '8.11', '0.685', '6.34', '7.815', '3.4', '0.45649689', '5.919708029', '15.85', '184', '49', '43.2', '3.61', '60.9', '0.49998226', '2.08', '1.96', '2.382678101', '2.347017167');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W8x40', '11.7', '8.25', '0.36', '8.07', '0.56', '6.342', '7.69', '2.97', '0.505204461', '7.205357143', '17.61666667', '146', '39.8', '35.5', '3.53', '49.1', '0.499511962', '2.04', '1.12', '2.34668108', '2.306081977');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W8x35', '10.3', '8.12', '0.31', '8.02', '0.495', '6.342', '7.625', '2.5172', '0.495231618', '8.101010101', '20.45806452', '127', '34.7', '31.2', '3.51', '42.6', '0.499502261', '2.03', '0.769', '2.323720917', '2.281562808');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W8x31', '9.12', '8', '0.285', '8', '0.435', '6.342', '7.565', '2.28', '0.519387931', '9.195402299', '22.25263158', '110', '30.4', '27.5', '3.47', '37.1', '0.500269542', '2.02', '0.536', '2.305766627', '2.258967986');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W8x28', '8.24', '8.06', '0.285', '6.54', '0.465', '6.342', '7.595', '2.2971', '0.59434744', '7.032258065', '22.25263158', '98', '27.2', '24.3', '3.45', '21.7', '0.499511186', '1.62', '0.537', '1.880995668', '1.841516529');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W8x24', '7.08', '7.93', '0.245', '6.5', '0.4', '6.342', '7.53', '1.94285', '0.597611538', '8.125', '25.88571429', '82.7', '23.1', '20.9', '3.42', '18.3', '0.500227687', '1.61', '0.346', '1.860961901', '1.815661531');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '2100', 'ASD8-13th', 'W8x21', '6.16', '8.28', '0.25', '5.27', '0.4', '6.88', '7.88', '2.07', '0.815939279', '6.5875', '27.52', '75.3', '20.4', '18.2', '3.49', '9.77', '0.499362617', '1.26', '0.282', '1.484408626', '1.45431907');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '2100', 'ASD8-13th', 'W8x18', '5.26', '8.14', '0.23', '5.25', '0.33', '6.88', '7.81', '1.8722', '0.913362193', '7.954545455', '29.91304348', '61.9', '17', '15.2', '3.43', '7.97', '0.499289327', '1.23', '0.172', '1.463217473', '1.430928342');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W8x15', '4.44', '8.11', '0.245', '4.015', '0.315', '6.88', '7.795', '1.98695', '1.332779853', '6.373015873', '28.08163265', '48', '13.6', '11.8', '3.29', '3.41', '0.498231954', '0.876', '0.137', '1.091542104', '1.061278211');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W8x13', '3.84', '7.99', '0.23', '4', '0.255', '6.88', '7.735', '1.8377', '1.551372549', '7.843137255', '29.91304348', '39.6', '11.4', '9.91', '3.21', '2.73', '0.498168498', '0.843', '0.0871', '1.069297', '1.032190024');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W8x10', '2.96', '7.89', '0.17', '3.94', '0.205', '6.88', '7.685', '1.3413', '1.448062399', '9.609756098', '40.47058824', '30.8', '8.87', '7.81', '3.22', '2.09', '0.499936671', '0.841', '0.0426', '1.054929851', '1.01403878');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W6x25', '7.34', '6.38', '0.32', '6.08', '0.455', '4.97', '5.925', '2.0416', '0.574898785', '6.681318681', '15.53125', '53.4', '18.9', '16.7', '2.7', '17.1', '0.498361837', '1.52', '0.461', '1.762835738', '1.741682544');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W6x20', '5.87', '6.2', '0.26', '6.02', '0.365', '4.97', '5.835', '1.612', '0.588085378', '8.246575342', '19.11538462', '41.4', '15', '13.4', '2.66', '13.3', '0.498941296', '1.5', '0.24', '1.730870572', '1.701683758');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '2100', 'ASD8-13th', 'W6x15', '4.43', '5.99', '0.23', '5.99', '0.26', '4.97', '5.73', '1.3777', '0.73397971', '11.51923077', '21.60869565', '29.1', '10.8', '9.72', '2.56', '9.32', '0.499639375', '1.45', '0.101', '1.691822216', '1.657437409');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W6x16', '4.74', '6.28', '0.26', '4.03', '0.405', '4.97', '5.875', '1.6328', '0.791716448', '4.975308642', '19.11538462', '32.1', '11.7', '10.2', '2.6', '4.43', '0.49863779', '0.967', '0.223', '1.149730571', '1.129511651');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W6x12', '3.55', '6.03', '0.23', '4', '0.28', '4.97', '5.75', '1.3869', '1.020625', '7.142857143', '21.60869565', '22.1', '8.3', '7.31', '2.49', '2.99', '0.499442586', '0.918', '0.0903', '1.113822263', '1.084415784');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '2100', 'ASD8-13th', 'W6x9', '2.68', '5.9', '0.17', '3.94', '0.215', '4.97', '5.685', '1.003', '0.997402904', '9.162790698', '29.23529412', '16.4', '6.23', '5.56', '2.47', '2.2', '0.498107635', '0.905', '0.0405', '1.091427703', '1.060532987');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W6x8.5', '2.52', '5.83', '0.17', '3.94', '0.195', '4.94', '5.635', '0.9911', '1.093062606', '10.1025641', '29.05882353', '14.9', '5.73', '5.1', '2.43', '1.99', '0.499446477', '0.89', '0.0333', '1.083524004', '1.048512018');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '2100', 'ASD8-13th', 'W5x19', '5.56', '5.15', '0.27', '5.03', '0.43', '3.69', '4.72', '1.3905', '0.460631559', '5.848837209', '13.66666667', '26.3', '11.6', '10.2', '2.17', '9.13', '0.499482627', '1.28', '0.316', '1.482357428', '1.453420577');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W5x16', '4.71', '5.01', '0.24', '5', '0.36', '3.69', '4.65', '1.2024', '0.492', '6.944444444', '15.375', '21.4', '9.63', '8.55', '2.13', '7.51', '0.499334221', '1.26', '0.192', '1.460961754', '1.429053177');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'W4x13', '3.83', '4.16', '0.28', '4.06', '0.345', '2.97', '3.815', '1.1648', '0.593703148', '5.884057971', '10.60714286', '11.3', '6.28', '5.46', '1.72', '3.86', '0.498458085', '1', '0.151', '1.188742515', '1.161260367');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('2005', '2100', '13th', 'M12x12.4', '3.63', '12.5', '0.155', '3.75', '0.228', '11.374', '12.272', '1.9375', '2.061953216', '8.223684211', '73.38064516', '89.3', '16.5', '14.2', '4.96', '2.01', '0.498484142', '0.744', '0.0493', '0.959994549', '0.93195841');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('2005', '2100', '13th', 'M12x11.6', '3.4', '12.5', '0.155', '3.5', '0.211', '11.374', '12.289', '1.9375', '2.387230873', '8.293838863', '73.38064516', '80.3', '15', '12.8', '4.86', '1.51', '0.499261865', '0.667', '0.0414', '0.880009701', '0.851386507');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'M12x11.8', '3.47', '12', '0.177', '3.07', '0.225', '10.874', '11.775', '2.124', '2.786388708', '6.822222222', '61.43502825', '72.2', '14.3', '12', '4.56', '1.09', '0.49772551', '0.559', '0.05', '0.757195144', '0.731287392');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1989', '2100', 'ASD9-13th', 'M12x10.8', '3.18', '11.97', '0.16', '3.07', '0.21', '10.844', '11.76', '1.9152', '2.691236234', '7.30952381', '67.775', '66.7', '13.2', '11.1', '4.58', '1.01', '0.501339359', '0.564', '0.0393', '0.760735379', '0.731455417');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1989', '2100', 'ASD9-13th', 'M12x10', '2.95', '11.97', '0.149', '3.25', '0.18', '10.97', '11.79', '1.78353', '2.794068376', '9.027777778', '73.62416107', '61.7', '12.2', '10.3', '4.57', '1.03', '0.49992415', '0.592', '0.0292', '0.798050137', '0.767789034');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'M10x9', '2.65', '10', '0.157', '2.69', '0.206', '8.874', '9.794', '1.57', '2.514198578', '6.529126214', '56.52229299', '39', '9.22', '7.79', '3.83', '0.672', '0.497248568', '0.503', '0.0314', '0.676831996', '0.649951514');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1989', '2100', 'ASD9-13th', 'M10x8', '2.37', '9.95', '0.141', '2.69', '0.182', '8.824', '9.768', '1.40295', '2.541329303', '7.39010989', '62.58156028', '34.6', '8.2', '6.95', '3.82', '0.593', '0.497842866', '0.5', '0.0224', '0.675624259', '0.645539426');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1989', '2100', 'ASD9-13th', 'M10x7.5', '2.22', '9.99', '0.13', '2.69', '0.173', '9.114', '9.817', '1.2987', '2.545974171', '7.774566474', '70.10769231', '33', '7.77', '6.6', '3.85', '0.562', '0.499327381', '0.503', '0.0187', '0.670304646', '0.646503064');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'M8x6.5', '1.92', '8', '0.135', '2.28', '0.189', '6.874', '7.811', '1.08', '2.153508772', '6.031746032', '50.91851852', '18.5', '5.43', '4.63', '3.11', '0.376', '0.496474851', '0.443', '0.0184', '0.589216929', '0.5631729');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('2001', '2100', 'LRFD3-13th', 'M8x6.2', '1.82', '8', '0.129', '2.28', '0.177', '7.124', '7.823', '1.032', '2.277222718', '6.440677966', '55.2248062', '17.6', '5.15', '4.39', '3.1', '0.352', '0.496653955', '0.439', '0.0156', '0.580473233', '0.560029287');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'M6x4.4', '1.29', '6', '0.114', '1.84', '0.171', '5.25', '5.829', '0.684', '1.902173913', '5.380116959', '46.05263158', '7.23', '2.8', '2.41', '2.36', '0.18', '0.493169067', '0.372', '0.0099', '0.480626659', '0.466562427');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('2001', '2100', 'LRFD3-13th', 'M6x3.7', '1.09', '5.92', '0.098', '2', '0.129', '5.294', '5.791', '0.58016', '2.010899225', '7.751937984', '54.02040816', '5.96', '2.33', '2.01', '2.34', '0.173', '0.497109827', '0.398', '0.0053', '0.515944457', '0.499214059');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '2100', 'ASD8-13th', 'M5x18.9', '5.56', '5', '0.316', '5', '0.416', '3.374', '4.584', '1.58', '0.512588462', '6.009615385', '10.67721519', '24.2', '11.1', '9.67', '2.08', '8.7', '0.498084291', '1.25', '0.313', '1.473728766', '1.43599754');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('2005', '2100', '13th', 'M4x6', '1.75', '3.8', '0.13', '3.8', '0.16', '2.8', '3.64', '0.494', '0.598684211', '11.875', '21.53846154', '4.72', '2.74', '2.48', '1.64', '1.47', '0.497705215', '0.915', '0.0184', '1.089124485', '1.038648315');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('2005', '2100', '13th', 'M4x4.08', '1.27', '4', '0.115', '2.25', '0.17', '2.874', '3.83', '0.46', '0.864078431', '6.617647059', '24.99130435', '3.53', '2', '1.77', '1.67', '0.325', '0.496514423', '0.506', '0.0147', '0.638397506', '0.592979168');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('2005', '2100', '13th', 'M4x3.45', '1.01', '4', '0.092', '2.25', '0.13', '3', '3.87', '0.368', '0.943589744', '8.653846154', '32.60869565', '2.86', '1.6', '1.43', '1.68', '0.248', '0.497574345', '0.496', '0.0082', '0.631186396', '0.579293034');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('2005', '2100', '13th', 'M4x3.2', '1.01', '4', '0.092', '2.25', '0.13', '3', '3.87', '0.368', '0.943589744', '8.653846154', '32.60869565', '2.86', '1.6', '1.43', '1.68', '0.248', '0.497574345', '0.496', '0.0082', '0.631186396', '0.579293034');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('2005', '2100', '13th', 'M3x2.9', '0.914', '3', '0.09', '2.25', '0.13', '2', '2.87', '0.27', '0.615384615', '8.653846154', '22.22222222', '1.5', '1.12', '1', '1.28', '0.248', '0.497574345', '0.521', '0.0079', '0.648122075', '0.596556787');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '2100', 'ASD8-13th', 'S24x121', '35.5', '24.5', '0.8', '8.05', '1.09', '20.5', '23.41', '19.6', '1.869052368', '3.69266055', '25.625', '3160', '306', '258', '9.43', '83', '0.570893109', '1.53', '12.8', '2.135863148', '1.940505608');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '2100', 'ASD8-13th', 'S24x106', '31.1', '24.5', '0.62', '7.87', '1.09', '20.5', '23.41', '15.19', '1.481645547', '3.610091743', '33.06451613', '2940', '279', '240', '9.71', '76.8', '0.576511837', '1.57', '10.1', '2.131125407', '1.935355265');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'S24x100', '29.3', '24', '0.745', '7.25', '0.87', '20.5', '23.13', '17.88', '2.421323821', '4.166666667', '27.51677852', '2380', '239', '199', '9.01', '47.4', '0.58287266', '1.27', '7.59', '1.857686576', '1.659722384');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'S24x90', '26.5', '24', '0.625', '7.13', '0.87', '20.5', '23.13', '15', '2.065499508', '4.097701149', '32.8', '2250', '222', '187', '9.21', '44.7', '0.587894061', '1.3', '6.05', '1.86013282', '1.662668913');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '2100', 'ASD8-13th', 'S24x80', '23.5', '24', '0.5', '7', '0.87', '20.5', '23.13', '12', '1.683087028', '4.022988506', '41', '2100', '204', '175', '9.47', '42', '0.592083333', '1.34', '4.89', '1.863301501', '1.666013205');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '2100', 'ASD8-13th', 'S20x96', '28.2', '20.3', '0.8', '7.2', '0.92', '16.8', '19.38', '16.24', '2.028985507', '3.913043478', '21', '1670', '198', '165', '7.71', '49.9', '0.573460521', '1.33', '8.4', '1.89951826', '1.711867667');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '2100', 'ASD8-13th', 'S20x86', '25.3', '20.3', '0.66', '7.06', '0.92', '16.8', '19.38', '13.398', '1.707106787', '3.836956522', '25.45454545', '1570', '183', '155', '7.89', '46.6', '0.578941614', '1.36', '6.65', '1.893261139', '1.706825009');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'S20x75', '22', '20', '0.635', '6.39', '0.795', '16.74', '19.205', '12.7', '2.092479405', '4.018867925', '26.36220472', '1280', '152', '128', '7.62', '29.5', '0.585957937', '1.16', '4.59', '1.67370315', '1.487641144');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '2100', 'ASD8-13th', 'S20x66', '19.4', '20', '0.505', '6.26', '0.795', '16.74', '19.205', '10.1', '1.698655736', '3.937106918', '33.14851485', '1190', '139', '119', '7.83', '27.5', '0.590984633', '1.19', '3.58', '1.672961307', '1.489652686');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'S18x70', '20.5', '18', '0.711', '6.25', '0.691', '15', '17.309', '12.798', '2.469464544', '4.522431259', '21.09704641', '923', '124', '103', '6.7', '24', '0.585767958', '1.08', '4.1', '1.608067583', '1.420064268');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'S18x54.7', '16', '18', '0.461', '6', '0.691', '15', '17.309', '8.298', '1.667872648', '4.341534009', '32.53796095', '801', '104', '89', '7.07', '20.7', '0.600869565', '1.14', '2.33', '1.60653651', '1.418767268');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'S15x50', '14.7', '15', '0.55', '5.64', '0.622', '12.24', '14.378', '8.25', '1.918998426', '4.533762058', '22.25454545', '485', '77', '64.7', '5.75', '15.6', '0.596103748', '1.03', '2.12', '1.498363022', '1.316571352');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'S15x42.9', '12.6', '15', '0.411', '5.5', '0.622', '12.24', '14.378', '6.165', '1.470517393', '4.421221865', '29.7810219', '446', '69.2', '59.4', '5.95', '14.3', '0.603060897', '1.06', '1.54', '1.494398433', '1.315555086');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'S12x50', '14.6', '12', '0.687', '5.48', '0.659', '9.12', '11.341', '8.244', '1.734944563', '4.157814871', '13.27510917', '303', '60.9', '50.6', '4.55', '15.6', '0.579323633', '1.03', '2.77', '1.49358905', '1.322201721');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'S12x40.8', '11.9', '12', '0.462', '5.25', '0.659', '9.12', '11.341', '5.544', '1.21784522', '3.983308042', '19.74025974', '270', '52.7', '45.1', '4.76', '13.5', '0.588638021', '1.06', '1.69', '1.465725617', '1.302834621');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'S12x35', '10.2', '12', '0.428', '5.08', '0.544', '9.62', '11.456', '5.136', '1.489896943', '4.669117647', '22.47663551', '228', '44.6', '38.1', '4.72', '9.84', '0.60396767', '0.98', '1.05', '1.38455297', '1.216288403');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'S12x31.8', '9.31', '12', '0.35', '5', '0.544', '9.62', '11.456', '4.2', '1.237867647', '4.595588235', '27.48571429', '217', '41.8', '36.2', '4.83', '9.33', '0.607359771', '1', '0.878', '1.380255559', '1.21503291');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'S10x35', '10.3', '10', '0.594', '4.94', '0.491', '7.74', '9.509', '5.94', '1.895478945', '5.030549898', '13.03030303', '147', '35.4', '29.4', '3.78', '8.3', '0.594296264', '0.899', '1.29', '1.329844767', '1.158558071');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'S10x25.4', '7.45', '10', '0.311', '4.66', '0.491', '7.74', '9.509', '3.11', '1.05204409', '4.745417515', '24.88745981', '123', '28.3', '24.6', '4.07', '6.73', '0.615237689', '0.95', '0.603', '1.305757861', '1.140492423');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'S8x23', '6.76', '8', '0.441', '4.17', '0.425', '6', '7.575', '3.528', '1.493017351', '4.905882353', '13.60544218', '64.7', '19.2', '16.2', '3.09', '4.27', '0.601433997', '0.795', '0.55', '1.150530591', '0.999154735');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'S8x18.4', '5.4', '8', '0.271', '4', '0.425', '6', '7.575', '2.168', '0.956470588', '4.705882353', '22.1402214', '57.5', '16.5', '14.4', '3.26', '3.69', '0.614272809', '0.827', '0.335', '1.131420602', '0.985163375');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'S6x17.2', '5.06', '6', '0.465', '3.57', '0.359', '4.374', '5.641', '2.79', '1.586971279', '4.972144847', '9.406451613', '26.2', '10.5', '8.74', '2.28', '2.29', '0.594404883', '0.673', '0.371', '0.98725404', '0.859656749');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'S6x12.5', '3.66', '6', '0.232', '3.33', '0.359', '4.374', '5.641', '1.392', '0.848844388', '4.637883008', '18.85344828', '22', '8.45', '7.34', '2.45', '1.8', '0.613724411', '0.702', '0.167', '0.951753393', '0.831670457');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'S5x10', '2.93', '5', '0.214', '3', '0.326', '3.5', '4.674', '1.07', '0.765848671', '4.601226994', '16.35514019', '12.3', '5.66', '4.9', '2.05', '1.19', '0.616386555', '0.638', '0.114', '0.86528736', '0.753363885');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'S4x9.5', '2.79', '4', '0.326', '2.8', '0.293', '2.5', '3.707', '1.304', '0.993417845', '4.778156997', '7.668711656', '6.76', '4.04', '3.38', '1.56', '0.887', '0.604278091', '0.564', '0.12', '0.809693341', '0.697428603');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'S4x7.7', '2.26', '4', '0.193', '2.66', '0.293', '2.5', '3.707', '0.772', '0.619081834', '4.539249147', '12.95336788', '6.05', '3.5', '3.03', '1.64', '0.748', '0.614369555', '0.576', '0.0732', '0.779563178', '0.676434547');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'S3x7.5', '2.2', '3', '0.349', '2.51', '0.26', '1.75', '2.74', '1.047', '0.935871897', '4.826923077', '5.014326648', '2.91', '2.35', '1.94', '1.15', '0.578', '0.592768924', '0.513', '0.0896', '0.735146353', '0.63888595');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'S3x5.7', '1.66', '3', '0.17', '2.33', '0.26', '1.75', '2.74', '0.51', '0.491086167', '4.480769231', '10.29411765', '2.5', '1.94', '1.67', '1.23', '0.447', '0.613129683', '0.518', '0.0433', '0.692339455', '0.605558089');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'HP14x117', '34.4', '14.2', '0.805', '14.9', '0.805', '11.2', '13.395', '11.431', '0.751677852', '9.254658385', '13.91304348', '1220', '194', '172', '5.96', '443', '0.500921547', '3.59', '8.02', '4.246555442', '4.153306682');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'HP14x102', '30', '14', '0.705', '14.8', '0.705', '11.24', '13.295', '9.87', '0.759459459', '10.4964539', '15.94326241', '1050', '169', '150', '5.92', '380', '0.501198105', '3.56', '5.39', '4.198400679', '4.10369752');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'HP14x89', '26.1', '13.8', '0.615', '14.7', '0.615', '11.18', '13.185', '8.487', '0.760544218', '11.95121951', '18.17886179', '904', '146', '131', '5.88', '326', '0.499376699', '3.53', '3.59', '4.156104608', '4.050402864');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'HP14x73', '21.4', '13.6', '0.505', '14.6', '0.505', '11.22', '13.095', '6.868', '0.768493151', '14.45544554', '22.21782178', '729', '118', '107', '5.84', '261', '0.501797152', '3.49', '2.01', '4.106430226', '3.996373941');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '2100', 'ASD8-13th', 'HP12x84', '24.6', '12.3', '0.685', '12.3', '0.685', '9.54', '11.615', '8.4255', '0.775609756', '8.97810219', '13.9270073', '650', '120', '106', '5.14', '213', '0.498706532', '2.94', '4.24', '3.504300638', '3.416107103');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'HP12x74', '21.8', '12.1', '0.605', '12.2', '0.61', '9.48', '11.49', '7.3205', '0.770679925', '10', '15.66942149', '569', '105', '93.8', '5.11', '186', '0.496266703', '2.92', '2.98', '3.465769362', '3.375204329');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '2100', 'ASD8-13th', 'HP12x63', '18.4', '11.9', '0.515', '12.1', '0.515', '9.4', '11.385', '6.1285', '0.776859504', '11.74757282', '18.25242718', '472', '88.3', '79.1', '5.06', '153', '0.49692479', '2.88', '1.83', '3.423219048', '3.318249161');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'HP12x53', '15.5', '11.8', '0.435', '12', '0.435', '9.54', '11.365', '5.133', '0.795', '13.79310345', '21.93103448', '393', '74', '66.7', '5.03', '127', '0.493228346', '2.86', '1.12', '3.375707161', '3.289339238');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'HP10x57', '16.8', '10', '0.565', '10.2', '0.565', '7.5', '9.435', '5.65', '0.735294118', '9.026548673', '13.27433628', '294', '66.5', '58.8', '4.18', '101', '0.49470505', '2.45', '1.97', '2.920402102', '2.84661005');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'HP10x42', '12.4', '9.7', '0.415', '10.1', '0.42', '7.44', '9.28', '4.0255', '0.727864215', '12.02380952', '17.92771084', '210', '48.3', '43.4', '4.13', '71.7', '0.502936332', '2.41', '0.813', '2.871035185', '2.768685992');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2100', 'ASD7-13th', 'HP8x36', '10.6', '8.02', '0.445', '8.16', '0.445', '5.76', '7.575', '3.5689', '0.705882353', '9.168539326', '12.94382022', '119', '33.6', '29.8', '3.36', '40.3', '0.499970287', '1.95', '0.77', '2.345335298', '2.263188417');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2005', 'LRFD1-ASD9', 'W36x798', '235', '42', '2.38', '18', '4.29', '31.52', '37.71', '99.96', '0.971478891', '2.097902098', '13.24369748', '62600', '3580', '2980', '16.3', '4200', '0.496414286', '4.23', '1050', '5.197651569', '5.155013198');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2005', 'LRFD1-3', 'W36x650', '191', '40.5', '1.97', '17.6', '3.54', '31.52', '36.96', '79.785', '0.99663585', '2.485875706', '16', '48900', '2860', '2420', '16', '3230', '0.497917622', '4.11', '591', '5.023634901', '4.966432779');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2005', 'LRFD1-3', 'W36x527', '155', '39.2', '1.61', '17.2', '2.91', '31.48', '36.29', '63.112', '1.012602893', '2.95532646', '19.55279503', '38300', '2280', '1950', '15.7', '2490', '0.495561703', '4.01', '327', '4.861010496', '4.813498648');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2005', 'LRFD1-3', 'W36x439', '129', '38.3', '1.36', '17', '2.44', '31.52', '35.86', '52.088', '1.033442623', '3.483606557', '23.17647059', '31000', '1870', '1620', '15.5', '1990', '0.501998325', '3.93', '193', '4.764570664', '4.693093165');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2005', 'LRFD1-3', 'W36x393', '116', '37.8', '1.22', '16.8', '2.2', '31.5', '35.6', '46.116', '1.039772727', '3.818181818', '25.81967213', '27500', '1670', '1450', '15.4', '1750', '0.4967424', '3.9', '141', '4.689343234', '4.634949689');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2005', 'LRFD1-3', 'W36x359', '105', '37.4', '1.12', '16.7', '2.01', '31.48', '35.39', '41.888', '1.050364942', '4.154228856', '28.10714286', '24800', '1510', '1320', '15.3', '1570', '0.496894938', '3.86', '108', '4.644638953', '4.587627465');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2005', 'LRFD1-3', 'W36x328', '96.4', '37.1', '1.02', '16.6', '1.85', '31.5', '35.25', '37.842', '1.04623901', '4.486486486', '30.88235294', '22500', '1380', '1210', '15.3', '1420', '0.496622512', '3.84', '84.1', '4.605917084', '4.547953858');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2005', 'ASD7-9', 'W36x280', '82.4', '36.5', '0.885', '16.6', '1.57', '31.46', '34.93', '32.3025', '1.068302509', '5.286624204', '35.5480226', '18900', '1170', '1030', '15.1', '1200', '0.498725328', '3.81', '52.6', '4.57898919', '4.510828396');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2005', 'ASD7-9', 'W36x260', '76.5', '36.3', '0.84', '16.6', '1.44', '31.52', '34.86', '30.492', '1.107630522', '5.763888889', '37.52380952', '17300', '1080', '953', '15', '1090', '0.50359222', '3.78', '41.5', '4.558097027', '4.464938612');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2005', 'ASD7-9', 'W36x245', '72.1', '36.1', '0.8', '16.5', '1.35', '31.5', '34.75', '28.88', '1.131313131', '6.111111111', '39.375', '16100', '1010', '895', '15', '1010', '0.500360458', '3.75', '34.6', '4.517427385', '4.428040413');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2005', 'ASD7-9', 'W36x230', '67.6', '35.9', '0.76', '16.5', '1.26', '31.48', '34.64', '27.284', '1.150784031', '6.547619048', '41.42105263', '15000', '943', '837', '14.9', '940', '0.50177992', '3.73', '28.6', '4.505284858', '4.410371181');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2005', 'LRFD1-3', 'W36x232', '68.1', '37.1', '0.87', '12.1', '1.57', '32.46', '35.53', '32.277', '1.486561036', '3.853503185', '37.31034483', '15000', '936', '809', '14.8', '468', '0.495254767', '2.62', '39.6', '3.249133172', '3.205761963');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('2001', '2005', 'LRFD3', 'W24x62', '18.3', '23.7', '0.43', '7.04', '0.59', '21.32', '23.11', '10.191', '2.207145609', '5.966101695', '49.58139535', '1560', '154', '132', '9.24', '34.5', '0.497244111', '1.37', '1.77', '1.79601836', '1.737831067');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('2001', '2005', 'LRFD3', 'W14x808', '237', '22.8', '3.74', '18.6', '5.12', '11.36', '17.68', '85.272', '0.446135753', '1.81640625', '3.037433155', '16000', '1830', '1400', '8.2', '5510', '0.49828286', '4.82', '1840', '6.005966838', '5.89845016');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('2001', '2005', 'LRFD3', 'M4x6', '1.75', '3.8', '0.13', '3.8', '0.16', '2.8', '3.64', '0.494', '0.598684211', '11.875', '21.53846154', '4.72', '2.74', '2.48', '1.64', '1.47', '0.497705215', '0.915', '0.0184', '1.089124485', '1.038648315');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '2005', 'ASD8-9', 'HP13x100', '29.4', '13.15', '0.765', '13.205', '0.765', '10.275', '12.385', '10.05975', '0.778114351', '8.630718954', '13.43137255', '886', '153', '135', '5.49', '294', '0.49928449', '3.16', '6.25', '3.76354048', '3.672313833');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '2005', 'ASD8-9', 'HP13x87', '25.5', '12.95', '0.665', '13.105', '0.665', '10.2', '12.285', '8.61175', '0.778328882', '9.853383459', '15.33834586', '755', '131', '117', '5.45', '250', '0.498897659', '3.13', '4.12', '3.721301994', '3.622844187');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '2005', 'ASD8-9', 'HP13x73', '21.6', '12.75', '0.565', '13.005', '0.565', '10.25', '12.185', '7.20375', '0.788158401', '11.50884956', '18.14159292', '630', '110', '98.8', '5.4', '207', '0.500297031', '3.1', '2.54', '3.673343204', '3.572765149');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '2005', 'ASD8-9', 'HP13x60', '17.5', '12.54', '0.46', '12.9', '0.46', '10.29', '12.08', '5.7684', '0.797674419', '14.02173913', '22.36956522', '503', '89', '80.3', '5.36', '165', '0.498725727', '3.07', '1.39', '3.623405462', '3.522919088');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2005', 'ASD7-9', 'S7x20', '5.88', '7', '0.45', '3.86', '0.392', '5.125', '6.608', '3.15', '1.524168605', '4.923469388', '11.38888889', '42.4', '14.5', '12.1', '2.69', '3.17', '0.592662533', '0.734', '0.45', '1.06815259', '0.930372715');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2005', 'ASD7-9', 'S7x15.3', '4.5', '7', '0.252', '3.662', '0.392', '5.125', '6.608', '1.764', '0.899684013', '4.670918367', '20.33730159', '36.7', '12.1', '10.5', '2.86', '2.64', '0.607653374', '0.766', '0.24', '1.042052172', '0.911438424');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '2005', 'ASD7-9', 'S5x14.75', '4.34', '5', '0.494', '3.284', '0.326', '3.375', '4.674', '2.47', '1.557327589', '5.036809816', '6.831983806', '15.2', '7.42', '6.09', '1.87', '1.67', '0.576141725', '0.62', '0.32', '0.920220347', '0.800532458');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '2005', 'ASD8-9', 'M14x18', '5.1', '14', '0.215', '4', '0.27', '12.75', '13.73', '3.01', '2.538194444', '7.407407407', '59.30232558', '148', '24.9', '21.1', '5.83', '2.64', '0.545454545', '0.179', '0.11', '0.998076578', '0.92678929');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1989', '2005', 'ASD9', 'M4x18.9', '5.55', '5', '0.316', '5.003', '0.416', '3.25', '4.584', '1.58', '0.493453928', '6.013221154', '10.28481013', '24.1', '11', '9.63', '2.08', '7.86', '0.552307635', '1.19', '0.34', '1.478108296', '1.367745946');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1989', '2005', 'ASD9', 'W44x285', '83.8', '44.02', '1.024', '11.811', '1.722', '38.645', '42.298', '45.07648', '1.945689126', '3.429442509', '37.73925781', '24600', '1310', '1120', '17.1', '490', '0.482520567', '2.42', '54.72908487', '3.085614511', '3.041823055');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1989', '2005', 'ASD9', 'W44x248', '72.8', '43.62', '0.865', '11.811', '1.575', '38.62', '42.045', '37.7313', '1.795813158', '3.74952381', '44.64739884', '21400', '1150', '983', '17.2', '435', '0.497130105', '2.44', '39.49452026', '3.103047057', '3.05007171');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1989', '2005', 'ASD9', 'W44x224', '65.8', '43.31', '0.787', '11.811', '1.416', '38.685', '41.894', '34.08497', '1.820402447', '4.170550847', '49.15501906', '19200', '1030', '889', '17.1', '391', '0.497239085', '2.44', '28.93245165', '3.089960849', '3.035277584');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1989', '2005', 'ASD9', 'W44x198', '58', '42.91', '0.709', '11.811', '1.22', '38.66', '41.69', '30.42319', '1.902223684', '4.84057377', '54.52750353', '16700', '902', '776', '16.9', '336', '0.498539204', '2.41', '19.10583434', '3.066257631', '3.004275304');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2005', 'LRFD1-ASD9', 'W40x328', '96.4', '40', '0.91', '17.91', '1.73', '33.75', '38.27', '36.4', '0.991227815', '5.176300578', '37.08791209', '26800', '1510', '1340', '16.7', '1660', '0.49893449', '4.15', '71.00043576', '4.975741473', '4.868732098');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2005', 'LRFD1-ASD9', 'W40x298', '87.6', '39.69', '0.83', '17.83', '1.575', '33.69', '38.115', '32.9427', '0.995742862', '5.66031746', '40.59036145', '24200', '1370', '1220', '16.6', '1490', '0.499306331', '1.12', '53.4053866', '4.941734694', '4.82443193');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2005', 'LRFD1-ASD9', 'W40x268', '78.8', '39.37', '0.75', '17.75', '1.415', '33.745', '37.955', '29.5275', '1.007664361', '6.272084806', '44.99333333', '21500', '1220', '1090', '16.5', '1320', '0.499569982', '4.09', '38.6640266', '4.903297728', '4.793946871');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2005', 'LRFD1-ASD9', 'W40x244', '71.1', '39.06', '0.71', '17.71', '1.26', '33.81', '37.8', '27.7326', '1.075757576', '7.027777778', '47.61971831', '19200', '1100', '983', '16.4', '1170', '0.498493065', '4.04', '27.97712862', '4.860058431', '4.742933921');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2005', 'LRFD1-ASD9', 'W40x221', '64.8', '38.67', '0.71', '17.71', '1.065', '33.795', '37.605', '27.4557', '1.27216262', '8.314553991', '47.59859155', '16600', '967', '858', '16', '988', '0.498961574', '3.9', '18.62121455', '4.790372536', '4.653102582');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2005', 'LRFD1-ASD9', 'W40x192', '56.5', '38.2', '0.71', '17.71', '0.83', '33.7', '37.37', '27.122', '1.627764587', '10.6686747', '47.46478873', '13500', '807', '708', '15.5', '770', '0.498955489', '3.69', '11.11025449', '4.678504053', '4.507910498');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2005', 'LRFD1-ASD9', 'W40x655', '192', '43.62', '1.97', '16.87', '3.54', '33.745', '40.08', '85.9314', '1.113159287', '2.382768362', '17.12944162', '56500', '3060', '2590', '17.2', '2860', '0.495223483', '3.86', '592.0437403', '4.77610221', '4.704159008');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2005', 'LRFD1-ASD9', 'W40x531', '156', '42.34', '1.61', '16.51', '2.91', '33.715', '39.43', '68.1674', '1.12981927', '2.836769759', '20.94099379', '44300', '2450', '2090', '16.9', '2200', '0.496055514', '3.75', '322.0309028', '4.630305634', '4.555505634');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2005', 'LRFD1-ASD9', 'W40x480', '140', '41.81', '1.46', '16.36', '2.64', '33.81', '39.17', '61.0426', '1.142906757', '3.098484848', '23.15753425', '39500', '2180', '1890', '16.8', '1940', '0.49655899', '3.72', '238.5753173', '4.566023977', '4.483650487');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2005', 'LRFD1-ASD9', 'W40x436', '128', '41.34', '1.34', '16.24', '2.4', '33.715', '38.94', '55.3956', '1.159126129', '3.383333333', '25.16044776', '35400', '1980', '1710', '16.6', '1720', '0.498034724', '3.67', '178.9741867', '4.514542262', '4.425365482');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2005', 'LRFD1-ASD9', 'W36x848', '249', '42.45', '2.52', '18.13', '4.53', '31.075', '37.92', '106.974', '0.953488967', '2.001103753', '12.33134921', '67400', '3830', '3170', '16.4', '4550', '0.494423349', '4.27', '1301.686108', '5.263720025', '5.216692451');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2005', 'LRFD1-ASD9', 'W36x720', '211', '41.19', '2.165', '17.775', '3.9', '31.065', '37.29', '89.17635', '0.970186087', '2.278846154', '14.34872979', '55300', '3190', '2690', '16.2', '3680', '0.495980236', '4.18', '815.8756329', '5.113564879', '5.05043706');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2005', 'LRFD1-ASD9', 'W36x588', '172', '39.84', '1.79', '17.4', '3.23', '31.09', '36.61', '71.3136', '0.990197858', '2.693498452', '17.36871508', '43500', '2550', '2180', '15.9', '2850', '0.4975356', '4.07', '454.7151025', '4.95335992', '4.891916662');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2005', 'LRFD1-ASD9', 'W36x485', '142', '38.74', '1.5', '17.105', '2.68', '31.115', '36.06', '58.11', '1.0181299', '3.191231343', '20.74333333', '34700', '2070', '1790', '15.6', '2250', '0.496752733', '3.98', '257.0533476', '4.822416223', '4.760610026');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2005', 'LRFD1-ASD9', 'W33x619', '181', '38.47', '1.97', '16.91', '3.54', '29.72', '34.93', '75.7859', '0.978065999', '2.388418079', '15.08629442', '41800', '2560', '2170', '15.2', '2870', '0.497016655', '3.98', '580.1021663', '4.844980327', '4.80612848');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2005', 'LRFD1-ASD9', 'W33x567', '166', '37.91', '1.81', '16.75', '3.27', '29.785', '34.64', '68.6171', '0.984268565', '2.56116208', '16.4558011', '37700', '2330', '1990', '15.1', '2580', '0.496353667', '3.94', '452.4565686', '4.77699095', '4.738678653');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2005', 'LRFD1-ASD9', 'W33x515', '151', '37.36', '1.65', '16.59', '2.99', '29.735', '34.37', '61.644', '0.989086588', '2.774247492', '18.02121212', '33700', '2110', '1810', '14.9', '2290', '0.496813763', '3.89', '342.6313704', '4.710914874', '4.662869081');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2005', 'LRFD1-ASD9', 'W33x468', '137', '36.81', '1.52', '16.455', '2.72', '29.81', '34.09', '55.9512', '1.012368849', '3.024816176', '19.61184211', '30100', '1890', '1630', '14.8', '2030', '0.497491059', '3.85', '257.4782242', '4.645429026', '4.607366068');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2005', 'LRFD1-ASD9', 'W33x424', '124', '36.34', '1.38', '16.315', '2.48', '29.715', '33.86', '50.1492', '1.013482052', '3.289314516', '21.5326087', '26900', '1700', '1480', '14.7', '1800', '0.49860791', '3.81', '193.3913428', '4.589749809', '4.537680084');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2005', 'LRFD1-ASD9', 'W30x581', '170', '35.39', '1.97', '16.2', '3.54', '26.765', '31.85', '69.7183', '0.919422648', '2.288135593', '13.58629442', '33000', '2210', '1870', '13.9', '2530', '0.495731526', '3.86', '551.2549677', '4.682721484', '4.64172255');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2005', 'LRFD1-ASD9', 'W30x526', '154', '34.76', '1.79', '16.02', '3.23', '26.76', '31.53', '62.2204', '0.92570819', '2.479876161', '14.94972067', '29300', '1990', '1680', '13.8', '2230', '0.496253918', '3.8', '414.0008561', '4.606452099', '4.574512074');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2005', 'LRFD1-ASD9', 'W30x477', '140', '34.21', '1.63', '15.865', '2.95', '26.71', '31.26', '55.7623', '0.930249403', '2.688983051', '16.38650307', '26100', '1790', '1530', '13.7', '1970', '0.498304459', '3.75', '312.3959688', '4.540946145', '4.486078684');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2005', 'LRFD1-ASD9', 'W30x433', '127', '33.66', '1.5', '15.725', '2.68', '26.785', '30.98', '50.49', '0.953361175', '2.933768657', '17.85666667', '23200', '1610', '1380', '13.5', '1750', '0.496235079', '3.71', '233.6294221', '4.473473986', '4.432055499');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1989', '2005', 'ASD9', 'W30x351', '104', '32.8', '1.24', '15.47', '2.24', '26.8', '30.56', '40.672', '0.958998984', '3.453125', '21.61290323', '18600', '1300', '1140', '13.4', '1390', '0.497190605', '3.65', '133.9144567', '4.366014092', '4.316349985');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2005', 'LRFD1-ASD9', 'W27x494', '145', '31.974', '1.81', '15.095', '3.27', '23.974', '28.704', '57.87294', '0.87909985', '2.308103976', '13.24530387', '22900', '1710', '1440', '12.6', '1890', '0.495911357', '3.61', '402.1446738', '4.380645118', '4.340161287');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2005', 'LRFD1-ASD9', 'W27x448', '131', '31.42', '1.65', '14.94', '2.99', '24.045', '28.43', '51.843', '0.888151267', '2.498327759', '14.57272727', '20400', '1530', '1300', '12.5', '1670', '0.497536863', '3.57', '304.332974', '4.311414624', '4.27326663');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2005', 'LRFD1-ASD9', 'W27x407', '119', '30.87', '1.52', '14.8', '2.72', '23.995', '28.15', '46.9224', '0.906011526', '2.720588235', '15.78618421', '18100', '1380', '1170', '12.3', '1480', '0.496490667', '3.52', '228.3217527', '4.247118917', '4.21951105');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2005', 'LRFD1-ASD9', 'W24x492', '144', '29.65', '1.97', '14.115', '3.54', '21.025', '26.11', '58.4105', '0.828930436', '1.993644068', '10.67258883', '19100', '1550', '1290', '11.5', '1670', '0.4967618', '3.41', '474.9638298', '4.159767272', '4.111041099');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2005', 'LRFD1-ASD9', 'W24x450', '132', '29.09', '1.81', '13.955', '3.27', '20.965', '25.82', '52.6529', '0.831564323', '2.133792049', '11.58287293', '17100', '1410', '1170', '11.4', '1490', '0.497015303', '3.36', '369.870221', '4.0930419', '4.054742923');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2005', 'LRFD1-ASD9', 'W24x408', '119', '28.54', '1.65', '13.8', '2.99', '21.04', '25.55', '47.091', '0.841355242', '2.307692308', '12.75151515', '15100', '1250', '1060', '11.3', '1320', '0.496081773', '3.33', '279.7050508', '4.023416198', '3.988544918');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2005', 'LRFD1-ASD9', 'W21x402', '118', '26.02', '1.73', '13.405', '3.13', '18.27', '22.89', '45.0146', '0.753309587', '2.141373802', '10.56069364', '12200', '1130', '937', '10.2', '1270', '0.494720407', '3.27', '308.1404968', '3.970069529', '3.938582651');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2005', 'LRFD1-ASD9', 'W21x364', '107', '25.47', '1.59', '13.265', '2.85', '18.22', '22.62', '40.4973', '0.766290396', '2.327192982', '11.4591195', '10800', '1010', '746', '10', '1120', '0.494956867', '3.23', '231.2051134', '3.90479567', '4.120699074');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2005', 'LRFD1-ASD9', 'W21x333', '97.9', '25', '1.46', '13.13', '2.62', '18.25', '22.38', '36.5', '0.774550444', '2.505725191', '12.5', '9610', '915', '769', '9.91', '994', '0.497196244', '3.19', '177.9249215', '3.844417825', '3.803164106');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2005', 'LRFD1-ASD9', 'W21x300', '88.2', '24.53', '1.32', '12.99', '2.38', '18.28', '22.15', '32.3796', '0.780484018', '2.728991597', '13.84848485', '8480', '816', '692', '9.81', '873', '0.497976583', '3.15', '131.9046046', '3.782221199', '3.737885055');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2005', 'LRFD1-ASD9', 'W21x275', '80.8', '24.13', '1.22', '12.89', '2.19', '18.13', '21.94', '29.4386', '0.783538972', '2.942922374', '14.86065574', '7620', '741', '632', '9.71', '785', '0.497911279', '3.12', '102.214057', '3.739161973', '3.691302213');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1989', '2005', 'ASD9', 'W21x249', '72.8', '23.74', '1.1', '12.775', '1.99', '18.24', '21.75', '26.114', '0.789229907', '3.209798995', '16.58181818', '6760', '663', '569', '9.63', '694', '0.498190092', '3.09', '75.88328815', '3.686111979', '3.641985688');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2100', 'LRFD1-13th', 'W21x223', '65.4', '23.35', '1', '12.675', '1.79', '18.225', '21.56', '23.35', '0.80327923', '3.540502793', '18.225', '5950', '589', '510', '9.54', '609', '0.498767787', '3.05', '55.05361455', '3.637789162', '3.587838937');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1986', '2001', 'LRFD1', 'W21x248', '72.8', '23.74', '1.1', '12.775', '1.99', '18.24', '21.75', '26.114', '0.789229907', '3.209798995', '16.58181818', '6760', '663', '569', '9.63', '694', '0.498190092', '3.09', '75.88328815', '3.686111979', '3.641985688');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '1989', 'ASD8', 'M12x6.8', '3.47', '12', '0.177', '3.065', '0.225', '10.875', '11.775', '2.124', '2.791190865', '6.811111111', '61.44067797', '71.9', '14.3', '12', '4.55', '0.98', '0.550892212', '0.532', '0.05', '0.755757448', '0.693406446');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '1989', 'ASD8', 'M10x6.5', '2.65', '10', '0.157', '2.69', '0.206', '8.875', '9.794', '1.57', '2.5144819', '6.529126214', '56.52866242', '38.8', '9.19', '7.76', '3.83', '0.609', '0.548688075', '0.48', '0.03', '0.676802711', '0.619930263');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '1989', 'ASD8', 'M8x6', '1.92', '8', '0.135', '2.281', '0.189', '7', '7.811', '1.08', '2.192021043', '6.034391534', '51.85185185', '18.5', '5.42', '4.62', '3.1', '0.343', '0.544957073', '0.423', '0.02', '0.585946649', '0.538473572');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '1989', 'ASD8', 'M6x7.8', '5.89', '6', '0.25', '5.938', '0.379', '4.25', '5.621', '1.5', '0.472116888', '7.833773087', '17', '39', '14.5', '13', '2.57', '11.6', '0.570059982', '1.4', '0.3', '1.732462242', '1.583613201');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1980', '1989', 'ASD8', 'M4x5.3', '3.81', '4', '0.254', '3.94', '0.371', '2.375', '3.629', '1.016', '0.412693092', '5.309973046', '9.350393701', '10.5', '6.05', '5.24', '1.66', '3.36', '0.562784401', '0.939', '0.19', '1.176894199', '1.078654803');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'S24x120', '35.3', '24', '0.798', '8.048', '1.102', '21.6858', '22.898', '19.152', '1.951231405', '3.65154265', '27.17518797', '3030', '299', '252', '9.26', '84.2', '0.568528395', '1.54', '13', '2.092791532', '1.955868053');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'S24x105.9', '31.1', '24', '0.625', '7.875', '1.102', '21.6858', '22.898', '15', '1.561792412', '3.573049002', '34.69728', '2830', '274', '236', '9.53', '78.2', '0.573515662', '1.58', '10.4', '2.095573004', '1.94774076');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'S24x79.9', '23.5', '24', '0.501', '7.001', '0.871', '22.1709', '23.129', '12.024', '1.821557212', '4.018943743', '44.25329341', '2110', '205', '175', '9.47', '42.3', '0.588812166', '1.34', '4.9', '1.820404442', '1.671916522');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'S20x95', '27.9', '20', '0.8', '7.2', '0.916', '18.0764', '19.084', '16', '2.192673459', '3.930131004', '22.5955', '1610', '194', '161', '7.6', '49.7', '0.573264869', '1.33', '8.46', '1.846475862', '1.716267436');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'S20x85', '25', '20', '0.653', '7.053', '0.916', '18.0764', '19.084', '13.06', '1.82707244', '3.84989083', '27.6820827', '1520', '179', '152', '7.79', '46.2', '0.579687457', '1.36', '6.63', '1.847201556', '1.703016673');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'S20x65.4', '19.2', '20', '0.5', '6.25', '0.789', '18.3431', '19.211', '10', '1.859883397', '3.960709759', '36.6862', '1180', '138', '118', '7.84', '27.4', '0.585848398', '1.19', '3.5', '1.625484847', '1.493462307');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'M14x17.2', '5.05', '14', '0.21', '4', '0.272', '13.4288', '13.728', '2.94', '2.591955882', '7.352941176', '63.94666667', '147', '24.8', '21.1', '5.4', '2.65', '0.547421384', '0.725', '0.11', '0.98084914', '0.928475283');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'M10x29.1', '8.56', '9.88', '0.427', '5.937', '0.389', '9.0631', '9.491', '4.21876', '1.67566808', '7.631105398', '21.22505855', '131', '30.9', '26.6', '3.92', '11.2', '0.605691501', '1.14', '0.587', '1.561116508', '1.413543513');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'M10x22.9', '6.73', '9.88', '0.242', '5.752', '0.389', '9.0631', '9.491', '2.39096', '0.980220225', '7.393316195', '37.45082645', '117', '26.4', '23.6', '4.16', '10', '0.616914513', '1.22', '0.343', '1.580506145', '1.418028591');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'M8x37.7', '11.1', '8.12', '0.377', '8.002', '0.521', '7.0259', '7.599', '3.06124', '0.635341237', '7.679462572', '18.63633952', '132', '36.6', '32.6', '3.46', '40.4', '0.5506438', '1.91', '0.999', '2.286603185', '2.169926916');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'M8x34.3', '10.1', '8', '0.378', '8.003', '0.459', '7.0361', '7.541', '3.024', '0.724032899', '8.717864924', '18.61402116', '116', '32.6', '29.1', '3.4', '34.9', '0.561777658', '1.86', '0.747', '2.263606534', '2.126501491');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'M8x32.6', '9.58', '8', '0.315', '7.94', '0.459', '7.0361', '7.541', '2.52', '0.608148121', '8.649237473', '22.3368254', '114', '31.6', '28.4', '3.44', '34.1', '0.561485529', '1.89', '0.673', '2.263070643', '2.127734777');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'M8x22.5', '6.6', '8', '0.375', '5.395', '0.353', '7.2587', '7.647', '3', '1.429301866', '7.641643059', '19.35653333', '68.2', '19.7', '17.1', '3.22', '7.48', '0.617541586', '1.06', '0.374', '1.445362225', '1.293252394');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'M8x18.5', '5.44', '8', '0.23', '5.25', '0.353', '7.2587', '7.647', '1.84', '0.900850398', '7.436260623', '31.55956522', '62', '17.4', '15.5', '3.38', '6.82', '0.624147155', '1.12', '0.243', '1.454844029', '1.2970505');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'M7x5.5', '1.62', '7', '0.128', '2.08', '0.18', '6.622', '6.82', '0.896', '2.263931624', '5.777777778', '51.734375', '12', '4.03', '3.44', '2.73', '0.249', '0.542103133', '0.392', '0.015', '0.52244766', '0.496818366');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'M6x33.75', '9.93', '6.25', '0.488', '6.114', '0.605', '4.9795', '5.645', '3.05', '0.656938553', '5.052892562', '10.20389344', '64.7', '24.1', '20.7', '2.55', '21.4', '0.538439185', '1.47', '1.26', '1.782743404', '1.708199889');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'M6x22.5', '6.62', '6', '0.372', '6.06', '0.379', '5.2041', '5.621', '2.232', '0.84290133', '7.994722955', '13.98951613', '41.2', '15.6', '13.7', '2.49', '12.4', '0.566831728', '1.37', '0.385', '1.707500711', '1.594932669');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'M6x20', '5.89', '6', '0.25', '5.938', '0.379', '5.2041', '5.621', '1.5', '0.578104352', '7.833773087', '20.8164', '39', '14.5', '13', '2.57', '11.6', '0.570059982', '1.4', '0.295', '1.702106448', '1.583613201');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'M4x16.3', '4.8', '4.2', '0.312', '3.938', '0.472', '3.2088', '3.728', '1.3104', '0.53861635', '4.171610169', '10.28461538', '14', '7.85', '6.67', '1.71', '4.44', '0.541009533', '0.962', '0.366', '1.168396107', '1.11391364');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'M4x13.8', '4.06', '4', '0.313', '4', '0.371', '3.2209', '3.629', '1.252', '0.679340768', '5.39083558', '10.29041534', '10.8', '6.31', '5.42', '1.63', '3.58', '0.552700186', '0.939', '0.216', '1.161593101', '1.094763618');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'M4x13', '3.81', '4', '0.254', '3.94', '0.371', '3.2209', '3.629', '1.016', '0.559681339', '5.309973046', '12.68070866', '10.5', '6.06', '5.24', '1.66', '3.36', '0.562784401', '0.939', '0.19', '1.152511051', '1.078654803');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'W33x240', '70.6', '33.5', '0.83', '15.865', '1.4', '30.56', '32.1', '27.805', '1.141992706', '5.666071429', '36.81927711', '13600', '919', '813', '13.9', '933', '0.499327374', '3.64', '36.6', '4.320773215', '4.291736675');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'W33x220', '64.8', '33.25', '0.775', '15.81', '1.275', '30.5725', '31.975', '25.76875', '1.175413303', '6.2', '39.4483871', '12300', '838', '742', '13.8', '841', '0.499262047', '3.6', '28.2', '4.286054091', '4.25683017');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'W33x200', '58.9', '33', '0.715', '15.75', '1.15', '30.585', '31.85', '23.595', '1.207358178', '6.847826087', '42.77622378', '11100', '756', '671', '13.7', '750', '0.499225781', '3.57', '21.1', '4.250407081', '4.218995791');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'W30x210', '61.9', '30.38', '0.775', '15.105', '1.315', '27.6185', '29.065', '23.5445', '1.077594355', '5.743346008', '35.63677419', '9890', '735', '651', '12.6', '757', '0.498896912', '3.5', '28.5', '4.135275816', '4.110811959');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'W30x190', '56', '30.12', '0.71', '15.04', '1.185', '27.6315', '28.935', '21.3852', '1.100770098', '6.345991561', '38.91760563', '8850', '661', '587', '12.6', '673', '0.499189623', '3.47', '21.2', '4.099972042', '4.072726318');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'W30x172', '50.7', '29.88', '0.655', '14.985', '1.065', '27.6435', '28.815', '19.5714', '1.134561322', '7.035211268', '42.20381679', '7910', '594', '530', '12.5', '598', '0.499387215', '3.43', '15.7', '4.065438604', '4.031874184');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'W27x177', '52.2', '27.31', '0.725', '14.09', '1.19', '24.811', '26.12', '19.79975', '1.072813724', '5.920168067', '34.22206897', '6740', '557', '494', '11.4', '556', '0.498911946', '3.26', '20.1', '3.859373428', '3.833941746');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'W27x160', '47.1', '27.08', '0.658', '14.023', '1.075', '24.8225', '26.005', '17.81864', '1.083482783', '6.522325581', '37.72416413', '6030', '501', '446', '11.3', '495', '0.499050875', '3.24', '14.9', '3.827988816', '3.798818999');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'W27x145', '42.7', '26.88', '0.6', '13.965', '0.975', '24.8325', '25.905', '16.128', '1.094274147', '7.161538462', '41.3875', '5430', '453', '404', '11.3', '443', '0.499508018', '3.22', '11.2', '3.800387954', '3.768668876');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'W24x160', '47.1', '24.72', '0.656', '14.091', '1.135', '22.3365', '23.585', '16.21632', '0.91618101', '6.207488987', '34.04954268', '5120', '465', '414', '10.4', '530', '0.499303017', '3.35', '16.5', '3.90557702', '3.885444472');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'W24x145', '42.7', '24.49', '0.608', '14.043', '1.02', '22.348', '23.47', '14.88992', '0.948597934', '6.883823529', '36.75657895', '4570', '417', '373', '10.3', '471', '0.499778658', '3.32', '12.2', '3.872741435', '3.849440264');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'W24x130', '38.3', '24.25', '0.565', '14', '0.9', '22.36', '23.35', '13.70125', '1.002650794', '7.777777778', '39.57522124', '4020', '370', '332', '10.2', '412', '0.499514563', '3.28', '8.67', '3.835219719', '3.806343785');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'W24x120', '35.4', '24.31', '0.556', '12.088', '0.93', '22.357', '23.38', '13.51636', '1.105734648', '6.498924731', '40.21043165', '3650', '338', '300', '10.2', '274', '0.499590871', '2.78', '8.27', '3.29167516', '3.2675475');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'W24x110', '32.5', '24.16', '0.51', '12.042', '0.855', '22.3645', '23.305', '12.3216', '1.107808343', '7.042105263', '43.85196078', '3330', '309', '276', '10.1', '249', '0.499667831', '2.77', '6.45', '3.272147191', '3.242311139');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'W24x100', '29.5', '24', '0.468', '12', '0.775', '22.3725', '23.225', '11.232', '1.125841935', '7.741935484', '47.80448718', '3000', '280', '250', '10.1', '223', '0.50044843', '2.75', '4.87', '3.249843914', '3.218439063');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'W24x61', '18', '23.72', '0.419', '7.023', '0.591', '22.4789', '23.129', '9.93868', '2.269232156', '5.941624365', '53.64892601', '1540', '152', '130', '9.25', '34.3', '0.497370611', '1.38', '1.66', '1.7623092', '1.746782427');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'W21x142', '41.8', '21.46', '0.659', '13.132', '1.095', '19.1605', '20.365', '14.14214', '0.878106636', '5.996347032', '29.07511381', '3410', '357', '317', '9.03', '414', '0.499143195', '3.15', '13.8', '3.6615079', '3.646680786');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'W21x127', '37.4', '21.24', '0.588', '13.061', '0.985', '19.1715', '20.255', '12.48912', '0.87623533', '6.629949239', '32.60459184', '3020', '318', '284', '8.99', '366', '0.49969291', '3.13', '10', '3.630761384', '3.612704987');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'W21x112', '33', '21', '0.527', '13', '0.865', '19.1835', '20.135', '11.067', '0.899039973', '7.514450867', '36.40132827', '2620', '278', '250', '8.92', '317', '0.499580705', '3.1', '6.87', '3.595794995', '3.572896584');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'W21x96', '28.3', '21.14', '0.575', '9.038', '0.935', '19.1765', '20.205', '12.1555', '1.304827922', '4.83315508', '33.35043478', '2100', '227', '198', '8.61', '115', '0.500206736', '2.02', '6.51', '2.440384647', '2.422315759');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'W21x82', '24.2', '20.86', '0.499', '8.962', '0.795', '19.1905', '20.065', '10.40914', '1.344047965', '5.636477987', '38.45791583', '1760', '192', '169', '8.53', '95.6', '0.498818795', '1.99', '4.09', '2.403117688', '2.382265592');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'W21x49', '14.4', '20.82', '0.368', '6.52', '0.532', '19.7028', '20.288', '7.66176', '2.090338115', '6.127819549', '53.54021739', '971', '108', '93.3', '8.21', '24.7', '0.497480681', '1.31', '1.09', '1.654183427', '1.638748379');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'W18x114', '33.5', '18.48', '0.595', '11.833', '0.991', '16.3989', '17.489', '10.9956', '0.832076323', '5.970232089', '27.56117647', '2040', '248', '220', '7.79', '274', '0.499374589', '2.86', '9.13', '3.315047923', '3.300132917');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'W18x105', '30.9', '18.32', '0.554', '11.792', '0.911', '16.4069', '17.409', '10.14928', '0.846117053', '6.472008782', '29.61534296', '1850', '227', '202', '7.75', '249', '0.499919636', '2.84', '7.15', '3.291908657', '3.275638023');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'W18x96', '28.2', '18.16', '0.512', '11.75', '0.831', '16.4149', '17.329', '9.29792', '0.860734701', '7.069795427', '32.06035156', '1680', '206', '185', '7.7', '225', '0.499287691', '2.82', '5.48', '3.268324869', '3.246214011');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'W18x85', '25', '18.32', '0.526', '8.838', '0.911', '16.4069', '17.409', '9.63632', '1.071864534', '4.850713502', '31.1918251', '1440', '178', '157', '7.57', '105', '0.499125575', '2.05', '5.5', '2.431416542', '2.412774522');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'W18x77', '22.7', '18.16', '0.475', '8.787', '0.831', '16.4149', '17.329', '8.626', '1.067800699', '5.28700361', '34.55768421', '1290', '161', '142', '7.54', '94.1', '0.499289041', '2.04', '4.16', '2.411297846', '2.396196296');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'W18x70', '20.6', '18', '0.438', '8.75', '0.751', '16.4229', '17.249', '7.884', '1.094651733', '5.825565912', '37.49520548', '1160', '145', '129', '7.5', '84', '0.499118381', '2.02', '3.13', '2.390215054', '2.369800306');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'W18x64', '18.9', '17.87', '0.403', '8.715', '0.686', '16.4294', '17.184', '7.20161', '1.107478343', '6.352040816', '40.76774194', '1050', '132', '118', '7.46', '75.8', '0.49920145', '2', '2.41', '2.37312594', '2.349312196');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'W18x45', '13.2', '17.86', '0.335', '7.477', '0.499', '16.8121', '17.361', '5.9831', '1.509519909', '7.491983968', '50.18537313', '706', '89.7', '79', '7.3', '34.8', '0.499484709', '1.62', '0.889', '1.969215684', '1.955457795');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'W16x96', '28.2', '16.32', '0.535', '11.533', '0.875', '14.4825', '15.445', '8.7312', '0.767797996', '6.590285714', '27.07009346', '1360', '186', '166', '6.93', '224', '0.499350702', '2.82', '6.16', '3.24462886', '3.228114448');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'W16x88', '25.9', '16.16', '0.504', '11.502', '0.795', '14.4905', '15.365', '8.14464', '0.798681115', '7.233962264', '28.75099206', '1220', '169', '151', '6.87', '202', '0.499062115', '2.79', '4.72', '3.219882584', '3.205815287');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'W16x78', '23', '16.32', '0.529', '8.586', '0.875', '14.4825', '15.445', '8.63328', '1.019765399', '4.906285714', '27.37712665', '1050', '146', '128', '6.75', '92.5', '0.498950804', '2.01', '4.81', '2.376422508', '2.362353253');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'W16x71', '20.9', '16.16', '0.486', '8.543', '0.795', '14.4905', '15.365', '7.85376', '1.036912489', '5.372955975', '29.81584362', '941', '132', '116', '6.71', '82.8', '0.498869284', '1.99', '3.65', '2.354650716', '2.341733443');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'W16x64', '18.8', '16', '0.443', '8.5', '0.715', '14.4985', '15.285', '7.088', '1.056821966', '5.944055944', '32.72799097', '836', '118', '104', '6.66', '73.3', '0.499203473', '1.97', '2.65', '2.332447579', '2.320881899');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'W16x58', '17.1', '15.86', '0.407', '8.464', '0.645', '14.5055', '15.215', '6.45502', '1.081413392', '6.56124031', '35.64004914', '748', '106', '94.4', '6.62', '65.3', '0.49910538', '1.96', '1.98', '2.312374035', '2.293990283');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'W14x314', '92.3', '17.19', '1.415', '16.235', '2.283', '12.3957', '14.907', '24.32385', '0.473226757', '3.555628559', '8.760212014', '4400', '611', '512', '6.9', '1630', '0.499452211', '4.2', '140', '4.90087777', '4.871233521');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'W14x287', '84.4', '16.81', '1.31', '16.13', '2.093', '12.4147', '14.717', '22.0211', '0.481730262', '3.853320592', '9.476870229', '3910', '551', '465', '6.81', '1470', '0.497936256', '4.17', '108', '4.84008684', '4.823106347');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'W14x264', '77.6', '16.5', '1.205', '16.025', '1.938', '12.4302', '14.562', '19.8825', '0.482295658', '4.134416925', '10.31551867', '3530', '502', '427', '6.74', '1330', '0.499706502', '4.14', '85.3', '4.786070083', '4.762197454');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'W14x246', '72.3', '16.25', '1.125', '15.945', '1.813', '12.4427', '14.437', '18.28125', '0.484222343', '4.397407612', '11.06017778', '3230', '464', '397', '6.68', '1230', '0.497949175', '4.12', '69.7', '4.743293393', '4.729124884');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'W14x237', '69.7', '16.12', '1.09', '15.91', '1.748', '12.4492', '14.372', '17.5708', '0.487928666', '4.550915332', '11.4212844', '3080', '445', '382', '6.65', '1170', '0.501400612', '4.11', '62.6', '4.722176571', '4.691425843');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'W14x228', '67.1', '16', '1.045', '15.865', '1.688', '12.4552', '14.312', '16.72', '0.486020376', '4.699348341', '11.91885167', '2940', '427', '368', '6.62', '1120', '0.501525943', '4.1', '56.2', '4.700350833', '4.666811592');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'W14x219', '64.4', '15.87', '1.005', '15.825', '1.623', '12.4617', '14.247', '15.94935', '0.487619557', '4.875231054', '12.39970149', '2800', '408', '353', '6.59', '1070', '0.500938778', '4.08', '49.9', '4.678225706', '4.646770788');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'W14x202', '59.4', '15.63', '0.93', '15.75', '1.503', '12.4737', '14.127', '14.5359', '0.490048094', '5.239520958', '13.41258065', '2540', '373', '325', '6.54', '980', '0.499336523', '4.06', '39.6', '4.637027806', '4.615102299');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'W14x184', '54.1', '15.38', '0.84', '15.66', '1.378', '12.4862', '14.002', '12.9192', '0.486036179', '5.682148041', '14.86452381', '2270', '338', '296', '6.49', '883', '0.499439102', '4.04', '30.3', '4.592280921', '4.56998248');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'W14x167', '49.1', '15.12', '0.78', '15.6', '1.248', '12.4992', '13.872', '11.7936', '0.500769231', '6.25', '16.02461538', '2020', '303', '267', '6.42', '790', '0.499781347', '4.01', '22.8', '4.549917589', '4.530148694');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'W14x158', '46.5', '15', '0.73', '15.55', '1.188', '12.5052', '13.812', '10.95', '0.494158953', '6.544612795', '17.13041096', '1900', '286', '253', '6.4', '745', '0.499654844', '4', '19.5', '4.527627096', '4.509528778');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'W14x150', '44.1', '14.88', '0.695', '15.515', '1.128', '12.5112', '13.752', '10.3416', '0.496847251', '6.877216312', '18.00172662', '1790', '270', '240', '6.37', '703', '0.499376232', '3.99', '16.7', '4.506968254', '4.487866977');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'W14x142', '41.8', '14.75', '0.68', '15.5', '1.063', '12.5177', '13.687', '10.03', '0.516616757', '7.290686736', '18.40838235', '1670', '255', '227', '6.32', '660', '0.49980797', '3.97', '14.2', '4.486230874', '4.460650276');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'W14x320', '94.1', '16.81', '1.89', '16.71', '2.093', '12.4147', '14.717', '31.7709', '0.670891602', '3.991877688', '6.568624339', '4140', '582', '493', '6.63', '1640', '0.496219108', '4.17', '137', '4.96175327', '4.947583261');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'W14x136', '40', '14.75', '0.66', '14.74', '1.063', '12.5177', '13.687', '9.735', '0.527275663', '6.933207902', '18.96621212', '1590', '243', '216', '6.31', '568', '0.499454733', '3.77', '13.5', '4.263307204', '4.242153978');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'W14x127', '37.3', '14.62', '0.61', '14.69', '0.998', '12.5242', '13.622', '8.9182', '0.521107702', '7.359719439', '20.53147541', '1480', '226', '202', '6.29', '528', '0.499322067', '3.76', '11.1', '4.240335895', '4.219361314');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'W14x119', '35', '14.5', '0.57', '14.65', '0.938', '12.5302', '13.562', '8.265', '0.519747484', '7.809168443', '21.98280702', '1370', '211', '189', '6.26', '492', '0.499538958', '3.75', '9.2', '4.219666063', '4.201443441');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'W14x111', '32.7', '14.37', '0.54', '14.62', '0.873', '12.5367', '13.497', '7.7598', '0.530414487', '8.373424971', '23.21611111', '1270', '196', '176', '6.23', '455', '0.4996475', '3.73', '7.48', '4.197645986', '4.176889542');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'W14x103', '30.3', '14.25', '0.495', '14.575', '0.813', '12.5427', '13.437', '7.05375', '0.523958783', '8.963714637', '25.33878788', '1170', '181', '164', '6.21', '420', '0.499442734', '3.72', '6.02', '4.176861428', '4.148001282');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'W14x95', '27.9', '14.12', '0.465', '14.545', '0.748', '12.5492', '13.372', '6.5658', '0.536356651', '9.722593583', '26.98752688', '1060', '166', '151', '6.17', '384', '0.499494033', '3.71', '4.74', '4.154185', '4.123446125');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'W14x87', '25.6', '14', '0.42', '14.5', '0.688', '12.5552', '13.312', '5.88', '0.528587009', '10.5377907', '29.89333333', '967', '151', '138', '6.15', '350', '0.49939381', '3.7', '3.68', '4.133678676', '4.108668814');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'W14x84', '24.7', '14.18', '0.451', '12.023', '0.778', '12.5462', '13.402', '6.39518', '0.604917717', '7.726863753', '27.81862528', '928', '145', '131', '6.13', '225', '0.500788531', '3.02', '4.41', '3.422080965', '3.392543463');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'W14x78', '22.9', '14.06', '0.428', '12', '0.718', '12.5522', '13.342', '6.01768', '0.623530826', '8.356545961', '29.32757009', '851', '134', '121', '6.09', '207', '0.499478261', '3', '3.52', '3.403023949', '3.378220227');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'W12x161', '47.4', '13.88', '0.905', '12.515', '1.486', '10.7594', '12.394', '12.5614', '0.523584727', '4.210969044', '11.88883978', '1540', '259', '222', '5.7', '486', '0.499452114', '3.2', '30.6', '3.703383402', '3.68326016');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'W12x133', '39.1', '13.38', '0.755', '12.365', '1.236', '10.7844', '12.144', '10.1019', '0.532758451', '5.002022654', '14.28397351', '1220', '210', '183', '5.59', '390', '0.499292428', '3.16', '17.6', '3.622045443', '3.597266722');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'W12x99', '29.1', '12.75', '0.582', '12.192', '0.921', '10.8159', '11.829', '7.4205', '0.56059738', '6.618892508', '18.58402062', '859', '152', '135', '5.43', '278', '0.500332196', '3.09', '7.45', '3.519111744', '3.489912447');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'W12x92', '27.1', '12.62', '0.545', '12.155', '0.856', '10.8224', '11.764', '6.8779', '0.566880288', '7.099883178', '19.85761468', '789', '140', '125', '5.4', '256', '0.500400163', '3.08', '6.01', '3.497135902', '3.470783197');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'W12x85', '25', '12.5', '0.495', '12.105', '0.796', '10.8284', '11.704', '6.1875', '0.556277671', '7.603643216', '21.87555556', '723', '129', '116', '5.38', '235', '0.500677806', '3.07', '4.8', '3.475993133', '3.443159135');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'W12x36', '10.6', '12.24', '0.305', '6.565', '0.54', '11.106', '11.7', '3.7332', '0.955496319', '6.078703704', '36.41311475', '281', '51.6', '46', '5.15', '25.5', '0.499317198', '1.55', '0.83', '1.812699086', '1.800815033');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'W12x31', '9.13', '12.09', '0.265', '6.525', '0.465', '11.1135', '11.625', '3.20385', '0.970651341', '7.016129032', '41.93773585', '239', '44.1', '39.5', '5.12', '21.6', '0.498378735', '1.54', '0.536', '1.792931003', '1.782829496');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'W12x27', '7.95', '11.96', '0.237', '6.497', '0.4', '11.12', '11.56', '2.83452', '1.014098815', '8.12125', '46.91983122', '204', '38', '34.2', '5.07', '18.3', '0.499535383', '1.52', '0.351', '1.774008962', '1.75863783');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'W12x16.5', '4.87', '12', '0.23', '4', '0.269', '11.4351', '11.731', '2.76', '2.444305762', '7.434944238', '49.71782609', '105', '20.6', '17.6', '4.65', '2.88', '0.498148148', '0.77', '0.112', '0.991607602', '0.979698469');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'W10x89', '26.2', '10.88', '0.615', '10.275', '0.998', '8.7842', '9.882', '6.6912', '0.526823282', '5.147795591', '14.28325203', '542', '114', '99.7', '4.55', '181', '0.498443816', '2.63', '7.74', '3.00965969', '2.99501592');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'W10x72', '21.2', '10.5', '0.51', '10.17', '0.808', '8.8032', '9.692', '5.355', '0.546359415', '6.293316832', '17.26117647', '421', '90.3', '80.1', '4.46', '142', '0.498774945', '2.59', '4.17', '2.947059474', '2.93102565');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'W10x66', '19.4', '10.38', '0.457', '10.117', '0.748', '8.8092', '9.632', '4.74366', '0.531984921', '6.762700535', '19.2761488', '382', '82.8', '73.7', '4.44', '129', '0.500363811', '2.58', '3.27', '2.925273289', '2.903383139');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'W10x29', '8.54', '10.22', '0.289', '5.799', '0.5', '9.17', '9.72', '2.95358', '0.913995516', '5.799', '31.73010381', '158', '34.7', '30.8', '4.3', '16.3', '0.498494625', '1.38', '0.579', '1.610815259', '1.603749665');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'W10x25', '7.36', '10.08', '0.252', '5.762', '0.43', '9.177', '9.65', '2.54016', '0.933382304', '6.7', '36.41666667', '133', '29.6', '26.5', '4.26', '13.7', '0.500364402', '1.37', '0.373', '1.591717245', '1.579377714');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'W10x21', '6.2', '9.9', '0.24', '5.75', '0.34', '9.186', '9.56', '2.376', '1.127693095', '8.455882353', '38.275', '107', '24.1', '21.5', '4.15', '10.8', '0.498743731', '1.32', '0.21', '1.559260265', '1.549553574');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'W10x11.5', '3.39', '9.87', '0.18', '3.95', '0.204', '9.4416', '9.666', '1.7766', '2.109069248', '9.681372549', '52.45333333', '52', '12.2', '10.5', '3.92', '2.1', '0.498908512', '0.787', '0.049', '0.997101144', '0.983158176');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'W8x20', '5.89', '8.14', '0.248', '5.268', '0.378', '7.3462', '7.762', '2.01872', '0.914906815', '6.968253968', '29.62177419', '69.4', '19.1', '17', '3.43', '9.22', '0.499478653', '1.25', '0.245', '1.460762182', '1.450817619');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'W8x17', '5.01', '8', '0.245', '5.25', '0.308', '7.3532', '7.692', '1.96', '1.114121212', '8.522727273', '30.01306122', '56.6', '15.9', '14.1', '3.36', '7.44', '0.499199849', '1.22', '0.147', '1.429087134', '1.424562643');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'W6x15.5', '4.56', '6', '0.235', '5.995', '0.269', '5.4351', '5.731', '1.41', '0.792015961', '11.14312268', '23.12808511', '30.1', '11.1', '10', '2.57', '9.67', '0.499473121', '1.46', '0.111', '1.674162429', '1.664613619');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1970', '1980', 'ASD7', 'W5x18.5', '5.43', '5.12', '0.265', '5.025', '0.42', '4.238', '4.7', '1.3568', '0.532134565', '5.982142857', '15.99245283', '25.4', '11.3', '9.94', '2.16', '8.89', '0.499544845', '1.28', '0.295', '1.462216871', '1.449744999');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '24 I 120', '35.13', '24', '0.798', '8.048', '1.102', '21.6858', '22.898', '19.152', '1.951231405', '3.65154265', '27.17518797', '3010.8', '297.855571', '250.9', '9.26', '84.9', '0.563840881', '1.56', '10.87230333', '2.092791532', '1.96828187');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '24 I 105.9', '30.98', '24', '0.625', '7.875', '1.102', '21.6858', '22.898', '15', '1.561792412', '3.573049002', '34.69728', '2811.5', '272.943571', '234.3', '9.53', '78.9', '0.568427437', '1.6', '8.799697363', '2.095573004', '1.963523643');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '24 I 100', '29.25', '24', '0.747', '7.247', '0.871', '22.1709', '23.129', '17.928', '2.623780552', '4.160160735', '29.67991968', '2371.8', '238.5128335', '197.6', '9.05', '48.4', '0.570776825', '1.29', '6.285051533', '1.79990276', '1.683033037');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '24 I 90', '26.3', '24', '0.624', '7.124', '0.871', '22.1709', '23.129', '14.976', '2.229594308', '4.089552239', '35.53028846', '2230.1', '220.8008335', '185.8', '9.21', '45.5', '0.576762804', '1.32', '4.940927009', '1.808727672', '1.682853358');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '24 I 79.9', '23.33', '24', '0.5', '7', '0.871', '22.1709', '23.129', '12', '1.818181073', '4.01836969', '44.3418', '2087.2', '202.9448335', '173.9', '9.46', '42.9', '0.580328283', '1.36', '4.011039451', '1.820512442', '1.689049142');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '20 I 95', '27.74', '20', '0.8', '7.2', '0.916', '18.0764', '19.084', '16', '2.192673459', '3.930131004', '22.5955', '1599.7', '191.8780416', '160', '7.59', '50.5', '0.564183446', '1.35', '6.789833421', '1.846475862', '1.735423219');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '20 I 85', '24.8', '20', '0.653', '7.053', '0.916', '18.0764', '19.084', '13.06', '1.82707244', '3.84989083', '27.6820827', '1501.7', '177.1780416', '150.2', '7.78', '47', '0.569820437', '1.38', '5.300104428', '1.847201556', '1.727959936');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '20 I 75', '21.9', '20', '0.641', '6.391', '0.789', '18.3431', '19.211', '12.82', '2.331765876', '4.050063371', '28.61638066', '1263.5', '151.2555043', '126.3', '7.6', '30.1', '0.570211162', '1.17', '3.71000405', '1.617557443', '1.513009172');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '20 I 65.4', '19.08', '20', '0.5', '6.25', '0.789', '18.3431', '19.211', '10', '1.859883397', '3.960709759', '36.6862', '1169.5', '137.1555043', '116.9', '7.83', '27.9', '0.575349322', '1.21', '2.814121121', '1.625484847', '1.514100958');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '18 I 70', '20.46', '18', '0.711', '6.251', '0.691', '16.5489', '17.309', '12.798', '2.724025609', '4.523154848', '23.27552743', '917.5', '123.8522753', '101.9', '6.7', '24.5', '0.574088984', '1.09', '3.36594461', '1.546963327', '1.442503718');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '18 I 54.7', '15.94', '18', '0.46', '6', '0.691', '16.5489', '17.309', '8.28', '1.836105644', '4.341534009', '35.97586957', '795.5', '103.5212753', '88.4', '7.07', '21.2', '0.586698113', '1.15', '1.858934033', '1.561354546', '1.440664282');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '15 I 50', '14.59', '15', '0.55', '5.64', '0.622', '13.6938', '14.378', '8.25', '2.146926524', '4.533762058', '24.89781818', '481.1', '76.45796044', '64.2', '5.74', '16', '0.581201154', '1.05', '1.667698182', '1.444928526', '1.338525715');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '15 I 42.9', '12.49', '15', '0.41', '5.5', '0.622', '13.6938', '14.378', '6.15', '1.64117451', '4.421221865', '33.3995122', '441.1', '68.58296044', '58.9', '5.95', '14.6', '0.590669235', '1.08', '1.198379201', '1.451580102', '1.334913184');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '12 I 50', '14.57', '12', '0.687', '5.477', '0.659', '10.6161', '11.341', '8.244', '2.020661572', '4.155538695', '15.45283843', '301.6', '60.53111401', '50.3', '4.55', '16', '0.563913392', '1.05', '2.199499576', '1.429109038', '1.343032976');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '12 I 40.8', '11.84', '12', '0.46', '5.25', '0.659', '10.6161', '11.341', '5.52', '1.411491004', '3.983308042', '23.07847826', '268.9', '52.35911401', '44.8', '4.77', '13.8', '0.575841542', '1.08', '1.348250177', '1.419500209', '1.321634033');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '12 I 35', '10.2', '12', '0.428', '5.078', '0.544', '10.8576', '11.456', '5.136', '1.682232468', '4.667279412', '25.3682243', '227', '44.3870976', '37.8', '4.72', '10', '0.59360253', '0.99', '0.830178994', '1.340913007', '1.230993061');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1963', '1970', 'ASD6', '12 I 31.8', '9.26', '12', '0.35', '5', '0.544', '10.8576', '11.456', '4.2', '1.397117647', '4.595588235', '31.02171429', '215.8', '41.5790976', '36', '4.83', '9.5', '0.596491228', '1.01', '0.69258128', '1.343418127', '1.229453356');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '10 I 35', '10.22', '10', '0.594', '4.944', '0.491', '8.9689', '9.509', '5.94', '2.194652038', '5.034623218', '15.09915825', '145.8', '35.15979765', '29.2', '3.78', '8.5', '0.581723631', '0.91', '1.020161321', '1.271294745', '1.176441843');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '10 I 25.4', '7.38', '10', '0.31', '4.66', '0.491', '8.9689', '9.509', '3.1', '1.215160005', '4.745417515', '28.93193548', '122.1', '28.05979765', '24.4', '4.07', '6.9', '0.600079659', '0.97', '0.457290275', '1.269857367', '1.159530183');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '8 I 23', '6.71', '8', '0.441', '4.171', '0.425', '7.1075', '7.575', '3.528', '1.768179446', '4.907058824', '16.11678005', '64.2', '19.06426875', '16', '3.09', '4.4', '0.58408436', '0.81', '0.41786887', '1.102589416', '1.020569694');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '8 I 18.4', '5.34', '8', '0.27', '4', '0.425', '7.1075', '7.575', '2.16', '1.128838235', '4.705882353', '26.32407407', '56.9', '16.32826875', '14.2', '3.26', '3.8', '0.596491228', '0.84', '0.251619483', '1.099112078', '1.006755352');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '7 I 20', '5.83', '7', '0.45', '3.86', '0.392', '6.1768', '6.608', '3.15', '1.836972613', '4.923469388', '13.72622222', '41.9', '14.34554576', '12', '2.68', '3.1', '0.606045235', '0.74', '0.343819048', '1.018673841', '0.923868678');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '7 I 15.3', '4.43', '7', '0.25', '3.66', '0.392', '6.1768', '6.608', '1.75', '1.076307572', '4.668367347', '24.7072', '36.2', '11.89554576', '10.4', '2.86', '2.7', '0.593177013', '0.78', '0.179351543', '1.0110837', '0.926158318');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '6 I 17.25', '5.02', '6', '0.465', '3.565', '0.359', '5.2461', '5.641', '2.79', '1.906055468', '4.965181058', '11.28193548', '26', '10.4628689', '8.7', '2.28', '2.3', '0.589337354', '0.68', '0.286989846', '0.94005479', '0.863509945');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '6 I 12.5', '3.61', '6', '0.23', '3.33', '0.359', '5.2461', '5.641', '1.38', '1.009312655', '4.637883008', '22.80913043', '21.8', '8.3478689', '7.3', '2.46', '1.8', '0.613724411', '0.72', '0.124137611', '0.92630795', '0.833945894');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '5 I 14.75', '4.29', '5', '0.494', '3.284', '0.326', '4.3154', '4.674', '2.47', '1.991256735', '5.036809816', '8.73562753', '15', '7.33868996', '6', '1.87', '1.7', '0.565974518', '0.63', '0.250574208', '0.865677073', '0.813725998');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '5 I 10', '2.87', '5', '0.21', '3', '0.326', '4.3154', '4.674', '1.05', '0.926619632', '4.601226994', '20.54952381', '12.1', '5.56368996', '4.8', '2.05', '1.2', '0.61125', '0.65', '0.082714228', '0.842006725', '0.764362479');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '4 I 9.5', '2.76', '4', '0.326', '2.796', '0.293', '3.3847', '3.707', '1.304', '1.346892684', '4.771331058', '10.38251534', '6.7', '3.98679297', '3.3', '1.56', '0.91', '0.586484425', '0.58', '0.086313724', '0.769508577', '0.714924238');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '4 I 7.7', '2.21', '4', '0.19', '2.66', '0.293', '3.3847', '3.707', '0.76', '0.825134081', '4.539249147', '17.81421053', '6', '3.44279297', '3', '1.64', '0.77', '0.596816139', '0.59', '0.052411538', '0.755510916', '0.68973304');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '3 I 7.5', '2.17', '3', '0.349', '2.509', '0.26', '2.454', '2.74', '1.047', '1.312882853', '4.825', '7.031518625', '2.9', '2.324034', '1.9', '1.15', '0.59', '0.580018805', '0.52', '0.06453919', '0.699005614', '0.652243093');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '3 I 5.7', '1.64', '3', '0.17', '2.33', '0.26', '2.454', '2.74', '0.51', '0.688643117', '4.480769231', '14.43529412', '2.5', '1.921284', '1.7', '1.23', '0.46', '0.595802105', '0.53', '0.0313628', '0.673482867', '0.608856208');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1963', '1970', 'ASD6', '16B 31', '9.12', '15.84', '0.275', '5.525', '0.442', '14.9118', '15.398', '4.356', '1.679222375', '6.25', '54.22472727', '372.5', '52.980819', '47', '6.39', '11.57', '0.536913732', '1.13', '0.421738458', '1.439712058', '1.376686046');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1963', '1970', 'ASD6', '16B 26', '7.65', '15.65', '0.25', '5.5', '0.345', '14.9255', '15.305', '3.9125', '1.966469038', '7.971014493', '59.702', '298.1', '43.0288375', '38.1', '6.24', '8.71', '0.549171211', '1.07', '0.228483292', '1.401833645', '1.322660119');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1963', '1970', 'ASD6', '14B 26', '7.65', '13.89', '0.255', '5.025', '0.418', '13.0122', '13.472', '3.54195', '1.579714347', '6.01076555', '51.02823529', '242.6', '39.1607033', '34.9', '5.63', '8.26', '0.535085505', '1.04', '0.316817107', '1.319737794', '1.262636528');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1963', '1970', 'ASD6', '14B 22', '6.47', '13.72', '0.23', '5', '0.335', '13.0165', '13.385', '3.1556', '1.787340299', '7.462686567', '56.59347826', '197.4', '32.21226875', '28.8', '5.52', '6.4', '0.545247396', '0.99', '0.178244367', '1.290778629', '1.219517209');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '14B 17.2', '5.05', '14', '0.21', '4', '0.272', '13.4288', '13.728', '2.94', '2.591955882', '7.352941176', '63.94666667', '147.3', '24.44192064', '21', '5.4', '2.65', '0.547421384', '0.72', '0.095201733', '0.98084914', '0.930683313');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1963', '1970', 'ASD6', '12B 22', '6.47', '12.31', '0.26', '4.03', '0.424', '11.4196', '11.886', '3.2006', '1.737614121', '4.752358491', '43.92153846', '155.7', '28.84937978', '25.3', '4.91', '4.55', '0.508262832', '0.84', '0.271943268', '1.051676914', '1.03382803');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1963', '1970', 'ASD6', '12B 19', '5.62', '12.16', '0.24', '4.01', '0.349', '11.4271', '11.811', '2.9184', '1.959645299', '5.744985673', '47.61291667', '130.1', '24.41202303', '21.4', '4.81', '3.67', '0.510988627', '0.81', '0.166456417', '1.027902795', '1.006362586');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1963', '1970', 'ASD6', '12B 16.5', '4.86', '12', '0.23', '4', '0.269', '11.4351', '11.731', '2.76', '2.444305762', '7.434944238', '49.71782609', '105.3', '20.17675903', '17.5', '4.65', '2.79', '0.514217443', '0.76', '0.098393009', '0.991607602', '0.967020313');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1963', '1970', 'ASD6', '12B 14', '4.14', '11.91', '0.2', '3.97', '0.224', '11.4396', '11.686', '2.382', '2.572777978', '8.861607143', '57.198', '88.2', '16.96099828', '14.8', '4.61', '2.25', '0.519105672', '0.74', '0.060312342', '0.974033745', '0.942493458');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1963', '1970', 'ASD6', '10M 29.1', '8.55', '9.88', '0.425', '5.935', '0.389', '9.0631', '9.491', '4.199', '1.668381546', '7.628534704', '21.32494118', '131.5', '30.71444449', '26.6', '3.92', '11.2', '0.605079588', '1.14', '0.465811615', '1.561279772', '1.413543513');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1963', '1970', 'ASD6', '10M 22.9', '6.73', '9.88', '0.24', '5.75', '0.389', '9.0631', '9.491', '2.3712', '0.97245736', '7.390745501', '37.76291667', '116.6', '26.19977849', '23.6', '4.16', '9.9', '0.622496186', '1.22', '0.267586847', '1.58076838', '1.410920633');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '10M 21', '6.1', '9.9', '0.24', '5.75', '0.338', '9.1902', '9.562', '2.376', '1.134884487', '8.50591716', '38.2925', '104.4', '23.68867756', '21.1', '4.14', '9.2', '0.58203776', '1.22', '0.190526335', '1.558305153', '1.44381669');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1963', '1970', 'ASD6', '10B 19', '5.61', '10.25', '0.25', '4.02', '0.394', '9.4226', '9.856', '2.5625', '1.487265449', '5.101522843', '37.6904', '96.2', '21.20631153', '18.8', '4.14', '4.19', '0.509071884', '0.86', '0.213198047', '1.068570448', '1.048005197');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1963', '1970', 'ASD6', '10B 17', '4.98', '10.12', '0.24', '4.01', '0.329', '9.4291', '9.791', '2.4288', '1.715304444', '6.094224924', '39.28791667', '81.8', '18.28893503', '16.2', '4.05', '3.45', '0.512423071', '0.83', '0.138801742', '1.046311678', '1.021058365');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1963', '1970', 'ASD6', '10B 15', '4.4', '10', '0.23', '4', '0.269', '9.4351', '9.731', '2.3', '2.016796468', '7.434944238', '41.02217391', '68.8', '15.61849903', '13.8', '3.95', '2.79', '0.514217443', '0.8', '0.090281675', '1.020381251', '0.991805008');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1963', '1970', 'ASD6', '10B 11.5', '3.39', '9.87', '0.18', '3.95', '0.204', '9.4416', '9.666', '1.7766', '2.109069248', '9.681372549', '52.45333333', '51.9', '11.81768778', '10.5', '3.92', '2.01', '0.521247699', '0.77', '0.040750243', '0.997101144', '0.961859806');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '8M 28', '8.23', '8', '0.39', '6.65', '0.398', '7.1642', '7.602', '3.12', '1.055668568', '8.354271357', '18.36974359', '90.1', '25.18023096', '22.5', '3.31', '17.73', '0.55012075', '1.47', '0.42194327', '1.831402399', '1.730661145');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '8M 24', '7.06', '8', '0.24', '6.5', '0.398', '7.1642', '7.602', '1.92', '0.664633939', '8.165829146', '29.85083333', '83.8', '22.78023096', '21', '3.45', '16.52', '0.55135568', '1.53', '0.306390131', '1.836653801', '1.729196345');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1963', '1970', 'ASD6', '8M 22.5', '6.61', '8', '0.375', '5.395', '0.352', '7.2608', '7.648', '3', '1.433777066', '7.663352273', '19.36213333', '68.3', '19.51432192', '17.1', '3.23', '7.5', '0.614150064', '1.08', '0.285115768', '1.444827493', '1.295064856');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '8M 20', '5.88', '8', '0.35', '5.36', '0.305', '7.3595', '7.695', '2.8', '1.575620871', '8.786885246', '21.02714286', '60.7', '17.35834475', '15.2', '3.22', '6.6', '0.593019572', '1.06', '0.207000263', '1.416668776', '1.292526595');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1963', '1970', 'ASD6', '8M 18.5', '5.44', '8', '0.23', '5.25', '0.352', '7.2608', '7.648', '1.84', '0.903670996', '7.457386364', '31.56869565', '62.1', '17.19432192', '15.5', '3.38', '6.9', '0.615163043', '1.13', '0.182239872', '1.454450057', '1.304720956');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '8M 17', '5', '8', '0.24', '5.25', '0.305', '7.3595', '7.695', '1.92', '1.103063232', '8.606557377', '30.66458333', '56', '15.59834475', '14', '3.35', '6.16', '0.597056996', '1.11', '0.133357308', '1.429742334', '1.301114907');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1963', '1970', 'ASD6', '8B 15', '4.43', '8.12', '0.245', '4.015', '0.314', '7.4606', '7.806', '1.9894', '1.44985524', '6.393312102', '30.45142857', '48', '13.27906868', '11.8', '3.29', '3.3', '0.513205274', '0.86', '0.119593405', '1.069913427', '1.044756885');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1963', '1970', 'ASD6', '8B 13', '3.83', '8', '0.23', '4', '0.254', '7.4666', '7.746', '1.84', '1.690273622', '7.874015748', '32.46347826', '39.5', '11.09741468', '9.88', '3.21', '2.62', '0.517048346', '0.83', '0.074083892', '1.044691199', '1.013435053');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1963', '1970', 'ASD6', '8B 10', '2.95', '7.9', '0.17', '3.94', '0.204', '7.4716', '7.696', '1.343', '1.580287648', '9.656862745', '43.95058824', '30.8', '8.57126468', '7.79', '3.23', '1.99', '0.522497853', '0.82', '0.034568916', '1.031422376', '0.991460328');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1963', '1970', 'ASD6', '6B 16', '4.72', '6.25', '0.26', '4.03', '0.404', '5.4016', '5.846', '1.625', '0.862599808', '4.987623762', '20.77538462', '31.7', '11.44298818', '10.1', '2.59', '4.32', '0.510072031', '0.96', '0.209039687', '1.135234215', '1.118138481');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1963', '1970', 'ASD6', '6B 12', '3.53', '6', '0.23', '4', '0.279', '5.4141', '5.721', '1.38', '1.11580914', '7.168458781', '23.53956522', '21.7', '8.08751943', '7.24', '2.48', '2.89', '0.514878893', '0.9', '0.079984642', '1.09485637', '1.068564186');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1963', '1970', 'ASD6', '6B 8.5', '2.5', '5.83', '0.17', '3.94', '0.194', '5.4226', '5.636', '0.9911', '1.206031189', '10.15463918', '31.89764706', '14.8', '5.56658593', '5.07', '2.43', '1.89', '0.523175436', '0.87', '0.028090484', '1.062181912', '1.024937579');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1963', '1970', 'ASD6', '12JRC 10.6', '3.12', '12', '0.19', '1.5', '0.309', '11.3511', '11.691', '2.28', '4.653093851', '2.427184466', '59.74263158', '55.8', '11.57239989', '9.3', '4.23', '0.39', '0.222836538', '0.35', '0.055526675', '0.333431965', '0.495109958');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1963', '1970', 'ASD6', '10JRC 8.4', '2.47', '10', '0.17', '1.5', '0.28', '9.412', '9.72', '1.7', '3.809619048', '2.678571429', '55.36470588', '32.3', '7.869728', '6.5', '3.61', '0.33', '0.238636364', '0.37', '0.037411573', '0.347729488', '0.496727754');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1963', '1970', 'ASD6', '12JRC 6.5', '1.91', '10', '0.15', '1.125', '0.201', '9.5779', '9.799', '1.5', '6.353499171', '2.798507463', '63.85266667', '22.1', '5.670359025', '4.4', '3.47', '0.12', '0.198742676', '0.25', '0.016888201', '0.231309072', '0.365544426');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '8M 34.3', '10.09', '8', '0.375', '8', '0.459', '7.0361', '7.541', '3', '0.718555964', '8.71459695', '18.76293333', '115.5', '32.39255738', '28.9', '3.4', '35.1', '0.557948718', '1.87', '0.640235369', '2.26357205', '2.139952381');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1963', '1970', 'ASD6', '9M 32.6', '9.59', '8', '0.313', '7.938', '0.459', '7.0361', '7.541', '2.504', '0.604439114', '8.647058824', '22.47955272', '112.8', '31.40055738', '28.2', '3.45', '34.2', '0.559420809', '1.9', '0.584138232', '2.263060239', '2.138395203');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1963', '1970', 'ASD6', '6LWF 25', '7.37', '6.37', '0.32', '6.08', '0.456', '5.4124', '5.914', '2.0384', '0.624699908', '6.666666667', '16.91375', '53.5', '18.77962784', '16.8', '2.69', '17.1', '0.499457138', '1.52', '0.443948182', '1.746974054', '1.734878547');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '6M 25', '7.35', '6', '0.313', '5.938', '0.481', '4.9899', '5.519', '1.878', '0.546828209', '6.172557173', '15.94217252', '47', '17.74934438', '15.7', '2.53', '14.9', '0.563246033', '1.43', '0.492034375', '1.724215602', '1.618298037');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1963', '1970', 'ASD6', '6M 22.5', '6.62', '6', '0.375', '6.063', '0.38', '5.202', '5.62', '2.25', '0.846701737', '7.977631579', '13.872', '41', '15.5222928', '13.7', '2.49', '12.2', '0.578502479', '1.36', '0.313901999', '1.70812578', '1.581877292');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1963', '1970', 'ASD6', '6LWF 20', '5.9', '6.2', '0.258', '6.018', '0.367', '5.4293', '5.833', '1.5996', '0.634227834', '8.198910082', '21.04379845', '41.7', '14.80987536', '13.4', '2.66', '13.3', '0.501175379', '1.5', '0.229606761', '1.71428787', '1.701392099');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '6M 20', '5.88', '6', '0.25', '5.938', '0.38', '5.202', '5.62', '1.5', '0.576350357', '7.813157895', '20.808', '38.8', '14.3972928', '12.9', '2.57', '11.4', '0.581591538', '1.39', '0.244511624', '1.702484135', '1.575834958');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1963', '1970', 'ASD6', '6LWF 15.5', '4.62', '6', '0.24', '6', '0.269', '5.4351', '5.731', '1.44', '0.808193309', '11.15241636', '22.64625', '30.3', '11.03984064', '10.1', '2.56', '9.69', '0.499690402', '1.45', '0.103029332', '1.673745669', '1.658064451');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '5M 18.9', '5.56', '5', '0.313', '5', '0.417', '4.1243', '4.583', '1.565', '0.61913952', '5.995203837', '13.17667732', '23.8', '10.91362726', '9.5', '2.08', '7.85', '0.553343949', '1.2', '0.284288197', '1.448309717', '1.376046014');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1963', '1970', 'ASD6', '5LWF 18.5', '5.45', '5.12', '0.265', '5.025', '0.42', '4.238', '4.7', '1.3568', '0.532134565', '5.982142857', '15.99245283', '25.4', '11.132944', '9.94', '2.16', '8.89', '0.499544845', '1.28', '0.274744532', '1.462216871', '1.449744999');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1963', '1970', 'ASD6', '5LWF 16', '4.7', '5', '0.24', '5', '0.36', '4.244', '4.64', '1.2', '0.565866667', '6.944444444', '17.68333333', '21.3', '9.451104', '8.53', '2.13', '7.51', '0.499334221', '1.26', '0.17524224', '1.442496516', '1.429188277');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1963', '1970', 'ASD6', '4LWF 13', '3.82', '4.16', '0.28', '4.06', '0.345', '3.4355', '3.815', '1.1648', '0.686756622', '5.884057971', '12.26964286', '11.3', '6.1865335', '5.45', '1.72', '3.76', '0.511714949', '0.99', '0.136536692', '1.170739984', '1.147170432');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1963', '1970', 'ASD6', '4M 13', '3.82', '4', '0.25', '3.937', '0.372', '3.2188', '3.628', '1', '0.549446798', '5.291666667', '12.8752', '10.4', '5.976034192', '5.2', '1.65', '3.39', '0.55803089', '0.94', '0.15207315', '1.152542934', '1.087468832');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '12JR 11.8', '3.45', '12', '0.175', '3.063', '0.225', '11.5275', '11.775', '2.1', '2.927141147', '6.806666667', '65.87142857', '72.2', '13.951395', '12', '4.57', '0.98', '0.549814497', '0.53', '0.04389325', '0.736831271', '0.693406446');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '10JR 9', '2.64', '10', '0.155', '2.688', '0.206', '9.5674', '9.794', '1.55', '2.678114526', '6.524271845', '61.72516129', '39', '8.985489612', '7.8', '3.85', '0.61', '0.546567662', '0.48', '0.027566839', '0.656611363', '0.618846114');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '8JR 6.5', '1.92', '8', '0.135', '2.281', '0.189', '7.6031', '7.811', '1.08', '2.380879314', '6.034391534', '56.31925926', '18.7', '5.328094734', '4.7', '3.12', '0.34', '0.549765518', '0.42', '0.016517422', '0.56809597', '0.531531308');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '7JR 5.5', '1.61', '7', '0.126', '2.078', '0.18', '6.622', '6.82', '0.882', '2.230702599', '5.772222222', '52.55555556', '12.1', '3.9397752', '3.5', '2.74', '0.25', '0.538378713', '0.39', '0.012506763', '0.522953292', '0.493529562');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '6JR 4.4', '1.3', '6', '0.114', '1.844', '0.171', '5.6409', '5.829', '0.684', '2.039370933', '5.391812865', '49.48157895', '7.3', '2.75039307', '2.4', '2.37', '0.17', '0.525591936', '0.36', '0.008941118', '0.470370103', '0.454360815');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '36WF 300', '88.17', '36.72', '0.945', '16.655', '1.68', '33.192', '35.04', '34.7004', '1.12101471', '4.956845238', '35.12380952', '20290.2', '1243.353384', '1105.1', '15.17', '1225.2', '0.527904007', '3.73', '62.03218455', '4.55477898', '4.407270997');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '36WF 280', '82.32', '36.5', '0.885', '16.595', '1.57', '33.203', '34.93', '32.3025', '1.127830115', '5.285031847', '37.51751412', '18819.3', '1156.298284', '1031.2', '15.12', '1127.5', '0.530314652', '3.7', '50.52179009', '4.527618423', '4.36989617');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '36WF 260', '76.56', '36.24', '0.845', '16.555', '1.44', '33.216', '34.8', '30.6228', '1.177368368', '5.748263889', '39.30887574', '17233.8', '1064.702088', '951.1', '15', '1020.6', '0.533473975', '3.65', '39.66457459', '4.491881561', '4.321050235');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '36WF 245', '72.03', '36.06', '0.802', '16.512', '1.35', '33.225', '34.71', '28.92012', '1.195379791', '6.115555556', '41.4276808', '16092.2', '996.8619168', '892.5', '14.95', '944.7', '0.536114615', '3.62', '32.82005564', '4.467713867', '4.286029484');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '36WF 230', '67.73', '35.88', '0.765', '16.475', '1.26', '33.234', '34.62', '27.4482', '1.224751788', '6.537698413', '43.44313725', '14988.4', '931.499406', '835.5', '14.88', '870.9', '0.539134692', '3.59', '26.94918843', '4.441907113', '4.247754925');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '36WF 194', '57.11', '36.48', '0.77', '12.117', '1.26', '33.834', '35.22', '28.0896', '1.706390471', '4.808333333', '43.94025974', '12103.4', '759.7252404', '663.6', '14.56', '355.4', '0.52560223', '2.49', '21.32699089', '3.168321461', '3.071038076');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '36WF 182', '53.54', '36.32', '0.725', '12.072', '1.18', '33.842', '35.14', '26.332', '1.722395149', '5.115254237', '46.67862069', '11281.5', '709.6001844', '621.2', '14.52', '327.7', '0.527912567', '2.47', '17.53692591', '3.148479487', '3.044446719');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '36WF 170', '49.98', '36.16', '0.68', '12.027', '1.1', '33.85', '35.06', '24.5888', '1.739873164', '5.466818182', '49.77941176', '10470', '659.891154', '579.1', '14.47', '300.6', '0.530511003', '2.45', '14.23132824', '3.12838593', '3.016537049');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '36WF 160', '47.09', '36', '0.653', '12', '1.02', '33.858', '34.98', '23.508', '1.806313235', '5.882352941', '51.84992343', '9738.8', '616.4284212', '541', '14.38', '275.4', '0.533333333', '2.42', '11.64166227', '3.103699257', '2.983858609');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '36WF 150', '44.16', '35.84', '0.625', '11.972', '0.94', '33.866', '34.9', '22.4', '1.880829204', '6.368085106', '54.1856', '9012.1', '572.953682', '502.9', '14.29', '250.4', '0.536799877', '2.38', '9.39283964', '3.077397945', '2.947637412');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '14BP 117', '34.44', '14.23', '0.805', '14.885', '0.805', '12.5395', '13.425', '11.45515', '0.84242526', '9.245341615', '15.57701863', '1228.5', '192.9160161', '172.6', '5.97', '443.1', '0.499297511', '3.59', '7.371057566', '4.175530491', '4.151190164');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '14BP 102', '30.01', '14.03', '0.704', '14.784', '0.704', '12.5516', '13.326', '9.87712', '0.848998918', '10.5', '17.82897727', '1055.1', '166.7355747', '150.4', '5.93', '379.6', '0.499391414', '3.56', '4.906889161', '4.127635494', '4.100851948');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '14BP 89', '26.19', '13.86', '0.616', '14.696', '0.616', '12.5664', '13.244', '8.53776', '0.85508982', '11.92857143', '20.4', '909.1', '144.4522587', '131.2', '5.89', '326.2', '0.499474061', '3.53', '3.273986843', '4.085707528', '4.057603898');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '14BP 73', '21.46', '13.64', '0.506', '14.586', '0.506', '12.5774', '13.134', '6.90184', '0.862292609', '14.41304348', '24.85652174', '733.1', '117.1081947', '107.5', '5.85', '261.9', '0.499622974', '3.49', '1.805122076', '4.033395728', '3.99988058');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '12BP 74', '21.76', '12.12', '0.607', '12.217', '0.607', '10.8453', '11.513', '7.35684', '0.887722027', '10.06342669', '17.86705107', '566.5', '103.4264447', '93.5', '5.1', '184.7', '0.499383595', '2.91', '2.634579837', '3.402076078', '3.372150094');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '12BP 53', '15.58', '11.78', '0.436', '12.046', '0.436', '10.8644', '11.344', '5.13608', '0.901909348', '13.81422018', '24.91834862', '394.8', '72.54862984', '67', '5.03', '127.3', '0.498890709', '2.86', '0.966954987', '3.321958334', '3.28280368');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '10BP 57', '16.76', '10.01', '0.564', '10.224', '0.564', '8.8256', '9.446', '5.64564', '0.863223787', '9.063829787', '15.64822695', '294.7', '65.59228914', '58.9', '4.19', '100.6', '0.499300958', '2.45', '1.753994068', '2.863733715', '2.840209108');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '10BP 42', '12.35', '9.72', '0.418', '10.078', '0.418', '8.8422', '9.302', '4.06296', '0.877376464', '12.05502392', '21.15358852', '210.8', '47.43335256', '43.4', '4.13', '71.4', '0.499367054', '2.4', '0.706975238', '2.794991369', '2.766160726');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1963', '1970', 'ASD6', '8BP 36', '10.6', '8.03', '0.446', '8.158', '0.446', '7.0934', '7.584', '3.58138', '0.869502329', '9.14573991', '15.9044843', '119.8', '33.27518272', '29.9', '3.36', '40.4', '0.499486035', '1.95', '0.693585878', '2.282880572', '2.263545625');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1963', '1970', 'ASD6', '36WF 135', '39.7', '35.55', '0.598', '11.945', '0.794', '33.8826', '34.756', '21.2589', '2.136344349', '7.522040302', '56.65986622', '7796.1', '502.0732814', '438.6', '14.01', '207.1', '0.544524744', '2.28', '6.407068157', '3.014460221', '2.864544889');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '33WF 240', '70.52', '33.5', '0.83', '15.865', '1.4', '30.56', '32.1', '27.805', '1.141992706', '5.666071429', '36.81927711', '13585.1', '908.539775', '811.1', '13.88', '874.3', '0.532851927', '3.52', '34.8736603', '4.320773215', '4.159398749');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '33WF 220', '64.73', '33.25', '0.775', '15.81', '1.275', '30.5725', '31.975', '25.76875', '1.175413303', '6.2', '39.4483871', '12312.1', '827.1514938', '740.6', '13.79', '782.4', '0.536655651', '3.48', '26.60941833', '4.286054091', '4.10972579');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '33WF 200', '58.79', '33', '0.715', '15.75', '1.15', '30.585', '31.85', '23.595', '1.207358178', '6.847826087', '42.77622378', '11048.2', '745.3532125', '669.6', '13.71', '691.7', '0.541303073', '3.43', '19.70973562', '4.250407081', '4.055934061');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '33WF 152', '44.71', '33.5', '0.635', '11.565', '1.055', '31.2845', '32.445', '21.2725', '1.628189114', '5.481042654', '49.26692913', '8147.6', '552.2853493', '486.4', '13.5', '256.1', '0.531004922', '2.39', '11.73251527', '3.031443066', '2.922583294');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '33WF 141', '41.51', '33.31', '0.605', '11.535', '0.96', '31.294', '32.35', '20.15255', '1.70973035', '6.0078125', '51.72561983', '7442.2', '507.2624401', '446.8', '13.39', '229.7', '0.534541944', '2.35', '9.120673998', '3.002257615', '2.883673325');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '33WF 130', '38.26', '33.1', '0.58', '11.51', '0.855', '31.3045', '32.245', '19.198', '1.844987069', '6.730994152', '53.97327586', '6699', '460.1978118', '404.8', '13.23', '201.4', '0.539450219', '2.29', '6.837557611', '2.964167028', '2.832211449');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '30WF 210', '61.78', '30.38', '0.775', '15.105', '1.315', '27.6185', '29.065', '23.5445', '1.077594355', '5.743346008', '35.63677419', '9872.4', '726.5198843', '649.9', '12.64', '707.9', '0.533500442', '3.38', '27.20421438', '4.135275816', '3.978623592');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '30WF 190', '55.9', '30.12', '0.71', '15.04', '1.185', '27.6315', '28.935', '21.3852', '1.100770098', '6.345991561', '38.91760563', '8825.9', '652.3772378', '586.1', '12.57', '624.6', '0.537871624', '3.34', '19.99511651', '4.099972042', '3.926556715');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '30WF 172', '50.65', '29.88', '0.655', '14.985', '1.065', '27.6435', '28.815', '19.5714', '1.134561322', '7.035211268', '42.20381679', '7891.5', '585.9570398', '528.2', '12.48', '550.1', '0.542871395', '3.3', '14.66677197', '4.065438604', '3.873610401');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '30WF 132', '38.83', '30.3', '0.615', '10.551', '1', '28.2', '29.3', '18.6345', '1.643730452', '5.2755', '45.85365854', '5753.1', '432.2811375', '379.7', '12.17', '185', '0.529087979', '2.18', '9.228272338', '2.766185879', '2.671679622');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '30WF 124', '36.45', '30.16', '0.585', '10.521', '0.93', '28.207', '29.23', '17.6436', '1.686447382', '5.656451613', '48.21709402', '5347.1', '403.1319744', '354.6', '12.11', '169.7', '0.531852153', '2.16', '7.530328661', '2.746514734', '2.644666813');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '30WF 116', '34.13', '30', '0.564', '10.5', '0.85', '28.215', '29.15', '16.92', '1.782998319', '6.176470588', '50.02659574', '4919.1', '373.08924', '327.9', '12', '153.2', '0.535237843', '2.12', '5.991272958', '2.719600918', '2.609533978');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '30WF 108', '31.77', '29.82', '0.548', '10.484', '0.76', '28.224', '29.06', '16.34136', '1.941147413', '6.897368421', '51.50364964', '4461', '341.2673604', '299.2', '11.85', '135.1', '0.540204297', '2.06', '4.620561107', '2.683536688', '2.561413458');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1963', '1970', 'ASD6', '30WF 99', '29.11', '29.64', '0.522', '10.485', '0.67', '28.233', '28.97', '15.47208', '2.097897636', '7.824626866', '54.0862069', '3988.6', '308.0289465', '269.1', '11.7', '116.9', '0.550534259', '2', '3.444099083', '2.652629462', '2.508474303');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '27WF 177', '52.1', '27.31', '0.725', '14.09', '1.19', '24.811', '26.12', '19.79975', '1.072813724', '5.920168067', '34.22206897', '6728.6', '550.6044151', '492.8', '11.36', '518.9', '0.534582852', '3.16', '18.99601943', '3.859373428', '3.708327436');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '27WF 160', '47.04', '27.08', '0.658', '14.023', '1.075', '24.8225', '26.005', '17.81864', '1.083482783', '6.522325581', '37.72416413', '6018.6', '494.2557797', '444.5', '11.31', '458', '0.539367212', '3.12', '13.98125788', '3.827988816', '3.660246109');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '27WF 145', '42.68', '26.88', '0.6', '13.965', '0.975', '24.8325', '25.905', '16.128', '1.094274147', '7.161538462', '41.3875', '5414.3', '445.9449769', '402.9', '11.26', '406.9', '0.543824163', '3.09', '10.42402078', '3.800387954', '3.616779327');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '27WF 114', '33.53', '27.28', '0.57', '10.07', '0.932', '25.3228', '26.348', '15.5496', '1.537946392', '5.402360515', '44.42596491', '4080.5', '339.333464', '299.2', '11.03', '149.6', '0.530141112', '2.11', '7.003784903', '2.659766759', '2.566515147');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '27WF 102', '30.01', '27.07', '0.518', '10.018', '0.827', '25.3333', '26.243', '14.02226', '1.583926369', '6.056831923', '48.90598456', '3604.1', '301.0737741', '266.3', '10.96', '129.5', '0.535053953', '2.08', '4.955054665', '2.631287225', '2.52604477');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '27WF 94', '27.65', '26.91', '0.49', '9.99', '0.747', '25.3413', '26.163', '13.1859', '1.663944668', '6.686746988', '51.71693878', '3266.7', '274.3738718', '242.8', '10.87', '115.1', '0.539213177', '2.04', '3.772828263', '2.60538568', '2.490245095');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1963', '1970', 'ASD6', '27WF 84', '24.71', '26.69', '0.463', '9.963', '0.636', '25.3544', '26.054', '12.35747', '1.852623133', '7.83254717', '54.76112311', '2824.8', '239.8734866', '211.7', '10.69', '95.7', '0.547689384', '1.97', '2.549653595', '2.560567735', '2.426709255');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '24WF 160', '47.04', '24.72', '0.656', '14.091', '1.135', '22.3365', '23.585', '16.21632', '0.91618101', '6.207488987', '34.04954268', '5110.3', '459.8580367', '413.5', '10.42', '492.6', '0.537211935', '3.23', '15.84784783', '3.90557702', '3.748110528');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '24WF 145', '42.62', '24.49', '0.608', '14.043', '1.02', '22.348', '23.47', '14.88992', '0.948597934', '6.883823529', '36.75657895', '4561', '412.7893742', '372.5', '10.34', '434.3', '0.542011853', '3.19', '11.61695121', '3.872741435', '3.698906241');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '24WF 130', '38.21', '24.25', '0.565', '14', '0.9', '22.36', '23.35', '13.70125', '1.002650794', '7.777777778', '39.57522124', '4009.5', '365.4003531', '330.7', '10.24', '375.2', '0.548507463', '3.13', '8.153709902', '3.835219719', '3.639508701');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '24WF 120', '35.29', '24.31', '0.556', '12.088', '0.93', '22.357', '23.38', '13.51636', '1.105734648', '6.498924731', '40.21043165', '3635.3', '332.8905667', '299.1', '10.15', '254', '0.538928735', '2.68', '7.768277404', '3.29167516', '3.150764237');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '24WF 110', '32.36', '24.16', '0.51', '12.042', '0.855', '22.3645', '23.305', '12.3216', '1.107808343', '7.042105263', '43.85196078', '3315', '304.2065013', '274.4', '10.12', '229.1', '0.543069795', '2.66', '6.010383389', '3.272147191', '3.119105373');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '24WF 100', '29.43', '24', '0.468', '12', '0.775', '22.3725', '23.225', '11.232', '1.125841935', '7.741935484', '47.80448718', '2987.3', '274.9607925', '248.9', '10.08', '203.5', '0.548402948', '2.63', '4.490940853', '3.249843914', '3.081290337');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '24WF 94', '27.63', '24.29', '0.516', '9.061', '0.872', '22.4588', '23.418', '12.53364', '1.466707909', '5.195527523', '43.5248062', '2683', '250.6036672', '220.9', '9.85', '102.2', '0.528947702', '1.92', '5.037810656', '2.407051545', '2.327488227');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '24WF 84', '24.71', '24.09', '0.47', '9.015', '0.772', '22.4688', '23.318', '11.3223', '1.517381221', '5.83873057', '47.80595745', '2364.3', '222.0113351', '196.3', '9.78', '88.3', '0.533792594', '1.89', '3.545463337', '2.380386109', '2.29008105');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '24WF 76', '22.37', '23.91', '0.44', '8.985', '0.682', '22.4778', '23.228', '10.5204', '1.614001831', '6.587243402', '51.08590909', '2096.4', '198.2512743', '175.4', '9.68', '76.5', '0.538884805', '1.85', '2.540301417', '2.351936843', '2.25064415');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1963', '1970', 'ASD6', '24WF 68', '20', '23.71', '0.416', '8.961', '0.582', '22.4878', '23.128', '9.86336', '1.793745559', '7.698453608', '54.05721154', '1814.5', '173.4850047', '153.1', '9.53', '63.8', '0.547003987', '1.79', '1.718737223', '2.31265522', '2.195213605');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '21WF 142', '41.76', '21.46', '0.659', '13.132', '1.095', '19.1605', '20.365', '14.14214', '0.878106636', '5.996347032', '29.07511381', '3403.1', '354.0164274', '317.2', '9.03', '385.9', '0.535489201', '3.04', '13.33258664', '3.6615079', '3.519638092');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '21WF 127', '37.34', '21.24', '0.588', '13.061', '0.985', '19.1715', '20.255', '12.48912', '0.87623533', '6.629949239', '32.60459184', '3017.2', '315.168233', '284.1', '8.99', '338.6', '0.54012878', '3.01', '9.627198825', '3.630761384', '3.474233359');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '21WF 112', '32.93', '21', '0.527', '13', '0.865', '19.1835', '20.135', '11.067', '0.899039973', '7.514450867', '36.40132827', '2620.6', '275.3411846', '249.6', '8.92', '289.7', '0.5466589', '2.96', '6.549332929', '3.595794995', '3.418320474');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '21WF 96', '28.21', '21.14', '0.575', '9.038', '0.935', '19.1765', '20.205', '12.1555', '1.304827922', '4.83315508', '33.35043478', '2088.9', '224.122063', '197.6', '8.6', '109.3', '0.52629254', '1.97', '6.146245612', '2.440384647', '2.363910558');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '21WF 82', '24.1', '20.86', '0.499', '8.962', '0.795', '19.1905', '20.065', '10.40914', '1.344047965', '5.636477987', '38.45791583', '1752.4', '189.2826906', '168', '8.53', '89.6', '0.53222184', '1.93', '3.800139062', '2.403117688', '2.313150809');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '21WF 73', '21.46', '21.24', '0.455', '8.295', '0.74', '19.686', '20.5', '9.6642', '1.459219979', '5.60472973', '43.26593407', '1600.3', '170.249702', '150.7', '8.64', '66.2', '0.531669388', '1.76', '2.861328843', '2.202860415', '2.121945871');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '21WF 68', '20.02', '21.13', '0.43', '8.27', '0.685', '19.6915', '20.445', '9.0859', '1.494690156', '6.03649635', '45.79418605', '1478.3', '157.7940948', '139.9', '8.59', '60.4', '0.534550716', '1.74', '2.295776883', '2.187388754', '2.100816751');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '21WF 62', '18.23', '20.99', '0.4', '8.24', '0.615', '19.6985', '20.375', '8.396', '1.554858316', '6.699186992', '49.24625', '1326.8', '142.29811', '126.4', '8.53', '53.1', '0.539984115', '1.71', '1.699342007', '2.166180676', '2.068747729');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1963', '1970', 'ASD6', '21WF 55', '16.18', '20.8', '0.375', '8.215', '0.522', '19.7038', '20.278', '7.8', '1.723071057', '7.868773946', '52.54346667', '1140.7', '123.5473094', '109.7', '8.4', '44', '0.548099346', '1.65', '1.126256146', '2.130288866', '2.016603822');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '18WF 114', '33.51', '18.48', '0.595', '11.833', '0.991', '16.3989', '17.489', '10.9956', '0.832076323', '5.970232089', '27.56117647', '2033.8', '245.5721816', '220.1', '7.79', '255.6', '0.535323307', '2.76', '8.835990244', '3.315047923', '3.18667589');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '18WF 105', '30.86', '18.32', '0.554', '11.792', '0.911', '16.4069', '17.409', '10.14928', '0.846117053', '6.472008782', '29.61534296', '1852.5', '224.713876', '202.2', '7.75', '231', '0.538874413', '2.73', '6.878683899', '3.291908657', '3.153460019');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '18WF 96', '28.22', '18.16', '0.512', '11.75', '0.931', '16.2049', '17.229', '9.29792', '0.758453166', '6.310418904', '31.65019531', '1674.7', '222.4723132', '184.4', '7.7', '206.8', '0.608599373', '2.71', '7.05030369', '3.302602842', '3.108206373');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '18WF 85', '24.97', '18.32', '0.526', '8.838', '0.911', '16.4069', '17.409', '9.63632', '1.071864534', '4.850713502', '31.1918251', '1429.9', '175.9593325', '156.1', '7.57', '99.4', '0.527245326', '2', '5.255020566', '2.431416542', '2.354310044');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '18WF 77', '22.63', '18.16', '0.475', '8.787', '0.831', '16.4149', '17.329', '8.626', '1.067800699', '5.28700361', '34.55768421', '1286.8', '158.8581565', '141.7', '7.54', '88.6', '0.530283281', '1.98', '3.951023431', '2.411297846', '2.327575027');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '18WF 70', '20.56', '18', '0.438', '8.75', '0.751', '16.4229', '17.249', '7.884', '1.094651733', '5.825565912', '37.49520548', '1153.9', '143.1516397', '128.2', '7.49', '78.5', '0.534088459', '1.95', '2.932890558', '2.390215054', '2.298041033');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '18WF 64', '18.8', '17.87', '0.403', '8.715', '0.686', '16.4294', '17.184', '7.20161', '1.107478343', '6.352040816', '40.76774194', '1045.8', '130.1569106', '117', '7.46', '70.3', '0.53825704', '1.93', '2.235571568', '2.37312594', '2.272123146');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '18WF 60', '17.64', '18.25', '0.416', '7.558', '0.695', '16.7905', '17.555', '7.592', '1.329735513', '5.437410072', '40.36177885', '984', '121.776078', '107.8', '7.47', '47.1', '0.530888495', '1.63', '2.09608345', '2.028436379', '1.958332774');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '18WF 55', '16.19', '18.12', '0.39', '7.532', '0.63', '16.797', '17.49', '7.0668', '1.380528791', '5.977777778', '43.06923077', '889.9', '110.7081594', '98.2', '7.41', '42', '0.534122591', '1.61', '1.588942116', '2.010082494', '1.933965882');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '18WF 50', '14.71', '18', '0.358', '7.5', '0.57', '16.803', '17.43', '6.444', '1.407128421', '6.578947368', '46.93575419', '800.6', '99.9544842', '89', '7.38', '37.2', '0.538684476', '1.59', '1.183825841', '1.993623148', '1.908579094');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1963', '1970', 'ASD6', '18WF 45', '13.24', '17.86', '0.335', '7.477', '0.499', '16.8121', '17.361', '5.9831', '1.509519909', '7.491983968', '50.18537313', '704.5', '88.58668024', '78.9', '7.3', '31.9', '0.54489241', '1.55', '0.830663376', '1.969215684', '1.87339437');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '16WF 96', '28.22', '16.32', '0.535', '11.533', '0.875', '14.4825', '15.445', '8.7312', '0.767797996', '6.590285714', '27.07009346', '1355.1', '184.2543923', '166.1', '6.93', '207.2', '0.539838597', '2.71', '5.894509178', '3.24462886', '3.103766332');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '16WF 88', '25.87', '16.16', '0.504', '11.502', '0.795', '14.4905', '15.365', '8.14464', '0.798681115', '7.233962264', '28.75099206', '1222.6', '167.2468403', '151.3', '6.87', '185.2', '0.544333409', '2.67', '4.474632526', '3.219882584', '3.066565968');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '16WF 78', '22.92', '16.32', '0.529', '8.586', '0.875', '14.4825', '15.445', '8.63328', '1.019765399', '4.906285714', '27.37712665', '1042.6', '144.1091018', '127.8', '6.74', '87.5', '0.527462278', '1.95', '4.55359378', '2.376422508', '2.299416048');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '16WF 71', '20.86', '16.16', '0.486', '8.543', '0.795', '14.4905', '15.365', '7.85376', '1.036912489', '5.372955975', '29.81584362', '936.9', '130.1468554', '115.9', '6.7', '77.9', '0.530248739', '1.93', '3.419179341', '2.354650716', '2.272366067');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '16WF 64', '18.8', '16', '0.443', '8.5', '0.715', '14.4985', '15.285', '7.088', '1.056821966', '5.944055944', '32.72799097', '833.8', '116.4051402', '104.2', '6.66', '68.4', '0.534965125', '1.91', '2.493543669', '2.332447579', '2.239813795');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '16WF 58', '17.04', '15.86', '0.407', '8.464', '0.645', '14.5055', '15.215', '6.45502', '1.081413392', '6.56124031', '35.64004914', '746.4', '104.6629338', '94.1', '6.62', '60.5', '0.538703824', '1.88', '1.841563613', '2.312374035', '2.211586123');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '16WF 50', '14.7', '16.25', '0.38', '7.073', '0.628', '14.9312', '15.622', '6.175', '1.277364986', '5.631369427', '39.29263158', '655.4', '90.74839039', '80.7', '6.68', '34.8', '0.532120668', '1.54', '1.442111725', '1.905379793', '1.835296234');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '16WF 45', '13.24', '16.12', '0.346', '7.039', '0.563', '14.9377', '15.557', '5.57752', '1.304188817', '6.251332149', '43.17254335', '583.3', '81.09865516', '72.4', '6.64', '30.5', '0.536488238', '1.52', '1.044448848', '1.887888474', '1.810208353');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '16WF 40', '11.77', '16', '0.307', '7', '0.503', '14.9437', '15.497', '4.912', '1.302958222', '6.958250497', '48.67654723', '515.5', '71.81987476', '64.4', '6.62', '26.5', '0.542544025', '1.5', '0.738510805', '1.872854564', '1.785619097');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '16WF 36', '10.59', '15.85', '0.299', '6.992', '0.428', '14.9512', '15.422', '4.73915', '1.493833005', '8.168224299', '50.00401338', '446.3', '62.95680476', '56.3', '6.49', '22.1', '0.551663827', '1.45', '0.499062395', '1.842031129', '1.739791846');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '14WF 426', '125.5', '18.69', '1.875', '16.695', '3.033', '12.3207', '15.657', '35.04375', '0.456223678', '2.752225519', '6.57104', '6610.3', '867.5093543', '707.4', '7.26', '2359.5', '0.49846016', '4.34', '338.2745964', '5.145827918', '5.109951064');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '14WF 398', '116.98', '18.31', '1.77', '16.59', '2.843', '12.3397', '15.467', '32.4087', '0.463078504', '2.917692578', '6.971581921', '6013.7', '800.0259567', '656.9', '7.17', '2169.7', '0.498580263', '4.31', '277.4817609', '5.087252863', '5.054035155');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '14WF 370', '108.78', '17.94', '1.655', '16.475', '2.658', '12.3582', '15.282', '29.6907', '0.467060153', '3.099134688', '7.467190332', '5454.2', '735.1446094', '608.1', '7.08', '1986', '0.498736044', '4.27', '225.327667', '5.026595315', '4.99547995');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '14WF 342', '100.59', '17.56', '1.545', '16.365', '2.468', '12.3772', '15.092', '27.1302', '0.473467014', '3.315437601', '8.011132686', '4911.5', '671.1029479', '559.4', '6.99', '1806.9', '0.49885901', '4.24', '179.5250902', '4.965747131', '4.937012518');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '14WF 314', '92.3', '17.19', '1.415', '16.235', '2.283', '12.3957', '14.907', '24.32385', '0.473226757', '3.555628559', '8.760212014', '4399.4', '608.8960778', '511.9', '6.9', '1631.4', '0.499023602', '4.2', '140.7108876', '4.90087777', '4.873800993');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '14WF 287', '84.37', '16.81', '1.31', '16.13', '2.093', '12.4147', '14.717', '22.0211', '0.481730262', '3.853320592', '9.476870229', '3912.1', '549.0394052', '465.5', '6.81', '1466.5', '0.499124648', '4.17', '108.0540366', '4.84008684', '4.81477324');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '14WF 264', '77.63', '16.5', '1.205', '16.025', '1.938', '12.4302', '14.562', '19.8825', '0.482295658', '4.134416925', '10.31551867', '3526', '500.2528444', '427.4', '6.74', '1331.2', '0.499256045', '4.14', '85.12481698', '4.786070083', '4.762115352');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '14WF 246', '72.33', '16.25', '1.125', '15.945', '1.813', '12.4427', '14.437', '18.28125', '0.484222343', '4.397407612', '11.06017778', '3228.9', '462.1704225', '397.4', '6.68', '1226.6', '0.499329435', '4.12', '69.33855984', '4.743293393', '4.720206832');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '14WF 237', '69.69', '16.12', '1.09', '15.91', '1.748', '12.4492', '14.372', '17.5708', '0.487928666', '4.550915332', '11.4212844', '3080.9', '443.1221579', '382.2', '6.65', '1174.8', '0.499351988', '4.11', '62.09991135', '4.722176571', '4.699809275');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '14WF 228', '67.06', '16', '1.045', '15.865', '1.688', '12.4552', '14.312', '16.72', '0.486020376', '4.699348341', '11.91885167', '2942.4', '424.9112819', '367.8', '6.62', '1124.8', '0.499385718', '4.1', '55.67254321', '4.700350833', '4.678072599');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '14WF 219', '64.36', '15.87', '1.005', '15.825', '1.623', '12.4617', '14.247', '15.94935', '0.487619557', '4.875231054', '12.39970149', '2798.2', '405.9601425', '352.6', '6.59', '1073.2', '0.499445111', '4.08', '49.37470505', '4.678225706', '4.656352951');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '14WF 211', '62.07', '15.75', '0.98', '15.8', '1.563', '12.4677', '14.187', '15.435', '0.49476202', '5.054382598', '12.72214286', '2671.4', '389.3981569', '339.2', '6.56', '1028.6', '0.499462024', '4.07', '44.18060036', '4.659667804', '4.637945326');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '14WF 202', '59.39', '15.63', '0.93', '15.75', '1.503', '12.4737', '14.127', '14.5359', '0.490048094', '5.239520958', '13.41258065', '2538.8', '371.4703257', '324.9', '6.54', '979.7', '0.499489428', '4.06', '39.03528479', '4.637027806', '4.615105923');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '14WF 193', '56.73', '15.5', '0.89', '15.71', '1.438', '12.4802', '14.062', '13.795', '0.491673137', '5.462447844', '14.02269663', '2402.4', '353.1331569', '310', '6.51', '930.1', '0.499547225', '4.05', '34.10959118', '4.614721566', '4.592958531');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '14WF 184', '54.07', '15.38', '0.84', '15.66', '1.378', '12.4862', '14.002', '12.9192', '0.486036179', '5.682148041', '14.86452381', '2274.8', '335.6226079', '295.8', '6.49', '882.7', '0.499608845', '4.04', '29.8120513', '4.592280921', '4.570750519');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '14WF 176', '51.73', '15.25', '0.82', '15.64', '1.313', '12.4927', '13.937', '12.505', '0.498848521', '5.955826352', '15.235', '2149.6', '318.8706569', '281.9', '6.45', '837.9', '0.499575965', '4.02', '25.92165993', '4.572507479', '4.55111919');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '14WF 167', '49.09', '15.12', '0.78', '15.6', '1.248', '12.4992', '13.872', '11.7936', '0.500769231', '6.25', '16.02461538', '2020.8', '301.1474419', '267.3', '6.42', '790.2', '0.499654852', '4.01', '22.21207073', '4.549917589', '4.528178888');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '14WF 158', '46.47', '15', '0.73', '15.55', '1.188', '12.5052', '13.812', '10.95', '0.494158953', '6.544612795', '17.13041096', '1900.6', '284.2387819', '253.4', '6.4', '745', '0.499654844', '4', '19.0185317', '4.527627096', '4.505968155');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '14WF 150', '44.08', '14.88', '0.695', '15.515', '1.128', '12.5112', '13.752', '10.3416', '0.496847251', '6.877216312', '18.00172662', '1786.9', '268.3623859', '240.2', '6.37', '702.5', '0.49973166', '3.99', '16.25789599', '4.506968254', '4.484402611');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '14WF 142', '41.85', '14.75', '0.68', '15.5', '1.063', '12.5177', '13.687', '10.03', '0.516616757', '7.290686736', '18.40838235', '1672.2', '252.6059694', '226.7', '6.32', '660.1', '0.499732253', '3.97', '13.73508601', '4.486230874', '4.463938905');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '14WF 320', '94.12', '16.81', '1.89', '16.71', '2.093', '12.4147', '14.717', '31.7709', '0.670891602', '3.991877688', '6.568624339', '4141.7', '590.0129397', '492.8', '6.63', '1635.1', '0.497706157', '4.17', '130.5486396', '4.96175327', '4.941188896');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '14WF 136', '39.98', '14.75', '0.66', '14.74', '1.063', '12.5177', '13.687', '9.735', '0.527275663', '6.933207902', '18.96621212', '1593', '240.751689', '216', '6.31', '567.7', '0.499718669', '3.77', '13.01315308', '4.263307204', '4.241033543');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '14WF 127', '37.33', '14.62', '0.61', '14.69', '0.998', '12.5242', '13.622', '8.9182', '0.521107702', '7.359719439', '20.53147541', '1476.7', '224.0101855', '202', '6.29', '527.6', '0.499700629', '3.76', '10.68982682', '4.240335895', '4.217762769');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '14WF 119', '34.99', '14.5', '0.57', '14.65', '0.938', '12.5302', '13.562', '8.265', '0.519747484', '7.809168443', '21.98280702', '1373.1', '209.0745015', '189.4', '6.26', '491.8', '0.499742105', '3.75', '8.839660341', '4.219666063', '4.196151377');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '14WF 111', '32.65', '14.37', '0.54', '14.62', '0.873', '12.5367', '13.497', '7.7598', '0.530414487', '8.373424971', '23.21611111', '1266.5', '193.780046', '176.3', '6.23', '454.9', '0.499757337', '3.73', '7.147442232', '4.197645986', '4.172875605');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '14WF 103', '30.26', '14.25', '0.495', '14.575', '0.813', '12.5427', '13.437', '7.05375', '0.523958783', '8.963714637', '25.33878788', '1165.8', '178.9428609', '163.6', '6.21', '419.7', '0.499799734', '3.72', '5.731801035', '4.176861428', '4.151585588');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '14WF 95', '27.94', '14.12', '0.465', '14.545', '0.748', '12.5492', '13.372', '6.5658', '0.536356651', '9.722593583', '26.98752688', '1063.5', '164.0090385', '150.6', '6.17', '383.7', '0.499884568', '3.71', '4.481233974', '4.154185', '4.127305344');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '14WF 87', '25.56', '14', '0.42', '14.5', '0.688', '12.5552', '13.312', '5.88', '0.528587009', '10.5377907', '29.89333333', '966.9', '149.5338765', '138.1', '6.15', '349.7', '0.499822229', '3.7', '3.459815467', '4.133678676', '4.105420376');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '14WF 84', '24.71', '14.18', '0.451', '12.023', '0.778', '12.5462', '13.402', '6.39518', '0.604917717', '7.726863753', '27.81862528', '928.4', '143.3293335', '130.9', '6.13', '225.5', '0.499678135', '3.02', '4.160524296', '3.422080965', '3.397607908');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '14WF 78', '22.94', '14.06', '0.428', '12', '0.718', '12.5522', '13.342', '6.01768', '0.623530826', '8.356545961', '29.32757009', '851.2', '132.0067672', '121.1', '6.09', '206.9', '0.499719671', '3', '3.291088636', '3.403023949', '3.376009376');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '14WF 74', '21.76', '14.19', '0.45', '10.072', '0.783', '12.5457', '13.407', '6.3855', '0.715863028', '6.431673052', '27.87933333', '796.8', '123.6612478', '112.3', '6.05', '133.5', '0.499397543', '2.48', '3.606820917', '2.84624892', '2.822939441');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '14WF 68', '20', '14.06', '0.418', '10.04', '0.718', '12.5522', '13.342', '5.87708', '0.727843445', '6.991643454', '30.0291866', '724.1', '112.832424', '103', '6.02', '121.2', '0.499622188', '2.46', '2.784841844', '2.827345144', '2.801742176');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '14WF 61', '17.94', '13.91', '0.378', '10', '0.643', '12.5597', '13.267', '5.25798', '0.738346283', '7.776049767', '33.22671958', '641.5', '100.366838', '92.2', '5.98', '107.3', '0.499378689', '2.45', '1.999592766', '2.805233842', '2.778470354');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '14WF 53', '15.59', '13.94', '0.37', '8.062', '0.658', '12.5582', '13.282', '5.1578', '0.875911911', '6.126139818', '33.94108108', '542.1', '85.19959775', '77.8', '5.9', '57.5', '0.499695208', '1.92', '1.744338288', '2.242409922', '2.215444445');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '14WF 48', '14.11', '13.81', '0.339', '8.031', '0.593', '12.5647', '13.217', '4.68159', '0.894391169', '6.771500843', '37.0640118', '484.9', '76.45063173', '70.2', '5.86', '51.3', '0.498959114', '1.91', '1.280394332', '2.224672429', '2.197564211');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '14WF 43', '12.65', '13.68', '0.308', '8', '0.528', '12.5712', '13.152', '4.21344', '0.91665', '7.575757576', '40.81558442', '429', '67.82518195', '62.7', '5.82', '45.1', '0.499512195', '1.89', '0.908005559', '2.206348777', '2.174880517');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '14WF 38', '11.17', '14.12', '0.313', '6.776', '0.513', '13.0427', '13.607', '4.41956', '1.174413622', '6.604288499', '41.66996805', '385.3', '60.71531383', '54.6', '5.87', '24.6', '0.54065622', '1.49', '0.74370517', '1.834458311', '1.750803583');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '14WF 34', '10', '14', '0.287', '6.75', '0.453', '13.0487', '13.547', '4.018', '1.224749211', '7.450331126', '45.46585366', '339.2', '53.72508023', '48.5', '5.83', '21.3', '0.545065471', '1.46', '0.521498843', '1.816328876', '1.724747404');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '14WF 30', '8.81', '13.86', '0.27', '6.733', '0.383', '13.0557', '13.477', '3.7422', '1.366962302', '8.789817232', '48.35444444', '289.6', '46.32673193', '41.8', '5.73', '17.5', '0.556679621', '1.41', '0.338091497', '1.789074464', '1.679625656');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '12WF 190', '55.86', '14.38', '1.06', '12.67', '1.736', '10.7344', '12.644', '15.2428', '0.51731766', '3.649193548', '10.12679245', '1892.5', '309.6371802', '263.2', '5.82', '589.7', '0.498961678', '3.25', '48.52160429', '3.784701947', '3.763568866');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '12WF 161', '47.38', '13.88', '0.905', '12.515', '1.486', '10.7594', '12.394', '12.5614', '0.523584727', '4.210969044', '11.88883978', '1541.8', '257.4150472', '222.2', '5.7', '486.2', '0.499246663', '3.2', '30.07270821', '3.703383402', '3.682359607');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '12WF 133', '39.11', '13.38', '0.755', '12.365', '1.236', '10.7844', '12.144', '10.1019', '0.532758451', '5.002022654', '14.28397351', '1221.2', '208.0567697', '182.5', '5.59', '389.9', '0.499420484', '3.16', '17.13014913', '3.622045443', '3.601729265');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '12WF 120', '35.31', '13.12', '0.71', '12.32', '1.106', '10.7974', '12.014', '9.3152', '0.562615515', '5.569620253', '15.20760563', '1071.7', '184.8215452', '163.4', '5.51', '345.1', '0.499414382', '3.13', '12.41317498', '3.583352977', '3.561847076');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '12WF 106', '31.19', '12.88', '0.62', '12.23', '0.986', '10.8094', '11.894', '7.9856', '0.555763353', '6.201825558', '17.43451613', '930.7', '161.8697212', '144.5', '5.46', '300.9', '0.499519967', '3.11', '8.682225729', '3.540967248', '3.519055689');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '12WF 99', '29.09', '12.75', '0.58', '12.19', '0.921', '10.8159', '11.829', '7.395', '0.558762589', '6.617806732', '18.64810345', '858.5', '150.056812', '134.7', '5.43', '278.2', '0.499726494', '3.09', '7.058222715', '3.518951724', '3.495053138');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '12WF 92', '27.06', '12.62', '0.545', '12.155', '0.856', '10.8224', '11.764', '6.8779', '0.566880288', '7.099883178', '19.85761468', '788.9', '138.6122887', '125', '5.4', '256.4', '0.499619508', '3.08', '5.67117975', '3.497135902', '3.473493688');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '12WF 85', '24.98', '12.5', '0.495', '12.105', '0.796', '10.8284', '11.704', '6.1875', '0.556277671', '7.603643216', '21.87555556', '723.3', '127.4991557', '115.7', '5.38', '235.5', '0.499614796', '3.07', '4.511172667', '3.475993133', '3.451285883');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '12WF 79', '23.22', '12.38', '0.47', '12.08', '0.736', '10.8344', '11.644', '5.8186', '0.572740606', '8.206521739', '23.05191489', '663', '117.5060812', '107.1', '5.34', '216.4', '0.499620345', '3.05', '3.58826985', '3.455752816', '3.429809456');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '12WF 72', '21.16', '12.25', '0.43', '12.04', '0.671', '10.8409', '11.579', '5.2675', '0.577011923', '8.971684054', '25.21139535', '597.4', '106.3357182', '97.5', '5.31', '195.3', '0.499710519', '3.04', '2.714037452', '3.433158586', '3.405409498');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '12WF 65', '19.11', '12.12', '0.39', '12', '0.606', '10.8474', '11.514', '4.7268', '0.58175', '9.900990099', '27.81384615', '533.4', '95.33079324', '88', '5.28', '174.6', '0.499793814', '3.02', '1.996044012', '3.410378628', '3.37970581');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '12WF 58', '17.06', '12.19', '0.359', '10.014', '0.641', '10.8439', '11.549', '4.37621', '0.606477001', '7.811232449', '30.20584958', '476.1', '84.81158637', '78.1', '5.28', '107.4', '0.499453733', '2.51', '1.9265211', '2.845836732', '2.817953462');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '12WF 53', '15.59', '12.06', '0.345', '10', '0.576', '10.8504', '11.484', '4.1607', '0.64989375', '8.680555556', '31.45043478', '426.2', '76.41025002', '70.7', '5.23', '96.1', '0.499479709', '2.48', '1.423327181', '2.824839973', '2.79372453');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '12WF 50', '14.71', '12.19', '0.371', '8.077', '0.641', '10.8439', '11.549', '4.52249', '0.77705418', '6.300312012', '29.22884097', '394.5', '70.82910503', '64.7', '5.18', '56.4', '0.499054445', '1.96', '1.603856734', '2.269404123', '2.243595728');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '12WF 45', '13.24', '12.06', '0.336', '8.042', '0.576', '10.8504', '11.484', '4.05216', '0.787043024', '6.980902778', '32.29285714', '350.8', '63.1907879', '58.2', '5.15', '50', '0.499302154', '1.94', '1.162491347', '2.250892323', '2.221033474');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '12WF 40', '11.77', '11.94', '0.294', '8', '0.516', '10.8564', '11.424', '3.51036', '0.773202907', '7.751937984', '36.92653061', '310.1', '55.9036301', '51.9', '5.13', '44.1', '0.499229025', '1.94', '0.825135213', '2.234531341', '2.203077196');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '12WF 36', '10.59', '12.24', '0.305', '6.565', '0.54', '11.106', '11.7', '3.7332', '0.955496319', '6.078703704', '36.41311475', '280.8', '50.974272', '45.9', '5.15', '23.7', '0.537240023', '1.5', '0.794713605', '1.812699086', '1.737983957');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '12WF 31', '9.12', '12.09', '0.265', '6.525', '0.465', '11.1135', '11.625', '3.20385', '0.970651341', '7.016129032', '41.93773585', '238.4', '43.52284913', '39.4', '5.11', '19.8', '0.543685893', '1.47', '0.506596924', '1.792931003', '1.709094069');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '12WF 27', '7.97', '11.96', '0.24', '6.5', '0.4', '11.12', '11.56', '2.8704', '1.026461538', '8.125', '46.33333333', '204.1', '37.528736', '34.1', '5.06', '16.6', '0.551455823', '1.44', '0.328758613', '1.77336681', '1.677415971');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '10WF 112', '32.92', '11.38', '0.755', '10.415', '1.248', '8.7592', '10.132', '8.5919', '0.508788791', '4.172676282', '11.6015894', '718.7', '146.5921053', '126.3', '4.67', '235.4', '0.499119691', '2.67', '14.77067396', '3.089930884', '3.072798957');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '10WF 100', '29.43', '11.12', '0.685', '10.345', '1.118', '8.7722', '10.002', '7.6172', '0.51954934', '4.626565295', '12.80613139', '625', '129.1962158', '112.4', '4.61', '206.6', '0.499254198', '2.65', '10.58933484', '3.048924402', '3.031868984');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '10WF 89', '26.19', '10.88', '0.615', '10.275', '0.998', '8.7842', '9.882', '6.6912', '0.526823282', '5.147795591', '14.28325203', '542.4', '113.4692638', '99.7', '4.55', '180.6', '0.499547789', '2.63', '7.49781308', '3.00965969', '2.99170468');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '10WF 77', '22.67', '10.62', '0.535', '10.195', '0.868', '8.7972', '9.752', '5.6817', '0.531852607', '5.872695853', '16.44336449', '457.2', '96.85426326', '86.1', '4.49', '153.4', '0.49966026', '2.6', '4.898299995', '2.966111221', '2.947426287');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '10WF 72', '21.18', '10.5', '0.51', '10.17', '0.808', '8.8032', '9.692', '5.355', '0.546359415', '6.293316832', '17.26117647', '420.7', '89.70564876', '80.1', '4.46', '141.8', '0.499478435', '2.59', '3.969369507', '2.947059474', '2.92896082');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '10WF 66', '19.41', '10.38', '0.457', '10.117', '0.748', '8.8092', '9.632', '4.74366', '0.531984921', '6.762700535', '19.2761488', '382.5', '81.90754746', '73.7', '4.44', '129.2', '0.499589254', '2.58', '3.105345126', '2.925273289', '2.905632952');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '10WF 60', '17.66', '10.25', '0.415', '10.075', '0.683', '8.8157', '9.567', '4.25375', '0.531666309', '7.375549048', '21.2426506', '343.7', '74.02119564', '67.1', '4.41', '116.5', '0.499630218', '2.57', '2.351667001', '2.903191815', '2.881871365');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '10WF 54', '15.88', '10.12', '0.368', '10.028', '0.618', '8.8222', '9.502', '3.72416', '0.523868056', '8.113268608', '23.97336957', '305.7', '66.14792456', '60.4', '4.39', '103.9', '0.4998442', '2.56', '1.725513858', '2.881035724', '2.858787139');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '10WF 49', '14.4', '10', '0.34', '10', '0.558', '8.8282', '9.442', '3.4', '0.537918996', '8.960573477', '25.96529412', '272.9', '59.39502376', '54.6', '4.35', '93', '0.5', '2.54', '1.274666325', '2.860831724', '2.83571221');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '10WF 45', '13.24', '10.12', '0.35', '8.022', '0.618', '8.8222', '9.502', '3.542', '0.622836149', '6.490291262', '25.20628571', '248.6', '54.01305459', '49.1', '4.33', '53.2', '0.499739375', '2', '1.38925043', '2.289624754', '2.268859408');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '10WF 39', '11.48', '9.94', '0.318', '7.99', '0.528', '8.8312', '9.412', '3.16092', '0.665680965', '7.566287879', '27.77106918', '209.7', '45.98116639', '42.2', '4.27', '44.9', '0.49985803', '1.98', '0.8793033', '2.262409356', '2.237653858');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '10WF 33', '9.71', '9.75', '0.292', '7.964', '0.433', '8.8407', '9.317', '2.847', '0.748600921', '9.19630485', '30.27636986', '170.9', '37.89041289', '35', '4.2', '36.5', '0.499352858', '1.94', '0.504754788', '2.229907396', '2.20412114');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '10WF 29', '8.53', '10.22', '0.289', '5.799', '0.5', '9.17', '9.72', '2.95358', '0.913995516', '5.799', '31.73010381', '157.3', '34.3249969', '30.8', '4.29', '15.2', '0.534569894', '1.34', '0.557432795', '1.610815259', '1.548690272');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '10WF 25', '7.35', '10.08', '0.252', '5.762', '0.43', '9.177', '9.65', '2.54016', '0.933382304', '6.7', '36.41666667', '133.2', '29.2649482', '26.4', '4.26', '12.7', '0.539763173', '1.31', '0.354595467', '1.591717245', '1.523521389');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '10WF 21', '6.19', '9.9', '0.24', '5.75', '0.34', '9.186', '9.56', '2.376', '1.127693095', '8.455882353', '38.275', '106.3', '23.790304', '21.5', '4.14', '9.7', '0.555302298', '1.25', '0.193151093', '1.559260265', '1.468522434');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '8WF 67', '19.7', '9', '0.575', '8.287', '0.933', '7.0407', '8.067', '5.175', '0.523606105', '4.441050375', '12.24469565', '271.8', '69.68820283', '60.4', '3.71', '88.6', '0.499411677', '2.12', '4.939027831', '2.446788999', '2.432424798');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '8WF 58', '17.06', '8.75', '0.51', '8.222', '0.808', '7.0532', '7.942', '4.4625', '0.54146145', '5.087871287', '13.82980392', '227.3', '59.25067158', '52', '3.65', '74.9', '0.499667054', '2.1', '3.206924764', '2.407108533', '2.391603501');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '8WF 48', '14.11', '8.5', '0.405', '8.117', '0.683', '7.0657', '7.817', '3.4425', '0.516171436', '5.942166911', '17.44617284', '183.7', '48.48976533', '43.2', '3.61', '60.9', '0.499814444', '2.08', '1.882086503', '2.361806288', '2.34731747');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '8WF 40', '11.76', '8.25', '0.365', '8.077', '0.558', '7.0782', '7.692', '3.01125', '0.573233302', '7.237455197', '19.39232877', '146.3', '39.31165596', '35.5', '3.53', '49', '0.500042735', '2.04', '1.051173278', '2.322598198', '2.304031983');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '8WF 35', '10.3', '8.12', '0.315', '8.027', '0.493', '7.0847', '7.627', '2.5578', '0.563938619', '8.140973631', '22.49111111', '126.5', '34.19031003', '31.1', '3.5', '42.5', '0.499961465', '2.03', '0.715540125', '2.299487372', '2.282843533');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '8WF 31', '9.12', '8', '0.288', '8', '0.433', '7.0907', '7.567', '2.304', '0.589527021', '9.237875289', '24.62048611', '109.7', '29.87645283', '27.4', '3.47', '37', '0.499315315', '2.01', '0.489779957', '2.27830922', '2.260333126');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '8WF 28', '8.23', '8.06', '0.285', '6.54', '0.463', '7.0877', '7.597', '2.2971', '0.667100779', '7.062634989', '24.86912281', '97.8', '26.63006231', '24.3', '3.45', '21.6', '0.499665356', '1.62', '0.487791032', '1.85684076', '1.837510393');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '8WF 24', '7.06', '7.93', '0.245', '6.5', '0.398', '7.0942', '7.532', '1.94285', '0.671851179', '8.165829146', '28.95591837', '82.5', '22.60253881', '20.8', '3.42', '18.2', '0.50046131', '1.61', '0.308165264', '1.836279913', '1.815282347');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '8WF 20', '5.88', '8.14', '0.248', '5.268', '0.378', '7.3462', '7.762', '2.01872', '0.914906815', '6.968253968', '29.62177419', '69.2', '18.83695592', '17', '3.43', '8.5', '0.541787433', '1.2', '0.227226351', '1.460762182', '1.393018306');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1970', 'ASD5-6', '8WF 17', '5', '8', '0.23', '5.25', '0.308', '7.3532', '7.692', '1.84', '1.045909709', '8.522727273', '31.97043478', '56.4', '15.57306272', '14.1', '3.36', '6.72', '0.552685547', '1.16', '0.132210435', '1.435476291', '1.353878589');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1963', 'ASD5', '8BP 36', '10.6', '8.026', '0.446', '8.158', '0.446', '7.0894', '7.58', '3.579596', '0.869012013', '9.14573991', '15.8955157', '119.8', '33.25426353', '29.9', '3.36', '40.35847164', '0.5', '1.951256771', '0.69346759', '2.282995821', '2.261785244');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1963', 'ASD5', '12 I 31.8', '9.26', '12', '0.35', '5', '0.544', '10.8576', '11.456', '4.2', '1.397117647', '4.595588235', '31.02171429', '215.8', '41.5790976', '36', '4.83', '9.5', '0.596491228', '1.01', '0.69258128', '1.343418127', '1.229453356');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1963', 'ASD5', '10M 25', '7.35', '9.9', '0.35', '5.86', '0.375', '9.1125', '9.525', '3.465', '1.451365188', '7.813333333', '26.03571429', '117', '28.25690625', '23.6', '3.99', '9.84', '0.639069029', '1.16', '0.336784375', '1.560500023', '1.409155896');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1963', 'ASD5', '11Jr 10.3', '3.01', '11', '0.165', '2.844', '0.17', '10.643', '10.83', '1.815', '3.632197816', '8.364705882', '64.5030303', '53.1', '9.9235569', '9.6', '4.2', '0.75', '0.43450541', '0.5', '0.025277066', '0.657287851', '0.650420537');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1963', 'ASD5', '9Jr 7.5', '2.2', '9', '0.145', '2.375', '0.188', '8.6052', '8.812', '1.305', '2.794521837', '6.316489362', '59.3462069', '26.2', '6.63059288', '5.8', '3.45', '0.39', '0.538149372', '0.42', '0.019284511', '0.576568509', '0.544302781');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1963', 'ASD5', '6BWF 25', '7.37', '6.37', '0.32', '6.08', '0.456', '5.4124', '5.914', '2.0384', '0.624699908', '6.666666667', '16.91375', '53.5', '18.77962784', '16.8', '2.69', '17.1', '0.499457138', '1.52', '0.443948182', '1.746974054', '1.734878547');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1963', 'ASD5', '6BWF 20', '5.9', '6.2', '0.258', '6.018', '0.367', '5.4293', '5.833', '1.5996', '0.634227834', '8.198910082', '21.04379845', '41.7', '14.80987536', '13.4', '2.66', '13.3', '0.501175379', '1.5', '0.229606761', '1.71428787', '1.701392099');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1963', 'ASD5', '6BWF 15.5', '4.62', '6', '0.24', '6', '0.269', '5.4351', '5.731', '1.44', '0.808193309', '11.15241636', '22.64625', '30.3', '11.03984064', '10.1', '2.56', '9.69', '0.499690402', '1.45', '0.103029332', '1.673745669', '1.658064451');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1963', 'ASD5', '5BWF 18.5', '5.45', '5.12', '0.265', '5.025', '0.42', '4.238', '4.7', '1.3568', '0.532134565', '5.982142857', '15.99245283', '25.4', '11.132944', '9.94', '2.16', '8.89', '0.499544845', '1.28', '0.274744532', '1.462216871', '1.449744999');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1963', 'ASD5', '5BWF 16', '4.7', '5', '0.24', '5', '0.36', '4.244', '4.64', '1.2', '0.565866667', '6.944444444', '17.68333333', '21.3', '9.451104', '8.53', '2.13', '7.51', '0.499334221', '1.26', '0.17524224', '1.442496516', '1.429188277');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1963', 'ASD5', '4BWF 13', '3.82', '4.16', '0.28', '4.06', '0.345', '3.4355', '3.815', '1.1648', '0.686756622', '5.884057971', '12.26964286', '11.3', '6.1865335', '5.45', '1.72', '3.76', '0.511714949', '0.99', '0.136536692', '1.170739984', '1.147170432');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1963', 'ASD5', '4BWF 10', '2.93', '4', '0.22', '4', '0.265', '3.4435', '3.735', '0.88', '0.714688679', '7.547169811', '15.65227273', '8.31', '4.6213495', '4.16', '1.68', '2.74', '0.515815085', '0.97', '0.061941853', '1.138705921', '1.109069907');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1963', 'ASD5', '12BLB 22', '6.47', '12.31', '0.26', '4.03', '0.424', '11.4196', '11.886', '3.2006', '1.737614121', '4.752358491', '43.92153846', '155.7', '28.84937978', '25.3', '4.91', '4.55', '0.508262832', '0.84', '0.271943268', '1.051676914', '1.03382803');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1963', 'ASD5', '12BLB 19', '5.62', '12.16', '0.24', '4.01', '0.349', '11.4271', '11.811', '2.9184', '1.959645299', '5.744985673', '47.61291667', '130.1', '24.41202303', '21.4', '4.81', '3.67', '0.510988627', '0.81', '0.166456417', '1.027902795', '1.006362586');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1963', 'ASD5', '12BLB 16.5', '4.86', '12', '0.23', '4', '0.269', '11.4351', '11.731', '2.76', '2.444305762', '7.434944238', '49.71782609', '105.3', '20.17675903', '17.5', '4.65', '2.79', '0.514217443', '0.76', '0.098393009', '0.991607602', '0.967020313');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1963', 'ASD5', '10BLB 19', '5.61', '10.25', '0.25', '4.02', '0.394', '9.4226', '9.856', '2.5625', '1.487265449', '5.101522843', '37.6904', '96.2', '21.20631153', '18.8', '4.14', '4.19', '0.509071884', '0.86', '0.213198047', '1.068570448', '1.048005197');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1963', 'ASD5', '10BLB 17', '4.98', '10.12', '0.24', '4.01', '0.329', '9.4291', '9.791', '2.4288', '1.715304444', '6.094224924', '39.28791667', '81.8', '18.28893503', '16.2', '4.05', '3.45', '0.512423071', '0.83', '0.138801742', '1.046311678', '1.021058365');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1963', 'ASD5', '10BLB 15', '4.4', '10', '0.23', '4', '0.269', '9.4351', '9.731', '2.3', '2.016796468', '7.434944238', '41.02217391', '68.8', '15.61849903', '13.8', '3.95', '2.79', '0.514217443', '0.8', '0.090281675', '1.020381251', '0.991805008');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1963', 'ASD5', '8BLB 15', '4.43', '8.12', '0.245', '4.015', '0.314', '7.4606', '7.806', '1.9894', '1.44985524', '6.393312102', '30.45142857', '48', '13.27906868', '11.8', '3.29', '3.3', '0.513205274', '0.86', '0.119593405', '1.069913427', '1.044756885');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1963', 'ASD5', '8BLB 13', '3.83', '8', '0.23', '4', '0.254', '7.4666', '7.746', '1.84', '1.690273622', '7.874015748', '32.46347826', '39.5', '11.09741468', '9.88', '3.21', '2.62', '0.517048346', '0.83', '0.074083892', '1.044691199', '1.013435053');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1963', 'ASD5', '6BLB 16', '4.72', '6.25', '0.26', '4.03', '0.404', '5.4016', '5.846', '1.625', '0.862599808', '4.987623762', '20.77538462', '31.7', '11.44298818', '10.1', '2.59', '4.32', '0.510072031', '0.96', '0.209039687', '1.135234215', '1.118138481');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1963', 'ASD5', '6BLB 12', '3.53', '6', '0.23', '4', '0.279', '5.4141', '5.721', '1.38', '1.11580914', '7.168458781', '23.53956522', '21.7', '8.08751943', '7.24', '2.48', '2.89', '0.514878893', '0.9', '0.079984642', '1.09485637', '1.068564186');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1963', 'ASD5', '12BJ 14', '4.14', '11.91', '0.2', '3.97', '0.224', '11.4396', '11.686', '2.382', '2.572777978', '8.861607143', '57.198', '88.2', '16.96099828', '14.8', '4.61', '2.25', '0.519105672', '0.74', '0.060312342', '0.974033745', '0.942493458');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1963', 'ASD5', '10BJ 11.5', '3.39', '9.87', '0.18', '3.95', '0.204', '9.4416', '9.666', '1.7766', '2.109069248', '9.681372549', '52.45333333', '51.9', '11.81768778', '10.5', '3.92', '2.01', '0.521247699', '0.77', '0.040750243', '0.997101144', '0.961859806');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1963', 'ASD5', '8BJ 10', '2.95', '7.9', '0.17', '3.94', '0.204', '7.4716', '7.696', '1.343', '1.580287648', '9.656862745', '43.95058824', '30.8', '8.57126468', '7.79', '3.23', '1.99', '0.522497853', '0.82', '0.034568916', '1.031422376', '0.991460328');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1963', 'ASD5', '6BJ 8.5', '2.5', '5.83', '0.17', '3.94', '0.194', '5.4226', '5.636', '0.9911', '1.206031189', '10.15463918', '31.89764706', '14.8', '5.56658593', '5.07', '2.43', '1.89', '0.523175436', '0.87', '0.028090484', '1.062181912', '1.024937579');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1963', 'ASD5', '12WF 99', '29.09', '12.75', '0.58', '12.19', '0.921', '10.8159', '11.829', '7.395', '0.558762589', '6.617806732', '18.64810345', '858.5', '150.056812', '134.7', '5.43', '278.2', '0.499726494', '3.09', '7.058222715', '3.518951724', '3.495053138');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1955', '1963', 'ASD5', '12WF 92', '27.06', '12.62', '0.545', '12.155', '0.856', '10.8224', '11.764', '6.8779', '0.566880288', '7.099883178', '19.85761468', '788.9', '138.6122887', '125', '5.4', '256.4', '0.499619508', '3.08', '5.67117975', '3.497135902', '3.473493688');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', 'S24x120', '35.13', '24', '0.798', '8.048', '1.102', '20.0638', '22.898', '19.152', '1.805288099', '3.65154265', '25.14260652', '3010.8', '297.6351613', '250.9', '9.26', '84.9', '0.563840881', '1.56', '12.97001063', '2.143748319', '1.96828187');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24S 115', '33.98', '24', '0.75', '8', '1.102', '20.0638', '22.898', '18', '1.706879537', '3.629764065', '26.75173333', '2955.5', '290.7231613', '246.3', '9.33', '83.2', '0.565128205', '1.57', '12.15180139', '2.141946166', '1.966587321');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24S 115', '33.67', '24', '0.737', '7.987', '1.102', '20.0638', '22.898', '17.688', '1.680023664', '3.623865699', '27.22360923', '2940.5', '288.8511613', '245', '9.35', '82.8', '0.56509448', '1.57', '11.94398725', '2.141487655', '1.967052285');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24S 110', '32.48', '24', '0.688', '7.938', '1.102', '20.0638', '22.898', '16.512', '1.57800705', '3.601633394', '29.1625', '2883.5', '281.7951613', '240.3', '9.42', '81', '0.567085592', '1.58', '11.21100558', '2.139876587', '1.964488097');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24S 110', '32.18', '24', '0.675', '7.925', '1.102', '20.0638', '22.898', '16.2', '1.550729674', '3.595735027', '29.72414815', '2869.1', '279.9231613', '239.1', '9.44', '80.6', '0.567104534', '1.58', '11.02944019', '2.139480976', '1.964542871');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24S 105.9', '30.98', '24', '0.625', '7.875', '1.102', '20.0638', '22.898', '15', '1.444977386', '3.573049002', '32.10208', '2811.5', '272.7231613', '234.3', '9.53', '78.9', '0.568427437', '1.6', '10.37889482', '2.138088167', '1.963523643');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24S 105', '30.98', '24', '0.625', '7.875', '1.102', '20.0638', '22.898', '15', '1.444977386', '3.573049002', '32.10208', '2811.5', '272.7231613', '234.3', '9.53', '78.9', '0.568427437', '1.6', '10.37889482', '2.138088167', '1.963523643');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24S 100', '29.42', '24', '0.62', '7.69', '0.965', '20.27148', '23.035', '14.88', '1.693649326', '3.984455959', '32.69593548', '2497.3', '246.246019', '208.1', '9.21', '57.53', '0.635668532', '1.4', '7.7768119', '2.052651195', '1.784391958');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24S 100', '29.42', '24', '0.68', '7.54', '0.925', '20.35148', '23.075', '16.32', '1.984229178', '4.075675676', '29.92864706', '2497.3', '244.156678', '208.1', '9.21', '57.53', '0.574354662', '1.4', '7.766218995', '1.979726989', '1.785940574');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24S 100', '29.41', '24', '0.754', '7.254', '0.871', '20.5878', '23.129', '18.096', '2.456889251', '4.164179104', '27.30477454', '2380.3', '239.3617113', '198.4', '9', '48.56', '0.570546289', '1.28', '7.734972401', '1.853519796', '1.682410365');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24S 100', '29.41', '24', '0.754', '7.254', '0.871', '20.5878', '23.129', '18.096', '2.456889251', '4.164179104', '27.30477454', '2379.6', '239.3617113', '198.3', '9', '48.6', '0.570076703', '1.28', '7.734972401', '1.853519796', '1.683527472');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24S 100', '29.4', '24', '0.746', '7.196', '0.8605', '20.5462', '23.1395', '17.904', '2.475302665', '4.181289948', '27.54182306', '2342.7', '235.7075319', '195.2', '8.93', '46.98', '0.568761355', '1.26', '7.504929237', '1.837716185', '1.668701233');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24S 100', '29.25', '24', '0.747', '7.247', '0.871', '20.5878', '23.129', '17.928', '2.436431053', '4.160160735', '27.56064257', '2371.8', '238.3537113', '197.6', '9.05', '48.4', '0.570776825', '1.29', '7.630096595', '1.853622657', '1.683033037');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24S 95', '27.94', '24', '0.692', '7.192', '0.871', '20.5878', '23.129', '16.608', '2.274302357', '4.12858783', '29.75115607', '2309.6', '230.4337113', '192.5', '9.09', '47.1', '0.573277686', '1.3', '6.863559933', '1.854637124', '1.682125974');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24S 95', '27.94', '24', '0.693', '7.193', '0.871', '20.5878', '23.129', '16.632', '2.277272281', '4.129161883', '29.70822511', '2309', '230.5777113', '192.4', '9.09', '47.1', '0.573516851', '1.3', '6.876611263', '1.854615335', '1.68256306');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24S 95', '27.92', '24', '0.62', '7.48', '0.925', '20.35148', '23.075', '14.88', '1.823662032', '4.043243243', '32.82496774', '2427', '235.516678', '202.3', '9.32', '55.93', '0.576793637', '1.41', '7.038088554', '1.98043713', '1.785995356');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24S 95', '27.92', '24', '0.59', '7.45', '0.965', '20.27148', '23.035', '14.16', '1.663619042', '3.860103627', '34.35844068', '2427', '237.263662', '202.3', '9.32', '55.93', '0.594524924', '1.41', '7.28616561', '1.991759493', '1.784446693');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24S 95', '27.9', '24', '0.685', '7.135', '0.8605', '20.5462', '23.1395', '16.44', '2.292330489', '4.145845439', '29.99445255', '2271.9', '226.9235319', '189.3', '9.02', '45.59', '0.571323343', '1.28', '6.661123558', '1.838895045', '1.669250352');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24S 95', '27.79', '24', '0.686', '7.186', '0.871', '20.5878', '23.129', '16.464', '2.256465452', '4.125143513', '30.01137026', '2301.5', '229.5697113', '191.8', '9.08', '47', '0.573060784', '1.3', '6.78592163', '1.854770522', '1.683402849');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24S 90', '26.47', '24', '0.56', '7.42', '0.925', '20.35148', '23.075', '13.44', '1.660498113', '4.010810811', '36.34192857', '2356.8', '226.876678', '196.4', '9.44', '54.38', '0.579072578', '1.44', '6.413418551', '1.981575295', '1.787329885');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24S 90', '26.47', '24', '0.631', '7.131', '0.871', '20.5878', '23.129', '15.144', '2.091561834', '4.093570608', '32.62725832', '2239.1', '221.6497113', '186.6', '9.2', '45.7', '0.575933072', '1.31', '6.126171395', '1.856211354', '1.682928676');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24S 90', '26.47', '24', '0.631', '7.131', '0.871', '20.5878', '23.129', '15.144', '2.091561834', '4.093570608', '32.62725832', '2238.4', '221.6497113', '186.5', '9.2', '45.7', '0.575933072', '1.31', '6.126171395', '1.856211354', '1.683379803');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24S 90', '26.4', '24', '0.623', '7.073', '0.8605', '20.5462', '23.1395', '14.952', '2.103124706', '4.109819872', '32.97945425', '2201', '217.9955319', '183.4', '9.13', '44.25', '0.573412727', '1.29', '5.924307648', '1.840584511', '1.670778812');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24S 90', '26.3', '24', '0.624', '7.124', '0.871', '20.5878', '23.129', '14.976', '2.070391445', '4.089552239', '32.99326923', '2230.1', '220.6417113', '185.8', '9.21', '45.5', '0.576762804', '1.32', '6.048699797', '1.856423705', '1.682853358');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24S 85', '25', '24', '0.54', '7.22', '0.87', '20.5918', '23.13', '12.96', '1.770237845', '4.149425287', '38.13296296', '2181.7', '212.019984', '181.8', '9.34', '44.14', '0.618183303', '1.33', '5.312971186', '1.911327278', '1.675683694');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24S 85', '25', '24', '0.57', '7.07', '0.871', '20.5878', '23.129', '13.68', '1.905667939', '4.058553387', '36.11894737', '2168.6', '212.8657113', '180.7', '9.31', '44.35', '0.578364364', '1.33', '5.497498808', '1.858292216', '1.684733323');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24S 85', '25', '24', '0.57', '7.07', '0.871', '20.5878', '23.129', '13.68', '1.905667939', '4.058553387', '36.11894737', '2167.8', '212.8657113', '180.7', '9.31', '44.4', '0.577713053', '1.33', '5.497498808', '1.858292216', '1.685682736');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24S 85', '25', '24', '0.56', '7.06', '0.87', '20.5918', '23.13', '13.44', '1.877406792', '4.057471264', '36.77107143', '2181.7', '211.2822', '181.8', '9.34', '44.14', '0.577989276', '1.33', '5.39065122', '1.858340552', '1.675683694');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24S 85', '24.84', '24', '0.563', '7.063', '0.871', '20.5878', '23.129', '13.512', '1.884130475', '4.054535017', '36.56802842', '2159.8', '211.8577113', '180', '9.33', '44.2', '0.578605101', '1.33', '5.43184806', '1.858565132', '1.685149021');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24S 85', '24.98', '24', '0.562', '7.012', '0.8605', '20.5462', '23.1395', '13.488', '1.913705234', '4.074375363', '36.55907473', '2130.2', '209.2115319', '177.5', '9.23', '42.93', '0.575883271', '1.31', '5.30793234', '1.842767026', '1.672797046');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24S 80', '23.53', '24', '0.5', '7', '0.87', '20.5918', '23.13', '12', '1.690623974', '4.022988506', '41.1836', '2111.4', '202.6422', '176', '9.47', '42.84', '0.580473856', '1.35', '4.883305463', '1.861035598', '1.677803962');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24S 80', '23.5', '24', '0.5', '6.95', '0.8605', '20.5462', '23.1395', '12', '1.717773254', '4.038349797', '41.0924', '2059.3', '200.2835319', '171.6', '9.42', '41.6', '0.578669659', '1.34', '4.781214102', '1.845555948', '1.674750094');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24S 80', '23.32', '24', '0.5', '7', '0.871', '20.5878', '23.129', '12', '1.688354929', '4.01836969', '41.1756', '2087.9', '202.7857113', '174', '9.46', '42.86', '0.580869886', '1.36', '4.896790253', '1.861355123', '1.687776321');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24S 80', '23.32', '24', '0.5', '7', '0.871', '20.5878', '23.129', '12', '1.688354929', '4.01836969', '41.1756', '2087.2', '202.7857113', '173.9', '9.46', '42.9', '0.580328283', '1.36', '4.896790253', '1.861355123', '1.689049142');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24S 79.9', '23.33', '24', '0.5', '7', '0.871', '20.5878', '23.129', '12', '1.688354929', '4.01836969', '41.1756', '2087.2', '202.7857113', '173.9', '9.46', '42.9', '0.580328283', '1.36', '4.896790253', '1.861355123', '1.689049142');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20S 100', '29.62', '20', '0.894', '7.294', '0.915', '16.3446', '19.085', '17.88', '2.189399237', '3.98579235', '18.28255034', '1662.3', '201.0119467', '166.2', '7.49', '52.92', '0.559135787', '1.34', '9.952957701', '1.914465133', '1.743112801');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20S 100', '29.5', '20', '0.9', '7.3', '0.9', '16.5918', '19.1', '18', '2.272849315', '4.055555556', '18.43533333', '1649.2', '199.89312', '164.9', '7.48', '52.8', '0.552580966', '1.34', '9.585167771', '1.901670341', '1.748671852');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20S 100', '29.41', '20', '0.81', '7.31', '0.965', '16.15444', '19.035', '16.2', '1.854950122', '3.787564767', '19.94375309', '1649.6', '200.22105', '165', '7.49', '55.57', '0.565272426', '1.37', '9.493781303', '1.956189512', '1.790357125');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20S 100', '29.41', '20', '0.884', '7.284', '0.9165', '16.3386', '19.0835', '17.68', '2.163538855', '3.973813421', '18.48257919', '1655.6', '200.1846635', '165.6', '7.5', '52.65', '0.560612348', '1.34', '9.801299633', '1.914419468', '1.741738847');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20S 100', '29.41', '20', '0.894', '7.044', '0.95', '16.2046', '19.05', '17.88', '2.16487528', '3.707368421', '18.12595078', '1667.6', '200.515125', '166.8', '7.53', '48.93', '0.565490333', '1.29', '10.35510132', '1.855348348', '1.671560411');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20S 100', '29.41', '20', '0.85', '7.03', '0.955', '16.19444', '19.045', '17', '2.05034132', '3.680628272', '19.05228235', '1649.6', '197.245898', '165', '7.49', '55.57', '0.497562572', '1.37', '9.694920243', '1.862264384', '1.790827344');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20S 100', '29.41', '20', '0.87', '7.02', '0.95', '16.2046', '19.05', '17.4', '2.113960414', '3.694736842', '18.62597701', '1648.6', '198.115125', '164.9', '7.49', '48.68', '0.562604402', '1.29', '9.937615121', '1.853544837', '1.676862487');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20S 100', '29.2', '20', '0.873', '7.273', '0.9165', '16.3386', '19.0835', '17.46', '2.139848504', '3.96781233', '18.71546392', '1648.3', '199.0846635', '164.8', '7.51', '52.4', '0.560738918', '1.34', '9.61365977', '1.913720058', '1.741811111');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20S 98.4', '28.94', '20', '0.91', '7.06', '0.86', '16.5246', '19.14', '18.2', '2.476676', '4.104651163', '18.1589011', '1567.4', '192.123015', '156.7', '7.36', '45.53', '0.553902924', '1.25', '9.042451276', '1.8218296', '1.667517098');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20S 95', '28.12', '20', '0.82', '7.22', '0.915', '16.3446', '19.085', '16.4', '2.028756187', '3.945355191', '19.93243902', '1612.6', '193.6119467', '161.3', '7.57', '51', '0.562705635', '1.35', '8.742620569', '1.909893158', '1.736996681');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20S 95', '28', '20', '0.825', '7.225', '0.9', '16.5918', '19.1', '16.5', '2.105072664', '4.013888889', '20.11127273', '1599.2', '192.39312', '159.9', '7.56', '50.82', '0.556596097', '1.35', '8.370523138', '1.897768279', '1.742187062');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20S 95', '27.94', '20', '0.74', '7.24', '0.965', '16.15444', '19.035', '14.8', '1.711030487', '3.751295337', '21.83032432', '1601.9', '193.22105', '160.2', '7.57', '53.63', '0.56905464', '1.39', '8.503516918', '1.951291985', '1.784983004');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20S 95', '27.94', '20', '0.81', '7.21', '0.9165', '16.3386', '19.0835', '16.2', '2.002774833', '3.933442444', '20.17111111', '1606.6', '192.7846635', '160.7', '7.58', '50.78', '0.563721139', '1.35', '8.614692097', '1.909862757', '1.736410593');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20S 95', '27.94', '20', '0.821', '6.971', '0.95', '16.2046', '19.05', '16.42', '2.008920656', '3.668947368', '19.73763703', '1618.3', '193.215125', '161.8', '7.62', '47.28', '0.567218177', '1.3', '9.143992694', '1.849967542', '1.668330031');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20S 95', '27.94', '20', '0.8', '6.95', '0.95', '16.2046', '19.05', '16', '1.963450208', '3.657894737', '20.25575', '1599.5', '191.115125', '160', '7.57', '46.89', '0.566782641', '1.3', '8.82715799', '1.848478812', '1.670754414');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20S 95', '27.94', '20', '0.77', '6.95', '0.955', '16.19444', '19.045', '15.4', '1.878747795', '3.638743455', '21.03174026', '1601.9', '189.245898', '160.2', '7.57', '53.63', '0.498159873', '1.39', '8.486172104', '1.85652854', '1.785451811');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20S 95', '27.74', '20', '0.8', '7.2', '0.9165', '16.3386', '19.0835', '16', '1.980796508', '3.927986907', '20.42325', '1599.7', '191.7846635', '160', '7.59', '50.5', '0.564491406', '1.35', '8.467608719', '1.90927435', '1.735400485');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20S 90', '26.66', '20', '0.747', '7.147', '0.915', '16.3446', '19.085', '14.94', '1.867024522', '3.905464481', '21.88032129', '1563.8', '186.3119467', '156.4', '7.66', '49.24', '0.565318438', '1.36', '7.716014663', '1.905737698', '1.733291998');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20S 90', '26.5', '20', '0.75', '7.15', '0.9', '16.5918', '19.1', '15', '1.933776224', '3.972222222', '22.1224', '1549.2', '184.89312', '154.9', '7.65', '48.88', '0.560851895', '1.36', '7.331629657', '1.894270914', '1.735967441');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20S 90', '26.47', '20', '0.737', '7.137', '0.9165', '16.3386', '19.0835', '14.74', '1.840916805', '3.893617021', '22.16906377', '1557.6', '185.4846635', '155.8', '7.67', '48.98', '0.566864856', '1.36', '7.60953508', '1.905724379', '1.731967269');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20S 90', '26.47', '20', '0.78', '6.9', '0.865', '16.41444', '19.135', '15.6', '2.145139181', '3.988439306', '21.04415385', '1501.7', '179.164212', '150.2', '7.53', '41.88', '0.565425591', '1.26', '7.376647806', '1.81193492', '1.633306181');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20S 90', '26.47', '20', '0.747', '6.897', '0.95', '16.2046', '19.05', '14.94', '1.847460177', '3.63', '21.69290495', '1569', '185.815125', '156.9', '7.71', '45.63', '0.569210062', '1.32', '8.086682247', '1.844844739', '1.66435611');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20S 90', '26.47', '20', '0.73', '6.88', '0.95', '16.2046', '19.05', '14.6', '1.809877295', '3.621052632', '22.19808219', '1550.5', '184.115125', '155.1', '7.65', '45.17', '0.570765328', '1.31', '7.866449595', '1.843717589', '1.665526851');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20S 90', '26.47', '20', '0.7', '6.88', '0.955', '16.19444', '19.045', '14', '1.725329965', '3.602094241', '23.13491429', '1501.7', '182.245898', '150.2', '7.53', '41.88', '0.618843405', '1.26', '7.583565387', '1.851841048', '1.629460589');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20S 90', '26.4', '20', '0.78', '6.75', '0.91', '16.361', '19.09', '15.6', '2.077587302', '3.708791209', '20.97564103', '1506.1', '181.613927', '150.6', '7.55', '42.3', '0.551354721', '1.27', '7.789491991', '1.780809346', '1.637365608');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20S 90', '26.26', '20', '0.726', '7.126', '0.9165', '16.3386', '19.0835', '14.52', '1.81623974', '3.88761593', '22.50495868', '1550.3', '184.3846635', '155', '7.68', '48.7', '0.567491964', '1.36', '7.471430074', '1.905133094', '1.731460739');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20S 85', '25.18', '20', '0.673', '7.073', '0.915', '16.3446', '19.085', '13.46', '1.699669999', '3.865027322', '24.28618128', '1515.1', '178.9119467', '151.5', '7.76', '47.49', '0.568131217', '1.37', '6.830420306', '1.901911395', '1.729521052');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20S 85', '25', '20', '0.675', '7.075', '0.9', '16.5918', '19.1', '13.5', '1.758848057', '3.930555556', '24.58044444', '1499.2', '177.39312', '149.9', '7.74', '47.4', '0.560353713', '1.38', '6.45312098', '1.891209455', '1.737760976');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20S 85', '25', '20', '0.663', '7.063', '0.9165', '16.3386', '19.0835', '13.26', '1.673426698', '3.853246045', '24.64343891', '1508.5', '178.0846635', '150.9', '7.77', '47.25', '0.569530556', '1.37', '6.743676567', '1.901917657', '1.728503659');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20S 85', '25', '20', '0.674', '6.824', '0.95', '16.2046', '19.05', '13.48', '1.684750478', '3.591578947', '24.04243323', '1519.6', '178.515125', '152', '7.8', '43.98', '0.572010747', '1.33', '7.197143585', '1.840142436', '1.660115524');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20S 85', '25', '20', '0.7', '6.82', '0.865', '16.41444', '19.135', '14', '1.947707016', '3.942196532', '23.4492', '1453.1', '171.164212', '145.3', '7.62', '40.33', '0.566969587', '1.27', '6.368415928', '1.808344093', '1.629598211');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20S 85', '25', '20', '0.65', '6.8', '0.95', '16.2046', '19.05', '13', '1.630493808', '3.578947368', '24.93015385', '1501.5', '176.115125', '150.2', '7.75', '43.5', '0.572242146', '1.32', '6.935523325', '1.838677071', '1.660894911');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20S 85', '25', '20', '0.68', '6.76', '0.905', '16.33444', '19.095', '13.6', '1.815590441', '3.73480663', '24.02123529', '1453.1', '172.936544', '145.3', '7.62', '40.33', '0.577669182', '1.27', '6.590447174', '1.80707845', '1.627894056');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20S 85', '25', '20', '0.76', '6.45', '0.91', '16.361', '19.09', '15.2', '2.118470057', '3.543956044', '21.52763158', '1394.1', '174.7543123', '139.4', '7.5', '34.2', '0.594994819', '1.17', '7.336347387', '1.698277508', '1.530275526');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20S 85', '24.8', '20', '0.653', '7.053', '0.9165', '16.3386', '19.0835', '13.06', '1.650523335', '3.847790507', '25.02082695', '1501.7', '177.0846635', '150.2', '7.78', '47', '0.570131474', '1.38', '6.637682971', '1.901434803', '1.727937299');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20S 81.7', '24.04', '20', '0.75', '6.5', '0.765', '16.7446', '19.235', '15', '2.525580694', '4.248366013', '22.32613333', '1312.5', '159.5213583', '131.2', '7.39', '31.37', '0.558091927', '1.14', '5.647434419', '1.665985104', '1.516426759');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20S 81.4', '23.94', '20', '0.6', '6.75', '0.95', '16.2046', '19.05', '12', '1.516219883', '3.552631579', '27.00766667', '1466.2', '171.115125', '146.6', '7.83', '42.35', '0.57491053', '1.33', '6.436109809', '1.835758789', '1.658793078');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20S 81.4', '23.74', '20', '0.6', '7', '0.9165', '16.3386', '19.0835', '12', '1.528043021', '3.818876159', '27.231', '1466.3', '171.7846635', '146.6', '7.86', '45.8', '0.571978712', '1.39', '6.116894572', '1.899007046', '1.726552428');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20S 80', '23.79', '20', '0.735', '6.485', '0.79', '16.8118', '19.21', '14.7', '2.411928794', '4.10443038', '22.87319728', '1326.4', '160.651025', '132.6', '7.46', '31.74', '0.565677447', '1.15', '5.604654931', '1.670267696', '1.516283412');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20S 80', '23.73', '20', '0.6', '7', '0.9165', '16.3386', '19.0835', '12', '1.528043021', '3.818876159', '27.231', '1466.3', '171.7846635', '146.6', '7.86', '45.81', '0.571853853', '1.39', '6.116894572', '1.899007046', '1.726740906');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20S 80', '23.53', '20', '0.63', '6.75', '0.865', '16.41444', '19.135', '12.6', '1.771114913', '3.901734104', '26.05466667', '1404.4', '164.164212', '140.4', '7.73', '38.84', '0.570777649', '1.28', '5.627886605', '1.805635928', '1.626879146');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20S 80', '23.53', '20', '0.6', '6.75', '0.95', '16.2046', '19.05', '12', '1.516219883', '3.552631579', '27.00766667', '1470.3', '171.115125', '147', '7.9', '42.33', '0.575182162', '1.34', '6.436109809', '1.835758789', '1.656143479');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20S 80', '23.5', '20', '0.6', '7', '0.9', '16.5918', '19.1', '12', '1.580171429', '3.888888889', '27.653', '1449.2', '169.89312', '144.9', '7.85', '45.6', '0.564144737', '1.39', '5.71952106', '1.888618468', '1.733604056');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20S 80', '23.5', '20', '0.69', '6.38', '0.84', '16.6882', '19.16', '13.8', '2.148615092', '3.797619048', '24.1857971', '1345.1', '160.493493', '134.5', '7.55', '33.2', '0.547547742', '1.19', '5.552696603', '1.668632754', '1.537767416');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20S 78', '22.94', '20', '0.6', '6.75', '0.86', '16.5246', '19.14', '12', '1.707968992', '3.924418605', '27.541', '1367.4', '161.123015', '136.7', '7.72', '37.86', '0.582167443', '1.28', '5.223438372', '1.809145182', '1.628028549');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20S 75', '22.32', '20', '0.662', '6.412', '0.79', '16.8118', '19.21', '13.24', '2.197108981', '4.058227848', '25.39546828', '1278.6', '153.351025', '127.9', '7.57', '30.48', '0.569392082', '1.17', '4.80861203', '1.6690558', '1.512937173');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20S 75', '22.1', '20', '0.665', '6.415', '0.765', '16.9118', '19.235', '13.3', '2.291676881', '4.192810458', '25.4312782', '1256', '151.0213583', '125.6', '7.54', '29.8', '0.564746967', '1.16', '4.576478377', '1.659194439', '1.510582363');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20S 75', '22.1', '20', '0.66', '6.16', '0.805', '16.78164', '19.195', '13.2', '2.233581189', '3.826086957', '25.42672727', '1246.9', '150.9011167', '124.7', '7.53', '28.2', '0.556042084', '1.13', '4.802674671', '1.601537979', '1.473229436');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20S 75', '22.06', '20', '0.649', '6.399', '0.7895', '16.8138', '19.2105', '12.98', '2.159963088', '4.052564915', '25.90724191', '1268.8', '151.9985256', '126.9', '7.58', '30.25', '0.569877932', '1.17', '4.676514216', '1.668709315', '1.513164748');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20S 75', '22.06', '20', '0.64', '6.39', '0.79', '16.8118', '19.21', '12.8', '2.131406272', '4.044303797', '26.2684375', '1277.1', '151.151025', '127.8', '7.61', '30.05', '0.57161543', '1.17', '4.595915914', '1.66880344', '1.502814912');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20S 75', '22.06', '20', '0.64', '6.39', '0.7895', '16.8138', '19.2105', '12.8', '2.133009839', '4.046865104', '26.2715625', '1268.8', '151.0985256', '126.9', '7.58', '30.24', '0.567664422', '1.17', '4.590970116', '1.668614285', '1.512914617');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20S 75', '21.9', '20', '0.641', '6.391', '0.7895', '16.8138', '19.2105', '12.82', '2.136008393', '4.047498417', '26.23057722', '1263.5', '151.1985256', '126.3', '7.6', '30.1', '0.570572512', '1.17', '4.600376147', '1.668624392', '1.512989482');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20S 70', '20.84', '20', '0.588', '6.338', '0.79', '16.8118', '19.21', '11.76', '1.974295769', '4.011392405', '28.5914966', '1229.3', '145.951025', '122.9', '7.68', '29.26', '0.572833262', '1.18', '4.139781793', '1.668427458', '1.512202334');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20S 70', '20.6', '20', '0.59', '6.34', '0.765', '16.9118', '19.235', '11.8', '2.057269335', '4.14379085', '28.6640678', '1206', '143.5213583', '120.6', '7.65', '28.5', '0.570037075', '1.18', '3.903275791', '1.659254174', '1.507578286');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20S 70', '20.6', '20', '0.57', '6.07', '0.805', '16.78164', '19.195', '11.4', '1.957603283', '3.770186335', '29.44147368', '1197.6', '141.9011167', '119.8', '7.68', '26.7', '0.561913474', '1.15', '4.007219179', '1.600189055', '1.462535047');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20S 70', '20.59', '20', '0.575', '6.325', '0.7895', '16.8138', '19.2105', '11.5', '1.93607001', '4.00569981', '29.2413913', '1219.8', '144.5985256', '122', '7.7', '29.04', '0.573265579', '1.19', '4.030633339', '1.668206933', '1.512072891');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20S 70', '20.59', '20', '0.57', '6.32', '0.7895', '16.8138', '19.2105', '11.4', '1.920753', '4.002533249', '29.49789474', '1219.7', '144.0985256', '122', '7.7', '29.04', '0.57190713', '1.19', '3.991541968', '1.66819657', '1.512072891');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20S 70', '20.59', '20', '0.56', '6.31', '0.79', '16.8118', '19.21', '11.2', '1.888625248', '3.993670886', '30.02107143', '1229', '143.151025', '122.9', '7.73', '28.87', '0.572910971', '1.18', '3.919884752', '1.668358881', '1.502090623');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20S 70', '20.59', '20', '0.57', '6.27', '0.79', '16.8118', '19.21', '11.4', '1.934614499', '3.96835443', '29.49438596', '1229', '143.39319', '122.9', '7.73', '28.87', '0.562084596', '1.18', '3.979301142', '1.653875963', '1.502090623');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20S 70', '20.42', '20', '0.567', '6.317', '0.7895', '16.8138', '19.2105', '11.34', '1.911551156', '4.000633312', '29.65396825', '1214.2', '143.7985256', '121.4', '7.71', '28.9', '0.573859633', '1.19', '3.968351355', '1.668191835', '1.51214666');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20S 66.67', '19.6', '20', '0.54', '6.29', '0.765', '16.9118', '19.235', '10.8', '1.897892079', '4.111111111', '31.31814815', '1172.7', '138.5213583', '117.3', '7.73', '27.9', '0.568627582', '1.19', '3.526428282', '1.659693414', '1.512461029');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20S 65.4', '19.24', '20', '0.5', '6.25', '0.7895', '16.8138', '19.2105', '10', '1.703741609', '3.958201393', '33.6276', '1174.6', '137.0985256', '117.5', '7.81', '27.98', '0.574067856', '1.21', '3.499873995', '1.668385158', '1.512374194');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20S 65.4', '19.08', '20', '0.5', '6.25', '0.7895', '16.8138', '19.2105', '10', '1.703741609', '3.958201393', '33.6276', '1169.5', '137.0985256', '116.9', '7.83', '27.9', '0.575713929', '1.21', '3.499873995', '1.668385158', '1.514081254');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20S 65', '19.12', '20', '0.5', '6.25', '0.79', '16.8118', '19.21', '10', '1.702460759', '3.955696203', '33.6236', '1179.7', '137.151025', '118', '7.86', '27.72', '0.579819305', '1.2', '3.504700735', '1.668546611', '1.502118842');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20S 65', '19.1', '20', '0.5', '6', '0.805', '16.78164', '19.195', '10', '1.737229814', '3.726708075', '33.56328', '1148.6', '134.9011167', '114.9', '7.76', '25.5', '0.568235294', '1.16', '3.513135266', '1.599811566', '1.459449716');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20S 65', '19.08', '20', '0.5', '6.25', '0.7895', '16.8138', '19.2105', '10', '1.703741609', '3.958201393', '33.6276', '1169.5', '137.0985256', '117', '7.83', '27.86', '0.57654051', '1.21', '3.499873995', '1.668385158', '1.512348785');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20S 64.8', '19.04', '20', '0.5', '6.25', '0.765', '16.9118', '19.235', '10', '1.768554248', '4.08496732', '33.8236', '1145.8', '134.5213583', '114.6', '7.76', '26.7', '0.582920032', '1.18', '3.262735762', '1.660291702', '1.496905622');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20S 64', '18.8', '20', '0.5', '6.25', '0.765', '16.9118', '19.235', '10', '1.768554248', '4.08496732', '33.8236', '1146', '134.5213583', '114.6', '7.8', '27.3', '0.570108602', '1.2', '3.262735762', '1.660291702', '1.513631343');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18S 90', '26.47', '18', '0.807', '7.245', '0.927', '14.38148', '17.073', '14.526', '1.728060696', '3.90776699', '17.82091698', '1260.4', '167.1049736', '140', '6.9', '52', '0.564950391', '1.4', '8.324639867', '1.956820522', '1.78064595');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18S 90', '26.46', '18', '0.82', '7.08', '0.885', '14.3846', '17.115', '14.76', '1.882500559', '4', '17.54219512', '1188', '161.0810073', '132', '6.7', '46.03', '0.568618287', '1.32', '7.911399356', '1.8963603', '1.727455926');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18S 90', '26.29', '18', '0.796', '7.236', '0.927', '14.38148', '17.073', '14.328', '1.706625997', '3.902912621', '18.06718593', '1256.5', '166.2455791', '139.6', '6.91', '51.9', '0.563932085', '1.4', '8.180023121', '1.956449678', '1.781479758');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18S 85', '25', '18', '0.725', '7.163', '0.927', '14.38148', '17.073', '13.05', '1.570243133', '3.863538296', '19.83652414', '1220.7', '160.4629736', '135.6', '6.99', '50', '0.567823467', '1.42', '7.312273851', '1.949839828', '1.774169381');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18S 85', '25', '18', '0.74', '7', '0.885', '14.3846', '17.115', '13.32', '1.718257304', '3.95480226', '19.43864865', '1149.6', '154.6010073', '127.7', '6.78', '44.18', '0.572572431', '1.33', '6.901104496', '1.889949666', '1.720643353');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18S 85', '24.81', '18', '0.714', '7.154', '0.927', '14.38148', '17.073', '12.852', '1.548364207', '3.858683927', '20.14212885', '1216.6', '159.6035791', '135.2', '7', '49.8', '0.567957649', '1.42', '7.190996445', '1.949518192', '1.773234809');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18S 80', '23.53', '18', '0.644', '7.082', '0.927', '14.38148', '17.073', '11.592', '1.410762128', '3.819848975', '22.33149068', '1181', '153.9019736', '131.2', '7.09', '48.1', '0.570454721', '1.43', '6.475798194', '1.943308291', '1.76907214');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18S 80', '23.53', '18', '0.79', '6.66', '0.765', '14.65116', '17.235', '14.22', '2.271765177', '4.352941176', '18.54577215', '1063.4', '141.2671803', '118.2', '6.72', '33.12', '0.568607454', '1.19', '5.970383593', '1.740988111', '1.55391433');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18S 80', '23.5', '18', '0.7', '6.63', '0.915', '14.241', '17.085', '12.6', '1.643250995', '3.62295082', '20.34428571', '1131.2', '149.2528703', '125.7', '6.94', '39.5', '0.562578768', '1.3', '6.679599212', '1.800637363', '1.638413066');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18S 80', '23.34', '18', '0.632', '7.072', '0.927', '14.38148', '17.073', '11.376', '1.38643232', '3.814455232', '22.75550633', '1176.8', '152.9615791', '130.8', '7.1', '47.9', '0.570413415', '1.43', '6.366053241', '1.942961276', '1.768087717');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18S 75.6', '22.04', '18', '0.56', '7', '0.927', '14.38148', '17.073', '10.08', '1.241120173', '3.77562028', '25.68121429', '1141.8', '147.1295791', '126.9', '7.2', '46.3', '0.572284017', '1.45', '5.762677418', '1.937535955', '1.764816708');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18S 75', '22.05', '18', '0.562', '7', '0.927', '14.38148', '17.073', '10.116', '1.245552745', '3.77562028', '25.58982206', '1141.3', '147.2599736', '126.8', '7.19', '46.2', '0.573522727', '1.45', '5.776643187', '1.93709328', '1.763604845');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18S 75', '22.05', '18', '0.71', '6.58', '0.765', '14.65116', '17.235', '12.78', '2.066536266', '4.300653595', '20.63543662', '1023.5', '134.7871803', '113.7', '6.81', '31.67', '0.573468816', '1.2', '5.063180124', '1.737013562', '1.549296163');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18S 75', '22.1', '18', '0.62', '6.55', '0.915', '14.241', '17.085', '11.16', '1.473227381', '3.579234973', '22.96935484', '1091.6', '142.7728703', '121.3', '7.04', '37.4', '0.572917576', '1.3', '5.891536736', '1.79380764', '1.622922923');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18S 75', '21.93', '18', '0.792', '6.332', '0.691', '15.09468', '17.309', '14.256', '2.732311051', '4.581765557', '19.05893939', '957.2', '130.3147353', '106.3', '6.61', '25.6', '0.571057125', '1.08', '5.035448577', '1.606481511', '1.443691307');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18S 70', '20.6', '18', '0.65', '6.37', '0.77', '14.78164', '17.23', '11.7', '1.958870925', '4.136363636', '22.74098462', '973.1', '128.4186453', '108.1', '6.87', '28.8', '0.575884366', '1.18', '4.369602332', '1.687646278', '1.514994436');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18S 70', '20.59', '18', '0.62', '6.5', '0.765', '14.65116', '17.235', '11.16', '1.826791192', '4.248366013', '23.63090323', '981.7', '127.628828', '109.1', '6.91', '30.23', '0.579138066', '1.21', '4.232974889', '1.736081634', '1.54524499');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18S 70', '20.59', '18', '0.719', '6.259', '0.691', '15.09468', '17.309', '12.942', '2.509399471', '4.52894356', '20.99399166', '921.3', '124.4017353', '102.4', '6.69', '24.62', '0.573487039', '1.09', '4.233895879', '1.604890438', '1.442497394');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18S 70', '20.59', '18', '0.705', '6.245', '0.691', '15.09468', '17.309', '12.69', '2.466053746', '4.518813314', '21.41089362', '921.3', '123.2677353', '102.4', '6.69', '24.62', '0.569647349', '1.09', '4.095580677', '1.604648485', '1.442497394');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18S 70', '20.46', '18', '0.711', '6.251', '0.691', '15.09468', '17.309', '12.798', '2.48465426', '4.523154848', '21.23021097', '917.5', '123.7537353', '101.9', '6.7', '24.5', '0.574088984', '1.09', '4.154272549', '1.604749607', '1.442503718');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18S 70', '20.42', '18', '0.709', '6.249', '0.691', '15.09468', '17.309', '12.762', '2.478458057', '4.52170767', '21.29009873', '916.5', '123.5917353', '101.8', '6.7', '24.26', '0.579212037', '1.1', '4.134611349', '1.604715469', '1.436125853');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18S 67', '19.7', '18', '0.56', '6.5', '0.775', '14.73148', '17.225', '10.08', '1.637643434', '4.193548387', '26.30621429', '973.5', '124.536438', '108.2', '7.03', '30.29', '0.585546316', '1.24', '3.82020991', '1.751274933', '1.552746732');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18S 65', '19.12', '18', '0.637', '6.177', '0.691', '15.09468', '17.309', '11.466', '2.252722487', '4.469609262', '23.69651491', '881.5', '117.7597353', '97.9', '6.79', '23.47', '0.578251164', '1.11', '3.489589929', '1.603781438', '1.440410206');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18S 65', '19.12', '18', '0.63', '6.17', '0.69', '15.09868', '17.31', '11.34', '2.234319498', '4.471014493', '23.96615873', '889.73', '117.1015173', '98.9', '6.82', '23.3', '0.579652103', '1.1', '3.425712759', '1.603299696', '1.427951151');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18S 65', '19.12', '18', '0.623', '6.163', '0.691', '15.09468', '17.309', '11.214', '2.208216965', '4.459479016', '24.22902087', '881.5', '116.6257353', '97.9', '6.79', '23.47', '0.574328298', '1.11', '3.377774894', '1.603668958', '1.440410206');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18S 65', '19.1', '18', '0.64', '6.17', '0.705', '15.05868', '17.295', '11.52', '2.215606331', '4.375886525', '23.5291875', '886.1', '119.1653537', '98.5', '6.81', '23.9', '0.577384954', '1.12', '3.614248142', '1.606107881', '1.448525419');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18S 65', '18.98', '18', '0.629', '6.169', '0.691', '15.09468', '17.309', '11.322', '2.227315495', '4.46382055', '23.99790143', '877.7', '117.1117353', '97.5', '6.8', '23.4', '0.577730445', '1.11', '3.425174332', '1.603714314', '1.441207827');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18S 65', '18.92', '18', '0.626', '6.166', '0.691', '15.09468', '17.309', '11.268', '2.217770876', '4.461649783', '24.11290735', '876.2', '116.8687353', '97.4', '6.81', '23.32', '0.578867032', '1.11', '3.401377417', '1.603691099', '1.439480499');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18S 60', '17.65', '18', '0.55', '6.095', '0.691', '15.09468', '17.309', '9.9', '1.971218847', '4.410274964', '27.44487273', '841.8', '110.7724489', '93.5', '6.91', '22.38', '0.582583056', '1.13', '2.862555248', '1.604920754', '1.439279789');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18S 60', '17.65', '18', '0.542', '6.082', '0.691', '15.09468', '17.309', '9.756', '1.946698678', '4.400868307', '27.8499631', '841.8', '110.0647353', '93.5', '6.91', '22.38', '0.578863234', '1.13', '2.810711377', '1.603492537', '1.439279789');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18S 60', '17.64', '18', '0.54', '6.08', '0.69', '15.09868', '17.31', '9.72', '1.943479977', '4.405797101', '27.96051852', '849.88', '109.8115173', '94.4', '6.94', '22.22', '0.581613566', '1.12', '2.791016141', '1.60311561', '1.427314133');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18S 60', '17.6', '18', '0.55', '6.08', '0.705', '15.05868', '17.295', '9.9', '1.932221445', '4.312056738', '27.37941818', '846.5', '111.8753537', '94.1', '6.94', '22.7', '0.581691545', '1.13', '2.957095282', '1.605293176', '1.444319924');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18S 60', '17.5', '18', '0.547', '6.087', '0.691', '15.09468', '17.309', '9.846', '1.963043339', '4.404486252', '27.59539305', '837.8', '110.4697353', '93.1', '6.92', '22.3', '0.58237382', '1.13', '2.841960862', '1.603479075', '1.439788108');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18S 60', '17.43', '18', '0.543', '6.083', '0.691', '15.09468', '17.309', '9.774', '1.94996976', '4.401591896', '27.79867403', '835.9', '110.1457353', '92.9', '6.93', '22.19', '0.584107723', '1.13', '2.816923531', '1.60348958', '1.437777839');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18S 55', '16.2', '18', '0.47', '6', '0.705', '15.05868', '17.295', '8.46', '1.673186667', '4.255319149', '32.03974468', '806.8', '105.3953537', '89.6', '7.08', '21.6', '0.5875', '1.16', '2.503399042', '1.605428594', '1.443836964');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18S 55', '16.2', '18', '0.46', '6', '0.69', '15.09868', '17.31', '8.28', '1.677631111', '4.347826087', '32.82321739', '809', '103.3315173', '89.9', '7.07', '20.82', '0.596541787', '1.13', '2.355016343', '1.60385927', '1.415774392');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18S 55', '16.18', '18', '0.46', '6', '0.691', '15.09468', '17.309', '8.28', '1.674759479', '4.341534009', '32.81452174', '795.6', '103.4227353', '88.4', '7.07', '21.19', '0.586974988', '1.15', '2.362233566', '1.604204657', '1.440324463');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18S 55', '16.13', '18', '0.46', '6', '0.69', '15.09868', '17.31', '8.28', '1.677631111', '4.347826087', '32.82321739', '809.05', '103.3315173', '89.9', '7.08', '21.17', '0.586679263', '1.14', '2.355016343', '1.60385927', '1.427624917');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18S 55', '15.93', '18', '0.46', '6', '0.691', '15.09468', '17.309', '8.28', '1.674759479', '4.341534009', '32.81452174', '795.6', '103.4227353', '88.4', '7.07', '21.19', '0.586974988', '1.15', '2.362233566', '1.604204657', '1.440324463');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18S 54.7', '16.09', '18', '0.46', '6', '0.691', '15.09468', '17.309', '8.28', '1.674759479', '4.341534009', '32.81452174', '789.8', '103.4227353', '88.9', '7.05', '21.42', '0.580672269', '1.15', '2.362233566', '1.604204657', '1.444042063');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18S 54.7', '15.94', '18', '0.46', '6', '0.691', '15.09468', '17.309', '8.28', '1.674759479', '4.341534009', '32.81452174', '795.6', '103.4227353', '88.4', '7.07', '21.2', '0.586698113', '1.15', '2.362233566', '1.604204657', '1.440664282');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18S 48.2', '14.09', '18', '0.38', '7.5', '0.502', '15.97852', '17.498', '6.84', '1.61270587', '7.470119522', '42.04873684', '737.1', '93.25976576', '81.9', '7.23', '30', '0.58828125', '1.46', '1.139834381', '1.984718408', '1.79018488');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18S 48', '14.08', '18', '0.38', '7.5', '0.502', '15.97852', '17.498', '6.84', '1.61270587', '7.470119522', '42.04873684', '737.1', '93.25976576', '81.9', '7.23', '30', '0.58828125', '1.46', '1.139834381', '1.984718408', '1.79018488');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18S 46', '13.53', '18', '0.322', '6', '0.6635', '15.239', '17.3365', '5.796', '1.232594323', '4.521477016', '47.32608696', '733.2', '91.28885418', '81.5', '7.36', '19.9', '0.600150754', '1.21', '1.696339918', '1.639551426', '1.45483402');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18S 46', '13.34', '18', '0.38', '6', '0.555', '15.77964', '17.445', '6.84', '1.80067964', '5.405405405', '41.52536842', '675.1', '85.13532867', '75.1', '7.12', '17.14', '0.582847141', '1.13', '1.211248564', '1.576453106', '1.4109315');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 100', '29.5', '15', '1.17', '6.81', '1.035', '11.21116', '13.965', '17.55', '1.861011045', '3.289855072', '9.582188034', '898.4', '147.260304', '119.8', '5.52', '52.03', '0.523536076', '1.33', '14.62709344', '1.859982157', '1.741421797');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 100', '29.46', '15', '1.192', '6.792', '1.033', '10.82148', '13.967', '17.88', '1.838505434', '3.287512101', '9.078422819', '899.4', '147.7449621', '119.9', '5.53', '50.92', '0.529692364', '1.31', '15.78265047', '1.867393822', '1.722150788');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 100', '29.41', '15', '1.192', '6.792', '1.0335', '10.8362', '13.9665', '17.88', '1.840115609', '3.285921626', '9.090771812', '900.5', '147.7807405', '120.1', '5.53', '50.98', '0.529325036', '1.31', '15.75606683', '1.866894735', '1.721698919');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 100', '29.41', '15', '1.19', '6.79', '1.035', '10.8302', '13.965', '17.85', '1.833890134', '3.280193237', '9.101008403', '898.6', '147.7755533', '119.8', '5.53', '50.84', '0.531083593', '1.31', '15.73500508', '1.867066955', '1.721392213');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 100', '29.41', '15', '1.184', '6.774', '1.043', '10.80148', '13.957', '17.76', '1.810112083', '3.247363375', '9.122871622', '900.5', '147.8733156', '120.1', '5.53', '50.98', '0.529954773', '1.31', '15.75953072', '1.865675154', '1.721113271');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 100', '29.41', '15', '1.17', '6.77', '1.0335', '10.8362', '13.9665', '17.55', '1.812023076', '3.275278181', '9.261709402', '898.6', '146.5432405', '119.8', '5.53', '50.3', '0.531284635', '1.31', '15.25795224', '1.863065338', '1.712317828');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 100', '29.08', '15', '1.167', '6.767', '1.0335', '10.8362', '13.9665', '17.505', '1.808178124', '3.273826802', '9.285518423', '892.4', '146.3744905', '119', '5.54', '50.2', '0.531635591', '1.31', '15.19122117', '1.862543764', '1.716355211');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 95', '28', '15', '1.07', '6.71', '1.035', '11.21116', '13.965', '16.05', '1.727314658', '3.241545894', '10.47771963', '870.3', '141.635304', '116', '5.58', '49.36', '0.527899819', '1.33', '12.60956034', '1.84373629', '1.723709412');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 95', '27.98', '15', '1.094', '6.694', '1.033', '10.82148', '13.967', '16.41', '1.712055951', '3.240077444', '9.89166362', '871.7', '142.2324621', '116.2', '5.58', '48.3', '0.534600141', '1.31', '13.67786318', '1.850362432', '1.703754713');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 95', '27.94', '15', '1.094', '6.694', '1.0335', '10.8362', '13.9665', '16.41', '1.713555381', '3.238509918', '9.90511883', '872.9', '142.2682405', '116.4', '5.59', '48.37', '0.534084866', '1.32', '13.65363483', '1.849898868', '1.703492981');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 95', '27.94', '15', '1.09', '6.69', '1.035', '10.8302', '13.965', '16.35', '1.704890564', '3.231884058', '9.935963303', '871', '142.1505533', '116.1', '5.58', '48.25', '0.53522962', '1.31', '13.59845788', '1.849699459', '1.703483852');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 95', '27.94', '15', '1.085', '6.675', '1.043', '10.80148', '13.957', '16.275', '1.683361637', '3.199904123', '9.955281106', '872.9', '142.3045656', '116.4', '5.59', '48.37', '0.53441764', '1.32', '13.65414632', '1.848339208', '1.702913526');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 95', '27.94', '15', '1.07', '6.67', '1.0335', '10.8362', '13.9665', '16.05', '1.681994126', '3.226898887', '10.12728972', '871.1', '140.9182405', '116.1', '5.58', '47.74', '0.535333377', '1.31', '13.18338836', '1.845761729', '1.694548067');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 95', '27.59', '15', '1.068', '6.668', '1.0335', '10.8362', '13.9665', '16.02', '1.679353766', '3.225931301', '10.14625468', '864.5', '140.8057405', '115.3', '5.6', '47.7', '0.535300476', '1.31', '13.14496843', '1.845417426', '1.699704135');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 90', '26.51', '15', '0.966', '6.596', '1.035', '10.8302', '13.965', '14.49', '1.532472205', '3.18647343', '11.21138716', '844.1', '135.6086143', '112.5', '5.64', '45.8', '0.540425169', '1.32', '11.39319423', '1.837320056', '1.686017003');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 90', '26.5', '15', '0.97', '6.61', '1.035', '11.21116', '13.965', '14.55', '1.589572994', '3.193236715', '11.55789691', '842.2', '136.010304', '112.3', '5.64', '46.87', '0.531457486', '1.33', '10.88391949', '1.82769956', '1.707116149');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 90', '26.47', '15', '0.996', '6.596', '1.0335', '10.8362', '13.9665', '14.94', '1.583234418', '3.19109821', '10.87971888', '845.4', '136.7557405', '112.7', '5.64', '45.91', '0.538348966', '1.32', '11.83836647', '1.83307078', '1.686632573');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 90', '26.47', '15', '0.99', '6.59', '1.035', '10.8302', '13.965', '14.85', '1.571975985', '3.183574879', '10.93959596', '843.4', '136.5255533', '112.5', '5.64', '45.79', '0.53906943', '1.32', '11.76003343', '1.832506356', '1.68583293');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 90', '26.47', '15', '0.987', '6.577', '1.043', '10.80148', '13.957', '14.805', '1.554133308', '3.152924257', '10.94374873', '845.4', '136.7920656', '112.7', '5.65', '45.91', '0.538616056', '1.32', '11.85670448', '1.831343422', '1.686058853');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 90', '26.47', '15', '0.97', '6.57', '1.0335', '10.8362', '13.9665', '14.55', '1.548006913', '3.178519594', '11.17134021', '843.5', '135.2932405', '112.5', '5.65', '45.3', '0.539171765', '1.31', '11.4020939', '1.828635912', '1.676878648');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 90', '26.12', '15', '0.97', '6.57', '1.0335', '10.8362', '13.9665', '14.55', '1.548006913', '3.178519594', '11.17134021', '837', '135.2932405', '111.6', '5.66', '45.2', '0.540364623', '1.32', '11.4020939', '1.828635912', '1.681767344');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 85.1', '25.03', '15', '0.91', '6.71', '0.925', '11.0902', '14.075', '13.65', '1.625984936', '3.627027027', '12.18703297', '789.24', '126.6105067', '105.23', '5.61', '42.56', '0.547175228', '1.3', '9.028227455', '1.850060777', '1.687097681');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 85', '25', '15', '0.87', '6.51', '1.035', '11.21116', '13.965', '13.05', '1.447599635', '3.144927536', '12.8863908', '814', '130.385304', '108.5', '5.71', '44.56', '0.534019219', '1.34', '9.425482924', '1.811888587', '1.693414188');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 85', '25', '15', '0.9', '6.5', '1.035', '10.8302', '13.965', '13.5', '1.448856187', '3.140096618', '12.03355556', '815.9', '131.4630533', '108.8', '5.71', '43.46', '0.545016251', '1.32', '10.3402837', '1.817192682', '1.670074656');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 85', '25', '15', '0.898', '6.498', '1.0335', '10.8362', '13.9665', '13.47', '1.448982568', '3.143686502', '12.06703786', '817.8', '131.2432405', '109', '5.72', '43.57', '0.542351438', '1.32', '10.28747253', '1.816423053', '1.670741753');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 85', '25.04', '15', '0.898', '6.498', '1.033', '10.8382', '13.967', '13.47', '1.449951478', '3.145208132', '12.06926503', '816.5', '131.2074621', '108.9', '5.71', '43.5', '0.542961379', '1.32', '10.27961916', '1.816279149', '1.6701953');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 85', '25', '15', '0.889', '6.479', '1.043', '10.80148', '13.957', '13.335', '1.420995617', '3.105944391', '12.15014623', '817.8', '131.2795656', '109', '5.72', '43.57', '0.542549593', '1.32', '10.32154615', '1.814524178', '1.670173438');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 85', '25', '15', '0.87', '6.47', '1.0335', '10.8362', '13.9665', '13.05', '1.4098779', '3.1301403', '12.4554023', '815.9', '129.6682405', '108.8', '5.71', '42.96', '0.542972462', '1.31', '9.889644366', '1.811701596', '1.660529073');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 85', '24.65', '15', '0.872', '6.472', '1.0335', '10.8362', '13.9665', '13.08', '1.412682312', '3.131107886', '12.42683486', '809.4', '129.7807405', '107.9', '5.73', '42.9', '0.544236254', '1.32', '9.917420323', '1.81203831', '1.666275155');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 81.3', '23.91', '15', '0.8', '6.4', '1.0335', '10.8362', '13.9665', '12', '1.310619255', '3.096274794', '13.54525', '795.5', '125.7307405', '106.1', '5.78', '41.76', '0.540640613', '1.32', '8.977449434', '1.799969574', '1.657873341');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 81.3', '23.81', '15', '0.8', '6.4', '1.035', '10.8302', '13.965', '12', '1.307995169', '3.09178744', '13.53775', '795.5', '125.8380533', '106.1', '5.78', '41.8', '0.540907177', '1.32', '9.000736036', '1.800368897', '1.658578079');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 81.3', '23.57', '15', '0.8', '6.4', '1.0335', '10.8362', '13.9665', '12', '1.310619255', '3.096274794', '13.54525', '789.1', '125.7307405', '105.2', '5.79', '41.3', '0.546662276', '1.32', '8.977449434', '1.799969574', '1.655754526');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 80', '23.81', '15', '0.81', '6.4', '1.043', '10.80148', '13.957', '12.15', '1.310702121', '3.068072867', '13.33516049', '795.5', '126.8358156', '106.1', '5.78', '41.76', '0.545610217', '1.32', '9.258939807', '1.801103512', '1.657309403');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 80', '23.6', '15', '0.84', '6.465', '1.0005', '11.245', '13.9995', '12.6', '1.460337117', '3.230884558', '13.38690476', '787.4', '125.9706431', '105', '5.78', '42.1', '0.535130049', '1.34', '8.574334654', '1.795949306', '1.675281');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 80', '23.57', '15', '0.8', '6.4', '1.035', '10.8302', '13.965', '12', '1.307995169', '3.09178744', '13.53775', '789.1', '125.8380533', '105.2', '5.79', '41.31', '0.547323166', '1.32', '9.000736418', '1.800368897', '1.655866042');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 80', '23.56', '15', '0.982', '6.392', '0.815', '11.64132', '14.185', '14.73', '2.194417915', '3.921472393', '11.85470468', '719.3', '117.689999', '95.9', '5.53', '32.5', '0.545762009', '1.18', '8.125016116', '1.699655557', '1.550358195');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 80', '23.54', '15', '0.83', '6.63', '0.93', '11.31444', '14.07', '12.45', '1.523051817', '3.564516129', '13.63185542', '773.84', '122.46972', '103.2', '5.73', '40.69', '0.555078745', '1.32', '7.717382804', '1.831542419', '1.665467059');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 80', '23.53', '15', '0.8', '6.4', '1.0335', '10.8362', '13.9665', '12', '1.310619255', '3.096274794', '13.54525', '795.5', '125.7307405', '106.1', '5.78', '41.76', '0.540640613', '1.32', '8.977449827', '1.799969574', '1.657873341');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 80', '23.53', '15', '0.98', '6.39', '0.815', '11.64132', '14.185', '14.7', '2.190634062', '3.920245399', '11.87889796', '718.8', '117.577499', '95.8', '5.53', '32.46', '0.545921781', '1.17', '8.094456038', '1.699413352', '1.550212289');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 80', '23.5', '15', '0.77', '6.41', '1.035', '11.21116', '13.965', '11.55', '1.30119653', '3.096618357', '14.55994805', '785.9', '124.760304', '104.8', '5.82', '42.2', '0.53829549', '1.35', '8.208850912', '1.796321819', '1.676799193');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 80', '23.5', '15', '0.91', '6.39', '0.9', '11.61836', '14.1', '13.65', '1.838412033', '3.55', '12.76742857', '747.8', '120.648144', '99.7', '5.64', '37', '0.528886052', '1.25', '7.886452534', '1.731035518', '1.617513229');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 75', '22.1', '15', '0.84', '6.34', '0.9', '11.69836', '14.1', '12.6', '1.722156046', '3.522222222', '13.92661905', '728.4', '116.9920167', '97.1', '5.74', '35.84', '0.533287048', '1.27', '6.918188333', '1.724976826', '1.613128425');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 75', '22.1', '15', '0.67', '6.31', '1.035', '11.21116', '13.965', '10.05', '1.150153073', '3.048309179', '16.73307463', '757.7', '119.135304', '101', '5.86', '40.1', '0.540384407', '1.35', '7.208098449', '1.781019792', '1.665010481');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 75', '22.1', '15', '0.81', '6.29', '0.9', '11.61836', '14.1', '12.15', '1.662404452', '3.494444444', '14.34365432', '720.4', '115.023144', '96', '5.72', '34.6', '0.539432491', '1.25', '6.652643064', '1.718168654', '1.594031838');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 75', '22.08', '15', '0.884', '6.292', '0.815', '11.64132', '14.185', '13.26', '2.006818841', '3.860122699', '13.16891403', '691.8', '112.1544112', '92.2', '5.6', '30.7', '0.55106665', '1.18', '6.74999076', '1.687381221', '1.536750629');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 75', '22.06', '15', '0.882', '6.292', '0.8155', '11.63932', '14.1845', '13.23', '2.000707104', '3.857755978', '13.19650794', '691.2', '112.1007573', '92.2', '5.6', '30.68', '0.551764184', '1.18', '6.730635316', '1.687925838', '1.536222901');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 75', '22.05', '15', '0.73', '6.53', '0.93', '11.31444', '14.07', '10.95', '1.360065405', '3.510752688', '15.49923288', '745.99', '116.84472', '99.5', '5.82', '38.64', '0.558475504', '1.32', '6.623382031', '1.817683255', '1.652871417');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 75', '22.05', '15', '0.62', '6.375', '1.06', '11.29836', '13.94', '9.3', '1.036623485', '3.007075472', '18.22316129', '757.7', '119.8285835', '101', '5.86', '40.1', '0.570717006', '1.35', '7.111032782', '1.809088271', '1.663519471');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 75', '21.85', '15', '0.868', '6.278', '0.8155', '11.63932', '14.1845', '13.02', '1.973340625', '3.849172287', '13.40935484', '687.2', '111.3132573', '91.6', '5.61', '30.6', '0.549522181', '1.18', '6.554915991', '1.686286056', '1.539235228');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 70.4', '20.7', '15', '0.76', '6.36', '0.805', '11.6846', '14.195', '11.4', '1.734500566', '3.950310559', '15.37447368', '654.09', '106.6626133', '87.21', '5.62', '30.9', '0.558505561', '1.22', '5.32429775', '1.725843618', '1.585801401');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 70', '20.61', '15', '0.786', '6.196', '0.815', '11.64132', '14.185', '11.79', '1.811989829', '3.801226994', '14.81083969', '664.2', '106.664999', '88.6', '5.68', '29.03', '0.556497931', '1.19', '5.613921252', '1.67666693', '1.524425936');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 70', '20.6', '15', '0.63', '6.43', '0.93', '11.31444', '14.07', '9.45', '1.192009432', '3.456989247', '17.95942857', '718.71', '111.21972', '95.8', '5.91', '36.73', '0.56093649', '1.33', '5.735737145', '1.804154214', '1.642327483');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 70', '20.6', '15', '0.64', '6.265', '1.0005', '11.245', '13.9995', '9.6', '1.148156967', '3.130934533', '17.5703125', '731.1', '114.7206431', '97.48', '5.95', '37.8', '0.542384504', '1.35', '6.506686976', '1.766200667', '1.647515102');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 70', '20.6', '15', '0.74', '6.24', '0.9', '11.69836', '14.1', '11.1', '1.54145057', '3.466666667', '15.80859459', '700.3', '111.3670167', '93.4', '5.83', '33.94', '0.536912104', '1.28', '5.853428287', '1.712657848', '1.600578723');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 70', '20.6', '15', '0.72', '6.2', '0.9', '11.61836', '14.1', '10.8', '1.499143226', '3.444444444', '16.13661111', '692.8', '109.960644', '92.4', '5.8', '32.5', '0.549987692', '1.26', '5.736652119', '1.706907327', '1.574708796');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 70', '20.59', '15', '0.784', '6.194', '0.8155', '11.63932', '14.1845', '11.76', '1.806543838', '3.797670141', '14.84607143', '663.6', '106.5882573', '88.5', '5.68', '29', '0.556875773', '1.19', '5.597925226', '1.676619765', '1.524471753');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 70', '20.38', '15', '0.77', '6.18', '0.8155', '11.63932', '14.1845', '11.55', '1.77830354', '3.78908645', '15.116', '659.6', '105.8007573', '87.9', '5.69', '28.8', '0.556949293', '1.19', '5.453986464', '1.675038477', '1.524382043');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 69.2', '20.38', '15', '0.6', '6.4', '0.925', '11.4246', '14.075', '9', '1.157898649', '3.459459459', '19.041', '710', '109.1730067', '94.67', '5.9', '36.23', '0.557740362', '1.33', '5.359071124', '1.79647257', '1.641108075');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 69.2', '20.36', '15', '0.671', '6.171', '0.9375', '11.371', '14.0625', '10.065', '1.318846821', '3.2912', '16.94634873', '698.3', '110.1890625', '93.11', '5.86', '33.8', '0.543175245', '1.29', '5.896834973', '1.720360822', '1.597630918');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 66.67', '19.7', '15', '0.65', '6.13', '0.9', '11.61836', '14.1', '9.75', '1.368847925', '3.405555556', '17.8744', '676.3', '106.023144', '90.1', '5.87', '31.7', '0.544983589', '1.27', '5.138734433', '1.698374529', '1.574931952');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 66.67', '19.6', '15', '0.67', '6.17', '0.9', '11.69836', '14.1', '10.05', '1.411471493', '3.427777778', '17.46023881', '681.4', '107.4295167', '90.9', '5.9', '32.67', '0.539222022', '1.29', '5.233250473', '1.704277316', '1.591795176');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 65', '19.14', '15', '0.688', '6.098', '0.815', '11.64132', '14.185', '10.32', '1.611556874', '3.741104294', '16.92052326', '636.6', '101.152499', '84.9', '5.77', '27.44', '0.561247624', '1.2', '4.689177862', '1.665793155', '1.514041853');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 65', '19.12', '15', '0.686', '6.096', '0.8155', '11.63932', '14.1845', '10.29', '1.60613779', '3.737584304', '16.96693878', '636', '101.0757573', '84.8', '5.77', '27.42', '0.561448782', '1.2', '4.677185649', '1.665739981', '1.514355423');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 65', '19.11', '15', '0.65', '6.27', '0.805', '11.7082', '14.195', '9.75', '1.507787255', '3.894409938', '18.01261538', '646.58', '100.6786447', '86.2', '5.82', '29.13', '0.567644942', '1.23', '4.357650875', '1.719426212', '1.548707174');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 65', '19.1', '15', '0.62', '6.1', '0.9', '11.61836', '14.1', '9.3', '1.312091658', '3.388888889', '18.73929032', '665.3', '104.335644', '88.7', '5.9', '30.7', '0.554513844', '1.27', '4.910621097', '1.694781832', '1.562075196');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 65', '18.91', '15', '0.672', '6.082', '0.8155', '11.63932', '14.1845', '10.08', '1.576981143', '3.729000613', '17.32041667', '632.1', '100.2882573', '84.3', '5.78', '27.2', '0.562099324', '1.2', '4.561514347', '1.664222936', '1.512734399');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 60.8', '17.88', '15', '0.59', '6', '0.8155', '11.63932', '14.1845', '8.85', '1.403474106', '3.678724709', '19.72766102', '612.9', '95.6757573', '81.7', '5.86', '25.96', '0.565446841', '1.21', '3.956873996', '1.655536493', '1.50118195');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 60.8', '17.68', '15', '0.59', '6', '0.8155', '11.63932', '14.1845', '8.85', '1.403474106', '3.678724709', '19.72766102', '609', '95.6757573', '81.2', '5.87', '26', '0.564576923', '1.21', '3.956873996', '1.655536493', '1.506956366');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 60', '17.67', '15', '0.59', '6', '0.8155', '11.63932', '14.1845', '8.85', '1.403474106', '3.678724709', '19.72766102', '609', '95.6757573', '81.2', '5.87', '25.96', '0.565446841', '1.21', '3.956873996', '1.655536493', '1.505796722');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 60', '17.65', '15', '0.75', '5.84', '0.62', '12.36228', '14.38', '11.25', '2.56067996', '4.709677419', '16.48304', '538.6', '87.493081', '71.8', '5.52', '18.17', '0.566361936', '1.01', '3.497654612', '1.501263359', '1.348899789');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 60', '17.64', '15', '0.55', '6.17', '0.805', '11.7082', '14.195', '8.25', '1.29649778', '3.832298137', '21.28763636', '619.02', '95.05364467', '82.5', '5.92', '27.6', '0.570901316', '1.25', '3.681652603', '1.70958206', '1.540920622');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 60', '17.64', '15', '0.5', '6.125', '0.86', '11.71836', '14.14', '7.5', '1.112326531', '3.561046512', '23.43672', '644', '96.45225', '85.9', '6.04', '30.4', '0.541703823', '1.32', '3.822884312', '1.715187886', '1.581793974');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 60', '17.6', '15', '0.54', '6.04', '0.9', '11.69836', '14.1', '8.1', '1.162088742', '3.355555556', '21.66362963', '644', '100.1170167', '85.9', '6.04', '30.4', '0.543623842', '1.32', '4.320643039', '1.689296371', '1.579555057');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 60', '17.6', '15', '0.52', '6', '0.9', '11.61836', '14.1', '7.8', '1.118805037', '3.333333333', '22.343', '637.7', '98.710644', '85', '6.02', '29.2', '0.554794521', '1.29', '4.260509868', '1.683102842', '1.556239812');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 59', '17.3', '15', '0.468', '5.968', '0.9375', '11.371', '14.0625', '7.02', '0.951139946', '3.182933333', '24.29700855', '640.9', '98.7703125', '85.3', '6.08', '30.3', '0.548067242', '1.32', '4.501709134', '1.693702201', '1.580385617');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 57.6', '16.95', '15', '0.5', '6.1', '0.805', '11.6846', '14.195', '7.5', '1.189756644', '3.788819876', '23.3692', '583.78', '92.03761333', '77.84', '5.87', '26.95', '0.564995996', '1.26', '3.406973955', '1.699581747', '1.567583457');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 56.9', '16.74', '15', '0.6', '5.95', '0.695', '11.9246', '14.305', '9', '1.730188018', '4.28057554', '19.87433333', '560.79', '86.871755', '74.77', '5.79', '21.5', '0.567434838', '1.13', '3.04385936', '1.605346183', '1.434116633');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 56.5', '16.7', '15', '0.572', '5.892', '0.703', '12.1434', '14.297', '8.58', '1.676942866', '4.190611664', '21.22972028', '543.7', '85.57213083', '72.5', '5.71', '21.1', '0.567910421', '1.12', '2.785485948', '1.589313908', '1.442379978');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 55', '16.2', '15', '0.55', '5.85', '0.75', '12.0554', '14.25', '8.25', '1.511218234', '3.9', '21.91890909', '557.8', '87.51058333', '74.4', '5.87', '22.23', '0.562870066', '1.17', '2.972149582', '1.594827904', '1.459068555');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 55', '16.2', '15', '0.55', '5.85', '0.75', '12.03868', '14.25', '8.25', '1.509122279', '3.9', '21.88850909', '557.3', '87.51058333', '74.3', '5.87', '22.2', '0.563630701', '1.17', '2.980621775', '1.595334188', '1.45906458');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 55', '16.18', '15', '0.665', '5.755', '0.622', '12.35428', '14.378', '9.975', '2.2951093', '4.626205788', '18.57786466', '511', '82.85045545', '68.1', '5.62', '17.06', '0.579116709', '1.02', '2.828172272', '1.498430308', '1.341992842');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 55', '16.18', '15', '0.664', '5.754', '0.622', '12.35428', '14.378', '9.96', '2.29205628', '4.625401929', '18.60584337', '511', '82.79420545', '68.1', '5.62', '17.06', '0.578814876', '1', '2.821006726', '1.498389427', '1.341992842');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 55', '16.18', '15', '0.656', '5.746', '0.622', '12.35428', '14.378', '9.84', '2.267593864', '4.618971061', '18.8327439', '511', '82.34420545', '68.1', '5.62', '17.06', '0.576403988', '1.02', '2.764359646', '1.498065867', '1.341992842');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 55', '16.17', '15', '0.58', '5.92', '0.68', '12.10524', '14.32', '8.7', '1.744097576', '4.352941176', '20.87110345', '542.84', '84.537632', '72.4', '5.79', '20.34', '0.578018633', '1.12', '2.737209296', '1.591555927', '1.418282363');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 55', '16.06', '15', '0.648', '5.738', '0.622', '12.35428', '14.378', '9.72', '2.243063236', '4.612540193', '19.06524691', '508.7', '81.89420545', '67.8', '5.63', '17', '0.576025685', '1.03', '2.708906877', '1.497748548', '1.342591383');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 52.9', '15.56', '15', '0.6', '5.79', '0.6', '12.2918', '14.4', '9', '2.122936097', '4.825', '20.48633333', '497.68', '78.529147', '66.36', '5.65', '17.08', '0.568221718', '1.05', '2.35128601', '1.521057504', '1.361309868');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 50', '14.84', '15', '0.566', '5.656', '0.622', '12.35428', '14.378', '8.49', '1.98762333', '4.546623794', '21.82734982', '489.2', '77.28170545', '65.2', '5.74', '16.13', '0.581437413', '1.04', '2.206114415', '1.494871207', '1.333606267');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 50', '14.71', '15', '0.567', '5.657', '0.622', '12.35428', '14.378', '8.505', '1.990783055', '4.547427653', '21.78885362', '483.4', '77.33795545', '64.5', '5.73', '16.04', '0.585010028', '1.04', '2.211558707', '1.494902018', '1.337077456');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 50', '14.71', '15', '0.558', '5.648', '0.622', '12.35428', '14.378', '8.37', '1.962305252', '4.540192926', '22.14028674', '483.4', '76.83170545', '64.5', '5.73', '16.04', '0.582222304', '1.04', '2.16314155', '1.494628666', '1.337077456');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 50', '14.7', '15', '0.48', '5.82', '0.68', '12.10524', '14.32', '7.2', '1.468191631', '4.279411765', '25.21925', '515.22', '78.912632', '68.7', '5.92', '19.2', '0.581829038', '1.14', '2.225291648', '1.58640215', '1.41458405');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 50', '14.7', '15', '0.45', '5.75', '0.75', '12.0554', '14.25', '6.75', '1.257954783', '3.833333333', '26.78977778', '529.7', '81.88558333', '70.6', '6', '21', '0.565801711', '1.2', '2.492534664', '1.58802129', '1.45579335');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 50', '14.59', '15', '0.55', '5.64', '0.622', '12.35428', '14.378', '8.25', '1.93691535', '4.533762058', '22.46232727', '481.1', '76.38170545', '64.2', '5.74', '16', '0.581201154', '1.05', '2.121192472', '1.494393204', '1.338525715');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 49.3', '14.49', '15', '0.45', '5.8', '0.695', '12.0918', '14.305', '6.75', '1.349866038', '4.172661871', '26.87066667', '518.61', '78.434255', '69.15', '5.98', '19.71', '0.573325047', '1.17', '2.180801835', '1.591366073', '1.427828851');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 48', '14.1', '15', '0.406', '5.726', '0.703', '12.1434', '14.297', '6.09', '1.224784455', '4.07254623', '29.90985222', '459.9', '76.23463083', '66.1', '5.93', '19.2', '0.572831486', '1.16', '2.032401679', '1.580709423', '1.440977984');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 47.5', '14.1', '15', '0.542', '5.642', '0.5625', '12.4554', '14.4375', '8.13', '2.127165875', '5.015111111', '22.9804428', '451.1', '71.8453125', '60.1', '5.66', '14.5', '0.580593974', '1.01', '1.807081081', '1.476698315', '1.319707746');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 45', '13.37', '15', '0.468', '5.558', '0.622', '12.35428', '14.378', '7.02', '1.67245471', '4.467845659', '26.39803419', '461.6', '71.76920545', '61.5', '5.88', '15.17', '0.586650149', '1.07', '1.746928025', '1.492406182', '1.331648102');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 45', '13.24', '15', '0.469', '5.559', '0.622', '12.35428', '14.378', '7.035', '1.675726833', '4.468649518', '26.3417484', '455.8', '71.82545545', '60.8', '5.87', '15', '0.593619149', '1.06', '1.750913862', '1.492425543', '1.331766486');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 45', '13.24', '15', '0.46', '5.55', '0.622', '12.35428', '14.378', '6.9', '1.646235277', '4.461414791', '26.85713043', '455.9', '71.31920545', '60.8', '5.87', '15.09', '0.587217309', '1.07', '1.715525585', '1.492255805', '1.335755811');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 45', '13.23', '15', '0.45', '5.54', '0.62', '12.36228', '14.38', '6.75', '1.619606964', '4.467741935', '27.47173333', '460.3', '70.618081', '61.4', '5.9', '14.97', '0.586837607', '1.06', '1.665934113', '1.491370777', '1.324009678');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 45', '13.2', '15', '0.48', '5.58', '0.59', '12.3954', '14.41', '7.2', '1.807238928', '4.728813559', '25.82375', '446.6', '70.29832', '59.5', '5.82', '14.72', '0.580317346', '1.06', '1.650243678', '1.486163317', '1.335095754');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 45', '13.2', '15', '0.46', '5.56', '0.59', '12.479', '14.41', '6.9', '1.749890257', '4.711864407', '27.12826087', '446.1', '69.17332', '59.5', '5.88', '14.5', '0.582810192', '1.06', '1.543627619', '1.483356704', '1.325081256');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 45', '13.12', '15', '0.452', '5.542', '0.622', '12.35428', '14.378', '6.78', '1.619940147', '4.454983923', '27.33247788', '453.6', '70.86920545', '60.5', '5.88', '15', '0.588189739', '1.07', '1.684973989', '1.492113507', '1.335064303');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 42.9', '12.62', '15', '0.41', '5.5', '0.622', '12.35428', '14.378', '6.15', '1.480635721', '4.421221865', '30.13239024', '444.3', '68.50670545', '59.2', '5.93', '14.62', '0.589861206', '1.08', '1.537974329', '1.491502609', '1.332438199');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 42.9', '12.49', '15', '0.41', '5.5', '0.622', '12.35428', '14.378', '6.15', '1.480635721', '4.421221865', '30.13239024', '441.8', '68.50670545', '58.9', '5.95', '14.6', '0.590669235', '1.08', '1.537974329', '1.491502609', '1.334913184');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 42.4', '12.48', '15', '0.41', '5.5', '0.62', '12.36228', '14.38', '6.15', '1.486373842', '4.435483871', '30.15190244', '441.8', '68.368081', '58.9', '5.95', '14.62', '0.587964546', '1.08', '1.526728622', '1.490836491', '1.3359201');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 42', '12.48', '15', '0.41', '5.5', '0.622', '12.35428', '14.378', '6.15', '1.480635721', '4.421221865', '30.13239024', '441.8', '68.50670545', '58.9', '5.95', '14.62', '0.589861206', '1.08', '1.537974329', '1.491502609', '1.335827195');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 42', '12.4', '15', '0.4', '5.5', '0.59', '12.479', '14.41', '6', '1.538243451', '4.661016949', '31.1975', '429.6', '65.79832', '57.3', '5.9', '14', '0.584293155', '1.08', '1.340493656', '1.48353873', '1.326794613');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 42', '12.35', '15', '0.41', '5.5', '0.62', '12.36228', '14.38', '6.15', '1.486373842', '4.435483871', '30.15190244', '443.71', '68.368081', '59.2', '5.99', '14.43', '0.595706283', '1.08', '1.526728622', '1.490836491', '1.323843835');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 41.2', '12.11', '15', '0.37', '5.56', '0.6', '12.2918', '14.4', '5.55', '1.363299161', '4.633333333', '33.22108108', '433', '65.591647', '57.73', '5.98', '14.85', '0.578719246', '1.11', '1.365100539', '1.517336519', '1.360907778');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 41', '12.05', '15', '0.4', '5.5', '0.59', '12.3954', '14.41', '6', '1.527938367', '4.661016949', '30.9885', '424.1', '65.79832', '56.5', '5.94', '14', '0.584293155', '1.08', '1.365331059', '1.485932519', '1.336154832');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 41', '12', '15', '0.4', '5.5', '0.59', '12.3954', '14.41', '6', '1.527938367', '4.661016949', '30.9885', '424.1', '65.79832', '56.6', '5.94', '14', '0.584293155', '1.08', '1.365331059', '1.485932519', '1.334973961');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 39', '11.5', '15', '0.375', '5.475', '0.5625', '12.4554', '14.4375', '5.625', '1.516639269', '4.866666667', '33.2144', '403.3', '62.4515625', '53.8', '5.92', '13.1', '0.587249094', '1.06', '1.178060034', '1.47795362', '1.325792356');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 37.5', '10.91', '15', '0.332', '6.75', '0.456', '13.1694', '14.544', '4.98', '1.420481092', '7.401315789', '39.66686747', '405.5', '61.19398472', '54.1', '6.1', '19.9', '0.58727544', '1.35', '0.72459586', '1.810900692', '1.635516164');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 37.3', '10.91', '15', '0.332', '6.75', '0.456', '13.1694', '14.544', '4.98', '1.420481092', '7.401315789', '39.66686747', '405.5', '61.19398472', '54.1', '6.1', '19.9', '0.58727544', '1.35', '0.72459586', '1.810900692', '1.635516164');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 36', '10.63', '15', '0.289', '5.5', '0.588', '12.5126', '14.412', '4.335', '1.118163698', '4.676870748', '43.29619377', '405.1', '60.33380442', '54', '6.17', '13.5', '0.60387963', '1.13', '1.085767437', '1.516745024', '1.342199687');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 36', '10.59', '15', '0.34', '5.56', '0.5125', '12.66516', '14.4875', '5.1', '1.511196491', '5.424390244', '37.25047059', '381.5', '57.81343194', '50.9', '6', '12', '0.611724328', '1.07', '0.904141004', '1.495567522', '1.306813037');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 36', '10.59', '15', '0.289', '5.5', '0.588', '12.5126', '14.412', '4.335', '1.118163698', '4.676870748', '43.29619377', '405.1', '60.33380442', '54', '6.17', '13.5', '0.60387963', '1.13', '1.085767437', '1.516745024', '1.342199687');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 36', '10.59', '15', '0.289', '5.5', '0.588', '12.5126', '14.412', '4.335', '1.118163698', '4.676870748', '43.29619377', '400.9', '60.33380442', '53.4', '6.15', '13.5', '0.60387963', '1.13', '1.085767437', '1.516745024', '1.349719072');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 35', '10.22', '15', '0.33', '5.5', '0.49', '13.02324', '14.51', '4.95', '1.594682449', '5.612244898', '39.46436364', '367.9', '55.27656567', '49', '6', '11.56', '0.587685626', '1.06', '0.736383298', '1.465061707', '1.308276636');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15S 33', '9.71', '15', '0.28', '5.5', '0.5125', '12.66516', '14.4875', '4.2', '1.258091282', '5.365853659', '45.23271429', '365', '54.43843194', '48.7', '6.13', '11.6', '0.612551634', '1.09', '0.787805339', '1.499841505', '1.313548887');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12S 66.9', '19.68', '12', '0.85', '6.04', '0.895', '8.5246', '11.105', '10.2', '1.340395501', '3.374301676', '10.02894118', '403.38', '82.117497', '67.23', '4.53', '29.74', '0.552600967', '1.23', '6.376354626', '1.703818137', '1.56723171');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12S 65', '19.12', '12', '0.8', '5.99', '0.885', '8.57148', '11.115', '9.6', '1.293527631', '3.384180791', '10.71435', '403.48', '79.772893', '67.3', '4.59', '28.93', '0.547890863', '1.23', '5.764719492', '1.691520969', '1.545633138');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12S 65', '19.1', '12', '0.88', '6.25', '0.795', '8.979', '11.205', '10.56', '1.590243019', '3.93081761', '10.20340909', '393.3', '79.416973', '65.6', '4.55', '28.8', '0.561608209', '1.23', '5.557943684', '1.726017271', '1.56832208');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12S 60', '17.7', '12', '0.848', '5.973', '0.6565', '9.351', '11.3435', '10.176', '2.022211911', '4.549124143', '11.02712264', '338', '68.63385613', '56.3', '4.37', '21.03', '0.554359834', '1.09', '4.034226854', '1.5996953', '1.455539443');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12S 60', '17.64', '12', '0.68', '5.87', '0.885', '8.57148', '11.115', '8.16', '1.121975457', '3.316384181', '12.60511765', '385.77', '75.452893', '64.3', '4.68', '26.96', '0.553294611', '1.24', '4.801972753', '1.670268342', '1.526490807');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12S 60', '17.64', '12', '0.948', '5.738', '0.66', '9.21868', '11.34', '11.376', '2.307664121', '4.346969697', '9.724345992', '339.46', '69.91440933', '56.6', '4.39', '18.86', '0.550937879', '1.03', '5.051743612', '1.521510516', '1.374529794');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12S 60', '17.6', '12', '0.75', '6.12', '0.795', '8.979', '11.205', '9', '1.384110248', '3.849056604', '11.972', '375.7', '74.736973', '62.6', '4.63', '26.9', '0.564531096', '1.24', '4.414288939', '1.706276472', '1.551600483');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12S 56.7', '16.7', '12', '0.81', '5.92', '0.69', '9.279', '11.31', '9.72', '1.839989718', '4.289855072', '11.45555556', '341.8', '68.97643867', '57', '4.52', '21.5', '0.554874166', '1.13', '3.922228265', '1.602662361', '1.460488383');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12S 56.67', '16.7', '12', '0.807', '5.917', '0.69', '9.279', '11.31', '9.684', '1.834104386', '4.287681159', '11.49814126', '341.4', '68.86843867', '56.9', '4.52', '21.4', '0.556619964', '1.13', '3.897350404', '1.602288701', '1.458367771');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12S 55.5', '16.32', '12', '0.56', '5.75', '0.895', '8.6918', '11.105', '6.72', '0.945816468', '3.212290503', '15.52107143', '362.88', '71.677497', '60.48', '4.71', '25.31', '0.560212994', '1.24', '4.057734113', '1.64774716', '1.524349192');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12S 55', '16.25', '12', '0.828', '5.618', '0.66', '9.21868', '11.34', '9.936', '2.058606816', '4.256060606', '11.1336715', '321.89', '65.59440933', '53.6', '4.45', '17.54', '0.556004498', '1.04', '3.875887315', '1.50625481', '1.362146846');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12S 55', '16.18', '12', '0.828', '5.618', '0.6595', '9.22068', '11.3405', '9.936', '2.060614504', '4.259287339', '11.13608696', '321', '65.56914847', '53.5', '4.45', '17.46', '0.55812891', '1.04', '3.872884375', '1.506037708', '1.360336441');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12S 55', '16.18', '12', '0.822', '5.612', '0.6595', '9.22068', '11.3405', '9.864', '2.047869631', '4.254738438', '11.21737226', '321', '65.35314847', '53.5', '4.45', '17.46', '0.556342582', '1.04', '3.821241211', '1.505290857', '1.360336441');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12S 55', '16.17', '12', '0.56', '5.75', '0.885', '8.57148', '11.115', '6.72', '0.943262845', '3.248587571', '15.30621429', '368.06', '71.132893', '61.3', '4.77', '25.12', '0.558143567', '1.25', '4.058075976', '1.649321491', '1.509104506');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12S 55', '16.1', '12', '0.63', '6', '0.795', '8.979', '11.205', '7.56', '1.18590566', '3.773584906', '14.25238095', '358.1', '70.416973', '59.7', '4.72', '25.2', '0.567857143', '1.25', '3.609030239', '1.688490873', '1.537814804');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12S 55', '16.04', '12', '0.81', '5.6', '0.6595', '9.22068', '11.3405', '9.72', '2.022297953', '4.245640637', '11.38355556', '319.3', '64.92114847', '53.2', '4.46', '17.3', '0.557893796', '1.04', '3.71990212', '1.503801619', '1.357901722');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12S 50', '14.79', '12', '0.706', '5.496', '0.66', '9.21868', '11.34', '8.472', '1.794249283', '4.163636364', '13.0576204', '304.37', '61.20240933', '50.7', '4.54', '16.2', '0.563621884', '1.05', '2.948498536', '1.491350369', '1.345999991');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12S 50', '14.71', '12', '0.705', '5.495', '0.6595', '9.22068', '11.3405', '8.46', '1.793781624', '4.166034875', '13.07897872', '303.3', '61.14114847', '50.6', '4.54', '16.12', '0.565681019', '1.05', '2.938990062', '1.49103569', '1.344028147');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12S 50', '14.71', '12', '0.699', '5.489', '0.6595', '9.22068', '11.3405', '8.388', '1.780459484', '4.161485974', '13.19124464', '303.3', '60.92514847', '50.6', '4.54', '16.12', '0.563830037', '1.05', '2.899830011', '1.490321192', '1.344028147');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12S 50', '14.7', '12', '0.64', '5.75', '0.69', '9.279', '11.31', '7.68', '1.496801512', '4.166666667', '14.4984375', '317.3', '62.85643867', '52.9', '4.65', '19.4', '0.563468508', '1.15', '2.748275637', '1.582088888', '1.440089002');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12S 50', '14.7', '12', '0.64', '5.75', '0.69', '9.279', '11.31', '7.68', '1.496801512', '4.166666667', '14.4984375', '316.5', '62.85643867', '52.8', '4.65', '19.4', '0.563468508', '1.15', '2.748275637', '1.582088888', '1.441452077');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12S 50', '14.7', '12', '0.598', '5.723', '0.6565', '9.351', '11.3435', '7.176', '1.488335239', '4.358720487', '15.63712375', '302', '59.63385613', '50.3', '4.53', '18.1', '0.56656031', '1.11', '2.330502641', '1.5718948', '1.42861049');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12S 50', '14.7', '12', '0.55', '5.68', '0.77', '8.9118', '11.23', '6.6', '1.120699195', '3.688311688', '16.20327273', '332.08', '64.084212', '55.4', '4.75', '20.79', '0.565587753', '1.19', '2.94369786', '1.603281947', '1.451600946');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12S 50', '14.57', '12', '0.687', '5.477', '0.6595', '9.22068', '11.3405', '8.244', '1.753727639', '4.152388173', '13.42165939', '301.6', '60.49314847', '50.3', '4.55', '16', '0.564341248', '1.05', '2.823192141', '1.488897267', '1.34300337');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12S 48', '14.2', '12', '0.593', '5.718', '0.6565', '9.351', '11.3435', '7.116', '1.47718153', '4.354912414', '15.76897133', '301.4', '59.45385613', '50.2', '4.61', '18', '0.568215966', '1.13', '2.306054159', '1.571371063', '1.426076863');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12S 47.6', '14', '12', '0.6', '5.45', '0.68', '9.1518', '11.32', '7.2', '1.481672963', '4.007352941', '15.253', '299.76', '58.88098', '49.96', '4.63', '16.52', '0.555273734', '1.09', '2.474015843', '1.503076704', '1.368050163');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12S 45', '13.32', '12', '0.583', '5.373', '0.66', '9.21868', '11.34', '6.996', '1.51557181', '4.070454545', '15.81248714', '286.66', '56.77440933', '47.8', '4.64', '14.97', '0.569890491', '1.06', '2.250741131', '1.477024673', '1.332565243');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12S 45', '13.24', '12', '0.583', '5.373', '0.6595', '9.22068', '11.3405', '6.996', '1.517049894', '4.073540561', '15.81591767', '285.7', '56.74914847', '47.6', '4.65', '14.89', '0.572518306', '1.06', '2.247878733', '1.476852542', '1.331818294');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12S 45', '13.24', '12', '0.576', '5.366', '0.6595', '9.22068', '11.3405', '6.912', '1.500790132', '4.06823351', '16.008125', '285.7', '56.49714847', '47.6', '4.65', '14.89', '0.570283572', '1.06', '2.214547596', '1.476061767', '1.331818294');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12S 45', '13.23', '12', '0.54', '5.37', '0.68', '9.24556', '11.32', '6.48', '1.367236937', '3.948529412', '17.12140741', '292.25', '56.555008', '48.7', '4.7', '15.41', '0.569439888', '1.08', '2.147867221', '1.487042381', '1.338274042');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12S 45', '13.2', '12', '0.515', '5.625', '0.69', '9.279', '11.31', '6.18', '1.231223188', '4.076086957', '18.01747573', '299.3', '58.35643867', '49.9', '4.76', '18.1', '0.565401362', '1.17', '2.15448493', '1.56782226', '1.432205441');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12S 45', '13.2', '12', '0.51', '5.62', '0.69', '9.279', '11.31', '6.12', '1.220354325', '4.072463768', '18.19411765', '298.9', '58.17643867', '49.8', '4.76', '18', '0.567027714', '1.17', '2.134800532', '1.567268392', '1.429676853');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12S 45', '13.1', '12', '0.565', '5.355', '0.6595', '9.22068', '11.3405', '6.78', '1.475153191', '4.059893859', '16.31978761', '284.1', '56.10114847', '47.3', '4.66', '14.8', '0.570230265', '1.06', '2.16345927', '1.474824428', '1.331991308');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12S 44.1', '13.04', '12', '0.68', '5.34', '0.508', '9.695', '11.492', '8.16', '2.430254505', '5.255905512', '14.25735294', '253.85', '51.64300331', '42.31', '4.41', '11.4', '0.565459345', '0.93', '1.991776096', '1.387839972', '1.244267403');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12S 40.8', '12', '12', '0.46', '5.25', '0.6595', '9.22068', '11.3405', '5.52', '1.225029871', '3.980288097', '20.04495652', '270.9', '52.32114847', '45.1', '4.75', '13.79', '0.576696344', '1.07', '1.749779286', '1.463355489', '1.31672465');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12S 40.8', '11.84', '12', '0.46', '5.25', '0.6595', '9.22068', '11.3405', '5.52', '1.225029871', '3.980288097', '20.04495652', '268.9', '52.32114847', '44.8', '4.77', '13.8', '0.576278448', '1.08', '1.749779286', '1.463355489', '1.321604899');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12S 40', '11.84', '12', '0.46', '5.25', '0.6595', '9.22068', '11.3405', '5.52', '1.225029871', '3.980288097', '20.04495652', '268.9', '52.32114847', '44.8', '4.77', '13.81', '0.575861157', '1.08', '1.749779167', '1.463355489', '1.322083655');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12S 40', '11.8', '12', '0.39', '5.5', '0.69', '9.279', '11.31', '4.68', '0.953573123', '3.985507246', '23.79230769', '281.3', '53.85643867', '46.9', '4.9', '16.8', '0.569438244', '1.2', '1.742860672', '1.554399317', '1.423260918');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12S 40', '11.77', '12', '0.42', '5.25', '0.68', '9.24556', '11.32', '5.04', '1.087712941', '3.860294118', '22.0132381', '274.68', '52.235008', '45.8', '4.83', '14.26', '0.575024106', '1.1', '1.717666257', '1.473827665', '1.327502169');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12S 40', '11.76', '12', '0.46', '5.25', '0.6595', '9.22068', '11.3405', '5.52', '1.225029871', '3.980288097', '20.04495652', '268.9', '52.32114847', '44.8', '4.77', '13.81', '0.575861157', '1.08', '1.749779167', '1.463355489', '1.322083655');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12S 40', '11.76', '12', '0.558', '5.215', '0.544', '9.6466', '11.456', '6.696', '1.897384101', '4.793198529', '17.28781362', '245.9', '49.05229843', '41', '4.57', '10.95', '0.587173535', '0.96', '1.520691246', '1.392537691', '1.236848868');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12S 40', '11.73', '12', '0.39', '5.5', '0.705', '9.219', '11.295', '4.68', '0.927249516', '3.90070922', '23.63846154', '281.3', '54.65921967', '46.9', '4.9', '16.76', '0.583205922', '1.2', '1.843461327', '1.558263858', '1.420622555');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12S 40', '11.7', '12', '0.39', '5.5', '0.69', '9.279', '11.31', '4.68', '0.953573123', '3.985507246', '23.79230769', '281.3', '53.85643867', '46.9', '4.9', '16.8', '0.569438244', '1.2', '1.742860672', '1.554399317', '1.423260918');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12S 39.4', '11.6', '12', '0.4', '5.25', '0.68', '9.319', '11.32', '4.8', '1.044145658', '3.860294118', '23.2975', '268.3', '51.68098', '44.72', '4.81', '14.57', '0.56278955', '1.12', '1.63706225', '1.475798733', '1.357960364');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12S 39', '11.5', '12', '0.525', '5.425', '0.535', '9.599', '11.465', '6.3', '1.736328007', '5.070093458', '18.28380952', '247.5', '48.89959667', '41.3', '4.64', '12.1', '0.588283128', '1.03', '1.41068048', '1.460851889', '1.295954312');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12S 39', '11.52', '12', '0.553', '5.213', '0.508', '9.695', '11.492', '6.636', '2.024517371', '5.130905512', '17.53164557', '235.56', '47.07100331', '39.26', '4.52', '10.37', '0.578318233', '0.95', '1.376375312', '1.380872486', '1.231961232');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12S 38.4', '11.29', '12', '0.53', '5.19', '0.505', '9.679', '11.495', '6.36', '1.957255957', '5.138613861', '18.26226415', '233.8', '46.08361267', '38.97', '4.55', '10.19', '0.577348473', '0.95', '1.28607832', '1.379540114', '1.225917879');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12S 38', '11.2', '12', '0.343', '5.468', '0.6565', '9.351', '11.3435', '4.116', '0.893488446', '4.164508759', '27.26239067', '265.4', '50.45385613', '44.2', '4.86', '15.6', '0.573342854', '1.18', '1.452867147', '1.547115814', '1.414847737');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12S 37.5', '11.4', '12', '0.508', '5.414', '0.5155', '9.633', '11.4845', '6.096', '1.753389298', '5.251212415', '18.96259843', '238.7', '47.27530215', '39.8', '4.58', '11.5', '0.592794735', '1', '1.282382964', '1.454991098', '1.288096595');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12S 36.6', '10.8', '12', '0.493', '5.153', '0.508', '9.695', '11.492', '5.916', '1.825874309', '5.071850394', '19.6653144', '226.92', '44.91100331', '37.82', '4.58', '10.07', '0.575219265', '0.97', '1.1575501', '1.378134144', '1.23690625');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12S 36', '10.6', '12', '0.45', '5.35', '0.535', '9.599', '11.465', '5.4', '1.509144903', '5', '21.33111111', '236.7', '46.19959667', '39.5', '4.73', '11.53', '0.592112971', '1.04', '1.161710823', '1.456818214', '1.293564646');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12S 35', '10.3', '12', '0.44', '5.22', '0.525', '9.619', '11.475', '5.28', '1.544375114', '4.971428571', '21.86136364', '232.9', '44.58198067', '38.8', '4.77', '10.5', '0.5926527', '1.01', '1.082227792', '1.41805775', '1.246063389');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12S 35', '10.29', '12', '0.436', '5.086', '0.544', '9.6466', '11.456', '5.232', '1.520146712', '4.674632353', '22.12522936', '228.3', '44.6167618', '38', '4.71', '10.07', '0.592266612', '0.99', '1.102835409', '1.383515605', '1.23203896');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12S 35', '10.29', '12', '0.436', '5.085', '0.5445', '9.6446', '11.4555', '5.232', '1.518734534', '4.669421488', '22.1206422', '228.3', '44.63560504', '38', '4.71', '10.07', '0.592461371', '0.99', '1.104613042', '1.383406081', '1.232012074');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12S 35', '10.29', '12', '0.42', '5.07', '0.545', '9.6426', '11.455', '5.04', '1.465679388', '4.651376147', '22.95857143', '230.95', '44.090895', '38.5', '4.74', '10.01', '0.591296157', '0.99', '1.063963553', '1.383068605', '1.220307338');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12S 35', '10.2', '12', '0.428', '5.078', '0.544', '9.6466', '11.456', '5.136', '1.494605044', '4.667279412', '22.53878505', '227', '44.3287618', '37.8', '4.72', '10', '0.59360253', '0.99', '1.081149775', '1.383110065', '1.230993061');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12S 34.1', '10.04', '12', '0.43', '5.09', '0.508', '9.695', '11.492', '5.16', '1.612258868', '5.00984252', '22.54651163', '217.85', '42.64300331', '36.31', '4.66', '9.67', '0.577310344', '0.98', '0.970928069', '1.375686903', '1.237037666');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12S 32', '9.46', '12', '0.32', '5.25', '0.58', '9.479', '11.42', '3.84', '0.996151067', '4.525862069', '29.621875', '229.2', '44.10861467', '38.2', '4.92', '11.64', '0.600857764', '1.11', '1.03858554', '1.471664249', '1.319054873');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12S 32', '9.4', '12', '0.35', '5.25', '0.535', '9.599', '11.465', '4.2', '1.196137072', '4.906542056', '27.42571429', '222.3', '42.59959667', '37', '4.85', '10.3', '0.626344433', '1.04', '0.918261034', '1.452340982', '1.263251382');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12S 31.8', '9.35', '12', '0.35', '5', '0.544', '9.6466', '11.456', '4.2', '1.241290441', '4.595588235', '27.56171429', '217', '41.5207618', '36.2', '4.82', '9.5', '0.596491228', '1.01', '0.90097189', '1.379527053', '1.226052372');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12S 31.8', '9.26', '12', '0.35', '5', '0.544', '9.6466', '11.456', '4.2', '1.241290441', '4.595588235', '27.56171429', '215.8', '41.5207618', '36', '4.83', '9.5', '0.596491228', '1.01', '0.90097189', '1.379527053', '1.229453356');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12S 31.67', '9.31', '12', '0.369', '5.029', '0.508', '9.695', '11.492', '4.428', '1.400324966', '4.94980315', '26.27371274', '209.07', '40.44700331', '34.85', '4.74', '9.17', '0.58716213', '0.99', '0.82748459', '1.373773233', '1.229606322');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12S 31.5', '9.27', '12', '0.35', '5', '0.545', '9.6426', '11.455', '4.2', '1.238499083', '4.587155963', '27.55028571', '218.17', '41.570895', '36.5', '4.86', '9.45', '0.600749559', '1.01', '0.90477795', '1.379843414', '1.217732847');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12S 31.5', '9.3', '12', '0.35', '5.13', '0.525', '9.619', '11.475', '4.2', '1.250032489', '4.885714286', '27.48285714', '220.5', '41.34198067', '36.7', '4.88', '10.3', '0.573446529', '1.04', '0.869181787', '1.414405665', '1.268957069');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12S 31.5', '9.3', '12', '0.35', '5', '0.5445', '9.6446', '11.4555', '4.2', '1.23989348', '4.591368228', '27.556', '215.81', '41.54582995', '36', '4.82', '9.5', '0.597039474', '1.01', '0.902872231', '1.379685337', '1.229426526');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12S 31.5', '9.26', '12', '0.35', '5', '0.544', '9.6466', '11.456', '4.2', '1.241290441', '4.595588235', '27.56171429', '215.8', '41.5207618', '36', '4.83', '9.5', '0.596491228', '1.01', '0.90097189', '1.379527053', '1.229453356');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12S 30.6', '9.01', '12', '0.34', '5', '0.505', '9.679', '11.495', '4.08', '1.303310891', '4.95049505', '28.46764706', '207.9', '39.24361267', '35.65', '4.8', '9', '0.584490741', '1', '0.768090619', '1.37281286', '1.204567046');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12S 30.5', '8.96', '12', '0.34', '5', '0.508', '9.695', '11.492', '4.08', '1.297755906', '4.921259843', '28.51470588', '204.89', '39.40300331', '34.15', '4.78', '9.04', '0.585361357', '1', '0.770725563', '1.373032879', '1.233308351');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12S 30', '9.1', '12', '0.312', '5.218', '0.5155', '9.633', '11.4845', '3.744', '1.117335018', '5.061105723', '30.875', '211.7', '40.21930215', '35.3', '4.82', '10.2', '0.59835576', '1.05', '0.787919387', '1.447815637', '1.288112461');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12S 28', '8.24', '11.88', '0.314', '6.569', '0.37', '10.1998', '11.51', '3.73032', '1.317711446', '8.877027027', '32.48343949', '193.6', '37.68964478', '32.6', '4.85', '13.9', '0.628786868', '1.3', '0.427755132', '1.77921814', '1.56646705');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12S 28', '8.15', '12', '0.284', '6', '0.41', '10.36028', '11.59', '3.408', '1.196064846', '7.317073171', '36.47985915', '199.4', '37.35366027', '33.2', '4.95', '12.6', '0.585714286', '1.24', '0.437542924', '1.636869666', '1.483006146');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12S 27.9', '8.15', '12', '0.284', '6', '0.41', '10.36028', '11.59', '3.408', '1.196064846', '7.317073171', '36.47985915', '199.4', '37.35366027', '33.2', '4.95', '12.6', '0.585714286', '1.24', '0.437542924', '1.636869666', '1.483006146');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12S 27.5', '8.09', '12', '0.301', '5.061', '0.4635', '9.8822', '11.5365', '3.612', '1.268043228', '5.459546926', '32.83122924', '191.5', '36.22600025', '31.9', '4.88', '8.01', '0.625093508', '0.99', '0.587979294', '1.386418036', '1.203491297');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12S 27.5', '8.09', '12', '0.255', '5', '0.5125', '9.7862', '11.4875', '3.06', '0.973846244', '4.87804878', '38.3772549', '199.6', '37.05375121', '33.3', '4.98', '8.7', '0.613625479', '1.04', '0.655372262', '1.395329315', '1.224997702');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12S 27.5', '8.04', '12', '0.255', '5', '0.5125', '9.7862', '11.4875', '3.06', '0.973846244', '4.87804878', '38.3772549', '199.6', '37.05375121', '33.3', '4.98', '8.7', '0.613625479', '1.04', '0.655372262', '1.395329315', '1.224997702');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12S 25', '7.35', '11.88', '0.24', '6.495', '0.355', '10.1998', '11.525', '2.8512', '1.061684286', '9.147887324', '42.49916667', '182.8', '34.02437813', '30.8', '4.98', '13.4', '0.604894694', '1.35', '0.320315441', '1.783987348', '1.583370357');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12S 25', '7.35', '12', '0.27', '5', '0.42', '10.28356', '11.58', '3.24', '1.322172', '5.952380952', '38.08725926', '175.5', '32.689353', '29.2', '4.89', '7.3', '0.599315068', '1', '0.399184561', '1.356194164', '1.203120942');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12S 25', '7.35', '12', '0.24', '5', '0.4635', '9.8822', '11.5365', '2.88', '1.023399353', '5.393743258', '41.17583333', '182.7', '34.03000025', '30.5', '4.99', '7.6', '0.635279605', '1.02', '0.511751203', '1.387798852', '1.19888883');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10S 45', '13.14', '10', '0.45', '5.25', '0.9', '6.8226', '9.1', '4.5', '0.649771429', '2.916666667', '15.16133333', '216.1', '50.462', '43.2', '4.06', '17.94', '0.604946175', '1.17', '3.257535304', '1.542468265', '1.3745959');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10S 40', '11.8', '10', '0.58', '5.21', '0.645', '7.4826', '9.355', '5.8', '1.291466321', '4.03875969', '12.90103448', '178.5', '42.39003967', '35.7', '3.89', '13.5', '0.563064141', '1.07', '1.890274', '1.457841789', '1.329963353');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10S 40', '11.76', '10', '0.749', '5.099', '0.4915', '7.84348', '9.5085', '7.49', '2.344132073', '5.187182096', '10.47193591', '158.7', '39.00664445', '31.7', '3.67', '9.5', '0.571575634', '0.9', '2.021579368', '1.341678775', '1.193639492');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10S 40', '11.75', '10', '0.59', '5.15', '0.62', '7.35212', '9.38', '5.9', '1.358518885', '4.153225806', '12.46122034', '175.48', '41.214264', '35.1', '3.86', '12.36', '0.570970486', '1.03', '1.869763069', '1.438248222', '1.285115313');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10S 40', '11.7', '10', '0.57', '5.2', '0.645', '7.4826', '9.355', '5.7', '1.271640429', '4.031007752', '13.12736842', '178', '42.14003967', '35.6', '3.9', '13.44', '0.562327381', '1.07', '1.851756451', '1.456397324', '1.328867051');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10S 40', '11.69', '10', '0.751', '5.101', '0.4915', '7.84348', '9.5085', '7.51', '2.349469896', '5.189216684', '10.44404794', '158.85', '39.05664445', '31.8', '3.68', '9.51', '0.571646738', '0.9', '2.032961291', '1.341884207', '1.1923883');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10S 40', '11.69', '10', '0.741', '5.091', '0.4915', '7.84348', '9.5085', '7.41', '2.322738841', '5.179043744', '10.58499325', '158', '38.80664445', '31.6', '3.68', '9.4', '0.574941574', '0.9', '1.976592383', '1.340859352', '1.189217778');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10S 40', '11.31', '10', '0.552', '5.18', '0.6255', '7.516664', '9.3745', '5.52', '1.280581258', '4.14068745', '13.61714493', '172.86', '40.88319947', '34.6', '3.91', '12.7', '0.570468444', '1.06', '1.699604857', '1.448249164', '1.311664818');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10S 35', '10.32', '10', '0.604', '4.954', '0.4915', '7.84348', '9.5085', '6.04', '1.945656672', '5.039674466', '12.98589404', '146.63', '35.38164445', '29.3', '3.77', '8.54', '0.583112582', '0.91', '1.332838859', '1.327435357', '1.177161725');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10S 35', '10.3', '10', '0.43', '5.06', '0.645', '7.4826', '9.355', '4.3', '0.985849802', '3.92248062', '17.40139535', '166.1', '38.64003967', '33.2', '4.02', '12.27', '0.5675256', '1.09', '1.415467575', '1.436592771', '1.314801339');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10S 35', '10.29', '10', '0.602', '4.952', '0.4915', '7.84348', '9.5085', '6.02', '1.939997305', '5.037639878', '13.02903654', '146.4', '35.33164445', '29.3', '3.77', '8.52', '0.583773786', '0.91', '1.325103293', '1.32724843', '1.175782508');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10S 35', '10.27', '10', '0.44', '5', '0.62', '7.35212', '9.38', '4.4', '1.04352671', '4.032258065', '16.70936364', '163.14', '37.464264', '32.6', '3.99', '11.19', '0.577152219', '1.04', '1.372570326', '1.41655587', '1.268798524');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10S 35', '10.22', '10', '0.594', '4.944', '0.4915', '7.84348', '9.5085', '5.94', '1.917314048', '5.029501526', '13.20451178', '145.8', '35.13164445', '29.2', '3.78', '8.5', '0.582316018', '0.91', '1.294606801', '1.326503487', '1.176410913');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10S 34.9', '10.28', '10', '0.5', '4.9', '0.575', '7.559', '9.425', '5', '1.341437445', '4.260869565', '15.118', '153.94', '36.30532', '30.79', '3.87', '10.02', '0.562609573', '0.99', '1.291536643', '1.362348069', '1.238382191');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10S 33', '9.7', '10', '0.37', '5', '0.645', '7.4826', '9.355', '3.7', '0.858468837', '3.875968992', '20.22324324', '161.3', '37.14003967', '32.3', '4.08', '11.8', '0.569385593', '1.1', '1.27991611', '1.428362707', '1.30721385');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10S 33', '9.7', '10', '0.35', '5', '0.645', '7.4826', '9.355', '3.5', '0.812065116', '3.875968992', '21.37885714', '179.6', '36.760515', '35.9', '4.54', '11.8', '0.569385593', '1.1', '1.244901188', '1.431611104', '1.23994002');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10S 33', '9.67', '10', '0.37', '5', '0.645', '7.4826', '9.355', '3.7', '0.858468837', '3.875968992', '20.22324324', '161.3', '37.14003967', '32.3', '4.08', '11.81', '0.568903472', '1.1', '1.27991611', '1.428362707', '1.307767637');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10S 32', '9.4', '10', '0.51', '4.94', '0.485', '7.8226', '9.515', '5.1', '1.665147126', '5.092783505', '15.33843137', '139.4', '33.153251', '27.9', '3.85', '8.37', '0.582124505', '0.95', '1.010256082', '1.341530442', '1.194675688');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10S 32', '9.4', '10', '0.313', '4.937', '0.6255', '7.516664', '9.3745', '3.13', '0.761866774', '3.946442846', '24.01490096', '152.6', '34.88479134', '30.5', '4.02', '10.8', '0.580780056', '1.07', '1.096937134', '1.415330535', '1.288311896');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10S 31.5', '9.24', '10', '0.508', '4.945', '0.469', '7.892664', '9.531', '5.08', '1.728813672', '5.271855011', '15.53674016', '136.55', '32.4975701', '27.3', '3.84', '8.15', '0.579872984', '0.94', '0.951014733', '1.336140631', '1.192756296');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10S 30.3', '8.91', '10', '0.5', '4.7', '0.445', '7.839', '9.555', '5', '1.874013866', '5.280898876', '15.678', '129.08', '30.32466', '25.82', '3.81', '6.69', '0.575501183', '0.87', '0.872443649', '1.261708643', '1.112590347');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10S 30.13', '8.74', '10', '0.5', '4.7', '0.445', '7.9426', '9.555', '5', '1.898780779', '5.280898876', '15.8852', '126.83', '30.32886', '25.4', '3.81', '6.65', '0.578962845', '0.87', '0.846710885', '1.257329123', '1.11839267');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10S 30', '8.95', '10', '0.455', '4.885', '0.485', '7.8226', '9.515', '4.55', '1.502298431', '5.036082474', '17.19252747', '134.6', '31.778251', '26.9', '3.88', '8.06', '0.584546622', '0.95', '0.864658869', '1.336960837', '1.193935263');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10S 30', '8.85', '10', '0.457', '4.807', '0.4915', '7.84348', '9.5085', '4.57', '1.517145905', '4.890132248', '17.16297593', '134.38', '31.70664445', '26.9', '3.9', '7.67', '0.593156479', '0.93', '0.874636951', '1.314478007', '1.164293706');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10S 30', '8.82', '10', '0.455', '4.805', '0.4915', '7.84348', '9.5085', '4.55', '1.51113504', '4.88809766', '17.23841758', '134.2', '31.65664445', '26.8', '3.9', '7.65', '0.593965222', '0.93', '0.869818028', '1.314313369', '1.164942067');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10S 30', '8.82', '10', '0.44', '4.79', '0.49', '7.84948', '9.51', '4.4', '1.471505773', '4.887755102', '17.83972727', '135.41', '31.223585', '27.1', '3.92', '7.58', '0.592041525', '0.93', '0.830272884', '1.312513617', '1.15325466');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10S 30', '8.8', '10', '0.45', '4.89', '0.485', '7.8226', '9.515', '4.5', '1.484270445', '5.041237113', '17.38355556', '134.5', '31.699308', '26.9', '3.9', '8.1', '0.58344786', '0.96', '0.853957341', '1.339493071', '1.196894215');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10S 30', '8.75', '10', '0.447', '4.797', '0.4915', '7.84348', '9.5085', '4.47', '1.487041456', '4.879959308', '17.54693512', '133.5', '31.45664445', '26.7', '3.91', '7.6', '0.594891604', '0.93', '0.850885114', '1.313658167', '1.163301192');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10S 29.8', '8.78', '10', '0.35', '4.75', '0.575', '7.559', '9.425', '3.5', '0.968659039', '4.130434783', '21.59714286', '141.44', '32.55532', '28.29', '4.01', '9.03', '0.56869535', '1.01', '0.937931965', '1.344337324', '1.226459137');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10S 28', '8.12', '10', '0.438', '4.638', '0.445', '7.9426', '9.555', '4.38', '1.685567103', '5.211235955', '18.13378995', '121.66', '28.77886', '24.3', '3.87', '6.35', '0.582635943', '0.88', '0.695026541', '1.253434728', '1.117336725');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10S 27', '7.9', '10', '0.37', '4.81', '0.485', '7.8226', '9.515', '3.7', '1.240697859', '4.958762887', '21.14216216', '127.4', '29.699308', '25.5', '4', '7.6', '0.591809768', '0.98', '0.690689012', '1.333344386', '1.190765119');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10S 25.9', '7.49', '10', '0.375', '4.575', '0.445', '7.9426', '9.555', '3.75', '1.462995027', '5.140449438', '21.18026667', '116.41', '27.20386', '23.3', '3.94', '6.05', '0.586944024', '0.9', '0.573189736', '1.249896252', '1.113781692');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10S 25.5', '7.5', '10', '0.32', '4.75', '0.485', '7.8226', '9.515', '3.2', '1.086590125', '4.896907216', '24.445625', '123.7', '28.403251', '24.7', '4.06', '7.32', '0.591739064', '0.99', '0.611086486', '1.326856003', '1.187398408');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '11S 25.5', '7.47', '10.5', '0.3', '4.75', '0.485', '8.3226', '10.015', '3.15', '1.083789474', '4.896907216', '27.742', '137.3', '29.84324', '27.5', '4.52', '7.32', '0.591739064', '0.99', '0.590611318', '1.323871592', '1.154515247');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10S 25.4', '7.47', '10', '0.31', '4.66', '0.4915', '7.84348', '9.5085', '3.1', '1.061600339', '4.740590031', '25.30154839', '122.9', '28.03164445', '24.6', '4.06', '6.89', '0.601562568', '0.96', '0.603002311', '1.303328766', '1.153939567');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10S 25.4', '7.38', '10', '0.31', '4.66', '0.4915', '7.84348', '9.5085', '3.1', '1.061600339', '4.740590031', '25.30154839', '122.1', '28.03164445', '24.4', '4.07', '6.9', '0.600690738', '0.97', '0.603002311', '1.303328766', '1.159499698');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10S 25.33', '7.5', '10', '0.32', '4.75', '0.485', '7.8226', '9.515', '3.2', '1.086590125', '4.896907216', '24.445625', '123.6', '28.403251', '24.7', '4.06', '7.32', '0.591739064', '0.99', '0.611086486', '1.326856003', '1.187398408');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10S 25', '7.5', '10', '0.31', '4.74', '0.485', '7.8226', '9.515', '3.1', '1.054854931', '4.886597938', '25.23419355', '122.5', '28.153251', '24.5', '4.06', '7.27', '0.59205371', '0.99', '0.597318843', '1.326176318', '1.188156263');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10S 25', '7.37', '10', '0.31', '4.66', '0.4915', '7.84348', '9.5085', '3.1', '1.061600339', '4.740590031', '25.30154839', '122.1', '28.03164445', '24.4', '4.07', '6.89', '0.601562568', '0.97', '0.603002311', '1.303328766', '1.158659176');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10S 25', '7.34', '10', '0.31', '4.66', '0.49', '7.84948', '9.51', '3.1', '1.065664711', '4.755102041', '25.32090323', '123.07', '27.973585', '24.6', '4.1', '6.81', '0.606771917', '0.96', '0.598651897', '1.302872673', '1.147311279');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10S 25', '7.3', '10', '0.31', '4.75', '0.485', '7.8226', '9.515', '3.1', '1.052634183', '4.896907216', '25.23419355', '122.5', '28.199308', '24.5', '4.06', '7.3', '0.593360267', '0.99', '0.598416374', '1.329122761', '1.190605231');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10S 23.8', '7', '10', '0.281', '4.72', '0.469', '7.892664', '9.531', '2.81', '1.001878584', '5.031982942', '28.08777224', '117.7', '26.83149395', '23.5', '3.88', '7.09', '0.579657364', '0.95', '0.515951888', '1.322027937', '1.199066924');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10S 23.5', '6.91', '10', '0.3', '4.5', '0.445', '7.839', '9.555', '3', '1.174382022', '5.056179775', '26.13', '112.42', '25.32466', '22.48', '4.03', '5.76', '0.586669922', '0.91', '0.482266744', '1.249203485', '1.106403233');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10S 23.33', '6.87', '10', '0.3', '4.5', '0.445', '7.9426', '9.555', '3', '1.189902622', '5.056179775', '26.47533333', '110.16', '25.32886', '22', '4', '5.73', '0.589741492', '0.91', '0.464653065', '1.246292755', '1.115491636');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10S 23', '6.77', '9.9', '0.29', '5.79', '0.3495', '8.3454', '9.5505', '2.871', '1.195967592', '8.283261803', '28.77724138', '112.1', '25.44013817', '22.6', '4.09', '9.57', '0.590730898', '1.19', '0.301660632', '1.585363438', '1.422000686');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10S 22.4', '6.54', '10', '0.252', '5.5', '0.379', '8.51116', '9.621', '2.52', '1.028933711', '7.255936675', '33.77444444', '113.6', '25.41131972', '22.7', '4.17', '9', '0.583853009', '1.17', '0.29970761', '1.519903141', '1.381031026');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10S 22.25', '6.54', '10', '0.252', '5.5', '0.379', '8.51116', '9.621', '2.52', '1.028933711', '7.255936675', '33.77444444', '113.6', '25.41131972', '22.7', '4.17', '9', '0.583853009', '1.17', '0.29970761', '1.519903141', '1.381031026');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10S 22', '6.52', '10', '0.232', '4.67', '0.462', '7.96236', '9.538', '2.32', '0.856191551', '5.054112554', '34.32051724', '113.9', '25.30566534', '22.8', '4.18', '6.4', '0.612676746', '0.99', '0.450267263', '1.316468845', '1.157007635');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10S 22', '6.42', '10', '0.25', '5', '0.4', '8.357', '9.6', '2.5', '1.044625', '6.25', '33.428', '110.3', '24.454375', '22.1', '4.15', '6.87', '0.606501698', '1.03', '0.329806668', '1.384626325', '1.22152638');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10S 21', '6.18', '9.9', '0.24', '5.74', '0.3495', '8.3454', '9.5505', '2.376', '0.998387941', '8.211731044', '34.7725', '107.5', '24.21501317', '21.7', '4.17', '9.3', '0.592268538', '1.22', '0.259777001', '1.589107754', '1.430571814');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9S 35', '10.36', '9', '0.574', '5.014', '0.585', '6.68948', '8.415', '5.166', '1.309073575', '4.285470085', '11.65414634', '126.6', '33.440328', '28.1', '3.5', '10.91', '0.56325215', '1.03', '1.473621598', '1.403267269', '1.278118961');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9S 35', '10.3', '9', '0.72', '4.76', '0.46', '6.96292', '8.54', '6.48', '2.289597369', '5.173913043', '9.670722222', '112.76', '30.41181733', '25.1', '3.31', '7.25', '0.57024231', '0.84', '1.595913226', '1.259843045', '1.110570364');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9S 35', '10.29', '9', '0.747', '4.787', '0.4585', '6.96892', '8.5415', '6.723', '2.371828664', '5.220283533', '9.329210174', '112.86', '30.91027721', '25', '3.31', '7.4', '0.566391408', '0.84', '1.722956247', '1.262119346', '1.124340696');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9S 35', '10.29', '9', '0.747', '4.787', '0.4585', '6.96892', '8.5415', '6.723', '2.371828664', '5.220283533', '9.329210174', '111.8', '30.91027721', '24.8', '3.29', '7.31', '0.573364763', '0.84', '1.722956247', '1.262119346', '1.121979503');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9S 35', '10.29', '9', '0.732', '4.772', '0.4585', '6.96892', '8.5415', '6.588', '2.33150733', '5.203925845', '9.520382514', '111.8', '30.60652721', '24.8', '3.29', '7.31', '0.567991743', '0.84', '1.649101175', '1.260398373', '1.121979503');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9S 35', '10.29', '9', '0.72', '4.76', '0.4585', '6.96892', '8.5415', '6.48', '2.299067291', '5.190839695', '9.679055556', '111.8', '30.36352721', '24.8', '3.3', '7.21', '0.571536127', '0.84', '1.591922334', '1.259030235', '1.114278797');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9S 35', '10.22', '9', '0.724', '4.764', '0.4585', '6.96892', '8.5415', '6.516', '2.309898796', '5.195201745', '9.62558011', '111.3', '30.44452721', '24.7', '3.3', '7.3', '0.565914071', '0.84', '1.610795331', '1.259485419', '1.123479179');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9S 33', '9.7', '9', '0.51', '4.95', '0.585', '6.68948', '8.415', '4.59', '1.178152396', '4.230769231', '13.11662745', '122.6', '32.144328', '27.2', '3.55', '10.43', '0.566899284', '1.04', '1.278072025', '1.393826717', '1.270193145');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9S 30', '8.96', '9', '0.584', '4.624', '0.4585', '6.96892', '8.5415', '5.256', '1.919646055', '5.042529989', '11.93308219', '102.66', '27.60952721', '22.8', '3.38', '6.49', '0.582058818', '0.85', '1.054979428', '1.244099492', '1.102572103');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9S 30', '8.94', '9', '0.476', '4.851', '0.5315', '6.820168', '8.4685', '4.284', '1.259121042', '4.56349953', '14.32808403', '112.1', '29.29519104', '24.9', '3.54', '8.85', '0.571310987', '0.99', '0.987435258', '1.354404125', '1.226761703');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9S 30', '8.9', '9', '0.57', '4.8', '0.44', '6.98948', '8.56', '5.13', '1.886365341', '5.454545455', '12.26224561', '102.5', '27.438276', '22.8', '3.39', '6.95', '0.583458993', '0.88', '0.984434811', '1.291849406', '1.142212381');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9S 30', '8.82', '9', '0.584', '4.624', '0.4585', '6.96892', '8.5415', '5.256', '1.919646055', '5.042529989', '11.93308219', '101.9', '27.60952721', '22.6', '3.4', '6.42', '0.588405254', '0.85', '1.054979428', '1.244099492', '1.101451476');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9S 30', '8.82', '9', '0.569', '4.609', '0.4585', '6.96892', '8.5415', '5.121', '1.876427103', '5.026172301', '12.24766257', '101.9', '27.30577721', '22.6', '3.4', '6.42', '0.582697548', '0.85', '1.00739542', '1.242522014', '1.101451476');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9S 30', '8.76', '9', '0.561', '4.601', '0.4585', '6.96892', '8.5415', '5.049', '1.85326177', '5.017448201', '12.42231729', '101.4', '27.14377721', '22.5', '3.4', '6.4', '0.581480051', '0.85', '0.982891506', '1.241686715', '1.102175626');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9S 30', '8.82', '9', '0.56', '4.6', '0.46', '6.96292', '8.54', '5.04', '1.842738752', '5', '12.43378571', '102.8', '27.17181733', '22.8', '3.41', '6.37', '0.585747776', '0.85', '0.983646524', '1.242271931', '1.092235355');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9S 30', '8.82', '9', '0.56', '4.6', '0.4585', '6.96892', '8.5415', '5.04', '1.850360438', '5.016357688', '12.4445', '101.9', '27.12352721', '22.6', '3.4', '6.37', '0.583837729', '0.85', '0.979870736', '1.2415826', '1.097153951');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9S 30', '8.8', '9', '0.41', '4.85', '0.585', '6.68948', '8.415', '3.69', '0.966670826', '4.145299145', '16.31580488', '116.6', '30.119328', '25.9', '3.63', '9.7', '0.573360938', '1.05', '1.040688824', '1.37940354', '1.255301499');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9S 28.6', '8.41', '9', '0.56', '4.58', '0.42', '7.05276', '8.58', '5.04', '2.05320524', '5.452380952', '12.59421429', '95.98', '25.800208', '21.33', '3.38', '5.11', '0.658026795', '0.78', '0.885391757', '1.220350816', '1.013779882');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9S 28.33', '8.33', '9', '0.512', '4.742', '0.44', '6.98948', '8.56', '4.608', '1.715144051', '5.388636364', '13.65132813', '99', '26.263776', '22', '3.45', '6.66', '0.587059135', '0.89', '0.821004688', '1.286396555', '1.138276209');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9S 27', '7.9', '9', '0.31', '4.75', '0.585', '6.68948', '8.415', '2.79', '0.746284768', '4.05982906', '21.57896774', '110.6', '28.094328', '24.6', '3.72', '9.1', '0.574135045', '1.07', '0.872540829', '1.365421411', '1.24757081');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9S 26', '7.69', '9', '0.44', '4.67', '0.44', '6.98948', '8.56', '3.96', '1.49667666', '5.306818182', '15.88518182', '94.32', '24.805776', '21', '3.5', '6.29', '0.593705985', '0.9', '0.657576125', '1.279981195', '1.132237566');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9S 25.4', '7.48', '9', '0.442', '4.462', '0.42', '7.0662', '8.58', '3.978', '1.666592175', '5.311904762', '15.98687783', '90.5', '23.406822', '20.11', '3.48', '5.34', '0.582258028', '0.84', '0.597277319', '1.210140152', '1.067316539');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9S 25', '7.49', '9', '0.421', '4.461', '0.4585', '6.96892', '8.5415', '3.789', '1.434418942', '4.864776445', '16.55325416', '92.76', '24.30877721', '20.6', '3.52', '5.71', '0.594044057', '0.87', '0.643881706', '1.227799018', '1.088019098');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9S 25', '7.35', '9', '0.406', '4.446', '0.4585', '6.96892', '8.5415', '3.654', '1.387978421', '4.848418757', '17.16482759', '91.9', '24.00502721', '20.4', '3.54', '5.65', '0.59431682', '0.88', '0.616647726', '1.226399281', '1.087580006');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9S 25', '7.35', '9', '0.421', '4.461', '0.4585', '6.96892', '8.5415', '3.789', '1.434418942', '4.864776445', '16.55325416', '91.9', '24.30877721', '20.4', '3.54', '5.65', '0.600352489', '0.88', '0.643881706', '1.227799018', '1.087580006');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9S 25', '7.28', '9', '0.397', '4.437', '0.4585', '6.96892', '8.5415', '3.573', '1.359963389', '4.838604144', '17.55395466', '91.4', '23.82277721', '20.3', '3.54', '5.6', '0.595989149', '0.88', '0.601057808', '1.225568275', '1.085420624');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9S 25', '7.35', '9', '0.39', '4.43', '0.4585', '6.96892', '8.5415', '3.51', '1.338095222', '4.830970556', '17.86902564', '92', '23.68102721', '20.4', '3.54', '5.6', '0.593172824', '0.87', '0.589312136', '1.224926586', '1.082757011');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9S 25', '7.34', '9', '0.39', '4.43', '0.46', '6.96292', '8.54', '3.51', '1.332583571', '4.815217391', '17.85364103', '92.83', '23.72931733', '20.6', '3.56', '5.6', '0.595113411', '0.87', '0.592947992', '1.225468586', '1.077393475');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9S 25', '7.3', '9', '0.4', '4.63', '0.44', '6.98948', '8.56', '3.6', '1.372369919', '5.261363636', '17.4737', '92.3', '23.995776', '20.5', '3.54', '6.1', '0.596601813', '0.91', '0.583750928', '1.276599832', '1.128521588');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9S 24.5', '7.2', '9', '0.296', '4.671', '0.5315', '6.820168', '8.4685', '2.664', '0.813155582', '4.394167451', '23.04110811', '101.1', '25.65019104', '22.5', '3.74', '7.8', '0.578704717', '1.04', '0.671230709', '1.332730488', '1.211558225');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9S 24.5', '6.37', '9', '0.321', '4.445', '0.422', '7.070168', '8.578', '2.889', '1.209902989', '5.266587678', '22.02544548', '83.4', '21.40145384', '18.5', '3.62', '4.96', '0.622679868', '0.88', '0.417853324', '1.232625605', '1.072341212');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9S 23.33', '6.9', '9', '0.35', '4.58', '0.44', '6.98948', '8.56', '3.15', '1.213933108', '5.204545455', '19.96994286', '89', '22.983276', '19.8', '3.6', '5.9', '0.59705708', '0.93', '0.506627365', '1.272570903', '1.129315516');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9S 21.8', '6.41', '9', '0.29', '4.33', '0.4585', '6.96892', '8.5415', '2.61', '1.017972956', '4.721919302', '24.03075862', '85.6', '21.65602721', '19', '3.65', '5.16', '0.601135092', '0.9', '0.454453548', '1.216229648', '1.076961369');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9S 21.8', '6.32', '9', '0.29', '4.33', '0.4585', '6.96892', '8.5415', '2.61', '1.017972956', '4.721919302', '24.03075862', '84.9', '21.65602721', '18.9', '3.67', '5.2', '0.596510976', '0.9', '0.454453548', '1.216229648', '1.083983932');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9S 21.45', '6.31', '9', '0.29', '4.33', '0.46', '6.96292', '8.54', '2.61', '1.013779898', '4.706521739', '24.01006897', '85.17', '21.70431733', '18.93', '3.67', '5.16', '0.603101728', '0.9', '0.457992648', '1.21667504', '1.078856');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9S 21', '6.31', '9', '0.29', '4.33', '0.4585', '6.96892', '8.5415', '2.61', '1.017972956', '4.721919302', '24.03075862', '84.9', '21.65602721', '18.9', '3.67', '5.16', '0.601135092', '0.9', '0.454453548', '1.216229648', '1.079806714');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9S 21', '6.2', '9', '0.27', '4.5', '0.44', '6.98948', '8.56', '2.43', '0.953110909', '5.113636364', '25.88696296', '84.3', '21.363276', '18.7', '3.7', '5.56', '0.600944245', '0.95', '0.413583293', '1.266620445', '1.128076305');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9S 21', '6.18', '9', '0.29', '4.33', '0.4585', '6.96892', '8.5415', '2.61', '1.017972956', '4.721919302', '24.03075862', '84.9', '21.65602721', '18.9', '3.67', '5.16', '0.601135092', '0.9', '0.454453548', '1.216229648', '1.079806714');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9S 21', '6.18', '9', '0.275', '4.315', '0.4585', '6.96892', '8.5415', '2.475', '0.968674869', '4.705561614', '25.34152727', '84', '21.35227721', '18.7', '3.68', '5.2', '0.590333121', '0.9', '0.438963961', '1.215005565', '1.08976522');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9S 21', '6.17', '9', '0.29', '4.33', '0.46', '6.96292', '8.54', '2.61', '1.013779898', '4.706521739', '24.01006897', '84.94', '21.70431733', '18.9', '3.71', '5.06', '0.615020735', '0.91', '0.457992648', '1.21667504', '1.069198384');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9S 20.5', '6.04', '9', '0.28', '4.3', '0.42', '7.0662', '8.58', '2.52', '1.095534884', '5.119047619', '25.23642857', '80.78', '20.126322', '17.95', '3.66', '4.72', '0.589564619', '0.88', '0.36401141', '1.19923026', '1.062104916');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9S 20.03', '5.89', '9', '0.28', '4.3', '0.42', '7.05276', '8.58', '2.52', '1.093451163', '5.119047619', '25.18842857', '78.97', '20.130208', '17.55', '3.63', '4.72', '0.589564619', '0.89', '0.366038123', '1.199606748', '1.074140483');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9S 19.75', '5.8', '9', '0.266', '4.39', '0.422', '7.070168', '8.578', '2.394', '1.015159771', '5.201421801', '26.57957895', '79.8', '20.28770384', '17.8', '3.71', '5.03', '0.591502767', '0.92', '0.36083406', '1.229352466', '1.100910502');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8S 32', '8.56', '8', '0.539', '4.789', '0.5', '5.936', '7.5', '4.312', '1.336188766', '4.789', '11.01298701', '82.85', '24.527024', '20.7', '3.11', '7.75', '0.590502264', '0.95', '0.979921464', '1.337552831', '1.184898944');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8S 28.33', '8.34', '8', '0.504', '4.734', '0.51', '5.91636', '7.49', '4.032', '1.23505614', '4.641176471', '11.73880952', '81.88', '24.186081', '20.47', '3.13', '7.84', '0.575118884', '0.97', '0.92141421', '1.329546642', '1.197636493');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8S 27', '7.98', '8', '0.455', '4.685', '0.51', '5.91636', '7.49', '3.64', '1.126642727', '4.593137255', '13.00298901', '79.8', '23.402081', '20', '3.16', '7.57', '0.577326957', '0.97', '0.816891034', '1.322407512', '1.190580741');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8S 27', '7.9', '8', '0.48', '4.56', '0.5', '5.95636', '7.5', '3.84', '1.253970526', '4.56', '12.40908333', '77.6', '22.9494', '19.4', '3.14', '6.91', '0.57174877', '0.93', '0.817820377', '1.277909921', '1.155723097');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8S 25.5', '7.54', '8', '0.546', '4.276', '0.4255', '6.09436', '7.5745', '4.368', '1.82887274', '5.024676851', '11.1618315', '68.68', '20.72753846', '17.17', '3.02', '4.78', '0.579967305', '0.8', '0.774513671', '1.159335645', '1.026811651');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8S 25.5', '7.52', '8', '0.542', '4.272', '0.4255', '6.09436', '7.5745', '4.336', '1.817174287', '5.019976498', '11.24420664', '68.5', '20.66353846', '17.12', '3.02', '4.76', '0.580771235', '0.8', '0.764476917', '1.158862125', '1.02615646');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8S 25.5', '7.5', '8', '0.546', '4.276', '0.4255', '6.09436', '7.5745', '4.368', '1.82887274', '5.024676851', '11.1618315', '68.4', '20.72753846', '17.1', '3.02', '4.75', '0.583630256', '0.8', '0.774513671', '1.159335645', '1.025677283');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8S 25.5', '7.5', '8', '0.541', '4.271', '0.4255', '6.09436', '7.5745', '4.328', '1.81424625', '5.01880141', '11.26499076', '68.4', '20.64753846', '17.1', '3.02', '4.75', '0.581585303', '0.8', '0.761987663', '1.158743896', '1.025677283');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8S 25.5', '7.5', '8', '0.53', '4.26', '0.425', '6.0462', '7.575', '4.24', '1.769945319', '5.011764706', '11.40792453', '69.14', '20.45839767', '17.3', '3.04', '4.7', '0.582557266', '0.79', '0.743363206', '1.159514699', '1.014383551');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8S 25.5', '7.5', '8', '0.53', '4.26', '0.4255', '6.09436', '7.5745', '4.24', '1.781947116', '5.005875441', '11.49879245', '68.4', '20.47153846', '17.1', '3.02', '4.71', '0.58200432', '0.79', '0.735127569', '1.157447402', '1.021349511');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8S 25.5', '7.43', '8', '0.532', '4.262', '0.4255', '6.09436', '7.5745', '4.256', '1.787832086', '5.008225617', '11.45556391', '68.1', '20.50353846', '17', '3.03', '4.7', '0.584064482', '0.8', '0.739940476', '1.157682577', '1.023261079');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8S 25.25', '7.43', '8', '0.542', '4.272', '0.4255', '6.09436', '7.5745', '4.336', '1.817174287', '5.019976498', '11.24420664', '68.64', '20.66353846', '17.2', '3.04', '4.76', '0.580771235', '0.8', '0.764476917', '1.158862125', '1.023767268');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8S 25.25', '7.43', '8', '0.53', '4.26', '0.4255', '6.09436', '7.5745', '4.24', '1.781947116', '5.005875441', '11.49879245', '68', '20.47153846', '17', '3.03', '4.71', '0.58200432', '0.8', '0.735127569', '1.157447402', '1.024349076');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8S 25', '7.37', '8', '0.51', '4.51', '0.41', '6.13636', '7.59', '4.08', '1.692468552', '5.5', '12.03207843', '68.85', '20.5776', '17.2', '3.06', '5.34', '0.586936313', '0.85', '0.675079421', '1.228188384', '1.085456179');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8S 25', '7.35', '8', '0.51', '4.51', '0.41', '6.13636', '7.59', '4.08', '1.692468552', '5.5', '12.03207843', '68.8', '20.5776', '17.2', '3.06', '5.34', '0.586936313', '0.85', '0.675079421', '1.228188384', '1.085456179');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8S 25', '7.3', '8', '0.287', '4.537', '0.5', '5.936', '7.5', '2.296', '0.750994931', '4.537', '20.68292683', '71.8', '20.495024', '17.9', '3.13', '6.66', '0.584279793', '0.95', '0.547613112', '1.302570709', '1.181207601');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8S 25', '7.3', '8', '0.507', '4.507', '0.4065', '6.122', '7.5935', '4.056', '1.694155135', '5.543665437', '12.07495069', '68.35', '20.42637467', '17.1', '3.06', '5.24', '0.591848691', '0.85', '0.667208322', '1.227528225', '1.078632717');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8S 25', '7.3', '8', '0.4', '4.49', '0.5', '5.95636', '7.5', '3.2', '1.061266815', '4.49', '14.8909', '74.4', '21.706825', '18.6', '3.2', '6.56', '0.574941876', '0.95', '0.671613496', '1.269706711', '1.150035063');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8S 24.3', '7.15', '8', '0.52', '4.26', '0.39', '6.1662', '7.61', '4.16', '1.929953052', '5.461538462', '11.85807692', '64.31', '19.39887733', '16.08', '3', '3.8', '0.661193479', '0.73', '0.644863962', '1.145688477', '0.948257108');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8S 23', '6.8', '8', '0.454', '4.184', '0.4255', '6.09436', '7.5745', '3.632', '1.554149229', '4.916568743', '13.42370044', '64.75', '19.25553846', '16.19', '3.09', '4.41', '0.588917902', '0.81', '0.574391272', '1.148699765', '1.015682238');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8S 23', '6.79', '8', '0.451', '4.181', '0.4255', '6.09436', '7.5745', '3.608', '1.544987303', '4.913043478', '13.51299335', '64.62', '19.20753846', '16.16', '3.08', '4.41', '0.587652018', '0.81', '0.568888894', '1.14836231', '1.016624575');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8S 23', '6.76', '8', '0.454', '4.184', '0.4255', '6.09436', '7.5745', '3.632', '1.554149229', '4.916568743', '13.42370044', '64.5', '19.25553846', '16.1', '3.09', '4.39', '0.5916009', '0.81', '0.574391272', '1.148699765', '1.016204957');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8S 23', '6.76', '8', '0.449', '4.179', '0.4255', '6.09436', '7.5745', '3.592', '1.538872045', '4.910693302', '13.57318486', '64.5', '19.17553846', '16.1', '3.09', '4.39', '0.589482493', '0.81', '0.565254342', '1.148137684', '1.016204957');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8S 23', '6.76', '8', '0.44', '4.17', '0.425', '6.0462', '7.575', '3.52', '1.501101989', '4.905882353', '13.74136364', '65.21', '19.01839767', '16.3', '3.1', '4.35', '0.590373142', '0.8', '0.55603162', '1.148905994', '1.005372836');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8S 23', '6.76', '8', '0.44', '4.17', '0.4255', '6.09436', '7.5745', '3.52', '1.51128079', '4.900117509', '13.85081818', '64.5', '19.03153846', '16.1', '3.09', '4.37', '0.588362584', '0.81', '0.549229305', '1.147130294', '1.013887497');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8S 23', '6.71', '8', '0.441', '4.171', '0.4255', '6.09436', '7.5745', '3.528', '1.514352365', '4.901292597', '13.81941043', '64.2', '19.04753846', '16', '3.09', '4.4', '0.584771518', '0.81', '0.550983347', '1.147241948', '1.020536011');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8S 22.75', '6.79', '8', '0.451', '4.181', '0.4255', '6.09436', '7.5745', '3.608', '1.544987303', '4.913043478', '13.51299335', '64.62', '19.20753846', '16.16', '3.08', '4.41', '0.587652018', '0.81', '0.568888894', '1.14836231', '1.016624575');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8S 22.75', '6.69', '8', '0.44', '4.17', '0.4255', '6.09436', '7.5745', '3.52', '1.51128079', '4.900117509', '13.85081818', '64.1', '19.03153846', '16', '3.1', '4.36', '0.589712039', '0.81', '0.549229305', '1.147130294', '1.01588662');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8S 22', '6.5', '8', '0.27', '4.5', '0.51', '5.91636', '7.49', '2.16', '0.696042353', '4.411764706', '21.91244444', '71.9', '20.442081', '18', '3.33', '6.62', '0.585016994', '1.01', '0.554357172', '1.296436466', '1.173596088');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8S 22', '6.4', '8', '0.29', '4.38', '0.5', '5.95636', '7.5', '2.32', '0.788741735', '4.38', '20.53917241', '69.7', '19.946825', '17.4', '3.3', '6.02', '0.581586877', '0.97', '0.52984428', '1.254876697', '1.139040734');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8S 23', '6.77', '8', '0.46', '5.47', '0.3045', '6.5554', '7.6955', '3.68', '1.810432783', '8.981937603', '14.25086957', '65.4', '19.08159473', '16.4', '3.1', '7.07', '0.587419847', '1.02', '0.41066536', '1.45824115', '1.287926877');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8S 21.7', '6.4', '8', '0.387', '4.387', '0.41', '6.13636', '7.59', '3.096', '1.32029295', '5.35', '15.85622739', '63.65', '18.6096', '15.9', '3.15', '4.88', '0.591133663', '0.87', '0.454367915', '1.215681737', '1.079238026');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8S 21.2', '6.24', '8', '0.4', '4.14', '0.39', '6.1462', '7.61', '3.2', '1.522655766', '5.307692308', '15.3655', '60.28', '17.47551133', '15.07', '3.11', '3.96', '0.582356864', '0.8', '0.427702961', '1.135009219', '0.999927005');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8S 21', '6.18', '8', '0.38', '5.4', '0.3045', '6.5554', '7.6955', '3.04', '1.51496199', '8.866995074', '17.25105263', '62.3', '17.82499113', '15.6', '3.18', '6.8', '0.587595441', '1.05', '0.294857203', '1.461156649', '1.29507697');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8S 20.5', '6.07', '8', '0.362', '4.092', '0.4255', '6.09436', '7.5745', '2.896', '1.26707256', '4.808460635', '16.83524862', '60.83', '17.78353846', '15.21', '3.17', '4.09', '0.594021119', '0.82', '0.431590554', '1.138644826', '1.00915769');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8S 20.5', '6.06', '8', '0.36', '4.09', '0.4255', '6.09436', '7.5745', '2.88', '1.260688332', '4.806110458', '16.92877778', '60.74', '17.75153846', '15.19', '3.17', '4.08', '0.594604346', '0.82', '0.429041679', '1.138433288', '1.008586572');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8S 20.5', '6.03', '8', '0.362', '4.092', '0.4255', '6.09436', '7.5745', '2.896', '1.26707256', '4.808460635', '16.83524862', '60.6', '17.78353846', '15.1', '3.17', '4.07', '0.596940142', '0.82', '0.431590554', '1.138644826', '1.010347376');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8S 20.5', '6.03', '8', '0.357', '4.087', '0.4255', '6.09436', '7.5745', '2.856', '1.251100273', '4.802585194', '17.07103641', '60.6', '17.70353846', '15.1', '3.17', '4.07', '0.594754617', '0.82', '0.425259253', '1.138116571', '1.010347376');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8S 20.5', '6.03', '8', '0.35', '4.08', '0.4255', '6.09436', '7.5745', '2.8', '1.228673302', '4.794359577', '17.41245714', '60.6', '17.59153846', '15.2', '3.17', '4.04', '0.596097695', '0.82', '0.4166224', '1.13738033', '1.003300147');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8S 20.5', '6.03', '8', '0.34', '4.07', '0.425', '6.0462', '7.575', '2.72', '1.18844226', '4.788235294', '17.78294118', '61.29', '17.41839767', '15.3', '3.19', '4.02', '0.593970476', '0.82', '0.409968058', '1.137762291', '0.997570578');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8S 20.5', '5.97', '8', '0.349', '4.079', '0.4255', '6.09436', '7.5745', '2.792', '1.225463166', '4.793184489', '17.46234957', '60.2', '17.57553846', '15.1', '3.18', '4', '0.60161609', '0.82', '0.415409932', '1.137275471', '1.001621202');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8S 20.25', '6.06', '8', '0.36', '4.09', '0.4255', '6.09436', '7.5745', '2.88', '1.260688332', '4.806110458', '16.92877778', '60.74', '17.75153846', '15.19', '3.17', '4.08', '0.594604346', '0.82', '0.429041679', '1.138433288', '1.008586572');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8S 20.25', '5.96', '8', '0.35', '4.08', '0.4255', '6.09436', '7.5745', '2.8', '1.228673302', '4.794359577', '17.41245714', '60.2', '17.59153846', '15', '3.18', '4.04', '0.596097695', '0.82', '0.4166224', '1.13738033', '1.009966666');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8S 20', '5.9', '8', '0.32', '4.2', '0.415', '6.13636', '7.585', '2.56', '1.126583592', '5.060240964', '19.176125', '59.9', '17.30617467', '15', '3.22', '4.33', '0.591734411', '0.86', '0.371357689', '1.175051568', '1.046311776');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8S 19', '5.59', '8', '0.31', '5.32', '0.3045', '6.5554', '7.6955', '2.48', '1.254474857', '8.735632184', '21.14645161', '59.2', '16.68159473', '14.8', '3.26', '6.45', '0.592353874', '1.08', '0.22297982', '1.459064919', '1.29494828');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8S 18.4', '5.41', '8', '0.27', '4', '0.4255', '6.09436', '7.5745', '2.16', '0.966790364', '4.700352526', '22.5717037', '57.3', '16.31153846', '14.3', '3.25', '3.78', '0.600352734', '0.84', '0.335192746', '1.1292542', '1.00055247');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8S 18.4', '5.34', '8', '0.27', '4', '0.4255', '6.09436', '7.5745', '2.16', '0.966790364', '4.700352526', '22.5717037', '56.9', '16.31153846', '14.2', '3.26', '3.8', '0.597192982', '0.84', '0.335192746', '1.1292542', '1.006722125');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8S 18', '5.34', '8', '0.27', '4', '0.4255', '6.09436', '7.5745', '2.16', '0.966790364', '4.700352526', '22.5717037', '56.9', '16.31153846', '14.23', '3.26', '3.79', '0.59876869', '0.84', '0.335192746', '1.1292542', '1.004336259');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8S 18', '5.33', '8', '0.27', '4', '0.4255', '6.09436', '7.5745', '2.16', '0.966790364', '4.700352526', '22.5717037', '56.9', '16.31153846', '14.2', '3.27', '3.78', '0.600352734', '0.84', '0.335192746', '1.1292542', '1.004069361');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8S 18', '5.3', '8', '0.25', '4.25', '0.41', '6.13636', '7.59', '2', '0.880395983', '5.182926829', '24.54544', '57.8', '16.4176', '14.4', '3.3', '4.35', '0.602948396', '0.91', '0.310548817', '1.203191965', '1.070703624');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8S 18', '5.3', '8', '0.25', '4.25', '0.4065', '6.122', '7.5935', '2', '0.885898271', '5.227552276', '24.488', '57.3', '16.31437467', '14.3', '3.28', '4.27', '0.609001299', '0.89', '0.308046951', '1.202881869', '1.064760471');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8S 18', '5.29', '8', '0.27', '4', '0.425', '6.0462', '7.575', '2.16', '0.960278824', '4.705882353', '22.39333333', '57.36', '16.29839767', '14.3', '3.29', '3.72', '0.609318996', '0.84', '0.339411224', '1.13041884', '0.992612573');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8S 18', '5.29', '8', '0.27', '4', '0.4255', '6.09436', '7.5745', '2.16', '0.966790364', '4.700352526', '22.5717037', '56.9', '16.31153846', '14.2', '3.27', '3.78', '0.600352734', '0.84', '0.335192746', '1.1292542', '1.004069361');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8S 18', '5.2', '8', '0.25', '4.13', '0.415', '6.13636', '7.585', '2', '0.895061116', '4.975903614', '24.54544', '56.8', '16.18617467', '14.2', '3.3', '3.95', '0.616765269', '0.87', '0.309259579', '1.168684735', '1.027110503');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8S 17.75', '5.33', '8', '0.27', '4', '0.4255', '6.09436', '7.5745', '2.16', '0.966790364', '4.700352526', '22.5717037', '56.9', '16.31153846', '14.2', '3.27', '3.78', '0.600352734', '0.84', '0.335192746', '1.1292542', '1.004069361');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8S 17.75', '5.22', '8', '0.27', '4', '0.4255', '6.09436', '7.5745', '2.16', '0.966790364', '4.700352526', '22.5717037', '56.87', '16.31153846', '14.2', '3.31', '3.78', '0.600352734', '0.84', '0.335192746', '1.1292542', '1.004069361');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8S 17.5', '5.15', '8', '0.21', '4.33', '0.4115', '6.15724', '7.5885', '1.68', '0.725684156', '5.261239368', '29.32019048', '58.3', '16.18499831', '14.6', '3.37', '4.5', '0.618642524', '0.93', '0.295698782', '1.23517236', '1.081416024');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8S 17.5', '5.12', '8', '0.22', '5', '0.3485', '6.66004', '7.6515', '1.76', '0.840865882', '7.173601148', '30.27290909', '58.4', '16.24734113', '14.6', '3.38', '6.2', '0.585517473', '1.1', '0.199590064', '1.403261162', '1.274611141');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8S 17.4', '5.12', '8', '0.26', '4', '0.39', '6.1462', '7.61', '2.08', '1.024366667', '5.128205128', '23.63923077', '54.31', '15.23551133', '13.58', '3.26', '3.52', '0.590909091', '0.83', '0.274989492', '1.123036054', '0.993113252');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8S 17.23', '5.07', '8', '0.26', '4', '0.39', '6.1662', '7.61', '2.08', '1.0277', '5.128205128', '23.71615385', '53.22', '15.23887733', '13.31', '3.24', '3.52', '0.590909091', '0.83', '0.272205182', '1.122485383', '1.00313558');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8S 17', '5', '8', '0.24', '5.25', '0.3045', '6.5554', '7.6955', '1.92', '0.984155759', '8.620689655', '27.31416667', '56', '15.56159473', '14', '3.35', '6.16', '0.596078214', '1.11', '0.173750548', '1.460748354', '1.301157177');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '7S 26.67', '7.9', '7', '0.557', '4.537', '0.5', '5.02324', '6.5', '3.899', '1.233389764', '4.537', '9.018384201', '57.9', '19.7284', '16.54', '2.71', '6.9', '0.563957018', '0.93', '0.91896295', '1.282700336', '1.164390017');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '7S 25.2', '7.4', '7', '0.558', '4.556', '0.4535', '5.163664', '6.5465', '3.906', '1.394540614', '5.023153252', '9.253878136', '54.7', '18.67860615', '15.6', '2.72', '6.08', '0.58781899', '0.91', '0.798649318', '1.271188843', '1.129481388');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '7S 22', '6.49', '7', '0.354', '4.334', '0.5', '5.02324', '6.5', '2.478', '0.82059389', '4.334', '14.1899435', '52.1', '17.24165', '14.9', '2.83', '5.91', '0.573941989', '0.95', '0.568363826', '1.248363705', '1.135382737');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '7S 22', '6.4', '7', '0.36', '4.17', '0.49', '5.09668', '6.51', '2.52', '0.897961533', '4.255102041', '14.15744444', '50', '16.538627', '14.3', '2.82', '5.19', '0.57049999', '0.91', '0.526143442', '1.19466463', '1.086903924');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '7S 21.33', '6.41', '7', '0.495', '4.265', '0.39', '5.26324', '6.61', '3.465', '1.566299215', '5.467948718', '10.63280808', '46.17', '15.75780233', '13.19', '2.69', '4.31', '0.585009875', '0.82', '0.538820667', '1.173595704', '1.039206775');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '7S 20.2', '5.94', '7', '0.48', '3.99', '0.36', '5.31308', '6.64', '3.36', '1.77546533', '5.541666667', '11.06891667', '41.99', '14.253456', '11.85', '2.64', '2.89', '0.659389609', '0.7', '0.454454115', '1.084357119', '0.899826519');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '7S 20', '5.91', '7', '0.462', '3.872', '0.392', '5.2218', '6.608', '3.234', '1.58942776', '4.93877551', '11.3025974', '42.32', '14.46962601', '12.09', '2.68', '3.27', '0.57991336', '0.74', '0.470448827', '1.065656795', '0.945324133');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '7S 20', '5.9', '7', '0.27', '4.25', '0.5', '5.02324', '6.5', '1.89', '0.638246965', '4.25', '18.60459259', '49.7', '16.21265', '14.2', '2.91', '5.52', '0.579450672', '0.97', '0.484485751', '1.234570179', '1.124001905');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '7S 20', '5.88', '7', '0.458', '3.868', '0.392', '5.2218', '6.608', '3.206', '1.577295918', '4.933673469', '11.40131004', '42.2', '14.42062601', '12.1', '2.68', '3.24', '0.583470908', '0.74', '0.463976545', '1.065133054', '0.940588878');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '7S 20', '5.88', '7', '0.45', '3.86', '0.39', '5.2298', '6.61', '3.15', '1.563312077', '4.948717949', '11.62177778', '42.55', '14.28086033', '12.2', '2.69', '3.2', '0.584110881', '0.74', '0.448294614', '1.063251253', '0.931066725');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '7S 20', '5.87', '7', '0.42', '4.19', '0.39', '5.26324', '6.61', '2.94', '1.352769598', '5.371794872', '12.53152381', '44', '14.83905233', '12.57', '2.74', '4.05', '0.59029677', '0.83', '0.419384988', '1.164283073', '1.03191899');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '7S 20', '5.83', '7', '0.45', '3.86', '0.392', '5.2218', '6.608', '3.15', '1.552956804', '4.923469388', '11.604', '41.9', '14.32262601', '12', '2.68', '3.1', '0.606045235', '0.74', '0.451314925', '1.064088404', '0.923868678');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '7S 20', '5.7', '7', '0.28', '4.09', '0.49', '5.09668', '6.51', '1.96', '0.712075445', '4.173469388', '18.20242857', '47.6', '15.558627', '13.6', '2.85', '4.86', '0.574841996', '0.92', '0.44643958', '1.182070805', '1.078510002');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '7S 19', '5.63', '7', '0.377', '4.147', '0.39', '5.26324', '6.61', '2.639', '1.226862471', '5.316666667', '13.96084881', '42.8', '14.31230233', '12.23', '2.76', '3.91', '0.592800703', '0.83', '0.364942742', '1.159100659', '1.027923706');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '7S 18.3', '5.4', '7', '0.268', '4.266', '0.4535', '5.163664', '6.5465', '1.876', '0.715310543', '4.703417861', '19.26740299', '46.4', '15.12610615', '13.3', '2.93', '5.02', '0.584460118', '0.96', '0.381009966', '1.228676958', '1.111515764');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '7S 18', '5.3', '7', '0.365', '4.115', '0.375', '5.351664', '6.625', '2.555', '1.265845191', '5.486666667', '14.66209315', '41.2', '13.768125', '11.8', '2.79', '4.28', '0.508763295', '0.9', '0.320523372', '1.144794113', '1.096121823');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '7S 17.9', '5.29', '7', '0.38', '3.89', '0.36', '5.2262', '6.64', '2.66', '1.418134819', '5.402777778', '13.75315789', '39.42', '13.025531', '11.27', '2.75', '3.03', '0.582810584', '0.76', '0.325013027', '1.076841959', '0.944775012');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '7S 17.5', '5.17', '7', '0.356', '3.766', '0.392', '5.2218', '6.608', '2.492', '1.259226484', '4.803571429', '14.66797753', '39.29', '13.17112601', '11.23', '2.76', '2.95', '0.591457784', '0.76', '0.328799154', '1.052111743', '0.931625032');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '7S 17.5', '5.15', '7', '0.353', '3.763', '0.392', '5.2218', '6.608', '2.471', '1.249610466', '4.799744898', '14.79263456', '39.2', '13.13437601', '11.2', '2.76', '2.94', '0.592052399', '0.76', '0.325624936', '1.051739039', '0.931289429');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '7S 17.5', '5.15', '7', '0.34', '3.75', '0.39', '5.2298', '6.61', '2.38', '1.215816752', '4.807692308', '15.38176471', '39.56', '12.93336033', '11.3', '2.77', '2.9', '0.590988685', '0.75', '0.309419564', '1.049436677', '0.920970054');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '7S 17.5', '5.1', '7', '0.34', '3.98', '0.385', '5.31668', '6.615', '2.38', '1.179711023', '5.168831169', '15.63729412', '40.1', '13.413148', '11.5', '2.79', '3.44', '0.587990429', '0.82', '0.306350589', '1.113300027', '0.994672767');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '7S 17.5', '5.09', '7', '0.345', '3.755', '0.392', '5.2218', '6.608', '2.415', '1.223892633', '4.789540816', '15.13565217', '38.9', '13.03637601', '11.1', '2.77', '2.9', '0.596398644', '0.76', '0.317364159', '1.050748198', '0.929089451');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '7S 15.5', '4.6', '7', '0.23', '4', '0.39', '5.26324', '6.61', '1.61', '0.775990513', '5.128205128', '22.88365217', '38.6', '12.51155233', '11', '2.91', '3.47', '0.599423631', '0.87', '0.241408597', '1.142363261', '1.021066733');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '7S 15.3', '4.5', '7', '0.25', '3.66', '0.392', '5.2218', '6.608', '1.75', '0.909898796', '4.668367347', '20.8872', '36.5', '11.87262601', '10.4', '2.85', '2.67', '0.599841924', '0.77', '0.239790508', '1.039339041', '0.920998622');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '7S 15.3', '4.43', '7', '0.25', '3.66', '0.392', '5.2218', '6.608', '1.75', '0.909898796', '4.668367347', '20.8872', '36.2', '11.87262601', '10.4', '2.86', '2.7', '0.593177013', '0.78', '0.239790508', '1.039339041', '0.926158318');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '7S 15.25', '4.5', '7', '0.25', '4', '0.375', '5.351664', '6.625', '1.75', '0.891944', '5.333333333', '21.406656', '37.9', '12.359375', '10.8', '2.89', '3.38', '0.591715976', '0.86', '0.225945608', '1.133238254', '1.018179657');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '7S 15', '4.42', '7', '0.25', '3.66', '0.39', '5.2298', '6.61', '1.75', '0.915966092', '4.692307692', '20.9192', '36.61', '11.83086033', '10.5', '2.88', '2.64', '0.603563114', '0.78', '0.236941816', '1.038771031', '0.911576343');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '7S 15', '4.42', '7', '0.25', '3.66', '0.392', '5.2218', '6.608', '1.75', '0.909898796', '4.668367347', '20.8872', '36.2', '11.87262601', '10.4', '2.86', '2.67', '0.599841924', '0.78', '0.239790508', '1.039339041', '0.920998622');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '7S 15', '4.4', '7', '0.21', '3.98', '0.39', '5.26324', '6.61', '1.47', '0.712073444', '5.102564103', '25.06304762', '38', '12.26655233', '10.86', '2.92', '3.42', '0.599109865', '0.87', '0.23065176', '1.14021578', '1.020196601');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '7S 15', '4.4', '7', '0.23', '3.88', '0.385', '5.31668', '6.615', '1.61', '0.818607846', '5.038961039', '23.116', '37.1', '12.091055', '10.6', '2.89', '3.12', '0.600648043', '0.84', '0.224829533', '1.104546251', '0.986675378');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '7S 14.6', '4.31', '7', '0.24', '3.75', '0.36', '5.2262', '6.64', '1.68', '0.929102222', '5.208333333', '21.77583333', '35.43', '11.310531', '10.12', '2.87', '2.68', '0.590310168', '0.79', '0.204900794', '1.061730988', '0.937661712');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '7S 14.6', '4.26', '7', '0.24', '3.75', '0.36', '5.31308', '6.64', '1.68', '0.944547556', '5.208333333', '22.13783333', '34.63', '11.313456', '9.89', '2.85', '2.68', '0.590310168', '0.79', '0.197018458', '1.059382641', '0.948502092');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6S 46.1', '13.56', '6', '0.88', '5.5', '0.84', '2.501', '5.16', '5.28', '0.476380952', '3.273809524', '2.842045455', '68.57', '27.870392', '22.86', '2.25', '21.15', '0.550650118', '1.25', '4.557087039', '1.696328144', '1.544994458');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6S 41', '12.06', '6', '0.63', '5.25', '0.84', '2.501', '5.16', '3.78', '0.357285714', '3.125', '3.96984127', '64.07', '25.620392', '21.36', '2.3', '17.86', '0.567145507', '1.22', '3.350607898', '1.62294123', '1.468757022');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6S 41', '12.06', '6', '0.63', '5.25', '0.84', '2.501', '5.16', '3.78', '0.357285714', '3.125', '3.96984127', '63.87', '25.620392', '21.3', '2.3', '18.23', '0.5556346', '1.23', '3.350607898', '1.62294123', '1.485981442');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6S 37.4', '10.99', '6', '0.75', '5.13', '0.685', '2.881', '5.315', '4.5', '0.614888804', '3.744525547', '3.841333333', '57.03', '22.646626', '19.01', '2.28', '13.87', '0.55562907', '1.12', '2.626972581', '1.55027491', '1.392463464');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6S 37.4', '10.99', '6', '0.75', '5.13', '0.685', '2.881', '5.315', '4.5', '0.614888804', '3.744525547', '3.841333333', '56.29', '22.646626', '18.8', '2.26', '13.78', '0.559257997', '1.12', '2.626972581', '1.55027491', '1.395668642');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6S 32.3', '9.49', '6', '0.5', '4.88', '0.685', '2.881', '5.315', '3', '0.43092617', '3.562043796', '5.762', '52.53', '20.396626', '17.51', '2.35', '11.74', '0.565067975', '1.11', '1.795846316', '1.481216509', '1.334835081');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6S 32.3', '9.49', '6', '0.5', '4.88', '0.685', '2.881', '5.315', '3', '0.43092617', '3.562043796', '5.762', '51.79', '20.396626', '17.3', '2.34', '11.66', '0.568944942', '1.11', '1.795846316', '1.481216509', '1.338328912');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6S 27.7', '8.15', '6', '0.566', '4.936', '0.525', '3.619', '5.475', '3.396', '0.790443004', '4.700952381', '6.393992933', '45.53', '17.60516433', '15.1', '2.36', '8.99', '0.585253229', '1.05', '1.101607497', '1.450492143', '1.276639966');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6S 23.9', '7.03', '6', '0.38', '4.75', '0.525', '3.619', '5.475', '2.28', '0.551466667', '4.523809524', '9.523684211', '41.98', '15.93116433', '14', '2.44', '7.89', '0.594267368', '1.06', '0.766787874', '1.407462393', '1.24208566');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6S 21.67', '6.44', '6', '0.545', '3.745', '0.495', '3.83636', '5.505', '3.27', '1.127869456', '3.782828283', '7.039192661', '33.61', '13.57561333', '11.2', '2.28', '3.66', '0.59196814', '0.75', '0.77754334', '1.080407827', '0.948407971');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6S 20', '5.95', '6', '0.481', '3.98', '0.438', '4.279168', '5.562', '2.886', '1.180720846', '4.543378995', '8.896399168', '32.06', '12.83488589', '10.69', '2.32', '4.09', '0.562624672', '0.83', '0.521643373', '1.129346055', '1.031509651');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6S 20', '5.88', '6', '0.456', '3.821', '0.465', '4.21012', '5.535', '2.736', '1.080511334', '4.108602151', '9.232719298', '32.13', '12.74722683', '10.71', '2.34', '3.8', '0.568878111', '0.81', '0.525515584', '1.092901575', '0.990925211');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6S 20', '5.7', '6', '0.5', '3.77', '0.425', '4.27668', '5.575', '3', '1.334585739', '4.435294118', '8.55336', '30.8', '12.233441', '10.3', '2.32', '3.4', '0.558152427', '0.77', '0.516408053', '1.061678468', '0.959242217');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6S 18.33', '5.44', '6', '0.495', '3.245', '0.45', '3.95636', '5.55', '2.97', '1.341138983', '3.605555556', '7.992646465', '27.81', '11.28645833', '9.27', '2.26', '2.14', '0.598772158', '0.63', '0.542942403', '0.922977595', '0.800384212');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6S 18', '5.27', '6', '0.475', '3.745', '0.375', '4.39012', '5.625', '2.85', '1.484864798', '4.993333333', '9.242357895', '27.91', '11.155625', '9.3', '2.3', '2.86', '0.573904268', '0.74', '0.406615855', '1.040844811', '0.930010406');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6S 17.5', '5', '6', '0.37', '3.64', '0.425', '4.27668', '5.575', '2.22', '1.022864641', '4.282352941', '11.55859459', '28.7', '11.063441', '9.57', '2.39', '3.03', '0.563727481', '0.78', '0.349692941', '1.039212358', '0.93944808');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6S 17.25', '5.07', '6', '0.475', '3.575', '0.359', '4.34724', '5.641', '2.85', '1.608928453', '4.979108635', '9.152084211', '26.2', '10.5356732', '8.7', '2.27', '2.4', '0.569547696', '0.68', '0.388709444', '0.988537158', '0.882082176');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6S 17.25', '5.07', '6', '0.46', '3.56', '0.36', '4.34324', '5.64', '2.76', '1.558903246', '4.944444444', '9.441826087', '26.5', '10.41677667', '8.8', '2.29', '2.34', '0.578436103', '0.68', '0.368933569', '0.986683999', '0.865946671');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6S 17.25', '5.07', '6', '0.46', '3.56', '0.359', '4.34724', '5.641', '2.76', '1.564685299', '4.95821727', '9.450521739', '26.2', '10.4006732', '8.7', '2.27', '2.34', '0.576829336', '0.68', '0.367752925', '0.986254109', '0.870986361');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6S 17.25', '5.02', '6', '0.465', '3.565', '0.359', '4.34724', '5.641', '2.79', '1.579474385', '4.965181058', '9.348903226', '26', '10.4456732', '8.7', '2.28', '2.3', '0.589337354', '0.68', '0.374611973', '0.987013945', '0.863509945');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6S16.67', '4.97', '6', '0.3', '3.5', '0.495', '3.83636', '5.505', '1.8', '0.664304762', '3.535353535', '12.78786667', '29.2', '11.37061333', '9.73', '2.42', '2.86', '0.618389423', '0.76', '0.42941698', '1.027546457', '0.899477409');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6S 16.6', '4.9', '6', '0.265', '3.765', '0.438', '4.279168', '5.562', '1.59', '0.687647899', '4.297945205', '16.14780377', '28.4', '10.89331683', '9.5', '2.4', '3.39', '0.574629751', '0.83', '0.299390893', '1.092400401', '0.996181657');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6S 16.1', '4.74', '6', '0.44', '3.62', '0.33', '4.44324', '5.67', '2.64', '1.636552486', '5.484848485', '10.09827273', '24.73', '9.897272', '8.24', '2.28', '1.99', '0.655549256', '0.65', '0.307691028', '0.994887083', '0.827445625');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6S 16', '4.7', '6', '0.26', '3.625', '0.465', '4.21012', '5.535', '1.56', '0.649391887', '3.897849462', '16.19276923', '28.6', '10.98322683', '9.54', '2.47', '3.24', '0.569705916', '0.83', '0.330401889', '1.056927793', '0.969487318');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6S 15.5', '4.51', '6', '0.385', '3.635', '0.3385', '4.467168', '5.6615', '2.31', '1.397751371', '5.369276219', '11.60303377', '24.47', '9.67490825', '8.16', '2.33', '2.27', '0.596849474', '0.71', '0.256887537', '1.009517407', '0.88739833');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6S 15.2', '4.47', '6', '0.38', '3.56', '0.33', '4.4734', '5.67', '2.28', '1.446962887', '5.393939394', '11.77210526', '24.02', '9.354834', '8.01', '2.32', '2.14', '0.579787589', '0.69', '0.241010566', '0.985765009', '0.870296346');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6S 15', '4.39', '6', '0.328', '3.598', '0.375', '4.39012', '5.625', '1.968', '1.067229468', '4.797333333', '13.3845122', '25.26', '9.832625', '8.42', '2.4', '2.5', '0.58222854', '0.75', '0.24687907', '1.018936571', '0.913819085');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6S 15', '4.4', '6', '0.25', '3.52', '0.425', '4.27668', '5.575', '1.5', '0.714685829', '4.141176471', '17.10672', '26.4', '9.983441', '8.81', '2.47', '2.74', '0.563748127', '0.79', '0.257389752', '1.019046593', '0.931096652');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6S 14.75', '4.34', '6', '0.352', '3.452', '0.359', '4.34724', '5.641', '2.112', '1.234784147', '4.807799443', '12.35011364', '24', '9.4286732', '8', '2.35', '2.1', '0.586011676', '0.69', '0.248077', '0.970148136', '0.860454095');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6S 14.75', '4.34', '6', '0.34', '3.44', '0.36', '4.34324', '5.64', '2.04', '1.192427003', '4.777777778', '12.77423529', '24.28', '9.336776667', '8.1', '2.36', '2.06', '0.592828893', '0.69', '0.23897928', '0.968748518', '0.846867868');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6S 14.75', '4.34', '6', '0.34', '3.44', '0.359', '4.34724', '5.641', '2.04', '1.196849777', '4.791086351', '12.786', '24', '9.3206732', '8', '2.35', '2.07', '0.588326194', '0.69', '0.237844609', '0.968397117', '0.854285886');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6S 14.75', '4.29', '6', '0.343', '3.443', '0.359', '4.34724', '5.641', '2.058', '1.206358159', '4.795264624', '12.6741691', '23.8', '9.3476732', '7.9', '2.36', '2.1', '0.581440094', '0.69', '0.240350548', '0.968834105', '0.865882882');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6S 13.33', '3.97', '6', '0.25', '3', '0.45', '3.95636', '5.55', '1.5', '0.732659259', '3.333333333', '15.82544', '23.4', '9.081458333', '7.8', '2.43', '1.62', '0.625', '0.64', '0.268547451', '0.87374933', '0.759174653');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6S 13', '3.8', '6', '0.23', '3.5', '0.375', '4.39012', '5.625', '1.38', '0.769316267', '4.666666667', '19.08747826', '23.5', '8.950625', '7.83', '2.48', '2.27', '0.590239537', '0.77', '0.186241872', '1.004990334', '0.902980378');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6S 12.75', '3.7', '6', '0.25', '3.5', '0.3385', '4.467168', '5.6615', '1.5', '0.942639375', '5.169867061', '17.868672', '23.1', '8.45990825', '7.7', '2.49', '2.22', '0.544789321', '0.77', '0.159123413', '0.992711693', '0.903403737');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6S 12.5', '3.68', '6', '0.23', '3.33', '0.359', '4.34724', '5.641', '1.38', '0.836378328', '4.637883008', '18.90104348', '22', '8.3306732', '7.3', '2.43', '1.85', '0.597137265', '0.71', '0.167343508', '0.952751192', '0.845449139');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6S 12.5', '3.61', '6', '0.23', '3.33', '0.359', '4.34724', '5.641', '1.38', '0.836378328', '4.637883008', '18.90104348', '21.8', '8.3306732', '7.3', '2.46', '1.8', '0.613724411', '0.72', '0.167343508', '0.952751192', '0.833945894');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6S 12.27', '3.61', '6', '0.23', '3.33', '0.36', '4.34324', '5.64', '1.38', '0.833287621', '4.625', '18.88365217', '21.8', '8.346776667', '7.3', '2.46', '1.85', '0.5988006', '0.72', '0.168436965', '0.953024222', '0.845374198');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6S 12.25', '3.61', '6', '0.23', '3.33', '0.359', '4.34724', '5.641', '1.38', '0.836378328', '4.637883008', '18.90104348', '21.8', '8.3306732', '7.3', '2.46', '1.9', '0.581423126', '0.72', '0.167343508', '0.952751192', '0.856797957');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6S 12.25', '3.6', '6', '0.23', '3.33', '0.36', '4.34324', '5.64', '1.38', '0.833287621', '4.625', '18.88365217', '22.09', '8.346776667', '7.4', '2.48', '1.83', '0.605344869', '0.71', '0.168436965', '0.953024222', '0.835091838');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6S 12', '3.6', '6', '0.22', '3.38', '0.335', '4.47668', '5.665', '1.32', '0.869795637', '5.044776119', '20.34854545', '21.7', '7.965356', '7.25', '2.47', '1.91', '0.564391279', '0.73', '0.137071803', '0.961575809', '0.863838666');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6S 11.9', '3.51', '6', '0.22', '3.4', '0.33', '4.4734', '5.67', '1.32', '0.877137255', '5.151515152', '20.33363636', '21.14', '7.914834', '7.05', '2.45', '1.83', '0.59063388', '0.72', '0.135261287', '0.966630893', '0.85784242');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6S 11.6', '3.42', '6', '0.22', '3.4', '0.33', '4.44324', '5.67', '1.32', '0.871223529', '5.151515152', '20.19654545', '20.77', '7.917272', '6.92', '2.46', '1.85', '0.584248649', '0.73', '0.136382128', '0.967441784', '0.870581329');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '5S 17.33', '5.08', '5', '0.516', '3.386', '0.435', '3.377', '4.565', '2.58', '1.183053954', '3.891954023', '6.544573643', '18.37', '8.913627', '7.35', '1.9', '2.58', '0.545442741', '0.71', '0.467450188', '0.971874207', '0.89510004');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '5S 16', '4.84', '5', '0.486', '3.236', '0.438', '3.331', '4.562', '2.43', '1.142163503', '3.694063927', '6.853909465', '17.57', '8.518106083', '7.03', '1.91', '2.22', '0.557141397', '0.68', '0.430210056', '0.931827061', '0.848714198');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '5S 16', '4.7', '5', '0.437', '3.307', '0.435', '3.377', '4.565', '2.185', '1.025862243', '3.801149425', '7.727688787', '17.54', '8.419877', '7.02', '1.93', '2.38', '0.550850361', '0.71', '0.370351952', '0.955400955', '0.87968121');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '5S 15', '4.48', '5', '0.515', '3.295', '0.335', '3.577', '4.665', '2.575', '1.668883202', '4.917910448', '6.945631068', '15.47', '7.553048', '6.19', '1.86', '1.8', '0.554826649', '0.63', '0.344386881', '0.912923421', '0.823572344');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '5S 15', '4.4', '5', '0.38', '3.25', '0.435', '3.377', '4.565', '1.9', '0.907699381', '3.735632184', '8.886842105', '16.9', '8.063627', '6.77', '1.97', '2.24', '0.555533273', '0.71', '0.315587321', '0.943594674', '0.869030598');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '5S 14.75', '4.34', '5', '0.504', '3.294', '0.3265', '3.47068', '4.6735', '2.52', '1.626441058', '5.044410413', '6.886269841', '15.2', '7.39463253', '6.1', '1.87', '1.7', '0.572036582', '0.63', '0.336012383', '0.917366714', '0.806985384');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '5S 14.75', '4.34', '5', '0.49', '3.28', '0.3265', '3.47068', '4.6735', '2.45', '1.588011429', '5.022970904', '7.083020408', '15.2', '7.30713253', '6.1', '1.87', '1.68', '0.571497308', '0.62', '0.318355143', '0.914874518', '0.802224367');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '5S 14.75', '4.34', '5', '0.49', '3.28', '0.325', '3.47668', '4.675', '2.45', '1.598098687', '5.046153846', '7.095265306', '15.18', '7.289257', '6.1', '1.87', '1.67', '0.572278164', '0.62', '0.316991694', '0.914193026', '0.799961577');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '5S 14.75', '4.29', '5', '0.494', '3.284', '0.3265', '3.47068', '4.6735', '2.47', '1.599024758', '5.029096478', '7.025668016', '15', '7.33213253', '6', '1.87', '1.7', '0.566842577', '0.63', '0.323314445', '0.915585909', '0.813682473');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '5S 14', '4.18', '5', '0.456', '3.236', '0.335', '3.577', '4.665', '2.28', '1.504632585', '4.829850746', '7.844298246', '14.86', '7.184298', '5.94', '1.88', '1.68', '0.563092598', '0.63', '0.274048029', '0.902842871', '0.812217317');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '5S 13', '3.8', '5', '0.26', '3.13', '0.435', '3.377', '4.565', '1.3', '0.644867981', '3.597701149', '12.98846154', '15.7', '7.313627', '6.28', '2.03', '1.99', '0.5585833', '0.72', '0.234659407', '0.918983998', '0.850456509');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '5S 13', '3.8', '5', '0.31', '3.06', '0.438', '3.331', '4.562', '1.55', '0.770443489', '3.493150685', '10.74516129', '15.7', '7.418106083', '6.3', '2.02', '1.83', '0.571486603', '0.69', '0.263996836', '0.894662653', '0.813987832');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '5S 13', '3.78', '5', '0.396', '3.02', '0.345', '3.457', '4.655', '1.98', '1.313918802', '4.376811594', '8.72979798', '13.86', '6.668064533', '5.54', '1.91', '1.3', '0.609137485', '0.59', '0.230186637', '0.853458253', '0.739029269');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '5S 12.5', '3.68', '5', '0.4', '3.2', '0.3', '3.5734', '4.7', '2', '1.488916667', '5.333333333', '8.9335', '13.42', '6.438666667', '5.37', '1.91', '1.21', '0.677024793', '0.57', '0.198329498', '0.891020526', '0.727678383');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '5S 12.3', '3.61', '5', '0.37', '3.17', '0.3', '3.5734', '4.7', '1.85', '1.390281809', '5.283333333', '9.657837838', '13.34', '6.251166667', '5.34', '1.92', '1.38', '0.577083569', '0.62', '0.174593028', '0.886357966', '0.779296715');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '5S 12.25', '3.6', '5', '0.357', '3.147', '0.3265', '3.47068', '4.6735', '1.785', '1.20587658', '4.819295559', '9.721792717', '13.6', '6.47588253', '5.4', '1.94', '1.45', '0.584822625', '0.63', '0.189415781', '0.891547027', '0.792124137');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '5S 12.25', '3.6', '5', '0.34', '3.13', '0.325', '3.47668', '4.675', '1.7', '1.162026247', '4.815384615', '10.22552941', '13.66', '6.351757', '5.5', '1.95', '1.42', '0.584853082', '0.63', '0.176222587', '0.888080798', '0.776852624');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '5S 12.25', '3.6', '5', '0.34', '3.13', '0.3265', '3.47068', '4.6735', '1.7', '1.154691495', '4.793261868', '10.20788235', '13.6', '6.36963253', '5.4', '1.94', '1.43', '0.583443646', '0.63', '0.177482511', '0.888614694', '0.786642243');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '5S 12.25', '3.56', '5', '0.347', '3.137', '0.3265', '3.47068', '4.6735', '1.735', '1.175834893', '4.803981623', '10.00195965', '13.5', '6.41338253', '5.4', '1.95', '1.4', '0.599953319', '0.63', '0.182284426', '0.889820668', '0.778347014');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '5S 12', '3.6', '5', '0.338', '3.118', '0.335', '3.577', '4.665', '1.69', '1.15748327', '4.653731343', '10.58284024', '13.63', '6.446798', '5.45', '1.95', '1.48', '0.571781603', '0.64', '0.173652536', '0.883109849', '0.795872379');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '5S 12', '3.6', '5', '0.34', '3.13', '0.325', '3.597', '4.675', '1.7', '1.202241337', '4.815384615', '10.57941176', '13.5', '6.353803', '5.39', '1.96', '1.44', '0.576730123', '0.64', '0.167406736', '0.883500119', '0.790246668');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '5S 10', '3', '5', '0.22', '3', '0.335', '3.577', '4.665', '1.1', '0.783024876', '4.47761194', '16.25909091', '12.4', '5.709298', '4.96', '2.05', '1.29', '0.584302326', '0.66', '0.116134493', '0.86404553', '0.778869761');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '5S 10', '2.94', '5', '0.21', '3', '0.3265', '3.47068', '4.6735', '1.05', '0.744096784', '4.594180704', '16.52704762', '12.2', '5.55713253', '4.9', '2.04', '1.23', '0.597256098', '0.65', '0.11309399', '0.866619857', '0.765879846');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '5S 10', '2.9', '5', '0.22', '2.845', '0.345', '3.457', '4.655', '1.1', '0.774855455', '4.123188406', '15.71363636', '13.5', '5.5696625', '5.4', '2.15', '1.4', '0.472886184', '0.69', '0.124767063', '0.822387647', '0.776804947');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '5S 10', '2.87', '5', '0.21', '3', '0.3265', '3.47068', '4.6735', '1.05', '0.744096784', '4.594180704', '16.52704762', '12.1', '5.55713253', '4.8', '2.05', '1.2', '0.6121875', '0.65', '0.11309399', '0.866619857', '0.764321595');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '5S 9.75', '2.9', '5', '0.21', '3', '0.325', '3.597', '4.675', '1.05', '0.774738462', '4.615384615', '17.12857143', '12.1', '5.541303', '4.87', '2.06', '1.29', '0.566860465', '0.67', '0.10597009', '0.863236674', '0.786875792');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '5S 9.75', '2.87', '5', '0.21', '3', '0.325', '3.47668', '4.675', '1.05', '0.748823385', '4.615384615', '16.55561905', '12.12', '5.539257', '4.9', '2.05', '1.21', '0.604338843', '0.65', '0.111893184', '0.866226139', '0.759749556');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '5S 9.75', '2.87', '5', '0.21', '3', '0.3265', '3.47068', '4.6735', '1.05', '0.744096784', '4.594180704', '16.52704762', '12.1', '5.55713253', '4.8', '2.05', '1.2', '0.6121875', '0.65', '0.11309399', '0.866619857', '0.764321595');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '5S 9.4', '2.76', '5', '0.2', '3', '0.3', '3.5734', '4.7', '1', '0.794088889', '5', '17.867', '11.58', '5.188666667', '4.63', '2.05', '1.14', '0.592105263', '0.64', '0.089767708', '0.860912147', '0.760669252');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '5S 9.1', '2.68', '5', '0.2', '3', '0.3', '3.5734', '4.7', '1', '0.794088889', '5', '17.867', '11.34', '5.188666667', '4.89', '2.06', '1.12', '0.602678571', '0.65', '0.089767708', '0.860912147', '0.733649309');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '4S 13.33', '3.81', '4', '0.48', '2.99', '0.39', '2.54716', '3.61', '1.92', '1.048483663', '3.833333333', '5.306583333', '9', '5.447052', '4.5', '1.54', '1.6', '0.542971386', '0.65', '0.297386734', '0.871450292', '0.801110341');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '4S 13', '3.79', '4', '0.462', '2.972', '0.395', '2.52716', '3.605', '1.848', '0.99455502', '3.762025316', '5.47004329', '8.88', '5.414626333', '4.44', '1.53', '1.59', '0.543456942', '0.65', '0.287165934', '0.86902198', '0.803423839');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '4S 11.46', '3.38', '4', '0.375', '2.875', '0.375', '2.570832', '3.625', '1.5', '0.894202435', '3.833333333', '6.855552', '8.2', '4.891074167', '4.1', '1.56', '1.34', '0.554190109', '0.63', '0.200187858', '0.840867445', '0.769660996');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '4S 11.3', '3.33', '4', '0.44', '2.82', '0.33', '2.5334', '3.67', '1.76', '1.197825059', '4.272727273', '5.757727273', '7.6', '4.635992', '3.8', '1.51', '0.92', '0.670335457', '0.52', '0.215403333', '0.812124493', '0.666530688');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '4S 10.67', '3.13', '4', '0.43', '2.95', '0.29', '2.74716', '3.71', '1.72', '1.380805143', '5.086206897', '6.388744186', '7.13', '4.424464', '3.57', '1.51', '1.01', '0.614272999', '0.57', '0.174121648', '0.833239651', '0.724433518');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '4S 10.5', '3.09', '4', '0.41', '2.88', '0.293', '2.59812', '3.707', '1.64', '1.262359215', '4.914675768', '6.336878049', '7.1', '4.314058227', '3.6', '1.52', '1', '0.583262208', '0.57', '0.170594678', '0.82217483', '0.71753823');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '4S 10.5', '3.09', '4', '0.4', '2.87', '0.293', '2.59812', '3.707', '1.6', '1.23586115', '4.897610922', '6.4953', '7.1', '4.274058227', '3.6', '1.52', '1.01', '0.571492705', '0.57', '0.163626874', '0.820126711', '0.721116996');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '4S 10.5', '3.09', '4', '0.39', '2.86', '0.295', '2.59012', '3.705', '1.56', '1.197281972', '4.847457627', '6.641333333', '7.07', '4.250571', '3.5', '1.52', '1', '0.575094043', '0.57', '0.158199115', '0.818850123', '0.72752025');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '4S 10.5', '3.05', '4', '0.4', '2.87', '0.293', '2.59812', '3.707', '1.6', '1.23586115', '4.897610922', '6.4953', '7.1', '4.274058227', '3.5', '1.52', '1', '0.577207632', '0.57', '0.163626874', '0.820126711', '0.727716585');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '4S 10.2', '3', '4', '0.28', '2.78', '0.375', '2.570832', '3.625', '1.12', '0.690487252', '3.706666667', '9.181542857', '7.7', '4.511074167', '3.9', '1.42', '1.2', '0.559503958', '0.55', '0.150611663', '0.819618516', '0.746787994');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '4S 10', '2.99', '4', '0.39', '2.81', '0.29', '2.74716', '3.71', '1.56', '1.314753221', '4.844827586', '7.044', '6.88', '4.157144', '3.44', '1.52', '0.96', '0.558553115', '0.57', '0.144626935', '0.795831673', '0.719495948');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '4S 10', '2.94', '4', '0.41', '2.85', '0.2815', '2.758832', '3.7185', '1.64', '1.40989202', '5.062166963', '6.728858537', '6.85', '4.186978547', '3.43', '1.53', '0.95', '0.571620938', '0.57', '0.15382688', '0.802947276', '0.717601995');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '4S 10', '2.94', '4', '0.24', '2.75', '0.395', '2.52716', '3.605', '0.96', '0.558359862', '3.481012658', '10.52983333', '7.7', '4.526626333', '3.86', '1.62', '1.22', '0.561117871', '0.65', '0.153203034', '0.817728781', '0.75478611');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '4S 10', '2.9', '4', '0.39', '2.69', '0.305', '2.677', '3.695', '1.56', '1.272508989', '4.409836066', '6.864102564', '6.84', '4.146503333', '3.42', '1.53', '0.89', '0.555885603', '0.55', '0.15276299', '0.766416158', '0.693384571');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '4S 9.5', '2.79', '4', '0.337', '2.807', '0.293', '2.59812', '3.707', '1.348', '1.06458189', '4.790102389', '7.709554896', '6.8', '4.022058227', '3.4', '1.55', '0.93', '0.580671704', '0.58', '0.125892701', '0.807280398', '0.712030031');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '4S 9.5', '2.79', '4', '0.32', '2.79', '0.293', '2.59812', '3.707', '1.28', '1.017038423', '4.76109215', '8.119125', '6.8', '3.954058227', '3.4', '1.56', '0.93', '0.570185325', '0.58', '0.117416588', '0.803831549', '0.712030031');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '4S 9.5', '2.79', '4', '0.32', '2.79', '0.295', '2.59012', '3.705', '1.28', '1.007032866', '4.728813559', '8.094125', '6.68', '3.970571', '3.3', '1.55', '0.91', '0.58669446', '0.57', '0.118633334', '0.804508176', '0.714731354');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '4S 9.5', '2.76', '4', '0.326', '2.796', '0.293', '2.59812', '3.707', '1.304', '1.033884486', '4.771331058', '7.969693252', '6.7', '3.978058227', '3.3', '1.56', '0.91', '0.586484425', '0.58', '0.120330202', '0.805047902', '0.714924238');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '4S 9.4', '2.76', '4', '0.375', '2.75', '0.297', '2.675', '3.703', '1.5', '1.228191001', '4.62962963', '7.133333333', '6.82', '4.105008458', '3.4', '1.57', '0.91', '0.565629293', '0.57', '0.141901558', '0.784253749', '0.703952079');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '4S 9', '2.64', '4', '0.311', '2.736', '0.29', '2.74716', '3.71', '1.244', '1.076788113', '4.717241379', '8.833311897', '6.49', '3.84651', '3.25', '1.57', '0.87', '0.568912896', '0.58', '0.10289583', '0.782506709', '0.704676685');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '4S 8.5', '2.5', '4', '0.263', '2.733', '0.293', '2.59812', '3.707', '1.052', '0.853311704', '4.663822526', '9.87878327', '6.4', '3.726058227', '3.2', '1.59', '0.85', '0.586389714', '0.58', '0.093701117', '0.792326533', '0.701666543');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '4S 8.5', '2.5', '4', '0.25', '2.72', '0.293', '2.59812', '3.707', '1', '0.815009536', '4.641638225', '10.39248', '6.4', '3.674058227', '3.2', '1.6', '0.85', '0.578061653', '0.58', '0.089222745', '0.789715876', '0.701666543');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '4S 8.5', '2.5', '4', '0.24', '2.71', '0.295', '2.59012', '3.705', '0.96', '0.77757058', '4.593220339', '10.79216667', '6.29', '3.650571', '3.2', '1.59', '0.83', '0.589482003', '0.57', '0.087170131', '0.788277736', '0.693175438');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '4S 8.5', '2.46', '4', '0.253', '2.723', '0.293', '2.59812', '3.707', '1.012', '0.823880958', '4.646757679', '10.26924901', '6.3', '3.686058227', '3.2', '1.6', '0.83', '0.593951804', '0.58', '0.090227733', '0.790317881', '0.693362504');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '4S 8.4', '2.46', '4', '0.32', '2.46', '0.275', '2.77372', '3.725', '1.28', '1.312033112', '4.472727273', '8.667875', '5.78', '3.46815', '2.89', '1.53', '0.53', '0.643696132', '0.46', '0.093518275', '0.69496183', '0.584436262');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '4S 8.3', '2.45', '4', '0.22', '2.6', '0.33', '2.5334', '3.67', '0.88', '0.649589744', '3.939393939', '11.51545455', '6.43', '3.755992', '3.22', '1.62', '0.84', '0.575404762', '0.59', '0.098492909', '0.764111118', '0.691878351');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '4S 8', '2.39', '4', '0.328', '2.328', '0.26', '2.697', '3.74', '1.312', '1.46149881', '4.476923077', '8.222560976', '5.39', '3.2472', '2.7', '1.5', '0.45', '0.607475149', '0.43', '0.093561643', '0.654769776', '0.558271141');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '4S 7.9', '2.3', '4', '0.25', '2.69', '0.2815', '2.758832', '3.7185', '1', '0.910824249', '4.777975133', '11.035328', '6', '3.546978547', '3', '1.72', '0.78', '0.585408994', '0.58', '0.07676409', '0.773715476', '0.695273328');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '4S 7.7', '2.21', '4', '0.19', '2.66', '0.293', '2.59812', '3.707', '0.76', '0.63337884', '4.539249147', '13.67431579', '6', '3.434058227', '3', '1.64', '0.77', '0.596816139', '0.59', '0.072403547', '0.777735466', '0.68973304');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '4S 7.5', '2.26', '4', '0.19', '2.66', '0.293', '2.59812', '3.707', '0.76', '0.63337884', '4.539249147', '13.67431579', '6', '3.434058227', '3', '1.63', '0.79', '0.58170687', '0.59', '0.072403547', '0.777735466', '0.698633189');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '4S 7.5', '2.21', '4', '0.19', '2.66', '0.293', '2.59812', '3.707', '0.76', '0.63337884', '4.539249147', '13.67431579', '6', '3.434058227', '3', '1.64', '0.77', '0.596816139', '0.59', '0.072403547', '0.777735466', '0.68973304');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '4S 7.5', '2.2', '4', '0.19', '2.66', '0.295', '2.59012', '3.705', '0.76', '0.6271477', '4.508474576', '13.63221053', '5.9', '3.450571', '3', '1.64', '0.76', '0.608796417', '0.58', '0.073554954', '0.778230527', '0.685054742');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '4S 7.5', '2.2', '4', '0.2', '2.625', '0.29', '2.74716', '3.71', '0.8', '0.721749754', '4.525862069', '13.7358', '5.9', '3.40251', '2.95', '1.63', '0.75', '0.582832031', '0.58', '0.067013157', '0.762100155', '0.686738793');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '4S 7.5', '2.2', '4', '0.2', '2.5', '0.305', '2.677', '3.695', '0.8', '0.702163934', '4.098360656', '13.385', '5.86', '3.386503333', '2.93', '1.63', '0.7', '0.56733631', '0.56', '0.072830629', '0.728831636', '0.664366053');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '4S 7', '2.1', '4', '0.17', '2.59', '0.29', '2.74716', '3.71', '0.68', '0.621777659', '4.465517241', '16.15976471', '5.7', '3.277144', '2.85', '1.66', '0.72', '0.583154388', '0.59', '0.06077178', '0.755181943', '0.684566709');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '4S 6.85', '2', '4', '0.19', '2.56', '0.297', '2.675', '3.703', '0.76', '0.66846854', '4.30976431', '14.07894737', '5.8', '3.35952423', '2.9', '1.7', '0.71', '0.584839572', '0.59', '0.068989452', '0.746674049', '0.673274295');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '4S 6.2', '1.82', '4', '0.16', '2.3', '0.275', '2.77372', '3.725', '0.64', '0.70165249', '4.181818182', '17.33575', '4.93', '2.82815', '2.47', '1.65', '0.49', '0.569034864', '0.52', '0.047033622', '0.666748238', '0.607851796');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '4S 6', '1.8', '4', '0.18', '2.19', '0.26', '2.757', '3.74', '0.72', '0.871548999', '4.211538462', '15.31666667', '4.59', '2.669097', '2.3', '1.61', '0.38', '0.598881434', '0.47', '0.044192099', '0.629433711', '0.555838575');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '4S 6', '1.8', '4', '0.18', '2.18', '0.26', '2.697', '3.74', '0.72', '0.85649259', '4.192307692', '14.98333333', '4.6', '2.6552', '2.3', '1.61', '0.36', '0.623532481', '0.45', '0.045268697', '0.627929702', '0.541013542');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '4S 6', '1.77', '3.5', '0.17', '2.33', '0.26', '2.22356', '3.24', '0.595', '0.62397689', '4.480769231', '13.07976471', '3.6', '2.334377', '2.1', '1.43', '0.45', '0.609042152', '0.51', '0.045001201', '0.68256351', '0.589188304');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '4S 5.8', '1.72', '3.5', '0.17', '2.33', '0.26', '2.22356', '3.24', '0.595', '0.62397689', '4.480769231', '13.07976471', '3.6', '2.334377', '2.1', '1.43', '0.45', '0.609042152', '0.51', '0.045001201', '0.68256351', '0.589188304');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '3S 9.07', '2.67', '3', '0.44', '2.62', '0.31', '1.5734', '2.69', '1.32', '0.852371337', '4.225806452', '3.575909091', '3.43', '2.802016', '2.29', '1.13', '0.63', '0.737469005', '0.49', '0.167017107', '0.779991518', '0.6082942');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '3S 9', '2.6', '3', '0.39', '2.52', '0.3595', '1.519', '2.6405', '1.17', '0.653917478', '3.504867872', '3.894871795', '3.55', '2.89091019', '2.37', '1.17', '0.85', '0.564027586', '0.57', '0.167658254', '0.761786819', '0.688118728');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '3S 7.5', '2.21', '3', '0.366', '2.526', '0.26', '1.72356', '2.74', '1.098', '0.960507583', '4.857692308', '4.709180328', '2.92', '2.356452', '1.9', '1.15', '0.61', '0.572482619', '0.52', '0.098228515', '0.739931137', '0.66320593');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '3S 7.5', '2.21', '3', '0.361', '2.521', '0.26', '1.72356', '2.74', '1.083', '0.949264883', '4.848076923', '4.774404432', '2.9', '2.345202', '1.9', '1.15', '0.6', '0.578574633', '0.52', '0.096103853', '0.738724095', '0.657747352');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '3S 7.5', '2.21', '3', '0.35', '2.51', '0.26', '1.72356', '2.74', '1.05', '0.924373276', '4.826923077', '4.924457143', '2.9', '2.320452', '1.9', '1.14', '0.59', '0.580712607', '0.52', '0.09158798', '0.736069558', '0.652243093');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '3S 7.5', '2.2', '3', '0.34', '2.5', '0.26', '1.72356', '2.74', '1.02', '0.901554462', '4.807692308', '5.069294118', '2.87', '2.297952', '1.9', '1.14', '0.59', '0.573799435', '0.52', '0.087668502', '0.7336575', '0.652243093');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '3S 7.5', '2.17', '3', '0.349', '2.509', '0.26', '1.72356', '2.74', '1.047', '0.92209958', '4.825', '4.938567335', '2.9', '2.318202', '1.9', '1.15', '0.59', '0.580018805', '0.52', '0.09118813', '0.735828303', '0.652243093');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '3S 7', '2', '3', '0.19', '2.32', '0.3595', '1.519', '2.6405', '0.57', '0.346038559', '3.226703755', '7.994736842', '3.1', '2.44091019', '2.1', '1.24', '0.65', '0.575530371', '0.56', '0.095474817', '0.707146622', '0.639256451');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '3S 7', '2.09', '3', '0.298', '2.358', '0.285', '1.697', '2.715', '0.894', '0.752505096', '4.136842105', '5.694630872', '2.82', '2.258279333', '1.88', '1.16', '0.54', '0.576635342', '0.51', '0.080874251', '0.69862073', '0.624435916');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '3S 6.93', '2.09', '3', '0.32', '2.36', '0.265', '1.77372', '2.735', '0.96', '0.907563799', '4.452830189', '5.542875', '2.73', '2.193628', '1.82', '1.15', '0.43', '0.675044155', '0.46', '0.077621962', '0.691847637', '0.568410643');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '3S 6.83', '2.01', '3', '0.22', '2.4', '0.31', '1.5734', '2.69', '0.66', '0.465252688', '3.870967742', '7.151818182', '2.93', '2.307016', '1.95', '1.21', '0.57', '0.626526316', '0.53', '0.077669861', '0.722137033', '0.627019813');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '3S 6.8', '2.01', '3', '0.31', '2.35', '0.265', '1.6934', '2.735', '0.93', '0.84296106', '4.433962264', '5.462580645', '2.75', '2.172216', '1.83', '1.17', '0.5', '0.573189479', '0.5', '0.077900364', '0.692098463', '0.611255985');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '3S 6.5', '1.91', '3', '0.268', '2.428', '0.26', '1.72356', '2.74', '0.804', '0.731710303', '4.669230769', '6.43119403', '2.7', '2.135952', '1.8', '1.19', '0.53', '0.585143358', '0.52', '0.06432764', '0.716324815', '0.635129033');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '3S 6.5', '1.91', '3', '0.263', '2.423', '0.26', '1.72356', '2.74', '0.789', '0.719540747', '4.659615385', '6.553460076', '2.7', '2.124702', '1.8', '1.19', '0.53', '0.581535826', '0.52', '0.063002147', '0.715123488', '0.635129033');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '3S 6.5', '1.91', '3', '0.25', '2.41', '0.26', '1.72356', '2.74', '0.75', '0.687663581', '4.634615385', '6.89424', '2.7', '2.095452', '1.8', '1.19', '0.52', '0.583230042', '0.52', '0.059720183', '0.712001522', '0.629108717');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '3S 6.5', '1.91', '3', '0.24', '2.4', '0.26', '1.72356', '2.74', '0.72', '0.662907692', '4.615384615', '7.1815', '2.64', '2.072952', '1.8', '1.17', '0.51', '0.587294118', '0.52', '0.057352225', '0.709601492', '0.623030229');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '3S 6.5', '1.88', '3', '0.251', '2.411', '0.26', '1.72356', '2.74', '0.753', '0.690127875', '4.636538462', '6.866772908', '2.7', '2.097702', '1.8', '1.19', '0.51', '0.59540648', '0.52', '0.059964369', '0.712241596', '0.623030229');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '3S 6.3', '1.81', '3', '0.25', '2.13', '0.2815', '1.769', '2.7185', '0.75', '0.737581201', '3.78330373', '7.076', '2.52', '1.998736653', '1.68', '1.18', '0.41', '0.552907023', '0.48', '0.059790696', '0.62974668', '0.575952885');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '3S 6', '1.8', '3', '0.2', '2.26', '0.285', '1.697', '2.715', '0.6', '0.526936811', '3.964912281', '8.485', '2.6', '2.037779333', '1.74', '1.21', '0.47', '0.583298787', '0.51', '0.056250956', '0.674323025', '0.605541935');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '3S 5.7', '1.68', '3', '0.17', '2.33', '0.26', '1.72356', '2.74', '0.51', '0.483666557', '4.480769231', '10.13858824', '2.5', '1.915452', '1.7', '1.22', '0.46', '0.595802105', '0.52', '0.044182367', '0.69283931', '0.608856208');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '3S 5.7', '1.64', '3', '0.17', '2.33', '0.26', '1.72356', '2.74', '0.51', '0.483666557', '4.480769231', '10.13858824', '2.5', '1.915452', '1.7', '1.23', '0.46', '0.595802105', '0.53', '0.044182367', '0.69283931', '0.608856208');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '3S 5.5', '1.63', '3', '0.17', '2.33', '0.26', '1.72356', '2.74', '0.51', '0.483666557', '4.480769231', '10.13858824', '2.5', '1.915452', '1.7', '1.23', '0.46', '0.595802105', '0.53', '0.044182367', '0.69283931', '0.608856208');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '3S 5.5', '1.62', '3', '0.17', '2.33', '0.26', '1.72356', '2.74', '0.51', '0.483666557', '4.480769231', '10.13858824', '2.5', '1.915452', '1.7', '1.23', '0.46', '0.595802105', '0.53', '0.044182367', '0.69283931', '0.608856208');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '3S 5.5', '1.62', '3', '0.17', '2.33', '0.26', '1.72356', '2.74', '0.51', '0.483666557', '4.480769231', '10.13858824', '2.43', '1.915452', '1.6', '1.23', '0.45', '0.609042152', '0.53', '0.044182367', '0.69283931', '0.620735451');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '3S 5.3', '1.57', '3', '0.156', '2.03', '0.2805', '1.73756', '2.7195', '0.468', '0.476031295', '3.618538324', '11.13820513', '2.3', '1.778084107', '1.6', '1.22', '0.34', '0.575123106', '0.47', '0.043047703', '0.60575919', '0.537537789');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '3S 5.3', '1.56', '3', '0.16', '2.2', '0.265', '1.6934', '2.735', '0.48', '0.464740995', '4.150943396', '10.58375', '2.41', '1.834716', '1.61', '1.24', '0.4', '0.587858333', '0.51', '0.043262729', '0.655480828', '0.582882109');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '3S 5.3', '1.56', '3', '0.16', '2.2', '0.265', '1.77372', '2.735', '0.48', '0.48678422', '4.150943396', '11.08575', '2.37', '1.833628', '1.58', '1.23', '0.4', '0.587858333', '0.51', '0.040957261', '0.654075721', '0.588389779');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '3S 5.2', '1.57', '3', '0.156', '2.03', '0.2805', '1.73756', '2.7195', '0.468', '0.476031295', '3.618538324', '11.13820513', '2.3', '1.778084107', '1.6', '1.22', '0.34', '0.575123106', '0.47', '0.043047703', '0.60575919', '0.537537789');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '3S 5.1', '1.5', '3', '0.156', '2.03', '0.2815', '1.769', '2.7185', '0.468', '0.482923116', '3.605683837', '11.33974359', '2.3', '1.782652919', '1.5', '1.23', '0.35', '0.560682786', '0.47', '0.042434832', '0.605374198', '0.563168122');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '36CB 300', '88.23', '36.72', '0.947', '16.657', '1.68', '31.235', '35.04', '34.77384', '1.057025396', '4.957440476', '32.98310454', '20303.4', '1244.027563', '1105.8', '15.17', '1296.7', '0.498975109', '3.83', '64.64207131', '4.610260032', '4.53261168');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '36CB 300', '88.23', '36.851', '0.958', '16.189', '1.7155', '31.295', '35.1355', '35.303258', '1.079517581', '4.718449432', '32.66701461', '20317.7', '1243.287857', '1102.7', '15.18', '1215.9', '0.498851965', '3.71', '66.81114818', '4.477214007', '4.401273057');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '36WFCB 300', '88.17', '36.72', '0.945', '16.655', '1.68', '31.195', '35.04', '34.7004', '1.053568748', '4.956845238', '33.01058201', '20290.2', '1243.353384', '1105.1', '15.17', '1225.2', '0.527904007', '3.73', '64.7184537', '4.61135499', '4.407270997');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '36WFB 300', '88.17', '36.72', '0.945', '16.655', '1.68', '31.6466', '35.04', '34.7004', '1.068820925', '4.956845238', '33.48846561', '20290.2', '1243.353384', '1105.1', '15.17', '1225.2', '0.527904007', '3.73', '66.80422259', '4.598993363', '4.407270997');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '36G 300', '88.12', '36.72', '0.945', '16.655', '1.68', '30.9926', '35.04', '34.7004', '1.046732963', '4.956845238', '32.79640212', '20262', '1242.793432', '1103.6', '15.16', '1177.7', '0.549195881', '3.66', '70.43378758', '4.61681205', '4.323928885');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '36G 280', '82.45', '36.5', '0.89', '16.6', '1.57', '30.9926', '34.93', '32.485', '1.058376717', '5.286624204', '34.82314607', '18811', '1157.403644', '1030.8', '15.1', '1081.4', '0.553421854', '3.62', '58.17606328', '4.590157229', '4.280458321');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '36CB 280', '82.34', '36.5', '0.886', '16.596', '1.57', '31.235', '34.93', '32.339', '1.062116495', '5.285350318', '35.25395034', '18828.3', '1156.631346', '1031.7', '15.12', '1198.3', '0.499071909', '3.81', '52.9257747', '4.583662862', '4.503916801');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '36WFCB 280', '82.32', '36.5', '0.885', '16.595', '1.57', '31.195', '34.93', '32.3025', '1.059622939', '5.285031847', '35.24858757', '18819.3', '1156.298284', '1031.2', '15.12', '1127.5', '0.530314652', '3.7', '53.02836905', '4.584780079', '4.36989617');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '36WFB 280', '82.32', '36.5', '0.885', '16.595', '1.57', '31.6466', '34.93', '32.3025', '1.07496276', '5.285031847', '35.75887006', '18819.3', '1156.298284', '1031.2', '15.12', '1127.5', '0.530314652', '3.7', '54.94306577', '4.572359967', '4.36989617');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '36CB 275', '80.87', '36.55', '0.89', '16.121', '1.565', '31.295', '34.985', '32.5295', '1.103973485', '5.150479233', '35.16292135', '18400.2', '1131.158784', '1006.8', '15.08', '1095.1', '0.498947959', '3.68', '51.45547147', '4.440982239', '4.361955467');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '36WFCB 260', '76.56', '36.24', '0.845', '16.555', '1.44', '31.195', '34.8', '30.6228', '1.105732365', '5.748263889', '36.91715976', '17233.8', '1064.702088', '951.1', '15', '1020.6', '0.533473975', '3.65', '42.08501963', '4.55151591', '4.321050235');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '36WFB 260', '76.56', '36.24', '0.845', '16.555', '1.44', '31.6466', '34.8', '30.6228', '1.121739698', '5.748263889', '37.45159763', '17233.8', '1064.702088', '951.1', '15', '1020.6', '0.533473975', '3.65', '43.864702', '4.538637027', '4.321050235');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '36G 260', '76.5', '36.24', '0.845', '16.555', '1.44', '30.9926', '34.8', '30.6228', '1.098558131', '5.748263889', '36.67763314', '17205', '1064.142136', '949.5', '15', '973.7', '0.559169702', '3.57', '46.31467468', '4.557203152', '4.224153822');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '36CB 260', '76.46', '36.24', '0.843', '16.553', '1.44', '31.235', '34.8', '30.55032', '1.104663178', '5.747569444', '37.05219454', '17230.8', '1064.045419', '950.9', '15.01', '1090.5', '0.499097876', '3.78', '41.90330553', '4.550497475', '4.467041996');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '36G 250', '73.61', '36.12', '0.82', '16.53', '1.38', '30.9926', '34.74', '29.6184', '1.114089096', '5.989130435', '37.79585366', '16457', '1020.050452', '911.2', '14.95', '923.8', '0.562261625', '3.54', '41.32161802', '4.541624901', '4.196449804');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '36CB 250', '73.54', '36.12', '0.817', '16.527', '1.38', '31.235', '34.74', '29.51004', '1.118897886', '5.988043478', '38.23133415', '16478.7', '1019.631913', '912.4', '14.97', '1040.1', '0.499119831', '3.76', '37.21742408', '4.534939845', '4.449844339');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '36CB 250', '73.53', '36.243', '0.824', '16.055', '1.4115', '31.295', '34.8315', '29.864232', '1.137918021', '5.687212186', '37.97936893', '16499.3', '1019.419311', '910.5', '14.98', '975.4', '0.499054315', '3.64', '38.5468218', '4.402636597', '4.319390726');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '36WFCB 250', '73.49', '36.12', '0.815', '16.525', '1.38', '31.195', '34.74', '29.4378', '1.114864391', '5.987318841', '38.27607362', '16465.9', '1018.979586', '911.7', '14.97', '969.6', '0.535216678', '3.63', '37.27156677', '4.536220324', '4.298037845');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '36WFB 250', '73.49', '36.12', '0.815', '16.525', '1.38', '31.6466', '34.74', '29.4378', '1.131003925', '5.987318841', '38.83018405', '16465.9', '1018.979586', '911.7', '14.97', '969.6', '0.535216678', '3.63', '38.96411017', '4.523254176', '4.298037845');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '36WFCB 245', '72.03', '36.06', '0.802', '16.512', '1.35', '31.195', '34.71', '28.92012', '1.122343795', '6.115555556', '38.89650873', '16092.2', '996.8619168', '892.5', '14.95', '944.7', '0.536114615', '3.62', '35.06603434', '4.528350048', '4.286029484');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '36WFB 245', '72.03', '36.06', '0.802', '16.512', '1.35', '31.6466', '34.71', '28.92012', '1.138591606', '6.115555556', '39.459601', '16092.2', '996.8619168', '892.5', '14.95', '944.7', '0.536114615', '3.62', '36.71915332', '4.515311791', '4.286029484');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '36WFCB 240', '70.6', '36', '0.79', '16.5', '1.32', '31.195', '34.68', '28.44', '1.131499082', '6.25', '39.48734177', '15724', '975.126096', '873.6', '14.92', '920.1', '0.537043528', '3.61', '32.97762402', '4.520311385', '4.273520083');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '36WFB 240', '70.6', '36', '0.79', '16.5', '1.32', '31.6466', '34.68', '28.44', '1.147879431', '6.25', '40.05898734', '15724', '975.126096', '873.6', '14.92', '920.1', '0.537043528', '3.61', '34.59322357', '4.507184943', '4.273520083');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '36CB 240', '70.58', '36', '0.79', '16.5', '1.32', '31.235', '34.68', '28.44', '1.132949954', '6.25', '39.53797468', '15729', '975.126096', '873.8', '14.93', '989.9', '0.499175422', '3.74', '32.87383253', '4.519159347', '4.432147331');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '36G 240', '70.55', '36', '0.79', '16.5', '1.32', '30.9926', '34.68', '28.44', '1.124157668', '6.25', '39.23113924', '15696', '974.5661445', '872', '14.92', '873.5', '0.565694047', '3.52', '36.56835934', '4.526108882', '4.16771256');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '36G 231', '67.85', '35.88', '0.77', '16.48', '1.26', '30.9926', '34.62', '27.6276', '1.149267125', '6.53968254', '40.25012987', '14979', '932.5486725', '835', '14.86', '825.3', '0.569441449', '3.49', '32.47085818', '4.509401691', '4.136292274');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '36WFCB 230', '67.73', '35.88', '0.765', '16.475', '1.26', '31.195', '34.62', '27.4482', '1.149609798', '6.537698413', '40.77777778', '14988.4', '931.499406', '835.5', '14.88', '870.9', '0.539134692', '3.59', '29.03382693', '4.504017641', '4.247754925');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '36WFB 230', '67.73', '35.88', '0.765', '16.475', '1.26', '31.6466', '34.62', '27.4482', '1.16625233', '6.537698413', '41.36810458', '14988.4', '931.499406', '835.5', '14.88', '870.9', '0.539134692', '3.59', '30.57282085', '4.490718437', '4.247754925');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '36G 230', '67.67', '35.88', '0.765', '16.475', '1.26', '30.9926', '34.62', '27.4482', '1.142150878', '6.537698413', '40.51320261', '14960', '930.9394545', '833.9', '14.87', '824.5', '0.569475322', '3.49', '32.33696423', '4.509892065', '4.137012918');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '36CB 230', '67.65', '36', '0.769', '16', '1.29', '31.295', '34.71', '27.684', '1.165981347', '6.201550388', '40.69570871', '15012.9', '931.1377329', '834', '14.9', '882.2', '0.499115847', '3.61', '29.96958641', '4.371235567', '4.28462493');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '36CB 230', '67.63', '35.88', '0.763', '16.473', '1.26', '31.235', '34.62', '27.37644', '1.148213912', '6.536904762', '40.93709043', '14985.6', '930.8557188', '835.3', '14.89', '940.2', '0.49921445', '3.73', '28.88781609', '4.503062052', '4.414051711');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '36WFCB 194', '57.11', '36.48', '0.77', '12.117', '1.26', '32.235', '35.22', '28.0896', '1.625746197', '4.808333333', '41.86363636', '12103.4', '759.7252404', '663.6', '14.56', '355.4', '0.52560223', '2.49', '22.48973734', '3.213803771', '3.071038076');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '36WFB 194', '57.11', '36.48', '0.77', '12.117', '1.26', '32.581', '35.22', '28.0896', '1.643196427', '4.808333333', '42.31298701', '12103.4', '759.7252404', '663.6', '14.56', '355.4', '0.52560223', '2.49', '23.19532277', '3.204172161', '3.071038076');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '36CB 192', '56.47', '36.645', '0.74', '12.15', '1.257', '32.006', '35.388', '27.1173', '1.550784905', '4.832935561', '43.25135135', '12208.5', '755.9761542', '666.3', '14.7', '377.2', '0.498093852', '2.58', '22.5876785', '3.242777878', '3.164928818');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '36B 192', '56.46', '36.5', '0.745', '12.11', '1.27', '32.107', '35.23', '27.1925', '1.555278386', '4.767716535', '43.0966443', '12082', '756.4127421', '662', '14.63', '344.4', '0.545747508', '2.47', '24.03861507', '3.227773346', '3.027219418');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '36CB 192', '56.45', '36.5', '0.744', '12.109', '1.27', '32.235', '35.23', '27.156', '1.559511602', '4.767322835', '43.3266129', '12096.6', '756.2924665', '662.8', '14.64', '377.1', '0.498299877', '2.59', '22.26949304', '3.224442856', '3.165762571');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '36B 190', '55.87', '36.52', '0.726', '12.111', '1.272', '32.123', '35.248', '26.51352', '1.513859613', '4.760613208', '44.24655647', '12049', '752.3069428', '659.9', '14.68', '344.9', '0.545949765', '2.48', '23.6969733', '3.23574846', '3.035007545');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '36WFCB 182', '53.54', '36.32', '0.725', '12.072', '1.18', '32.235', '35.14', '26.332', '1.640606572', '5.115254237', '44.46206897', '11281.5', '709.6001844', '621.2', '14.52', '327.7', '0.527912567', '2.47', '18.60246036', '3.194416347', '3.044446719');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '36WFB 182', '53.54', '36.32', '0.725', '12.072', '1.18', '32.581', '35.14', '26.332', '1.658216309', '5.115254237', '44.93931034', '11281.5', '709.6001844', '621.2', '14.52', '327.7', '0.527912567', '2.47', '19.25217568', '3.184736384', '3.044446719');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '36B 176', '51.8', '36.25', '0.7', '12.065', '1.145', '32.107', '35.105', '25.375', '1.626915344', '5.268558952', '45.86714286', '10902', '686.5668827', '601.5', '14.51', '303.7', '0.551774248', '2.42', '18.39192552', '3.19533476', '2.976967346');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '36CB 176', '51.76', '36.25', '0.698', '12.063', '1.145', '32.235', '35.105', '25.3025', '1.629004495', '5.26768559', '46.18194842', '10912.6', '686.1226384', '602.1', '14.52', '336.1', '0.498335369', '2.55', '16.9239538', '3.192066855', '3.130180874');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '36CB 175', '51.47', '36.395', '0.686', '12.096', '1.132', '32.006', '35.263', '24.96697', '1.603493898', '5.342756184', '46.65597668', '10978.8', '682.6293578', '603.3', '14.61', '335', '0.498362904', '2.55', '17.03781067', '3.211469652', '3.128962596');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '36B 173', '50.94', '36.25', '0.68', '12.065', '1.137', '32.123', '35.113', '24.65', '1.592345187', '5.305628848', '47.23970588', '10784', '677.7062948', '595', '14.55', '301.1', '0.55265034', '2.43', '17.73801233', '3.201107825', '2.980683512');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '36WFCB 170', '49.98', '36.16', '0.68', '12.027', '1.1', '32.235', '35.06', '24.5888', '1.656862967', '5.466818182', '47.40441176', '10470', '659.891154', '579.1', '14.47', '300.6', '0.530511003', '2.45', '15.19610893', '3.174802579', '3.016537049');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '36WFB 170', '49.98', '36.16', '0.68', '12.027', '1.1', '32.581', '35.06', '24.5888', '1.674647195', '5.466818182', '47.91323529', '10470', '659.891154', '579.1', '14.47', '300.6', '0.530511003', '2.45', '15.79105753', '3.165069297', '3.016537049');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '36B 167', '49.15', '36.12', '0.67', '12.035', '1.08', '32.107', '35.04', '24.2004', '1.655025466', '5.571759259', '47.92089552', '10271', '648.4047931', '568.7', '14.46', '282.3', '0.555737771', '2.4', '15.72751791', '3.178438093', '2.949041444');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '36CB 167', '49.1', '36.12', '0.668', '12.033', '1.08', '32.235', '35.04', '24.12816', '1.656938789', '5.570833333', '48.25598802', '10281.5', '647.9652528', '569.3', '14.47', '314.6', '0.498431569', '2.53', '14.41719838', '3.175178117', '3.111543079');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '36B 164', '48.1', '36.12', '0.645', '12.03', '1.072', '32.123', '35.048', '23.2974', '1.606628252', '5.611007463', '49.80310078', '10133', '637.9133872', '561.1', '14.51', '279.4', '0.556652315', '2.41', '15.04476475', '3.185367578', '2.953994544');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '36WFCB 160', '47.09', '36', '0.653', '12', '1.02', '32.235', '34.98', '23.508', '1.719726716', '5.882352941', '49.36447167', '9738.8', '616.4284212', '541', '14.38', '275.4', '0.533333333', '2.42', '12.54283403', '3.151564582', '2.983858609');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '36WFB 160', '47.09', '36', '0.653', '12', '1.02', '32.581', '34.98', '23.508', '1.738185703', '5.882352941', '49.89433384', '9738.8', '616.4284212', '541', '14.38', '275.4', '0.533333333', '2.42', '13.09801427', '3.141572356', '2.983858609');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '36CB 160', '47.06', '36.183', '0.635', '12.045', '1.026', '32.006', '35.157', '22.976205', '1.644564689', '5.869883041', '50.40314961', '9933.2', '619.408052', '549.1', '14.53', '299.8', '0.498373451', '2.52', '13.04229317', '3.184280494', '3.097997044');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '36CB 158', '46.47', '36', '0.635', '12', '1.02', '32.235', '34.98', '22.86', '1.672322304', '5.882352941', '50.76377953', '9683.8', '611.238654', '538', '14.44', '294.6', '0.498574338', '2.52', '12.25098927', '3.160102066', '3.094711282');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '36B 158', '46.44', '36', '0.635', '12', '1.02', '32.107', '34.98', '22.86', '1.665681781', '5.882352941', '50.56220472', '9665.2', '611.0258671', '537', '14.43', '262.4', '0.559756098', '2.38', '13.38758147', '3.163696349', '2.923409657');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '36B 155', '45.58', '36', '0.615', '12', '1.012', '32.123', '34.988', '22.14', '1.626782362', '5.928853755', '52.23252033', '9547.4', '602.1652792', '530.4', '14.47', '259.9', '0.560707965', '2.39', '12.85711723', '3.170200566', '2.927830584');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '36WFB 150', '44.16', '35.84', '0.625', '11.972', '0.94', '32.581', '34.9', '22.4', '1.80946366', '6.368085106', '52.1296', '9012.1', '572.953682', '502.9', '14.29', '250.4', '0.536799877', '2.38', '10.73246447', '3.116554713', '2.947637412');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '36WFCB 150', '44.16', '35.84', '0.625', '11.972', '0.94', '32.235', '34.9', '22.4', '1.790247723', '6.368085106', '51.576', '9012.1', '572.953682', '502.9', '14.29', '250.4', '0.536799877', '2.38', '10.21873905', '3.126828539', '2.947637412');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '36CB 150', '44.1', '35.88', '0.609', '11.974', '0.96', '32.235', '34.92', '21.85092', '1.707790056', '6.236458333', '52.93103448', '9118.7', '576.9939204', '508.3', '14.38', '275.4', '0.498705103', '2.5', '10.4208873', '3.14327142', '3.075700426');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '36B 150', '44.1', '35.88', '0.61', '11.975', '0.96', '32.107', '34.92', '21.8868', '1.703659534', '6.236979167', '52.63442623', '9104', '577.1029771', '507.5', '14.37', '243.4', '0.564411663', '2.35', '11.45361083', '3.146706632', '2.893772488');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '36B 147', '43.24', '35.88', '0.59', '11.975', '0.952', '32.123', '34.928', '21.1692', '1.662476974', '6.289390756', '54.44576271', '8986.2', '568.2423892', '500.9', '14.42', '240.9', '0.565516745', '2.36', '10.97228533', '3.153572357', '2.8981092');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '36CB 147', '43.23', '36', '0.59', '12', '0.9345', '32.006', '35.0655', '21.24', '1.68392545', '6.420545746', '54.24745763', '9040.4', '565.0509782', '502.2', '14.46', '269.9', '0.498584661', '2.5', '10.14052208', '3.159924061', '3.069644684');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '36B 147', '43.23', '35.9', '0.583', '11.968', '0.962', '32.123', '34.938', '20.9297', '1.626627087', '6.22037422', '55.09948542', '9036.3', '570.2847992', '503.4', '14.46', '243.3', '0.564828313', '2.37', '11.10534319', '3.158797444', '2.905684597');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '33G 260', '76.54', '33.63', '0.875', '15.89', '1.55', '28.2742', '32.08', '29.42625', '1.004483445', '5.125806452', '32.31337143', '14868', '993.516722', '884.2', '13.94', '939.8', '0.551425319', '3.5', '52.83215659', '4.418054763', '4.128997758');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '33CB 260', '76.47', '33.786', '0.87', '16.15', '1.5185', '28.624', '32.2675', '29.39382', '1.015458672', '5.317747777', '32.90114943', '15037.7', '996.9673775', '890.2', '14.02', '1068', '0.49909116', '3.74', '46.80523501', '4.481444942', '4.399562513');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '33CB 260', '76.46', '33.75', '0.893', '15.923', '1.525', '28.875', '32.225', '30.13875', '1.061888', '5.220655738', '32.33482643', '14881.7', '992.9168719', '881.9', '13.95', '1028.1', '0.499031458', '3.67', '46.50447048', '4.401727566', '4.334005653');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '33G 260', '76.45', '33.75', '0.89', '15.92', '1.525', '28.4442', '32.225', '30.0375', '1.04272749', '5.219672131', '31.95977528', '14872', '991.5717503', '881.3', '13.95', '928.5', '0.552250197', '3.48', '51.46485412', '4.413857131', '4.120126346');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '33G 245', '72.19', '33.44', '0.835', '15.85', '1.455', '28.2742', '31.985', '27.9224', '1.023727904', '5.446735395', '33.86131737', '13895', '931.7116268', '831', '13.87', '869.2', '0.555456214', '3.47', '44.43677555', '4.394614647', '4.089945554');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '33G 240', '70.63', '33.5', '0.835', '15.865', '1.4', '28.4442', '32.1', '27.9725', '1.069330827', '5.666071429', '34.06491018', '13575', '909.2270628', '810.5', '13.86', '835', '0.557931065', '3.44', '40.75924569', '4.382062508', '4.066345224');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '33CB 240', '70.58', '33.546', '0.81', '16.09', '1.3985', '28.624', '32.1475', '27.17226', '1.030378593', '5.752592063', '35.3382716', '13750.6', '914.8426578', '819.8', '13.96', '972.5', '0.499182954', '3.71', '36.94133593', '4.451380336', '4.366660752');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '33CB 240', '70.57', '33.5', '0.836', '15.866', '1.4', '28.875', '32.1', '28.006', '1.086757847', '5.666428571', '34.53947368', '13578', '909.99845', '810.6', '13.87', '933.6', '0.499100835', '3.64', '36.4993522', '4.369666791', '4.299467201');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '33WF 240', '70.52', '33.5', '0.83', '15.865', '1.4', '29.0702', '32.1', '27.805', '1.086320562', '5.666071429', '35.02433735', '13585.1', '908.539775', '811.1', '13.88', '874.3', '0.532851927', '3.52', '38.46636005', '4.365721439', '4.159398749');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '33WF 240', '70.52', '33.5', '0.83', '15.865', '1.4', '28.655', '32.1', '27.805', '1.070805007', '5.666071429', '34.52409639', '13585.1', '908.539775', '811.1', '13.88', '874.3', '0.532851927', '3.52', '36.90224817', '4.377691278', '4.159398749');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '33G 230', '67.85', '33.25', '0.795', '15.81', '1.36', '28.2742', '31.89', '26.43375', '1.045410063', '5.8125', '35.56503145', '12935', '870.446768', '778', '13.81', '799.6', '0.560119235', '3.43', '37.00206412', '4.370553277', '4.048171062');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '33G 220', '64.83', '33.25', '0.78', '15.81', '1.275', '28.4442', '31.975', '25.935', '1.100642482', '6.2', '36.46692308', '12302', '827.8387816', '740', '13.78', '743.4', '0.564809499', '3.39', '31.68887281', '4.349084015', '4.007612267');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '33G 220', '64.8', '33.12', '0.765', '15.78', '1.295', '28.2742', '31.825', '25.3368', '1.058461324', '6.092664093', '36.95973856', '12278', '828.1171948', '741.4', '13.77', '752.2', '0.563736546', '3.41', '32.3723306', '4.353810315', '4.017996758');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '33WFCB 220', '64.73', '33.25', '0.775', '15.81', '1.275', '28.655', '31.975', '25.76875', '1.101691657', '6.2', '36.97419355', '12312.1', '827.1514938', '740.6', '13.79', '782.4', '0.536655651', '3.48', '28.44926369', '4.344723057', '4.10972579');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '33WF 220', '64.73', '33.25', '0.775', '15.81', '1.275', '29.0702', '31.975', '25.76875', '1.117654748', '6.2', '37.50993548', '12312.1', '827.1514938', '740.6', '13.79', '782.4', '0.536655651', '3.48', '29.85970448', '4.33246291', '4.10972579');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '33CB 220', '64.7', '33.272', '0.766', '16.046', '1.2615', '28.624', '32.0105', '25.486352', '1.083191018', '6.359889021', '37.36814621', '12385.5', '829.020911', '744.5', '13.84', '870', '0.499214418', '3.67', '28.07428773', '4.414577535', '4.324725095');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '33CB 220', '64.68', '33.25', '0.778', '15.808', '1.275', '28.875', '31.975', '25.8685', '1.114588295', '6.199215686', '37.11439589', '12295.7', '827.776825', '739.6', '13.79', '840.8', '0.499191311', '3.61', '28.03668764', '4.336572648', '4.263224264');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '33G 210', '61.91', '33', '0.735', '15.75', '1.235', '28.2742', '31.765', '24.255', '1.068390823', '6.376518219', '38.46829932', '11671', '788.6484868', '707.3', '13.73', '708.5', '0.567528311', '3.38', '28.41337657', '4.338250767', '3.988664706');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '33WF 210', '61.78', '33.12', '0.748', '15.783', '1.21', '29.0702', '31.91', '24.77376', '1.138609206', '6.521900826', '38.86390374', '11664.5', '785.6446213', '704.4', '13.74', '735.6', '0.538928404', '3.45', '25.99381734', '4.314407823', '4.081873964');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '33WF 210', '61.78', '33.12', '0.748', '15.783', '1.21', '28.655', '31.91', '24.77376', '1.122346829', '6.521900826', '38.30882353', '11664.5', '785.6446213', '704.4', '13.74', '735.6', '0.538928404', '3.45', '24.65980152', '4.326859503', '4.081873964');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '33G 210', '61.78', '33.12', '0.75', '15.78', '1.21', '28.4442', '31.91', '24.84', '1.117281526', '6.520661157', '37.9256', '11645', '785.5092083', '703.2', '13.73', '696.2', '0.569103297', '3.36', '27.53984338', '4.331463939', '3.974440345');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '33CB 210', '61.76', '33.12', '0.752', '15.782', '1.21', '28.875', '31.91', '24.90624', '1.137083674', '6.521487603', '38.39760638', '11651.2', '786.5485002', '703.6', '13.74', '794', '0.499194439', '3.59', '24.30316182', '4.318457295', '4.243221863');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '33G 202', '59.53', '32.88', '0.72', '15.735', '1.175', '28.2742', '31.705', '23.6736', '1.101078312', '6.695744681', '39.26972222', '11114', '753.4660828', '676', '13.66', '667.3', '0.571657279', '3.35', '25.12099235', '4.321117541', '3.955816115');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '33G 200', '58.9', '33', '0.72', '15.75', '1.15', '28.4442', '31.85', '23.76', '1.130701118', '6.847826087', '39.50583333', '11038', '746.0405003', '669', '13.69', '652.9', '0.573471184', '3.33', '24.00758012', '4.315053892', '3.942302958');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '33G 200', '58.87', '32.88', '0.7', '15.715', '1.175', '28.2742', '31.705', '23.016', '1.071855186', '6.687234043', '40.39171429', '11055', '748.0606108', '672.4', '13.7', '664.6', '0.571793797', '3.36', '24.69559767', '4.322937457', '3.958359159');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '33CB 200', '58.82', '33', '0.72', '16', '1.1255', '28.624', '31.8745', '23.76', '1.144451355', '7.107952021', '39.75555556', '11049.6', '744.1861762', '669.7', '13.71', '769.5', '0.49924713', '3.62', '20.8074213', '4.375171992', '4.27928149');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '33CB 200', '58.81', '33', '0.72', '15.75', '1.15', '28.875', '31.85', '23.76', '1.147826087', '6.847826087', '40.10416667', '11037.9', '746.531325', '669', '13.7', '749.9', '0.499292354', '3.57', '21.01268715', '4.30210848', '4.22501581');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '33WFCB 200', '58.79', '33', '0.715', '15.75', '1.15', '28.655', '31.85', '23.595', '1.131170462', '6.847826087', '40.07692308', '11048.2', '745.3532125', '669.6', '13.71', '691.7', '0.541303073', '3.43', '21.31989768', '4.310747643', '4.055934061');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '33WF 200', '58.79', '33', '0.715', '15.75', '1.15', '29.0702', '31.85', '23.595', '1.14756069', '6.847826087', '40.65762238', '11048.2', '745.3532125', '669.6', '13.71', '691.7', '0.541303073', '3.43', '22.57271591', '4.298217353', '4.055934061');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '33CB 167', '49.12', '33.53', '0.719', '12.179', '1.062', '29.281', '32.468', '24.10807', '1.627716057', '5.733992467', '40.72461752', '8836.1', '597.2383401', '527.1', '13.41', '321', '0.498050212', '2.56', '15.33905585', '3.233820172', '3.144262375');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '33B 165', '48.52', '33.5', '0.68', '11.35', '1.19', '29.3806', '32.31', '22.78', '1.479199497', '4.768907563', '43.20676471', '8835.4', '600.8569762', '527.5', '13.49', '265.5', '0.546120871', '2.34', '18.11912479', '3.040688576', '2.851507459');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '33WFCB 152', '44.71', '33.5', '0.635', '11.565', '1.055', '29.765', '32.445', '21.2725', '1.549107353', '5.481042654', '46.87401575', '8147.6', '552.2853492', '486.4', '13.5', '256.1', '0.531004922', '2.39', '12.4692879', '3.074722313', '2.922583294');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '33WFB 152', '44.71', '33.5', '0.635', '11.565', '1.055', '30.0946', '32.445', '21.2725', '1.566261252', '5.481042654', '47.39307087', '8147.6', '552.2853492', '486.4', '13.5', '256.1', '0.531004922', '2.39', '12.94766008', '3.065545702', '2.922583294');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '33CB 152', '44.69', '33.5', '0.636', '11.566', '1.055', '29.865', '32.445', '21.306', '1.55662495', '5.481516588', '46.95754717', '8143', '552.5659117', '486.2', '13.5', '272.8', '0.498627712', '2.47', '12.36743518', '3.071805075', '3.0169881');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '33CB 152', '44.69', '33.342', '0.655', '12.115', '0.968', '29.281', '32.374', '21.83901', '1.635416702', '6.257747934', '44.70381679', '7998.5', '541.1729146', '479.8', '13.38', '287.8', '0.498394886', '2.54', '11.7276356', '3.209383681', '3.116007228');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '33B 152', '44.69', '33.25', '0.65', '11.32', '1.065', '29.3806', '32.185', '21.6125', '1.58408318', '5.314553991', '45.20092308', '7953.4', '545.2144762', '478.4', '13.34', '233', '0.55252473', '2.28', '13.80957107', '3.007068369', '2.799588068');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '33B 152', '44.68', '33.5', '0.635', '11.565', '1.055', '29.6386', '32.445', '21.2725', '1.542528917', '5.481042654', '46.67496063', '8136.2', '552.0959542', '485.7', '13.49', '245.1', '0.554836232', '2.34', '13.57719982', '3.078209557', '2.861188661');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '33B 152', '44.65', '33.27', '0.642', '11.312', '1.075', '29.3806', '32.195', '21.35934', '1.55112868', '5.261395349', '45.76417445', '7991.4', '546.7657224', '480.4', '13.38', '234.9', '0.552029632', '2.29', '13.94936661', '3.011199122', '2.805557835');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '33B 143', '42.05', '33.12', '0.615', '11.285', '1', '29.3806', '32.12', '20.3688', '1.601158086', '5.6425', '47.77333333', '7442.2', '511.1987772', '449.4', '13.3', '215.1', '0.55677924', '2.26', '11.58989847', '2.990922015', '2.772531197');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '33WF 141', '41.51', '33.31', '0.605', '11.535', '0.96', '30.0946', '32.35', '20.15255', '1.644201795', '6.0078125', '49.7431405', '7442.2', '507.2624401', '446.8', '13.39', '229.7', '0.534541944', '2.35', '10.24470261', '3.037841262', '2.883673325');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '33WFCB 141', '41.51', '33.31', '0.605', '11.535', '0.96', '29.765', '32.35', '20.15255', '1.626194282', '6.0078125', '49.19834711', '7442.2', '507.2624401', '446.8', '13.39', '229.7', '0.534541944', '2.35', '9.804478602', '3.047348034', '2.883673325');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '33B 141', '41.48', '33.31', '0.605', '11.535', '0.96', '29.6386', '32.35', '20.15255', '1.619288488', '6.0078125', '48.98942149', '7430.8', '507.0730451', '446.2', '13.38', '218.7', '0.561427912', '2.3', '10.73861324', '3.050961759', '2.815669997');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '33CB 141', '41.46', '33.31', '0.605', '11.535', '0.96', '29.865', '32.35', '20.15255', '1.631657726', '6.0078125', '49.36363636', '7434.5', '507.2624401', '446.4', '13.39', '246.2', '0.498717646', '2.44', '9.702845841', '3.044476423', '2.986785787');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '33CB 138', '40.58', '33.164', '0.596', '12.056', '0.879', '29.281', '32.285', '19.765744', '1.646796935', '6.857792947', '49.12919463', '7223', '489.0955654', '435.6', '13.34', '257.5', '0.498471249', '2.52', '8.911825963', '3.185971186', '3.089086565');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '33B 135', '39.55', '33', '0.58', '11.25', '0.94', '29.3806', '32.06', '19.14', '1.611418251', '5.984042553', '50.6562069', '6967.4', '479.2851012', '422.3', '13.27', '198.7', '0.56131456', '2.24', '9.733405188', '2.976259624', '2.746345386');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '33WF 132', '38.84', '33.15', '0.58', '11.51', '0.88', '30.0946', '32.27', '19.227', '1.723290814', '6.539772727', '51.88724138', '6856.8', '469.7295305', '413.7', '13.29', '207.8', '0.538123371', '2.31', '8.306270803', '3.012363057', '2.846849418');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '33WF 132', '38.84', '33.15', '0.58', '11.51', '0.88', '29.765', '32.27', '19.227', '1.704417108', '6.539772727', '51.31896552', '6856.8', '469.7295305', '413.7', '13.29', '207.8', '0.538123371', '2.31', '7.899281182', '3.022194138', '2.846849418');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '33CB 132', '38.82', '33.15', '0.581', '11.511', '0.88', '29.865', '32.27', '19.26015', '1.712943054', '6.540340909', '51.40275387', '6852.1', '470.0042611', '413.4', '13.29', '224.3', '0.498667787', '2.4', '7.822197057', '3.019001596', '2.958788251');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '33B 132', '38.81', '33.15', '0.58', '11.51', '0.88', '29.6386', '32.27', '19.227', '1.697179133', '6.539772727', '51.10103448', '6845.4', '469.5401355', '413', '13.28', '196.8', '0.568201405', '2.25', '8.702809151', '3.025932175', '2.772822095');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '33WF 130', '38.26', '33.1', '0.58', '11.51', '0.855', '29.765', '32.245', '19.198', '1.754253865', '6.730994152', '51.31896552', '6699', '460.1978118', '404.8', '13.23', '201.4', '0.539450219', '2.29', '7.458697504', '3.012058972', '2.832211449');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '33WFB 130', '38.26', '33.1', '0.58', '11.51', '0.855', '30.0946', '32.245', '19.198', '1.773679435', '6.730994152', '51.88724138', '6699', '460.1978118', '404.8', '13.23', '201.4', '0.539450219', '2.29', '7.859349323', '3.00202019', '2.832211449');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '33B 125', '36.88', '32.88', '0.54', '11.21', '0.88', '29.3806', '32', '17.7552', '1.60829657', '6.369318182', '54.40851852', '6482.7', '446.2396572', '394.3', '13.26', '182.3', '0.566671793', '2.22', '8.033211486', '2.962561147', '2.719818585');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '33B 125', '36.83', '32.89', '0.535', '11.205', '0.885', '29.3806', '32.005', '17.59615', '1.585109654', '6.330508475', '54.91700935', '6498.2', '446.7306714', '395.1', '13.28', '183.2', '0.566333351', '2.23', '8.070187435', '2.965485613', '2.723975128');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '33WFB 125', '36.78', '33', '0.57', '11.5', '0.805', '30.0946', '32.195', '18.81', '1.852975641', '7.142857143', '52.79754386', '6354.7', '438.4550368', '385.1', '13.14', '188.2', '0.542111395', '2.26', '6.907066141', '2.982594076', '2.804802379');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '33WFCB 125', '36.78', '33', '0.57', '11.5', '0.805', '29.765', '32.195', '18.81', '1.83268161', '7.142857143', '52.21929825', '6354.7', '438.4550368', '385.1', '13.14', '188.2', '0.542111395', '2.26', '6.525326716', '2.992946512', '2.804802379');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '33CB 125', '36.75', '33', '0.54', '12', '0.797', '29.281', '32.203', '17.82', '1.65325596', '7.528230866', '54.22407407', '6514.3', '441.1449649', '394.8', '13.31', '230.1', '0.498774446', '2.5', '6.745909891', '3.164712689', '3.063394339');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '33B 125', '36.75', '33', '0.57', '11.5', '0.805', '29.6386', '32.195', '18.81', '1.824898947', '7.142857143', '51.99754386', '6343.3', '438.2656417', '384.4', '13.14', '177.2', '0.575763908', '2.2', '7.22527996', '2.996884469', '2.724077043');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '33CB 125', '36.73', '33', '0.57', '11.5', '0.805', '29.865', '32.195', '18.81', '1.838838779', '7.142857143', '52.39473684', '6347', '438.4550368', '384.7', '13.14', '204.6', '0.498657696', '2.36', '6.44517283', '2.989818345', '2.925977205');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '30G 240', '70.6', '30.75', '0.88', '15.2', '1.5025', '25.6018', '29.2475', '27.06', '0.98649549', '5.058236273', '29.09295455', '11423', '836.8817958', '742.9', '12.72', '779.2', '0.564306502', '3.36', '46.44603048', '4.239996422', '3.91641468');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '30CB 240', '70.58', '30.75', '0.882', '15.207', '1.5', '25.925', '29.25', '27.1215', '1.002426514', '5.069', '29.39342404', '11427.6', '837.0059063', '743.3', '12.72', '880.9', '0.499015506', '3.53', '42.12315878', '4.23188601', '4.163218224');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '30CB 240', '70.58', '30.781', '0.888', '14.218', '1.597', '25.462', '29.184', '27.333528', '0.995776914', '4.451471509', '28.67342342', '11356', '831.6076152', '737.9', '12.69', '766.9', '0.498770159', '3.3', '47.38510647', '3.971769458', '3.894287622');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '30G 240', '70.54', '30.75', '0.88', '15.205', '1.5', '25.6078', '29.25', '27.06', '0.988046213', '5.068333333', '29.09977273', '11412', '836.1090859', '742.3', '12.72', '798.5', '0.550293478', '3.36', '46.27728932', '4.240766238', '3.966392309');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '30G 220', '64.82', '30.5', '0.815', '15.135', '1.3775', '25.6018', '29.1225', '24.8575', '1.000815624', '5.493647913', '31.41325153', '10378', '763.5777333', '680.5', '12.65', '716.1', '0.555755749', '3.32', '36.35738731', '4.208213255', '3.914462178');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '30G 220', '64.76', '30.5', '0.815', '15.14', '1.375', '25.6078', '29.125', '24.8575', '1.002539066', '5.505454545', '31.4206135', '10367', '762.7858828', '679.8', '12.65', '715.3', '0.555918149', '3.32', '36.2138524', '4.208937514', '3.914456773');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '30CB 220', '64.7', '30.5', '0.814', '15.139', '1.375', '25.925', '29.125', '24.827', '1.013778981', '5.505090909', '31.84889435', '10375.4', '762.9773594', '680.4', '12.66', '796.6', '0.499082931', '3.51', '32.65861249', '4.199920157', '4.129105389');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '30CB 220', '64.7', '30.522', '0.816', '14.146', '1.4675', '25.462', '29.0545', '24.905952', '1.000854414', '4.819761499', '31.20343137', '10320.4', '758.4024585', '676.3', '12.63', '693.9', '0.498885565', '3.28', '36.92724915', '3.940645704', '3.860739111');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '30WF 210', '61.78', '30.38', '0.775', '15.105', '1.315', '26.2038', '29.065', '23.5445', '1.022396834', '5.743346008', '33.81135484', '9872.4', '726.5198843', '649.9', '12.64', '707.9', '0.533500442', '3.38', '30.03802209', '4.178033547', '3.978623592');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '30WF 210', '61.78', '30.38', '0.775', '15.105', '1.315', '25.805', '29.065', '23.5445', '1.006836806', '5.743346008', '33.29677419', '9872.4', '726.5198843', '649.9', '12.64', '707.9', '0.533500442', '3.38', '28.80262186', '4.189508114', '3.978623592');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '30G 200', '58.92', '30.25', '0.745', '15.065', '1.2525', '25.6018', '28.9975', '22.53625', '1.010834143', '6.013972056', '34.36483221', '9343.8', '690.0984364', '617.8', '12.59', '634.2', '0.562700964', '3.28', '27.76595418', '4.176064196', '3.857930926');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '30G 200', '58.86', '30.25', '0.745', '15.07', '1.25', '25.6078', '29', '22.53625', '1.012757054', '6.028', '34.37288591', '9332.7', '689.2876015', '617', '12.59', '633.4', '0.562847142', '3.28', '27.64580904', '4.176737062', '3.858161906');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '30G 200', '58.85', '30', '0.75', '15', '1.2755', '24.9282', '28.7245', '22.5', '0.977193258', '5.88004704', '33.2376', '9154.7', '689.9001878', '610.3', '12.47', '599.7', '0.59818972', '3.19', '31.0337682', '4.176483102', '3.756700568');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '30CB 200', '58.83', '30.25', '0.745', '15.07', '1.25', '25.925', '29', '22.53625', '1.025301924', '6.028', '34.79865772', '9343.2', '689.7116406', '617.7', '12.6', '714.1', '0.499240134', '3.48', '24.72201846', '4.167628716', '4.094253387');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '30CB 200', '58.82', '30.263', '0.743', '14.073', '1.338', '25.462', '28.925', '22.485409', '1.004704914', '5.25896861', '34.269179', '9305.7', '686.0119776', '615', '12.58', '622.7', '0.499063795', '3.25', '28.12951304', '3.909517392', '3.826692463');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '30WFCB 200', '58.76', '30.25', '0.74', '15.07', '1.25', '25.805', '29', '22.385', '1.013706702', '6.028', '34.87162162', '9340.5', '688.7490625', '617.6', '12.61', '665.7', '0.535537599', '3.37', '24.86693132', '4.172756181', '3.953389786');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '30WF 200', '58.76', '30.25', '0.74', '15.07', '1.25', '26.2038', '29', '22.385', '1.0293729', '6.028', '35.41054054', '9340.5', '688.7490625', '617.6', '12.61', '665.7', '0.535537599', '3.37', '26.0259667', '4.161213644', '3.953389786');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '30G 200', '58.71', '30', '0.75', '15', '1.2705', '25.1882', '28.7295', '22.5', '0.991271153', '5.903187721', '33.58426667', '9150.6', '688.3989028', '610', '12.48', '630.2', '0.567007498', '3.28', '29.13222752', '4.168085746', '3.852328538');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '30G 200', '58.52', '30.125', '0.76', '15.04', '1.2475', '25.4888', '28.8775', '22.895', '1.032463224', '6.028056112', '33.53789474', '9148.8', '686.4391273', '607.5', '12.5', '628.5', '0.562726717', '3.28', '27.76014072', '4.16411494', '3.864953723');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '30WFB 190', '55.9', '30.12', '0.71', '15.04', '1.185', '26.2038', '28.935', '21.3852', '1.043894088', '6.345991561', '36.90676056', '8825.9', '652.3772378', '586.1', '12.57', '624.6', '0.537871624', '3.34', '22.49322583', '4.143899013', '3.926556715');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '30WFCB 190', '55.9', '30.12', '0.71', '15.04', '1.185', '25.805', '28.935', '21.3852', '1.02800689', '6.345991561', '36.34507042', '8825.9', '652.3772378', '586.1', '12.57', '624.6', '0.537871624', '3.34', '21.40202509', '4.155582103', '3.926556715');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '30G 190', '55.9', '30.12', '0.71', '15.03', '1.1875', '25.6018', '28.9325', '21.3852', '1.018441881', '6.328421053', '36.05887324', '8818', '652.6024038', '585.5', '12.56', '592.7', '0.566884245', '3.26', '23.92957958', '4.159157487', '3.826766796');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '30CB 190', '55.88', '30.12', '0.712', '15.037', '1.185', '25.925', '28.935', '21.44544', '1.035903281', '6.344725738', '36.41151685', '8821.8', '652.6594051', '585.8', '12.56', '672.5', '0.499261888', '3.47', '21.21518883', '4.150505698', '4.075380904');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '30G 190', '55.84', '30.12', '0.71', '15.035', '1.185', '25.6078', '28.935', '21.3852', '1.020490192', '6.343881857', '36.06732394', '8806.7', '651.7817588', '584.8', '12.56', '591.9', '0.567020893', '3.26', '23.82079425', '4.159798307', '3.82663671');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '30G 190', '55.52', '30', '0.72', '15', '1.1875', '25.4838', '28.8125', '21.6', '1.030082021', '6.315789474', '35.39416667', '8651.1', '650.166679', '576.7', '12.48', '589.4', '0.566651468', '3.26', '24.05315614', '4.148644035', '3.837121611');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '30G 181', '52.82', '29.875', '0.69', '14.97', '1.1275', '25.4788', '28.7475', '20.61375', '1.041572991', '6.638580931', '36.9257971', '8181', '616.3925288', '547.6', '12.45', '552', '0.571033553', '3.23', '20.88268302', '4.132630432', '3.806473955');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '30G 180', '53.2', '30', '0.68', '15', '1.1275', '25.6018', '28.8725', '20.4', '1.029370229', '6.651884701', '37.64970588', '8343.1', '618.7442958', '556.2', '12.52', '555.1', '0.571265313', '3.23', '20.76754668', '4.143252698', '3.795747534');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '30G 180', '53', '30', '0.69', '13', '1.312', '25.1922', '28.688', '20.7', '1.019149742', '4.954268293', '36.51043478', '8194.5', '618.2670107', '546.3', '12.43', '433.3', '0.554362643', '2.86', '26.29025201', '3.608568731', '3.372980905');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '30G 180', '52.99', '30', '0.675', '15', '1.125', '25.6078', '28.875', '20.25', '1.024312', '6.666666667', '37.93748148', '8320.4', '616.7896328', '554.7', '12.53', '553.7', '0.571439859', '3.23', '20.57948632', '4.144211311', '3.796244515');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '30CB 180', '52.96', '30', '0.675', '15', '1.125', '25.925', '28.875', '20.25', '1.037', '6.666666667', '38.40740741', '8331', '617.2136719', '555.4', '12.54', '633.7', '0.499299748', '3.46', '18.1839881', '4.135013603', '4.058680963');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '30CB 180', '52.93', '30', '0.67', '14', '1.2065', '25.462', '28.7935', '20.1', '1.009978095', '5.801906341', '38.00298507', '8301.4', '613.8256388', '553.4', '12.52', '552.7', '0.499161088', '3.23', '20.78910847', '3.877916665', '3.791904461');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '30WFCB 180', '52.89', '30', '0.67', '15', '1.125', '25.805', '28.875', '20.1', '1.024554074', '6.666666667', '38.51492537', '8328.2', '616.2510938', '555.2', '12.55', '585.6', '0.540311219', '3.33', '18.3053746', '4.14036544', '3.902310333');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '30WFCB 180', '52.89', '30', '0.67', '15', '1.125', '26.2038', '28.875', '20.1', '1.040387911', '6.666666667', '39.11014925', '8328.2', '616.2510938', '555.2', '12.55', '585.6', '0.540311219', '3.33', '19.31950742', '4.128717098', '3.902310333');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '30G 175', '51.35', '30', '0.68', '12', '1.367', '24.9282', '28.633', '20.4', '1.033356255', '4.389173372', '36.65911765', '7851.8', '595.6067815', '523.5', '12.37', '346.4', '0.568267898', '2.6', '27.62077099', '3.334837405', '3.077861176');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '30G 173', '50.94', '29.75', '0.675', '14.955', '1.0625', '25.4838', '28.6875', '20.08125', '1.082561567', '7.037647059', '37.75377778', '7806.5', '584.1941009', '524.8', '12.38', '514.1', '0.576048886', '3.18', '18.08233259', '4.113276677', '3.748506276');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '30G 173', '50.8', '29.88', '0.66', '14.98', '1.0675', '25.6018', '28.8125', '19.7208', '1.056658714', '7.016393443', '38.79060606', '7895.2', '587.3342238', '528.5', '12.47', '519.1', '0.576064415', '3.2', '18.07087619', '4.126198657', '3.761650933');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '30WFB 172', '50.65', '29.88', '0.655', '14.985', '1.065', '26.2038', '28.815', '19.5714', '1.07547228', '7.035211268', '40.00580153', '7891.5', '585.9570398', '528.2', '12.48', '550.1', '0.542871395', '3.3', '16.86805474', '4.110857852', '3.873610401');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '30WFCB 172', '50.65', '29.88', '0.655', '14.985', '1.065', '25.805', '28.815', '19.5714', '1.059104488', '7.035211268', '39.39694656', '7891.5', '585.9570398', '528.2', '12.48', '550.1', '0.542871395', '3.3', '15.89865613', '4.122841638', '3.873610401');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '30CB 165', '48.52', '30.742', '0.755', '10.725', '1.253', '26.711', '29.489', '23.21021', '1.500682186', '4.279728651', '35.37880795', '7326.7', '546.7707474', '476.7', '12.29', '258.7', '0.497926567', '2.31', '18.89619368', '2.87946247', '2.828724574');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '30B 163', '48', '30.65', '0.73', '10.68', '1.2725', '26.4782', '29.3775', '22.3745', '1.422270737', '4.196463654', '36.27150685', '7270.7', '543.2613471', '474.4', '12.31', '239.8', '0.538692742', '2.24', '20.35124127', '2.883681876', '2.724862981');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '30CB 151', '44.41', '30.538', '0.692', '10.662', '1.151', '26.711', '29.387', '21.132296', '1.506198601', '4.631624674', '38.59971098', '6663.7', '498.5641507', '436.4', '12.25', '233.4', '0.498091649', '2.29', '14.6551446', '2.855392557', '2.803307142');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '30B 149', '43.93', '30.44', '0.67', '10.62', '1.1675', '26.4782', '29.2725', '20.3948', '1.430809632', '4.548179872', '39.51970149', '6606.6', '495.1092801', '434.1', '12.26', '214.5', '0.543277723', '2.21', '15.83258905', '2.859707982', '2.689265404');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '30CB 138', '40.58', '30.344', '0.634', '10.604', '1.054', '26.711', '29.29', '19.238096', '1.515196908', '5.030360531', '42.13091483', '6049.5', '453.7306465', '398.7', '12.21', '210.1', '0.498473953', '2.28', '11.29394562', '2.832433104', '2.778015064');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '30B 137', '40.4', '30.25', '0.62', '10.57', '1.0725', '26.4782', '29.1775', '18.755', '1.44813103', '4.927738928', '42.70677419', '6026.7', '453.0559283', '398.5', '12.21', '192.6', '0.548005269', '2.18', '12.43889514', '2.83763282', '2.65535762');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '30CB 135', '39.7', '30.298', '0.621', '10.591', '1.031', '26.711', '29.267', '18.815058', '1.519099127', '5.136275461', '43.01288245', '5907.3', '443.3521985', '389.9', '12.2', '204.8', '0.498377436', '2.27', '10.59169231', '2.826907744', '2.772441969');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '30WFB 132', '38.83', '30.3', '0.615', '10.551', '1', '27.0882', '29.3', '18.6345', '1.578925505', '5.2755', '44.04585366', '5753.1', '432.2811375', '379.7', '12.17', '185', '0.529087979', '2.18', '10.17361149', '2.79856865', '2.671679622');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '30WFCB 132', '38.83', '30.3', '0.615', '10.551', '1', '26.775', '29.3', '18.6345', '1.560669605', '5.2755', '43.53658537', '5753.1', '432.2811375', '379.7', '12.17', '185', '0.529087979', '2.18', '9.82367653', '2.807420229', '2.671679622');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '30CB 131', '38.52', '30.31', '0.602', '10.547', '1.005', '26.875', '29.305', '18.24662', '1.526335328', '5.247263682', '44.64285714', '5745.6', '431.1591792', '379.1', '12.21', '197.1', '0.498522804', '2.26', '9.66837263', '2.810347582', '2.760083907');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '30B 131', '38.47', '30.31', '0.6', '10.545', '1.005', '26.6742', '29.305', '18.186', '1.510184497', '5.246268657', '44.457', '5738.5', '430.5577867', '378.7', '12.21', '177.9', '0.552012128', '2.15', '10.56190557', '2.816102921', '2.623591327');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '30B 129', '37.82', '30.12', '0.58', '10.53', '1.0075', '26.4782', '29.1125', '17.4696', '1.447581505', '5.225806452', '45.65206897', '5622.7', '423.2451801', '373.4', '12.19', '177.6', '0.551957909', '2.17', '10.35278641', '2.82300393', '2.631231604');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '30B 129', '37.52', '30.125', '0.58', '10.53', '1.0075', '26.4832', '29.1175', '17.4725', '1.447854859', '5.225806452', '45.66068966', '5566.5', '423.3389808', '369.6', '12.18', '177.5', '0.552268871', '2.18', '10.35311159', '2.822943453', '2.644205728');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '30CB 126', '37.05', '30.162', '0.581', '10.551', '0.963', '26.711', '29.199', '17.524122', '1.527377433', '5.478193146', '45.97418244', '5486.7', '412.4834528', '363.8', '12.17', '189', '0.498728407', '2.26', '8.670300731', '2.81069307', '2.754029234');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '30CB 125', '36.75', '30.148', '0.576', '10.546', '0.956', '26.711', '29.192', '17.365248', '1.526043704', '5.515690377', '46.37326389', '5441.7', '409.1201676', '361', '12.17', '187.4', '0.498620765', '2.26', '8.47682766', '2.809142961', '2.75263178');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '30WFB 124', '36.45', '30.16', '0.585', '10.521', '0.93', '27.0882', '29.23', '17.6436', '1.619556279', '5.656451613', '46.30461538', '5347.1', '403.1319744', '354.6', '12.11', '169.7', '0.531852153', '2.16', '8.405656489', '2.77967715', '2.644666813');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '30WFCB 124', '36.45', '30.16', '0.585', '10.521', '0.93', '26.775', '29.23', '17.6436', '1.600830597', '5.656451613', '45.76923077', '5347.1', '403.1319744', '354.6', '12.11', '169.7', '0.531852153', '2.16', '8.080896496', '2.788688813', '2.644666813');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '30B 122', '35.87', '30.12', '0.58', '10.525', '0.91', '26.6742', '29.21', '17.4696', '1.615310068', '5.782967033', '45.99', '5235.7', '395.7530831', '347.7', '12.08', '158.4', '0.558176159', '2.1', '8.358762056', '2.788130254', '2.579443526');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '30CB 122', '35.85', '30.12', '0.58', '10.525', '0.91', '26.875', '29.21', '17.4696', '1.627469917', '5.782967033', '46.3362069', '5238.2', '395.8951275', '347.8', '12.09', '177.3', '0.498675147', '2.22', '7.584953661', '2.782332635', '2.728603046');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '30B 121', '35.65', '30', '0.55', '10.5', '0.9475', '26.4782', '29.0525', '16.5', '1.46380299', '5.540897098', '48.14218182', '5269.7', '397.5032721', '351.3', '12.16', '164.3', '0.556324654', '2.15', '8.72790307', '2.80865483', '2.606492406');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '30B 121', '35.36', '30', '0.55', '10.5', '0.9475', '26.4782', '29.0525', '16.5', '1.46380299', '5.540897098', '48.14218182', '5213.6', '397.5032721', '347.6', '12.14', '164.3', '0.556324654', '2.16', '8.72790307', '2.80865483', '2.620327984');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '30B 121', '35.3', '30', '0.54', '10.5', '0.959', '26.4222', '29.041', '16.2', '1.416950991', '5.474452555', '48.93', '5239.6', '398.7225929', '349.3', '12.18', '165', '0.560688068', '2.16', '8.932112414', '2.817611097', '2.618987737');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '30B 120', '35.3', '30', '0.54', '10.5', '0.959', '26.4222', '29.041', '16.2', '1.416950991', '5.474452555', '48.93', '5239.6', '398.7225929', '349.3', '12.18', '165', '0.560688068', '2.16', '8.932112414', '2.817611097', '2.618987737');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '30B 120', '35.25', '30', '0.52', '10', '1.0365', '26.17236', '28.9635', '15.6', '1.313036874', '4.823926676', '50.33146154', '5270.9', '401.3181276', '351.4', '12.23', '149.7', '0.576987308', '2.11', '10.32002562', '2.706100948', '2.48382243');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '30WFB 116', '34.13', '30', '0.564', '10.5', '0.85', '27.0882', '29.15', '16.92', '1.711792134', '6.176470588', '48.0287234', '4919.1', '373.08924', '327.9', '12', '153.2', '0.535237843', '2.12', '6.805068144', '2.754336591', '2.609533978');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '30WFCB 116', '34.13', '30', '0.564', '10.5', '0.85', '26.775', '29.15', '16.92', '1.692', '6.176470588', '47.47340426', '4919.1', '373.08924', '327.9', '12', '153.2', '0.535237843', '2.12', '6.503182432', '2.763718046', '2.609533978');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '30B 115', '33.85', '30', '0.555', '10.5', '0.85', '26.6742', '29.15', '16.65', '1.658731765', '6.176470588', '48.06162162', '4894.1', '371.1451931', '326.3', '12.02', '145.6', '0.563176082', '2.07', '7.018789346', '2.770924756', '2.550212865');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '30CB 115', '33.84', '30', '0.555', '10.5', '0.85', '26.875', '29.15', '16.65', '1.671218487', '6.176470588', '48.42342342', '4896.6', '371.2872375', '326.4', '12.03', '164.5', '0.498470745', '2.2', '6.334865701', '2.765017809', '2.710267503');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '30CB 115', '33.81', '30', '0.53', '10.5', '0.882', '26.711', '29.118', '15.9', '1.528650254', '5.952380952', '50.39811321', '4985.3', '375.3002977', '332.4', '12.14', '170.6', '0.498742307', '2.25', '6.674030174', '2.791891887', '2.733535881');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '30B 115', '33.8', '29.88', '0.53', '10.48', '0.8875', '26.4782', '28.9925', '15.8364', '1.50881045', '5.904225352', '49.95886792', '4942.9', '374.1770001', '330.8', '12.09', '151.8', '0.56078862', '2.12', '7.387058126', '2.792360144', '2.57917595');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '30B 115', '33.5', '29.88', '0.53', '10.48', '0.8875', '26.4782', '28.9925', '15.8364', '1.50881045', '5.904225352', '49.95886792', '4886.8', '374.1770001', '327.1', '12.08', '151.8', '0.56078862', '2.13', '7.387058126', '2.792360144', '2.593722138');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '30B 110', '32.45', '29.78', '0.52', '10.47', '0.8375', '26.4782', '28.9425', '15.4856', '1.570219276', '6.250746269', '50.91961538', '4687.7', '356.3289591', '314.8', '12.02', '141.8', '0.564894549', '2.09', '6.449879938', '2.776785058', '2.553134985');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '30B 108', '31.85', '29.88', '0.53', '10.475', '0.79', '26.6742', '29.09', '15.8364', '1.708386574', '6.629746835', '50.32867925', '4556.2', '346.7029031', '305', '11.96', '132.9', '0.569354764', '2.04', '5.836601617', '2.752805377', '2.517499735');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '30CB 108', '31.77', '29.88', '0.528', '10.473', '0.79', '26.875', '29.09', '15.77664', '1.715079282', '6.628481013', '50.89962121', '4554.2', '346.3985403', '304.8', '11.97', '151.6', '0.498838488', '2.18', '5.216239588', '2.747219573', '2.689669896');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '30WF 108', '31.77', '29.82', '0.548', '10.484', '0.76', '27.0882', '29.06', '16.34136', '1.863031085', '6.897368421', '49.4310219', '4461', '341.2673604', '299.2', '11.85', '135.1', '0.540204297', '2.06', '5.364782569', '2.720665625', '2.561413458');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '30WFCB 108', '31.77', '29.82', '0.548', '10.484', '0.76', '26.775', '29.06', '16.34136', '1.841490291', '6.897368421', '48.85948905', '4461', '341.2673604', '299.2', '11.85', '135.1', '0.540204297', '2.06', '5.08743947', '2.730630258', '2.561413458');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '28G 186', '54.73', '28.31', '0.73', '14.305', '1.238', '23.8054', '27.072', '20.6663', '0.981272971', '5.777463651', '32.61013699', '7604', '600.8713067', '537.2', '11.79', '539.7', '0.559565032', '3.14', '25.05998774', '3.97877479', '3.68768129');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '28G 180', '52.98', '28', '0.69', '14.35', '1.232', '23.15252', '26.768', '19.32', '0.903617743', '5.823863636', '33.55437681', '7269', '584.8916794', '519.2', '11.72', '507.6', '0.597672883', '3.09', '25.90363547', '4.016517414', '3.617315829');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '28G 180', '52.86', '28', '0.69', '14.35', '1.2275', '23.3838', '26.7725', '19.32', '0.915990093', '5.845213849', '33.88956522', '7264.7', '583.7213635', '518.9', '11.72', '533.3', '0.566792865', '3.18', '24.35449955', '4.009345296', '3.709141677');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '28G 175', '51.45', '28.12', '0.71', '14.285', '1.143', '23.8054', '26.977', '19.9652', '1.035159702', '6.248906387', '33.52873239', '7026', '558.5741551', '499.7', '11.69', '491.1', '0.565373937', '3.09', '20.57882159', '3.953010576', '3.640928249');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '28G 175', '51.02', '28.12', '0.7', '14.29', '1.153', '23.7854', '26.967', '19.684', '1.01052477', '6.19687771', '33.97914286', '6988.7', '560.5689209', '497.1', '11.7', '496.2', '0.565051442', '3.12', '20.81949517', '3.960928534', '3.668662987');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '28G 166', '48.75', '28', '0.675', '14.25', '1.083', '23.8054', '26.917', '18.9', '1.041204257', '6.578947368', '35.26725926', '6624.6', '527.6639291', '473.2', '11.66', '458.3', '0.569825587', '3.07', '17.69329974', '3.936878329', '3.610363169');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '28G 165', '48.75', '28', '0.675', '14.25', '1.083', '23.8054', '26.917', '18.9', '1.041204257', '6.578947368', '35.26725926', '6624.6', '527.6639291', '473.2', '11.66', '458.3', '0.569825587', '3.07', '17.69329974', '3.936878329', '3.610363169');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '28G 165', '48.47', '28', '0.66', '12.5', '1.2665', '23.3878', '26.7335', '18.48', '0.975030272', '4.93485985', '35.43606061', '6562.7', '529.9581554', '468.8', '11.64', '371.9', '0.554278214', '2.77', '22.4883938', '3.482690309', '3.256358418');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '28G 165', '48.19', '28', '0.66', '14.25', '1.093', '23.7854', '26.907', '18.48', '1.007904464', '6.518755718', '36.03848485', '6577.9', '528.6702769', '469.9', '11.68', '462.8', '0.569495319', '3.1', '17.83049097', '3.945371372', '3.64008558');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '28G 162.5', '47.81', '28', '0.65', '12', '1.3045', '23.15252', '26.6955', '18.2', '0.961360547', '4.599463396', '35.61926154', '6465.1', '522.1801227', '461.8', '11.63', '328.2', '0.572358318', '2.62', '23.90506184', '3.351513704', '3.079969076');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '28G 156', '45.95', '27.88', '0.625', '14.215', '1.033', '23.7854', '26.847', '17.425', '1.012379381', '6.880445305', '38.05664', '6251.3', '497.9802509', '448.4', '11.66', '430.5', '0.574363075', '3.06', '15.22145933', '3.929587933', '3.589935614');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '28G 156', '45.93', '27.88', '0.635', '14.21', '1.023', '23.8054', '26.857', '17.7038', '1.039871072', '6.945259042', '37.4888189', '6218.6', '496.0022851', '446.1', '11.64', '425.4', '0.57501495', '3.04', '15.02611435', '3.921032691', '3.578461779');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '28G 147', '43.27', '27.75', '0.595', '14.185', '0.968', '23.7854', '26.782', '16.51125', '1.030677339', '7.32696281', '39.97546218', '5840.4', '466.5044175', '420.9', '11.62', '396.6', '0.580536355', '3.03', '12.80540785', '3.911624001', '3.552167178');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '28G 145', '42.69', '27.75', '0.585', '14.16', '0.958', '23.8054', '26.792', '16.23375', '1.026603137', '7.39039666', '40.69299145', '5772.3', '460.6851791', '416', '11.63', '389.8', '0.581476528', '3.02', '12.38204878', '3.904705306', '3.542923879');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '28B 133', '39.09', '28.59', '0.63', '10.16', '1.0925', '24.8798', '27.4975', '18.0117', '1.4121222', '4.649885584', '39.49174603', '5204', '414.9043666', '364', '11.54', '175.3', '0.544677465', '2.12', '12.40532522', '2.73843386', '2.573190111');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '28B 119', '35.11', '28.38', '0.565', '10.095', '0.9875', '24.8798', '27.3925', '16.0347', '1.41010647', '5.111392405', '44.03504425', '4647.4', '371.4284221', '327.5', '11.5', '153.7', '0.550808915', '2.09', '9.202668731', '2.714725227', '2.535316127');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '28B 113', '32.98', '28.12', '0.54', '10.03', '0.9375', '24.7218', '27.1825', '15.1848', '1.41971653', '5.349333333', '45.78111111', '4285.5', '348.4650589', '304.8', '11.4', '142.3', '0.553972147', '2.08', '7.921444283', '2.693139218', '2.518979709');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '28B 112', '32.95', '28.25', '0.535', '10.065', '0.967', '24.7018', '27.283', '15.11375', '1.357819776', '5.204239917', '46.17158879', '4328.5', '357.9800397', '306.4', '11.46', '141.2', '0.581904705', '2.07', '8.591579912', '2.715401059', '2.5072869');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '28B 106', '30.93', '28', '0.51', '10', '0.8775', '24.7218', '27.1225', '14.28', '1.436822564', '5.698005698', '48.47411765', '3993.8', '325.6985509', '285.3', '11.36', '130.9', '0.558632544', '2.06', '6.591332569', '2.678688893', '2.494415512');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '28B 106', '30.88', '28', '0.5', '10', '0.8885', '24.6678', '27.1115', '14', '1.388171075', '5.627462015', '49.3356', '4014.1', '326.6970498', '286.7', '11.4', '131.5', '0.563054499', '2.06', '6.750226704', '2.687561626', '2.493508226');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '28B 105', '31.04', '28', '0.48', '9.6', '0.965', '24.40524', '27.035', '13.44', '1.264520207', '4.974093264', '50.84425', '4089.1', '331.762704', '392.1', '11.43', '122.6', '0.580322349', '1.98', '7.969348908', '2.60543116', '2.055866941');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '28B 105', '30.88', '28', '0.5', '10', '0.8885', '24.6678', '27.1115', '14', '1.388171075', '5.627462015', '49.3356', '4014.1', '326.6970498', '286.7', '11.4', '131.5', '0.563054499', '2.06', '6.750226704', '2.687561626', '2.493508226');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '28B 104', '30.66', '28.12', '0.5', '10.03', '0.8575', '24.8798', '27.2625', '14.06', '1.446378067', '5.848396501', '49.7596', '4003.3', '321.5051006', '284.7', '11.43', '128.7', '0.560243898', '2.05', '6.213079477', '2.683525347', '2.482352094');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '28B 100', '29.18', '27.88', '0.49', '9.98', '0.8175', '24.7218', '27.0625', '13.6612', '1.484765494', '6.103975535', '50.45265306', '3723.4', '305.0480789', '267.1', '11.3', '120.2', '0.563369941', '2.03', '5.502662387', '2.662182041', '2.467653906');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '28B 97', '28.61', '28', '0.47', '10', '0.7975', '24.8798', '27.2025', '13.16', '1.466270345', '6.269592476', '52.93574468', '3711.5', '298.7385926', '265.1', '11.39', '117.4', '0.566084611', '2.03', '5.090531169', '2.668662693', '2.45424885');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '28B 92', '27.02', '27.75', '0.45', '9.94', '0.75', '24.7218', '27', '12.4875', '1.492261569', '6.626666667', '54.93733333', '3443', '278.6779979', '248.1', '11.29', '108', '0.568349412', '2', '4.316096468', '2.646185559', '2.42418288');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '28B 91', '26.86', '27.88', '0.45', '9.98', '0.7375', '24.8798', '27.1425', '12.546', '1.521131755', '6.766101695', '55.28844444', '3441.1', '278.0881206', '246.9', '11.32', '106.7', '0.572542834', '1.99', '4.18306307', '2.651113617', '2.421762724');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '28B 85', '24.96', '27.69', '0.45', '9.98', '0.6405', '24.8798', '27.0495', '12.4605', '1.751498313', '7.790788447', '55.28844444', '3075.2', '251.2393097', '222.1', '11.1', '91', '0.583026265', '1.91', '3.169031559', '2.610326346', '2.354024833');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '27CB 190', '55.87', '27.598', '0.756', '14.176', '1.284', '23.105', '26.314', '20.864088', '0.959641542', '5.520249221', '30.56216931', '7376.9', '597.3756771', '534.6', '11.49', '610.7', '0.49913379', '3.31', '25.10958919', '3.954201216', '3.876840379');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '27WFCB 177', '52.1', '27.31', '0.725', '14.09', '1.19', '23.085', '26.12', '19.79975', '0.998182453', '5.920168067', '31.84137931', '6728.6', '550.6044151', '492.8', '11.36', '518.9', '0.534582852', '3.16', '20.26487628', '3.912598297', '3.708327436');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '27WFB 177', '52.1', '27.31', '0.725', '14.09', '1.19', '23.4674', '26.12', '19.79975', '1.014717214', '5.920168067', '32.36882759', '6728.6', '550.6044151', '492.8', '11.36', '518.9', '0.534582852', '3.16', '21.1839176', '3.901280953', '3.708327436');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '27CB 175', '51.47', '27.4', '0.698', '14.118', '1.185', '23.105', '26.215', '19.1252', '0.963984093', '5.956962025', '33.1017192', '6746.8', '547.8969005', '492.5', '11.45', '556.6', '0.499244668', '3.29', '19.83089867', '3.928659134', '3.848827233');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '27CB 175', '51.46', '27.452', '0.671', '14.091', '1.211', '23.105', '26.241', '18.420292', '0.908536825', '5.817919075', '34.43368107', '6838.3', '552.8772244', '498.2', '11.53', '565.5', '0.499293293', '3.31', '20.44514944', '3.935908641', '3.859132019');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '27CB 166', '48.81', '27.328', '0.638', '14.058', '1.149', '23.105', '26.179', '17.435264', '0.912605504', '6.117493473', '36.21473354', '6454.5', '522.7869085', '472.4', '11.5', '532.7', '0.499374892', '3.3', '17.54271423', '3.920546354', '3.841916597');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '27WFCB 163', '47.93', '27.12', '0.67', '14.035', '1.095', '23.085', '26.025', '18.1704', '1.00641742', '6.408675799', '34.45522388', '6141.5', '504.0627289', '452.9', '11.32', '468.7', '0.538239009', '3.13', '15.90331504', '3.88733584', '3.669667264');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '27WFB 163', '47.93', '27.12', '0.67', '14.035', '1.095', '23.4674', '26.025', '18.1704', '1.023088593', '6.408675799', '35.02597015', '6141.5', '504.0627289', '452.9', '11.32', '468.7', '0.538239009', '3.13', '16.7284306', '3.875937049', '3.669667264');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '27CB 160', '47.04', '27.2', '0.639', '14.059', '1.085', '23.105', '26.115', '17.3808', '0.967882554', '6.478801843', '36.15805947', '6121.8', '498.4421205', '450.1', '11.41', '503.2', '0.499311021', '3.27', '15.31150445', '3.902849568', '3.820725413');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '27WFCB 160', '47.04', '27.08', '0.658', '14.023', '1.075', '23.085', '26.005', '17.81864', '1.007642262', '6.522325581', '35.08358663', '6018.6', '494.2557797', '444.5', '11.31', '458', '0.539367212', '3.12', '15.06822415', '3.882014927', '3.660246109');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '27WFB 160', '47.04', '27.08', '0.658', '14.023', '1.075', '23.4674', '26.005', '17.81864', '1.024333724', '6.522325581', '35.66474164', '6018.6', '494.2557797', '444.5', '11.31', '458', '0.539367212', '3.12', '15.87371164', '3.870604139', '3.660246109');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '27CB 156', '45.87', '27.192', '0.6', '14.02', '1.081', '23.105', '26.111', '16.3152', '0.914710187', '6.484736355', '38.50833333', '6035.6', '489.7035288', '443.9', '11.47', '497.1', '0.499395616', '3.29', '14.67206381', '3.903725534', '3.823631789');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '27WFCB 154', '45.3', '27', '0.635', '14', '1.035', '23.085', '25.965', '17.145', '1.011661491', '6.763285024', '36.35433071', '5775.8', '474.8967529', '427.8', '11.29', '437.6', '0.54083638', '3.11', '13.50107753', '3.871296155', '3.644159961');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '27WFB 154', '45.3', '27', '0.635', '14', '1.035', '23.4674', '25.965', '17.145', '1.028419531', '6.763285024', '36.95653543', '5775.8', '474.8967529', '427.8', '11.29', '437.6', '0.54083638', '3.11', '14.26900603', '3.859846054', '3.644159961');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '27WFB 145', '42.68', '26.88', '0.6', '13.965', '0.975', '23.4674', '25.905', '16.128', '1.034119364', '7.161538462', '39.11233333', '5414.3', '445.9449769', '402.9', '11.26', '406.9', '0.543824163', '3.09', '12.07002074', '3.843669095', '3.616779327');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '27WFCB 145', '42.68', '26.88', '0.6', '13.965', '0.975', '23.085', '25.905', '16.128', '1.017268446', '7.161538462', '38.475', '5414.3', '445.9449769', '402.9', '11.26', '406.9', '0.543824163', '3.09', '11.35722', '3.855173613', '3.616779327');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '27CB 145', '42.64', '27', '0.58', '14', '0.985', '23.105', '26.015', '15.66', '0.971783901', '7.106598985', '39.8362069', '5508.7', '449.5894805', '408.1', '11.37', '451', '0.499416112', '3.25', '11.54641999', '3.877035034', '3.791419949');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '27CB 137', '40.29', '27.742', '0.688', '9.977', '1.126', '24.065', '26.616', '19.086496', '1.473791141', '4.430284192', '34.97819767', '4975.9', '410.762156', '358.7', '11.11', '187.1', '0.498061846', '2.16', '12.84047832', '2.683310329', '2.634678343');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '27CB 124', '36.47', '27.536', '0.624', '9.913', '1.023', '24.065', '26.513', '17.182464', '1.48077719', '4.845063539', '38.56570513', '4472.1', '370.2277621', '324.8', '11.07', '166.7', '0.498166026', '2.14', '9.643841252', '2.658544062', '2.608400217');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '27WFCB 114', '33.53', '27.28', '0.57', '10.07', '0.932', '24.011', '26.348', '15.5496', '1.458275974', '5.402360515', '42.1245614', '4080.5', '339.333464', '299.2', '11.03', '149.6', '0.530141112', '2.11', '7.427989091', '2.698132897', '2.566515147');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '27WF 114', '33.53', '27.28', '0.57', '10.07', '0.932', '24.2878', '26.348', '15.5496', '1.475087052', '5.402360515', '42.61017544', '4080.5', '339.333464', '299.2', '11.03', '149.6', '0.530141112', '2.11', '7.713703212', '2.690241303', '2.566515147');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '27CB 112', '32.94', '27.582', '0.527', '10.077', '0.949', '24.259', '26.633', '14.535714', '1.336860338', '5.309272919', '46.03225806', '4182.7', '341.6045632', '303.3', '11.27', '162.2', '0.498916529', '2.22', '7.371052077', '2.719632033', '2.668604822');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '27CB 112', '32.94', '27.34', '0.566', '9.855', '0.925', '24.065', '26.415', '15.47444', '1.494183499', '5.327027027', '42.51766784', '4007.6', '332.7340623', '293.2', '11.03', '148', '0.498504011', '2.12', '7.176425433', '2.634764344', '2.582017518');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '27WFCB 106', '31.17', '27.14', '0.535', '10.035', '0.862', '24.011', '26.278', '14.5199', '1.485044225', '5.820765661', '44.88037383', '3761.2', '313.7080635', '277.2', '10.98', '136.1', '0.533359488', '2.09', '5.967090676', '2.680068155', '2.539882384');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '27WFB 106', '31.17', '27.14', '0.535', '10.035', '0.862', '24.2878', '26.278', '14.5199', '1.502163888', '5.820765661', '45.39775701', '3761.2', '313.7080635', '277.2', '10.98', '136.1', '0.533359488', '2.09', '6.227678131', '2.672075549', '2.539882384');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '27CB 104', '30.6', '27.45', '0.49', '10.04', '0.883', '24.259', '26.567', '13.4505', '1.340832593', '5.685164213', '49.50816327', '3867.1', '316.3342688', '281.8', '11.24', '149.2', '0.499127815', '2.21', '5.958238591', '2.704831087', '2.651979589');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '27WFCB 102', '30.01', '27.07', '0.518', '10.018', '0.827', '24.011', '26.243', '14.02226', '1.501251556', '6.056831923', '46.35328185', '3604.1', '301.0737741', '266.3', '10.96', '129.5', '0.535053953', '2.08', '5.319893411', '2.670745467', '2.52604477');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '27WFB 102', '30.01', '27.07', '0.518', '10.018', '0.827', '24.2878', '26.243', '14.02226', '1.518558059', '6.056831923', '46.88764479', '3604.1', '301.0737741', '266.3', '10.96', '129.5', '0.535053953', '2.08', '5.568340898', '2.662691428', '2.52604477');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '27CB 101', '29.7', '27.166', '0.51', '9.799', '0.838', '24.065', '26.328', '13.85466', '1.494618198', '5.846658711', '47.18627451', '3595.7', '299.0358671', '264.7', '11', '131.7', '0.498910071', '2.11', '5.340983354', '2.614206611', '2.559233156');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '27WFCB 98', '28.82', '27', '0.5', '10', '0.792', '24.011', '26.208', '13.5', '1.51584596', '6.313131313', '48.022', '3446.5', '288.313992', '255.3', '10.94', '122.9', '0.537021969', '2.07', '4.714408593', '2.661414092', '2.511611577');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '27WFB 98', '28.82', '27', '0.5', '10', '0.792', '24.2878', '26.208', '13.5', '1.533320707', '6.313131313', '48.5756', '3446.5', '288.313992', '255.3', '10.94', '122.9', '0.537021969', '2.07', '4.950473007', '2.653306326', '2.511611577');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '27CB 97', '28.53', '27.326', '0.46', '10.01', '0.821', '24.259', '26.505', '12.56996', '1.357855299', '6.096224117', '52.73695652', '3582.6', '293.6854595', '262.2', '11.21', '137.5', '0.499069978', '2.2', '4.84137288', '2.690114489', '2.636233727');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '27WFCB 94', '27.65', '26.91', '0.49', '9.99', '0.747', '24.011', '26.163', '13.1859', '1.576595337', '6.686746988', '49.00204082', '3266.7', '274.3738718', '242.8', '10.87', '115.1', '0.539213177', '2.04', '4.100868736', '2.646511444', '2.490245095');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '27WFB 94', '27.65', '26.91', '0.49', '9.99', '0.747', '24.2878', '26.163', '13.1859', '1.594770406', '6.686746988', '49.56693878', '3266.7', '274.3738718', '242.8', '10.87', '115.1', '0.539213177', '2.04', '4.326144525', '2.638162242', '2.490245095');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '27WFB 91', '26.77', '26.84', '0.483', '9.83', '0.712', '24.2878', '26.128', '12.96372', '1.676107222', '6.903089888', '50.28530021', '3129.2', '260.8700734', '233.2', '10.81', '109', '0.51705031', '2.02', '3.845356029', '2.581353028', '2.471081457');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '27WFCB 91', '26.77', '26.84', '0.483', '9.983', '0.712', '24.011', '26.128', '12.96372', '1.631609832', '7.010533708', '49.71221532', '3129.2', '263.7163532', '233.2', '10.81', '109', '0.541571078', '2.02', '3.671911798', '2.634008854', '2.471081457');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '27CB 91', '26.76', '27.162', '0.455', '10.005', '0.739', '24.259', '26.423', '12.35871', '1.492872644', '6.769282815', '53.31648352', '3269.7', '270.4008216', '240.08', '11.05', '123.6', '0.498994778', '2.15', '3.804508915', '2.662396327', '2.607998329');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '27CB 91', '26.76', '27', '0.461', '9.75', '0.755', '24.065', '26.245', '12.447', '1.507076244', '6.456953642', '52.20173536', '3217', '268.0785528', '238.3', '10.97', '116.9', '0.498844331', '2.09', '3.943431595', '2.593984576', '2.53719312');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '27B 90', '26.34', '27', '0.524', '9', '0.7075', '24.30588', '26.2925', '14.148', '2.000201197', '6.360424028', '46.38526718', '2958.3', '253.064379', '219.1', '10.6', '75.3', '0.570791833', '1.69', '3.93298044', '2.322653318', '2.125578961');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '27CB 85', '25', '27', '0.45', '10', '0.658', '24.259', '26.342', '12.15', '1.659050152', '7.598784195', '53.90888889', '2964.3', '247.5429938', '219.6', '10.89', '109.9', '0.498938429', '2.1', '2.965091355', '2.630389344', '2.567391229');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '27CB 85', '25', '26.82', '0.461', '9.75', '0.665', '24.065', '26.155', '12.36402', '1.71104145', '7.330827068', '52.20173536', '2899.3', '244.4650278', '216.2', '10.77', '103', '0.49867434', '2.03', '3.039885744', '2.558036941', '2.496049145');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '27B 83', '24.41', '27', '0.424', '7.5', '0.8905', '23.4182', '26.1095', '11.448', '1.486702871', '4.21111735', '55.23160377', '2888.6', '241.5900392', '214', '10.88', '53.1', '0.589578919', '1.47', '5.111619493', '2.010402663', '1.799801683');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '26G 171', '50.3', '26.38', '0.685', '14.09', '1.1875', '22.067', '25.1925', '18.0703', '0.903419073', '5.932631579', '32.21459854', '6148', '519.8497979', '466.1', '11.06', '492.6', '0.56194129', '3.13', '21.36992556', '3.940779754', '3.64861709');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '26G 160', '47.25', '26.12', '0.67', '13.79', '1.1185', '21.957', '25.0015', '17.5004', '0.953778547', '6.164506035', '32.77164179', '5629.4', '480.8404889', '431', '10.92', '432.8', '0.564755266', '3.03', '18.0221721', '3.84028629', '3.543015285');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '26G 160', '47', '26', '0.63', '13.6', '1.1805', '21.39884', '24.8195', '16.38', '0.839703341', '5.760271072', '33.9664127', '5618.7', '485.7725874', '432.2', '10.93', '414.5', '0.59700358', '2.97', '20.99236027', '3.824260925', '3.449859454');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '26G 160', '46.91', '26', '0.63', '13.6', '1.177', '21.5994', '24.823', '16.38', '0.850093833', '5.77740017', '34.2847619', '5620.8', '485.0415982', '432.4', '10.95', '435.7', '0.566271079', '3.05', '19.79522056', '3.818391629', '3.536413772');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '26G 160', '46.85', '26.12', '0.67', '13.79', '1.1185', '21.957', '25.0015', '17.5004', '0.953778547', '6.164506035', '32.77164179', '5576.6', '480.8404889', '427', '10.91', '432.8', '0.564755266', '3.04', '18.0221721', '3.84028629', '3.559571521');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '26G 157', '46.19', '26.19', '0.63', '14.035', '1.0925', '22.067', '25.0975', '16.4997', '0.906671536', '6.423340961', '35.02698413', '5603.2', '475.2346648', '427.9', '11.01', '442.7', '0.568549037', '3.1', '16.8475409', '3.916357636', '3.60316252');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '26G 151', '44.55', '26', '0.63', '13.75', '1.0585', '21.957', '24.9415', '16.38', '0.950429682', '6.495040151', '34.85238095', '5289.8', '452.5184449', '406.9', '10.9', '402.8', '0.569283044', '3.01', '15.3515611', '3.824664132', '3.513558368');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '26G 151', '44.16', '26', '0.63', '13.75', '1.0585', '21.957', '24.9415', '16.38', '0.950429682', '6.495040151', '34.85238095', '5237.1', '452.5184449', '402.9', '10.89', '402.7', '0.569424411', '3.02', '15.3515611', '3.824664132', '3.530518306');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '26G 150', '44.13', '26', '0.62', '12', '1.2305', '21.39884', '24.7695', '16.12', '0.898502018', '4.87606664', '34.51425806', '5200.4', '451.1501353', '400', '10.86', '306.5', '0.578114192', '2.63', '20.12056972', '3.365981911', '3.080554283');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '26G 150', '43.94', '26', '0.63', '12', '1.212', '21.5994', '24.788', '16.38', '0.935617574', '4.95049505', '34.2847619', '5153.9', '447.809221', '396.5', '10.83', '314.6', '0.554761602', '2.68', '18.79272117', '3.354734813', '3.135909417');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '26G 145', '42.61', '26', '0.595', '14', '0.9975', '22.067', '25.0025', '15.47', '0.940197995', '7.01754386', '37.08739496', '5098', '434.5265489', '392.2', '10.94', '395.7', '0.576434167', '3.05', '13.26598447', '3.890662364', '3.551452011');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '26G 144', '42.38', '25.88', '0.61', '13.73', '0.9985', '21.957', '24.8815', '15.7868', '0.976976754', '6.875312969', '35.99508197', '4983.4', '427.7690729', '385.1', '10.84', '375', '0.574311043', '2.97', '13.21102519', '3.808026655', '3.480584293');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '26G 144', '41.99', '25.88', '0.61', '13.73', '0.9985', '21.957', '24.8815', '15.7868', '0.976976754', '6.875312969', '35.99508197', '4930.6', '427.7690729', '381', '10.84', '375', '0.574311043', '2.99', '13.21102519', '3.808026655', '3.499261733');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '26G 138', '40.65', '25.81', '0.58', '13.7', '0.9635', '21.957', '24.8465', '14.9698', '0.964780927', '7.109496627', '37.85689655', '4779.9', '410.3530874', '370.4', '10.84', '357.4', '0.57766709', '2.97', '11.85048244', '3.799309591', '3.462257761');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '26B 101', '29.69', '26.31', '0.515', '9.565', '0.88', '23.1274', '25.43', '13.54965', '1.415032434', '5.434659091', '44.90757282', '3385.7', '291.5395845', '257.4', '10.68', '115.7', '0.554655074', '1.97', '6.280811095', '2.569130123', '2.390675278');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '26B 98', '28.69', '26.12', '0.5', '9.53', '0.8535', '22.9914', '25.2665', '13.06', '1.413315089', '5.582893966', '45.9828', '3231.2', '279.9064164', '247.4', '10.61', '110.6', '0.556603399', '1.96', '5.739087293', '2.558731494', '2.376486005');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '26B 98', '28.47', '26.12', '0.5', '9.53', '0.8535', '22.9914', '25.2665', '13.06', '1.413315089', '5.582893966', '45.9828', '3200.9', '279.9064164', '245.1', '10.6', '110.6', '0.556603399', '1.97', '5.739087293', '2.558731494', '2.387610351');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '26B 91', '26.83', '26.12', '0.475', '9.525', '0.785', '23.1274', '25.335', '12.407', '1.469216443', '6.066878981', '48.68926316', '3014.1', '260.8961254', '230.8', '10.6', '100.4', '0.563053485', '1.93', '4.633997635', '2.54435325', '2.347439514');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '26B 91', '26.76', '26', '0.47', '9.5', '0.7935', '22.9914', '25.2065', '12.22', '1.433483633', '5.986137366', '48.91787234', '2993.1', '259.9353084', '230.2', '10.58', '100.9', '0.561882278', '1.94', '4.69256124', '2.543874893', '2.35035898');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '26B 91', '26.55', '26', '0.47', '9.5', '0.7935', '22.9914', '25.2065', '12.22', '1.433483633', '5.986137366', '48.91787234', '2962.8', '259.9353084', '227.9', '10.56', '100.9', '0.561882278', '1.95', '4.69256124', '2.543874893', '2.36218929');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '26B 91', '26.49', '26', '0.46', '9.5', '0.8035', '22.9414', '25.1965', '11.96', '1.38250994', '5.91163659', '49.8726087', '2977.2', '260.6335163', '229', '10.6', '101.2', '0.56727669', '1.95', '4.802011305', '2.552643789', '2.359541533');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '26B 90', '26.63', '26', '0.44', '9.15', '0.872', '22.68412', '25.128', '11.44', '1.250941595', '5.246559633', '51.55481818', '3043.1', '264.9953751', '234.1', '10.71', '93.4', '0.59600739', '1.87', '5.685222822', '2.484061417', '2.238910304');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '26B 90', '26.49', '26', '0.46', '9.5', '0.8035', '22.9414', '25.1965', '11.96', '1.38250994', '5.91163659', '49.8726087', '2977.2', '260.6335163', '229', '10.6', '101.2', '0.56727669', '1.95', '4.802011305', '2.552643789', '2.359541533');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '26B 85.5', '25.11', '25.88', '0.45', '9.48', '0.7335', '22.9914', '25.1465', '11.646', '1.487885377', '6.462167689', '51.092', '2772.5', '241.8006364', '214.3', '10.51', '91.7', '0.567903504', '1.91', '3.846992629', '2.52670148', '2.319515921');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '26B 85.5', '24.89', '25.88', '0.45', '9.48', '0.7335', '22.9914', '25.1465', '11.646', '1.487885377', '6.462167689', '51.092', '2742.2', '241.8006364', '211.9', '10.5', '91.6', '0.568523486', '1.92', '3.846992629', '2.52670148', '2.331342248');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '26B 85', '25.04', '26', '0.45', '9.5', '0.725', '23.1274', '25.275', '11.7', '1.511046098', '6.551724138', '51.39422222', '2783.4', '241.7778354', '214.1', '10.54', '91', '0.569227908', '1.91', '3.765541537', '2.52770739', '2.317623825');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '26B 81', '23.9', '25.78', '0.44', '9.47', '0.6835', '22.9914', '25.0965', '11.3432', '1.562894259', '6.927578639', '52.25318182', '2600.1', '227.8956954', '201.7', '10.43', '84.3', '0.573825224', '1.88', '3.268816656', '2.509924818', '2.29008931');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24CB 160', '47.06', '24.664', '0.67', '14.123', '1.119', '20.701', '23.545', '16.52488', '0.877625195', '6.31054513', '30.89701493', '5065.7', '456.3366504', '410.8', '10.38', '526', '0.499394751', '3.34', '16.37760329', '3.955102327', '3.882504825');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24CB 160', '47.05', '24.714', '0.665', '14.095', '1.124', '20.741', '23.59', '16.43481', '0.870602571', '6.270017794', '31.18947368', '5092.2', '457.6410724', '412.1', '10.4', '525.2', '0.499408107', '3.34', '16.46896551', '3.949086513', '3.877126973');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24WFCB 160', '47.04', '24.72', '0.656', '14.091', '1.135', '20.925', '23.585', '16.21632', '0.858285212', '6.207488987', '31.89786585', '5110.3', '459.8580367', '413.5', '10.42', '492.6', '0.537211935', '3.23', '16.47299994', '3.948097764', '3.748110528');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24WFB 160', '47.04', '24.72', '0.656', '14.091', '1.135', '21.1546', '23.585', '16.21632', '0.867702764', '6.207488987', '32.24786585', '5110.3', '459.8580367', '413.5', '10.42', '492.6', '0.537211935', '3.23', '17.36708658', '3.941465723', '3.748110528');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24G 160', '47.04', '24.72', '0.66', '14.09', '1.131', '20.6026', '23.589', '16.3152', '0.853281576', '6.229000884', '31.21606061', '5092.6', '458.7780707', '412', '10.4', '465.9', '0.56587646', '3.15', '18.44917847', '3.954805256', '3.652056725');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24G 150', '44.17', '24.56', '0.635', '14.065', '1.051', '20.6026', '23.509', '15.5956', '0.885020445', '6.691246432', '32.44503937', '4719.6', '427.2339027', '384.3', '10.34', '426.1', '0.571911916', '3.11', '15.24763261', '3.933170413', '3.610128454');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24CB 150', '44.12', '24.562', '0.633', '14.063', '1.048', '20.741', '23.514', '15.547746', '0.890828581', '6.709446565', '32.76619273', '4727.5', '426.4220193', '384.9', '10.35', '486.4', '0.499367646', '3.32', '13.549935', '3.928417984', '3.854526952');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24WFCB 150', '44.1', '24.56', '0.628', '14.063', '1.055', '20.925', '23.505', '15.42368', '0.885716375', '6.66492891', '33.32006369', '4733.5', '427.8595023', '385.5', '10.36', '452.5', '0.54036419', '3.2', '13.46816295', '3.926417687', '3.714173872');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24WFB 150', '44.1', '24.56', '0.628', '14.063', '1.055', '21.1546', '23.505', '15.42368', '0.895434917', '6.66492891', '33.68566879', '4733.5', '427.8595023', '385.5', '10.36', '452.5', '0.54036419', '3.2', '14.29316622', '3.919592395', '3.714173872');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24CB 150', '44.1', '24.526', '0.629', '14.082', '1.05', '20.701', '23.476', '15.426854', '0.880619568', '6.705714286', '32.91096979', '4720.5', '426.2035147', '384.9', '10.35', '489.3', '0.49937392', '3.33', '13.57855545', '3.936484475', '3.862875445');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24G 149', '43.57', '24.12', '0.65', '13.29', '1.1035', '20.0906', '23.0165', '15.678', '0.890448784', '6.021748981', '30.90861538', '4451.1', '415.2854647', '369.1', '10.11', '383.3', '0.563154054', '2.97', '16.30054496', '3.722555983', '3.457021105');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24G 148', '43.68', '24.12', '0.64', '13.28', '1.1035', '20.0906', '23.0165', '15.4368', '0.877409775', '6.017217943', '31.3915625', '4478', '413.8310287', '371.3', '10.13', '382.5', '0.563058964', '2.96', '16.16736057', '3.722524744', '3.443165428');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24WF 145', '42.62', '24.49', '0.608', '14.043', '1.02', '21.1546', '23.47', '14.88992', '0.897942091', '6.883823529', '34.79375', '4561', '412.7893742', '372.5', '10.34', '434.3', '0.542011853', '3.19', '12.98230524', '3.910128187', '3.698906241');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24WFCB 145', '42.62', '24.49', '0.608', '14.043', '1.02', '20.925', '23.47', '14.88992', '0.888196338', '6.883823529', '34.41611842', '4561', '412.7893742', '372.5', '10.34', '434.3', '0.542011853', '3.19', '12.19568256', '3.916972259', '3.698906241');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24G 141', '41.02', '24', '0.61', '13.25', '1.0435', '20.0906', '22.9565', '14.64', '0.886368698', '6.348826066', '32.93540984', '4174.2', '390.3400207', '347.9', '10.09', '356.4', '0.567572241', '2.95', '13.84213504', '3.706824748', '3.429094653');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24G 140', '41.21', '24.41', '0.6', '14.03', '0.976', '20.6026', '23.434', '14.646', '0.902746457', '7.1875', '34.33766667', '4360.9', '396.1916175', '357.3', '10.29', '388.2', '0.578610158', '3.07', '12.48571575', '3.912352611', '3.567955855');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24WF 140', '41.16', '24.41', '0.594', '14.029', '0.98', '21.1546', '23.43', '14.49954', '0.913983745', '7.157653061', '35.61380471', '4376.1', '396.9698519', '358.6', '10.31', '414.5', '0.54400193', '3.17', '11.68626356', '3.89866461', '3.679834369');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24WFCB 140', '41.16', '24.41', '0.594', '14.029', '0.98', '20.925', '23.43', '14.49954', '0.904063885', '7.157653061', '35.22727273', '4376.1', '396.9698519', '358.6', '10.31', '414.5', '0.54400193', '3.17', '10.93307877', '3.905618522', '3.679834369');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24CB 140', '41.16', '24.388', '0.588', '14.041', '0.981', '20.701', '23.407', '14.340144', '0.883693386', '7.156472987', '35.20578231', '4380.4', '396.3432359', '359.2', '10.32', '453.1', '0.49944517', '3.32', '11.1218729', '3.917841109', '3.842259976');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24G 140', '41.16', '24', '0.6', '13', '1.079', '19.9886', '22.921', '14.4', '0.855005347', '6.024096386', '33.31433333', '4201.4', '392.7520688', '350.1', '10.1', '346.9', '0.569463582', '2.9', '14.73848292', '3.647530132', '3.369829108');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24CB 140', '41.15', '24.406', '0.601', '14.031', '0.97', '20.741', '23.436', '14.668006', '0.915891028', '7.232474227', '34.51081531', '4360', '394.7999542', '357.3', '10.29', '447.1', '0.499403627', '3.3', '10.95111924', '3.906437895', '3.829239884');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24G 140', '41.13', '24', '0.6', '13.24', '1.0435', '20.0906', '22.9565', '14.4', '0.872496551', '6.344034499', '33.48433333', '4201.3', '388.9000207', '350.1', '10.11', '355.6', '0.567562131', '2.94', '13.72465904', '3.706976843', '3.414464962');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24G 140', '41.03', '24', '0.56', '13', '1.109', '19.7086', '22.891', '13.44', '0.765541791', '5.861136159', '35.19392857', '4241.9', '395.8158426', '353.5', '10.17', '338.3', '0.600175633', '2.87', '16.21559275', '3.672841589', '3.30958603');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24G 133', '38.71', '23.88', '0.58', '13.22', '0.9835', '20.0906', '22.8965', '13.8504', '0.896220928', '6.720894764', '34.63896552', '3912.4', '367.0308127', '327.7', '10.05', '330.7', '0.572602564', '2.92', '11.75704042', '3.690925744', '3.398978591');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24G 132', '38.82', '23.88', '0.57', '13.21', '0.9835', '20.0906', '22.8965', '13.6116', '0.881435587', '6.71581088', '35.24666667', '3939.6', '365.6051767', '329.9', '10.07', '329.9', '0.572689546', '2.92', '11.65156301', '3.691275649', '3.383526267');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24CB 130', '38.23', '24.25', '0.547', '14', '0.912', '20.701', '23.338', '13.26475', '0.886861451', '7.675438596', '37.84460695', '4045.1', '366.7546428', '333.6', '10.29', '417.5', '0.499506587', '3.31', '8.984748515', '3.899168791', '3.821483941');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24G 130', '38.23', '24.25', '0.57', '14', '0.896', '20.6026', '23.354', '13.8225', '0.936183195', '7.8125', '36.14491228', '3993.1', '364.4731567', '329.3', '10.22', '348.9', '0.587232254', '3.02', '10.01711227', '3.888895604', '3.517387853');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24WFB 130', '38.21', '24.25', '0.565', '14', '0.9', '21.1546', '23.35', '13.70125', '0.948599127', '7.777777778', '37.44176991', '4009.5', '365.4003531', '330.7', '10.24', '375.2', '0.548507463', '3.13', '9.359819958', '3.874852923', '3.639508701');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24WFCB 130', '38.21', '24.25', '0.565', '14', '0.9', '20.925', '23.35', '13.70125', '0.938303571', '7.777777778', '37.03539823', '4009.5', '365.4003531', '330.7', '10.24', '375.2', '0.548507463', '3.13', '8.673332128', '3.882040402', '3.639508701');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24CB 130', '38.21', '24.25', '0.57', '14', '0.892', '20.741', '23.358', '13.8225', '0.94669843', '7.847533632', '36.3877193', '3999.3', '363.6174687', '329.8', '10.23', '408.4', '0.499438459', '3.27', '8.725019372', '3.883412141', '3.802947853');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24G 129', '37.74', '24.12', '0.58', '12.29', '1.014', '20.3922', '23.106', '13.9896', '0.949078724', '6.060157791', '35.15896552', '3844.8', '358.4841568', '318.8', '10.09', '278.2', '0.563839156', '2.72', '11.67115691', '3.420250719', '3.175168615');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24G 128', '37.79', '24.12', '0.57', '12.28', '1.014', '20.3922', '23.106', '13.7484', '0.933474838', '6.055226824', '35.77578947', '3867.1', '357.0297208', '320.7', '10.12', '277.5', '0.563882767', '2.71', '11.56547977', '3.420553533', '3.161763637');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24G 121', '35.3', '24', '0.54', '12.25', '0.954', '20.3922', '23.046', '12.96', '0.942265691', '6.42033543', '37.76333333', '3585.3', '334.9823128', '298.8', '10.08', '256.9', '0.56886772', '2.7', '9.756903545', '3.405425788', '3.147563761');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24G 120', '35.38', '24', '0.53', '12', '0.988', '20.2126', '23.012', '12.72', '0.903565958', '6.072874494', '38.13698113', '3607.3', '336.845772', '300.6', '10.1', '349.4', '0.407189468', '2.66', '10.49817997', '3.348507478', '3.657035255');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24G 120', '35.36', '24', '0.53', '12.24', '0.954', '20.3922', '23.046', '12.72', '0.925571895', '6.41509434', '38.47584906', '3607.8', '333.5423128', '300.6', '10.1', '256.3', '0.568804176', '2.69', '9.665029959', '3.405951037', '3.134459018');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24G 120', '35.36', '24.31', '0.56', '12.09', '0.93', '20.7582', '23.38', '13.6136', '1.033876037', '6.5', '37.06821429', '3632.9', '333.21668', '298.9', '10.14', '240.6', '0.569226332', '2.61', '9.278669963', '3.339246853', '3.067553244');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24G 120', '35.31', '24', '0.51', '12', '1.004', '19.9786', '22.996', '12.24', '0.845707669', '5.976095618', '39.17372549', '3630.7', '338.2273219', '302.6', '10.14', '240', '0.6024', '2.61', '11.37023856', '3.364467018', '3.01982872');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24CB 120', '35.29', '24.31', '0.539', '12.089', '0.942', '20.701', '23.368', '13.10309', '0.979803102', '6.416666667', '38.40630798', '3669.7', '333.8802063', '301.9', '10.2', '277.8', '0.49923905', '2.81', '8.579838872', '3.351178451', '3.278916358');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24WFCB 120', '35.29', '24.31', '0.556', '12.088', '0.93', '20.925', '23.38', '13.51636', '1.034910655', '6.498924731', '37.63489209', '3635.3', '332.8905667', '299.1', '10.15', '254', '0.538928735', '2.68', '8.274633543', '3.335275514', '3.150764237');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24WFB 120', '35.29', '24.31', '0.556', '12.088', '0.93', '21.2382', '23.38', '13.51636', '1.050400931', '6.498924731', '38.19820144', '3635.3', '332.8905667', '299.1', '10.15', '254', '0.538928735', '2.68', '8.692730329', '3.326086801', '3.150764237');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24CB 120', '35.28', '24.31', '0.559', '12.089', '0.922', '20.741', '23.388', '13.58929', '1.040208027', '6.555856833', '37.10375671', '3630.6', '331.2187861', '298.7', '10.14', '271.9', '0.499242558', '2.78', '8.328502263', '3.337647073', '3.262635349');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24G 114', '33.12', '23.88', '0.51', '12.22', '0.894', '20.3922', '22.986', '12.1788', '0.951974978', '6.834451902', '39.98470588', '3340.6', '313.1095048', '279.8', '10.04', '236.7', '0.574343397', '2.67', '8.152259487', '3.390110879', '3.118113914');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24G 113', '33.18', '23.88', '0.5', '12.21', '0.894', '20.3922', '22.986', '11.94', '0.934073182', '6.82885906', '40.7844', '3363.3', '311.6838688', '281.7', '10.07', '236.1', '0.574390539', '2.67', '8.070817085', '3.390877855', '3.103639521');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24WFB 110', '32.36', '24.16', '0.51', '12.042', '0.855', '21.2382', '23.305', '12.3216', '1.052017937', '7.042105263', '41.64352941', '3315', '304.2065013', '274.4', '10.12', '229.1', '0.543069795', '2.66', '6.826291812', '3.306833863', '3.119105373');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24WFCB 110', '32.36', '24.16', '0.51', '12.042', '0.855', '20.925', '23.305', '12.3216', '1.036503816', '7.042105263', '41.02941176', '3315', '304.2065013', '274.4', '10.12', '229.1', '0.543069795', '2.66', '6.452862109', '3.316033417', '3.119105373');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24CB 110', '32.35', '24.16', '0.513', '12.043', '0.847', '20.741', '23.313', '12.39408', '1.04310724', '7.109208973', '40.43079922', '3310.2', '302.532903', '274', '10.12', '246.9', '0.499327096', '2.76', '6.501800633', '3.318159851', '3.240927736');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24CB 110', '32.34', '24.156', '0.494', '12.044', '0.865', '20.701', '23.291', '11.933064', '0.981592926', '6.961849711', '41.9048583', '3343.5', '304.7583317', '276.8', '10.17', '252.2', '0.499346511', '2.79', '6.687135107', '3.332007997', '3.257381069');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24G 110', '32.34', '24.16', '0.51', '12.04', '0.855', '20.7582', '23.305', '12.3216', '1.02841231', '7.040935673', '40.70235294', '3307.8', '303.9452738', '273.8', '10.11', '215.6', '0.576787145', '2.58', '7.276529228', '3.320267749', '3.029125117');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24G 108', '31.84', '23.78', '0.495', '12.205', '0.844', '20.3922', '22.936', '11.7711', '0.979916455', '7.230450237', '41.19636364', '3184.3', '296.4287933', '267.8', '10', '220.6', '0.579654276', '2.63', '7.037370607', '3.376197103', '3.07355727');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24G 107', '31.6', '23.78', '0.485', '12.195', '0.844', '20.3922', '22.936', '11.5333', '0.960907469', '7.224526066', '42.0457732', '3173.1', '295.0150723', '266.9', '10.02', '220', '0.57980764', '2.64', '6.961842945', '3.377178284', '3.074545296');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24B 104.5', '30.88', '24.09', '0.55', '9.775', '0.942', '20.6938', '23.148', '13.2495', '1.236047806', '5.188428875', '37.62509091', '2997.3', '280.8367196', '248.8', '9.85', '132.9', '0.551689825', '2.07', '7.698186729', '2.667422432', '2.486446056');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24G 104.5', '30.63', '24.09', '0.55', '9.775', '0.942', '20.6938', '23.148', '13.2495', '1.236047806', '5.188428875', '37.62509091', '2967.7', '280.8367196', '246.4', '9.84', '132.9', '0.551689825', '2.08', '7.698186729', '2.667422432', '2.498526027');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24G 100', '29.45', '24', '0.47', '12', '0.775', '20.7582', '23.225', '11.28', '1.049070323', '7.741935484', '44.16638298', '2982.5', '274.9914178', '248.5', '10.06', '190.3', '0.586442459', '2.54', '5.582884504', '3.298585244', '2.982078428');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24WFB 100', '29.43', '24', '0.468', '12', '0.775', '21.2382', '23.225', '11.232', '1.068761032', '7.741935484', '45.38076923', '2987.3', '274.9607925', '248.9', '10.08', '203.5', '0.548402948', '2.63', '5.207965959', '3.285239129', '3.081290337');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24WFCB 100', '29.43', '24', '0.468', '12', '0.775', '20.925', '23.225', '11.232', '1.053', '7.741935484', '44.71153846', '2987.3', '274.9607925', '248.9', '10.08', '203.5', '0.548402948', '2.63', '4.875389444', '3.294561751', '3.081290337');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24CB 100', '29.41', '24', '0.45', '12', '0.787', '20.701', '23.213', '10.8', '0.986388183', '7.623888183', '46.00222222', '3020.5', '275.8026881', '251.7', '10.14', '226.9', '0.499462318', '2.78', '5.091125101', '3.312445596', '3.234642422');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24CB 100', '29.39', '24', '0.47', '12', '0.767', '20.741', '23.233', '11.28', '1.059134072', '7.822685789', '44.12978723', '2981.4', '273.1412678', '248.4', '10.07', '221.2', '0.499312839', '2.74', '4.91506449', '3.296557761', '3.216284175');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24B 99.5', '29.4', '24', '0.525', '9.75', '0.897', '20.6938', '23.103', '12.6', '1.24223137', '5.434782609', '39.4167619', '2841.3', '266.6599252', '236.8', '9.83', '124.9', '0.554705671', '2.06', '6.697453957', '2.656536097', '2.468366032');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24B 99.5', '29.15', '24', '0.525', '9.75', '0.897', '20.6938', '23.103', '12.6', '1.24223137', '5.434782609', '39.4167619', '2811.7', '266.6599252', '234.3', '9.82', '124.8', '0.555150146', '2.07', '6.697453957', '2.656536097', '2.48050633');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24B 95.5', '28.05', '23.91', '0.505', '9.73', '0.852', '20.6938', '23.058', '12.07455', '1.260605479', '5.710093897', '40.97782178', '2692.7', '253.2912284', '225.2', '9.8', '117.1', '0.558521601', '2.04', '5.827252059', '2.645160903', '2.448443428');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24B 95.5', '27.79', '23.91', '0.505', '9.73', '0.852', '20.6938', '23.058', '12.07455', '1.260605479', '5.710093897', '40.97782178', '2663.1', '253.2912284', '222.8', '9.79', '117.1', '0.558521601', '2.05', '5.827252059', '2.645160903', '2.461595413');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24CB 94', '27.64', '24.308', '0.499', '9.844', '0.817', '21.349', '23.491', '12.129692', '1.324598995', '6.024479804', '42.78356713', '2734.9', '253.062752', '225', '9.95', '130.2', '0.4988209', '2.17', '4.812363818', '2.658480009', '2.607053765');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24WFCB 94', '27.63', '24.29', '0.516', '9.061', '0.872', '21.341', '23.418', '12.53364', '1.39370819', '5.195527523', '41.35852713', '2683', '250.6036672', '220.9', '9.85', '102.2', '0.528947702', '1.92', '5.270413328', '2.439050907', '2.327488227');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24WFB 94', '27.63', '24.29', '0.516', '9.061', '0.872', '21.585', '23.418', '12.53364', '1.409643001', '5.195527523', '41.83139535', '2683', '250.6036672', '220.9', '9.85', '102.2', '0.528947702', '1.92', '5.444749791', '2.432237506', '2.327488227');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24B 93', '27.36', '24.26', '0.485', '10.04', '0.805', '21.2074', '23.455', '11.7661', '1.27262243', '6.236024845', '43.72659794', '2716.7', '251.6458499', '224', '9.96', '120.1', '0.565291904', '2.09', '5.121698907', '2.721118721', '2.507553544');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24CB 93', '27.34', '24.26', '0.481', '10.031', '0.81', '21.415', '23.45', '11.66906', '1.267750837', '6.191975309', '44.52182952', '2725.4', '252.1703239', '224.7', '9.98', '136.5', '0.499118667', '2.23', '4.616110579', '2.715719784', '2.66883187');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24B 90.5', '26.47', '24.12', '0.475', '9.515', '0.8185', '21.0614', '23.3015', '11.457', '1.284556969', '5.81246182', '44.33978947', '2588.2', '241.3920303', '214.6', '9.89', '104.9', '0.560129347', '1.99', '4.991634512', '2.578178687', '2.386436193');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24WFB 87', '25.58', '24.16', '0.48', '9.025', '0.807', '21.585', '23.353', '11.5968', '1.422566394', '5.591697646', '44.96875', '2467.8', '231.0826397', '204.3', '9.82', '92.9', '0.532130567', '1.91', '4.362629667', '2.41647043', '2.304252225');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24WFCB 87', '25.58', '24.16', '0.48', '9.025', '0.807', '21.341', '23.353', '11.5968', '1.406485496', '5.591697646', '44.46041667', '2467.8', '231.0826397', '204.3', '9.82', '92.9', '0.532130567', '1.91', '4.20490733', '2.423323291', '2.304252225');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24B 85', '24.99', '24.12', '0.445', '10', '0.735', '21.2074', '23.385', '10.7334', '1.283985442', '6.802721088', '47.65707865', '2464.3', '228.8273739', '204.3', '9.93', '106.9', '0.572965388', '2.07', '3.968178046', '2.703497414', '2.473479746');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24CB 85', '24.99', '24.154', '0.452', '9.797', '0.74', '21.349', '23.414', '10.917608', '1.331040114', '6.619594595', '47.23230088', '2457.2', '227.8408101', '203.5', '9.92', '116.2', '0.49902657', '2.16', '3.595788124', '2.639389968', '2.585494787');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24CB 85', '24.99', '24.1', '0.45', '10', '0.73', '21.415', '23.37', '10.845', '1.32010274', '6.849315068', '47.58888889', '2454.6', '228.26508', '203.7', '9.91', '121.9', '0.499042931', '2.21', '3.483779948', '2.693245254', '2.644360715');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24B 84.5', '24.97', '24', '0.46', '9.5', '0.7585', '21.0614', '23.2415', '11.04', '1.344515699', '6.262359921', '45.78565217', '2405.7', '225.4961763', '200.5', '9.82', '95.8', '0.565691491', '1.96', '4.137019096', '2.561104717', '2.356365444');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24B 84.5', '24.8', '24', '0.46', '9.25', '0.7825', '20.9954', '23.2175', '11.04', '1.334307435', '5.910543131', '45.64217391', '2381.9', '225.8197398', '198.5', '9.8', '91.1', '0.566513054', '1.92', '4.362177399', '2.497279492', '2.308190569');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24B 84.5', '24.75', '24', '0.46', '9.5', '0.7585', '21.0614', '23.2415', '11.04', '1.344515699', '6.262359921', '45.78565217', '2380.1', '225.4961763', '198.3', '9.81', '95.8', '0.565691491', '1.97', '4.137019096', '2.561104717', '2.369400504');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24B 84', '24.8', '24', '0.46', '9.25', '0.7825', '20.9954', '23.2175', '11.04', '1.334307435', '5.910543131', '45.64217391', '2381.9', '225.8197398', '198.5', '9.8', '91.1', '0.566513054', '1.92', '4.362177399', '2.497279492', '2.308190569');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24B 84', '24.79', '24', '0.45', '8.85', '0.8325', '20.7654', '23.1675', '10.8', '1.268309666', '5.315315315', '46.14533333', '2391.6', '226.61739', '199.3', '9.82', '82', '0.586433749', '1.82', '4.96641454', '2.404133716', '2.18312129');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24WFB 84', '24.71', '24.09', '0.47', '9.015', '0.772', '21.585', '23.318', '11.3223', '1.457695723', '5.83873057', '45.92553191', '2364.3', '222.0113351', '196.3', '9.78', '88.3', '0.533792594', '1.89', '3.904604235', '2.406479678', '2.29008105');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24WFCB 84', '24.71', '24.09', '0.47', '9.015', '0.772', '21.341', '23.318', '11.3223', '1.441217717', '5.83873057', '45.40638298', '2364.3', '222.0113351', '196.3', '9.78', '88.3', '0.533792594', '1.89', '3.752680921', '2.413461767', '2.29008105');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24B 83', '24.59', '24', '0.52', '9.13', '0.7035', '21.245', '23.2965', '12.48', '1.71998714', '6.488983653', '40.85576923', '2240.9', '215.8825863', '186.7', '9.55', '78', '0.572006002', '1.78', '3.793209104', '2.403864492', '2.205999877');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24B 82', '24.33', '24', '0.5', '8.83', '0.7405', '21.08716', '23.2595', '12', '1.612509683', '5.962187711', '42.17432', '2240.3', '215.2846604', '186.7', '9.6', '71.1', '0.597525339', '1.71', '4.104110495', '2.34334536', '2.104494673');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24B 81', '23.86', '24.12', '0.455', '9.04', '0.74', '21.321', '23.38', '10.9746', '1.450169666', '6.108108108', '46.85934066', '2288.4', '214.6159493', '189.8', '9.79', '80.9', '0.563128158', '1.84', '3.690025007', '2.418649294', '2.232201586');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24CB 81', '23.84', '24.12', '0.453', '9.041', '0.74', '21.415', '23.38', '10.92636', '1.450000299', '6.108783784', '47.27373068', '2292.6', '214.4686564', '190.1', '9.81', '91.3', '0.499147734', '1.96', '3.348692504', '2.417153877', '2.369472027');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24WFCB 80', '23.54', '24', '0.455', '9', '0.727', '21.341', '23.273', '10.92', '1.484052422', '6.189821183', '46.9032967', '2229.7', '210.0968797', '185.8', '9.73', '82.4', '0.535986044', '1.87', '3.210999288', '2.400497988', '2.271705021');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24WFB 80', '23.54', '24', '0.455', '9', '0.727', '21.585', '23.273', '10.92', '1.501020174', '6.189821183', '47.43956044', '2229.7', '210.0968797', '185.8', '9.73', '82.4', '0.535986044', '1.87', '3.35457936', '2.393360487', '2.271705021');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24B 79.5', '23.35', '24.09', '0.43', '9.035', '0.7445', '21.281', '23.3455', '10.3587', '1.360403148', '6.067830759', '49.49069767', '2266.7', '211.8539888', '188.2', '9.85', '81.2', '0.563523326', '1.87', '3.599962567', '2.430367659', '2.244165064');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24B 79.5', '23.17', '24.09', '0.43', '9.035', '0.7445', '21.281', '23.3455', '10.3587', '1.360403148', '6.067830759', '49.49069767', '2245.3', '211.8539888', '186.4', '9.84', '81.2', '0.563523326', '1.87', '3.599962567', '2.430367659', '2.254974591');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24WFB 76', '22.37', '23.91', '0.44', '8.985', '0.682', '21.585', '23.228', '10.5204', '1.549894986', '6.587243402', '49.05681818', '2096.4', '198.2512743', '175.4', '9.68', '76.5', '0.538884805', '1.85', '2.861657849', '2.379504679', '2.25064415');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24WFCB 76', '22.37', '23.91', '0.44', '8.985', '0.682', '21.341', '23.228', '10.5204', '1.532374746', '6.587243402', '48.50227273', '2096.4', '198.2512743', '175.4', '9.68', '76.5', '0.538884805', '1.85', '2.726560346', '2.38681399', '2.25064415');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24CB 76', '22.35', '24', '0.405', '9.75', '0.663', '21.349', '23.337', '9.72', '1.337563522', '7.352941176', '52.71358025', '2184.4', '202.9098677', '182', '9.89', '102.6', '0.49911287', '2.14', '2.60633073', '2.620302852', '2.564752735');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24B 74.2', '21.7', '24', '0.476', '9', '0.5935', '21.59876', '23.4065', '11.424', '1.924742069', '7.582139848', '45.37554622', '1950.1', '186.8509571', '162.5', '9.48', '61.2', '0.589136029', '1.68', '2.492002519', '2.331572745', '2.099434209');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24B 74', '21.81', '24', '0.415', '9', '0.68', '21.321', '23.32', '9.96', '1.445786765', '6.617647059', '51.37590361', '2085.3', '195.8058053', '173.8', '9.78', '72.4', '0.57058011', '1.82', '2.883673665', '2.404612482', '2.20390907');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24CB 74', '21.77', '24', '0.412', '9', '0.68', '21.415', '23.32', '9.888', '1.441663399', '6.617647059', '51.97815534', '2088.3', '195.5130688', '174', '9.79', '82.8', '0.498913043', '1.95', '2.590296455', '2.403412045', '2.355536398');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24WFCB 74', '21.77', '23.87', '0.43', '8.975', '0.662', '21.341', '23.208', '10.2641', '1.544510178', '6.778700906', '49.63023256', '2033.8', '192.5337991', '170.4', '9.67', '73.8', '0.540410469', '1.84', '2.512074976', '2.381150388', '2.241801966');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24WFB 74', '21.77', '23.87', '0.43', '8.975', '0.662', '21.585', '23.208', '10.2641', '1.562169167', '6.778700906', '50.19767442', '2033.8', '192.5337991', '170.4', '9.67', '73.8', '0.540410469', '1.84', '2.642534725', '2.373800856', '2.241801966');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24B 74', '21.7', '24', '0.476', '9', '0.5935', '21.59876', '23.4065', '11.424', '1.924742069', '7.582139848', '45.37554622', '1950.1', '186.8509571', '162.5', '9.48', '61.2', '0.589136029', '1.68', '2.492002519', '2.331572745', '2.099434209');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24B 73.5', '21.7', '24', '0.395', '9', '0.6995', '21.281', '23.3005', '9.48', '1.335238663', '6.433166548', '53.87594937', '2108.8', '197.0378929', '175.7', '9.86', '74.7', '0.568870482', '1.86', '2.971105501', '2.421582527', '2.225574018');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24B 73.5', '21.52', '24', '0.395', '9', '0.6995', '21.281', '23.3005', '9.48', '1.335238663', '6.433166548', '53.87594937', '2087.4', '197.0378929', '173.9', '9.85', '74.7', '0.568870482', '1.86', '2.971105501', '2.421582527', '2.237062575');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24B 73.5', '21.47', '24', '0.39', '9', '0.7035', '21.245', '23.2965', '9.36', '1.308623549', '6.396588486', '54.47435897', '2091', '197.1625863', '174.3', '9.87', '74.4', '0.574430444', '1.86', '3.019599859', '2.426145737', '2.229811319');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24B 72', '21.21', '24', '0.37', '8.7', '0.7405', '21.08716', '23.2595', '8.88', '1.211087445', '5.874409183', '56.99232432', '2090.5', '196.5646604', '174.2', '9.93', '67.7', '0.600223377', '1.79', '3.356030422', '2.362666728', '2.12596176');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24B 71', '20.88', '24', '0.48', '7', '0.685', '21.29244', '23.315', '11.52', '2.131464275', '5.109489051', '44.35925', '1815', '173.1581187', '151.2', '9.32', '33.98', '0.576209045', '1.26', '2.817547991', '1.800716748', '1.618596153');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24B 70', '20.61', '23.88', '0.41', '8.995', '0.62', '21.321', '23.26', '9.7908', '1.56746759', '7.254032258', '52.00243902', '1924.9', '182.1653873', '161.2', '9.66', '65', '0.578496306', '1.78', '2.362381587', '2.382490525', '2.165529064');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24CB 70', '20.59', '23.88', '0.408', '8.996', '0.62', '21.415', '23.26', '9.74304', '1.56652419', '7.25483871', '52.4877451', '1929.1', '182.0152144', '161.6', '9.68', '75.4', '0.498870057', '1.91', '2.110888591', '2.380992528', '2.329457826');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24CB 70', '20.58', '24', '0.4', '8.5', '0.663', '21.349', '23.337', '9.6', '1.515322509', '6.41025641', '53.3725', '1953.8', '182.9266911', '162.8', '9.74', '68', '0.498976563', '1.82', '2.341796452', '2.260867657', '2.207673128');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24B 70', '20.62', '23.88', '0.395', '9', '0.6395', '21.281', '23.2405', '9.4326', '1.460515159', '7.036747459', '53.87594937', '1954.1', '184.1102929', '163.7', '9.74', '67.4', '0.576403932', '1.81', '2.449111338', '2.400018652', '2.187325139');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '24B 69.5', '20.44', '24', '0.39', '7', '0.8155', '20.6898', '23.1845', '9.36', '1.413510029', '4.291845494', '53.05076923', '1928', '180.9677704', '160.7', '9.71', '39.3', '0.593122349', '1.39', '3.66462921', '1.886585771', '1.683729054');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '22G 132', '38.96', '22.38', '0.575', '13.095', '1.03', '18.5862', '21.35', '12.8685', '0.792347557', '6.356796117', '32.32382609', '3501.2', '347.0360259', '312.9', '9.48', '339.3', '0.568052699', '2.95', '12.71135251', '3.690062542', '3.402303799');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '22G 124', '36.59', '22.25', '0.545', '13.065', '0.965', '18.5862', '21.285', '12.12625', '0.803434323', '6.769430052', '34.10311927', '3261.7', '324.329087', '293.2', '9.44', '312.6', '0.573700642', '2.92', '10.62246231', '3.67312859', '3.368482794');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '22G 116', '34.13', '22.12', '0.535', '13.035', '0.88', '18.6282', '21.24', '11.8342', '0.868822314', '7.40625', '34.81906542', '2988.1', '298.8014593', '270.2', '9.36', '279.1', '0.581935292', '2.86', '8.486106484', '3.642538623', '3.31206998');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '22G 116', '34.12', '22.12', '0.51', '13.03', '0.9', '18.5862', '21.22', '11.2812', '0.808302379', '7.238888889', '36.44352941', '3021.2', '301.2077044', '273.2', '9.41', '286', '0.580134212', '2.9', '8.742556317', '3.656090133', '3.332731766');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '22G 108', '31.89', '22', '0.48', '13', '0.84', '18.5862', '21.16', '10.56', '0.816975824', '7.738095238', '38.72125', '2804.3', '280.3311964', '254.9', '9.38', '261.9', '0.587208858', '2.87', '7.239251008', '3.640111724', '3.297051002');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '22G 108', '31.89', '22', '0.5', '13', '0.82', '18.6282', '21.18', '11', '0.873742964', '7.926829268', '37.2564', '2766.7', '277.3133333', '251.5', '9.33', '254.7', '0.589432012', '2.83', '6.979640551', '3.625953709', '3.274865423');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '22G 101', '29.69', '21.88', '0.475', '12.975', '0.76', '18.6282', '21.12', '10.393', '0.897312139', '8.536184211', '39.21726316', '2557.2', '257.2080433', '233.7', '9.28', '231.3', '0.598106901', '2.79', '5.733627504', '3.608230776', '3.232886214');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '22G 101', '29.68', '21.88', '0.45', '12.97', '0.78', '18.5862', '21.1', '9.846', '0.826739221', '8.314102564', '41.30266667', '2590.4', '259.6274884', '236.8', '9.34', '238.1', '0.595626332', '2.83', '5.925139397', '3.623889041', '3.256979901');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '22B 96.5', '28.38', '22.25', '0.525', '9.32', '0.937', '18.9654', '21.313', '11.68125', '1.140160017', '4.973319104', '36.12457143', '2373.7', '240.5173959', '213.4', '9.15', '115.1', '0.54920029', '2.01', '6.934435974', '2.562892495', '2.39744001');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '22B 96', '28.21', '22.25', '0.545', '9.315', '0.905', '19.0294', '21.345', '12.12625', '1.230240893', '5.14640884', '34.91633028', '2328.5', '236.7664294', '209.3', '9.08', '110.7', '0.550640676', '1.98', '6.555956685', '2.545808142', '2.375867835');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '22B 89', '26.28', '22.12', '0.485', '9.28', '0.872', '18.9654', '21.248', '10.7282', '1.136682789', '5.321100917', '39.10391753', '2188.6', '222.1847789', '197.9', '9.13', '104.8', '0.554137939', '2', '5.611447807', '2.547806298', '2.371929493');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '22B 89', '26.23', '22.12', '0.51', '9.28', '0.84', '19.0294', '21.28', '11.2812', '1.244996151', '5.523809524', '37.31254902', '2147.9', '219.0526405', '194.2', '9.05', '100.7', '0.555536372', '1.96', '5.317229158', '2.529460783', '2.348880576');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '22B 83', '24.51', '22', '0.455', '9.25', '0.812', '18.9654', '21.188', '10.01', '1.148882572', '5.695812808', '41.6821978', '2026.5', '206.2717709', '184.2', '9.09', '95.8', '0.559029173', '1.98', '4.593855371', '2.533521692', '2.347296363');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '22B 83', '24.45', '22', '0.48', '9.25', '0.78', '19.0294', '21.22', '10.56', '1.265989189', '5.929487179', '39.64458333', '1985.8', '203.1396325', '180.5', '9.01', '91.7', '0.561008213', '1.94', '4.33941738', '2.513944483', '2.321687465');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '22B 77', '22.74', '21.88', '0.425', '9.22', '0.752', '18.9654', '21.128', '9.299', '1.162524663', '6.130319149', '44.62447059', '1866.7', '190.5045629', '170.6', '9.06', '87', '0.564560001', '1.96', '3.710000548', '2.519029952', '2.321049001');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '22B 77', '22.67', '21.89', '0.445', '9.215', '0.725', '19.0294', '21.165', '9.74105', '1.267511067', '6.355172414', '42.76269663', '1832.7', '187.7823579', '167.4', '8.99', '83.4', '0.566861196', '1.92', '3.517379359', '2.500244498', '2.296145672');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '22B 73', '21.52', '22.38', '0.435', '8.555', '0.715', '19.651', '21.665', '9.7353', '1.397487259', '5.982517483', '45.17471264', '1786.1', '180.1743554', '159.6', '9.11', '66.4', '0.561845308', '1.76', '3.122670413', '2.299379074', '2.122911771');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '22B 73', '21.51', '22.25', '0.415', '8.545', '0.744', '19.463', '21.506', '9.23375', '1.270494756', '5.742607527', '46.89879518', '1796.7', '181.3691064', '161.5', '9.14', '69.1', '0.559821848', '1.79', '3.300900175', '2.316211473', '2.144952026');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '22B 71.5', '20.88', '22.12', '0.42', '8.535', '0.714', '19.393', '21.406', '9.2904', '1.33657259', '5.976890756', '46.17380952', '1705.2', '175.3273732', '154.2', '9.04', '65.8', '0.56221399', '1.78', '3.030101728', '2.302902488', '2.137093496');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '22B 68.5', '20.04', '22.06', '0.405', '8.52', '0.684', '19.393', '21.376', '8.9343', '1.347734433', '6.228070175', '47.88395062', '1629.3', '167.8463152', '147.7', '9.02', '62.3', '0.565855568', '1.76', '2.693076595', '2.2953626', '2.123254231');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '22B 67.5', '19.84', '22.12', '0.39', '8.52', '0.679', '19.463', '21.441', '8.6268', '1.312094215', '6.273932253', '49.90512821', '1637.5', '165.9889128', '148.1', '9.08', '61.8', '0.56626385', '1.76', '2.590738237', '2.299545935', '2.115067485');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '22B 67', '19.74', '22.25', '0.405', '8.525', '0.65', '19.651', '21.6', '9.01125', '1.43625626', '6.557692308', '48.52098765', '1620.2', '164.052573', '145.6', '9.06', '59', '0.568804812', '1.73', '2.422262158', '2.281868252', '2.0919784');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '22B 65.5', '19.08', '22', '0.385', '8.5', '0.654', '19.393', '21.346', '8.47', '1.343102177', '6.498470948', '50.37142857', '1549.5', '159.7954472', '140.9', '9.01', '58.8', '0.569214498', '1.76', '2.362181761', '2.288577723', '2.110456578');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '22B 62.5', '18.38', '22', '0.37', '8.5', '0.619', '19.463', '21.381', '8.14', '1.368680034', '6.865912763', '52.6027027', '1495.4', '152.2918408', '135.9', '9.02', '55.2', '0.573887945', '1.73', '2.04758399', '2.282603837', '2.083813366');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '22B 62', '18.19', '22.12', '0.385', '8.505', '0.585', '19.651', '21.535', '8.5162', '1.520600753', '7.269230769', '51.04155844', '1465.7', '149.3128379', '132.5', '8.98', '51.8', '0.578985669', '1.69', '1.877164519', '2.261134661', '2.051702468');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '22B 58', '17.14', '21.88', '0.36', '8.49', '0.559', '19.463', '21.321', '7.8768', '1.476361751', '7.59391771', '54.06388889', '1363.9', '139.9056048', '124.7', '8.92', '48.9', '0.582968077', '1.69', '1.623852341', '2.261703045', '2.044607691');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '22B 58', '17.1', '21.81', '0.36', '8.475', '0.559', '19.393', '21.251', '7.8516', '1.473655548', '7.580500894', '53.86944444', '1352.1', '139.134184', '124', '8.89', '48.6', '0.583463124', '1.69', '1.620442277', '2.258274914', '2.040713229');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '22B 58', '17.06', '22', '0.38', '8.5', '0.525', '19.651', '21.475', '8.36', '1.673362465', '8.095238095', '51.71315789', '1337.1', '137.4506199', '121.6', '8.85', '45.6', '0.589209841', '1.63', '1.506886097', '2.236136383', '2.006629637');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '22B 54.5', '16.04', '21.75', '0.36', '8.49', '0.494', '19.463', '21.256', '7.83', '1.670619877', '8.593117409', '54.06388889', '1232.6', '127.866997', '113.3', '8.77', '42.2', '0.596975245', '1.62', '1.279643679', '2.232267281', '1.989605823');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '21WFB 142', '41.76', '21.46', '0.659', '13.132', '1.095', '18.0582', '20.365', '14.14214', '0.827589325', '5.996347032', '27.40242792', '3403.1', '354.0164274', '317.2', '9.03', '385.9', '0.535489201', '3.04', '14.60018348', '3.696188879', '3.519638092');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '21WFCB 142', '41.76', '21.46', '0.659', '13.132', '1.095', '17.845', '20.365', '14.14214', '0.817818581', '5.996347032', '27.07890744', '3403.1', '354.0164274', '317.2', '9.03', '385.9', '0.535489201', '3.04', '13.86922649', '3.702534354', '3.519638092');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '21CB 136', '40', '21.492', '0.606', '13.141', '1.061', '17.745', '20.431', '13.024152', '0.77126714', '6.192742696', '29.28217822', '3313.7', '341.7036114', '308.4', '9.1', '401.7', '0.499479366', '3.17', '12.57596845', '3.71479207', '3.647737226');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '21WFCB 132', '38.81', '21.31', '0.614', '13.087', '1.02', '17.845', '20.29', '13.08434', '0.8208138', '6.415196078', '29.06351792', '3141.6', '327.8455348', '294.8', '9', '353.8', '0.538494664', '3.02', '11.23353574', '3.68178324', '3.489323219');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '21WFB 132', '38.81', '21.31', '0.614', '13.087', '1.02', '18.0582', '20.29', '13.08434', '0.830620328', '6.415196078', '29.41074919', '3141.6', '327.8455348', '294.8', '9', '353.8', '0.538494664', '3.02', '11.89070926', '3.675410178', '3.489323219');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '21CB 128', '37.65', '21.372', '0.57', '13.105', '1.001', '17.745', '20.371', '12.18204', '0.771045056', '6.545954046', '31.13157895', '3103.4', '320.6944752', '290.4', '9.08', '375.9', '0.499449499', '3.16', '10.57835718', '3.698778051', '3.63102328');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '21WFCB 127', '37.34', '21.24', '0.588', '13.061', '0.985', '17.845', '20.255', '12.48912', '0.815607514', '6.629949239', '30.34863946', '3017.2', '315.168233', '284.1', '8.99', '338.6', '0.54012878', '3.01', '10.08372807', '3.672107315', '3.474233359');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '21WFB 127', '37.34', '21.24', '0.588', '13.061', '0.985', '18.0582', '20.255', '12.48912', '0.825351842', '6.629949239', '30.71122449', '3017.2', '315.168233', '284.1', '8.99', '338.6', '0.54012878', '3.01', '10.70333432', '3.665767666', '3.474233359');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '21WFB 122', '35.85', '21.16', '0.567', '13.04', '0.945', '18.0582', '20.215', '11.99772', '0.830898773', '6.899470899', '31.84867725', '2883.2', '301.7418406', '272.5', '8.97', '322.1', '0.542116483', '3', '9.527447428', '3.654658939', '3.456479489');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '21WFCB 122', '35.85', '21.16', '0.567', '13.04', '0.945', '17.845', '20.215', '11.99772', '0.821088957', '6.899470899', '31.47266314', '2883.2', '301.7418406', '272.5', '8.97', '322.1', '0.542116483', '3', '8.94146578', '3.661040485', '3.456479489');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '21CB 120', '35.28', '21.248', '0.535', '13.07', '0.939', '17.745', '20.309', '11.36768', '0.773550384', '6.959531416', '33.1682243', '2890.9', '299.4294589', '272.1', '9.05', '349.7', '0.499592001', '3.15', '8.768470446', '3.682257978', '3.61254127');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '21CB 116', '34.12', '21.264', '0.507', '13.057', '0.915', '17.809', '20.349', '10.780848', '0.755758421', '7.134972678', '35.12623274', '2819.7', '290.9836422', '265.2', '9.09', '339.7', '0.499659919', '3.16', '8.035485808', '3.679628087', '3.610086031');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '21CB 112', '32.93', '21.126', '0.499', '13.034', '0.878', '17.745', '20.248', '10.541874', '0.773756511', '7.422551253', '35.56112224', '2683.7', '278.5209286', '254.1', '9.03', '324.3', '0.49957359', '3.14', '7.193724003', '3.66603457', '3.59457219');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '21WFCB 112', '32.93', '21', '0.527', '13', '0.865', '17.845', '20.135', '11.067', '0.836310805', '7.514450867', '33.86148008', '2620.6', '275.3411846', '249.6', '8.92', '289.7', '0.5466589', '2.96', '6.938711743', '3.638532455', '3.418320474');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '21WFB 112', '32.93', '21', '0.527', '13', '0.865', '18.0582', '20.135', '11.067', '0.846302481', '7.514450867', '34.26603416', '2620.6', '275.3411846', '249.6', '8.92', '289.7', '0.5466589', '2.96', '7.461938014', '3.632038217', '3.418320474');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '21CB 108', '31.76', '21.138', '0.473', '13.023', '0.852', '17.809', '20.286', '9.998274', '0.759189231', '7.642605634', '37.65116279', '2608', '269.7459626', '246.8', '9.06', '313.9', '0.499574376', '3.14', '6.528062176', '3.663096145', '3.591751592');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '21CB 104', '30.57', '21', '0.465', '13', '0.815', '17.745', '20.185', '9.765', '0.778803681', '7.975460123', '38.16129032', '2475.3', '257.4767146', '235.7', '9', '298.7', '0.499541067', '3.13', '5.798961925', '3.649129185', '3.576326816');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '21WFCB 103', '30.27', '21.29', '0.608', '9.071', '1.01', '17.845', '20.28', '12.94432', '1.184250538', '4.490594059', '29.35032895', '2268', '242.2420796', '213.1', '8.66', '119.9', '0.523945899', '1.99', '8.155569509', '2.498831825', '2.38856379');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '21WFB 103', '30.27', '21.29', '0.608', '9.071', '1.01', '18.2254', '20.28', '12.94432', '1.209495083', '4.490594059', '29.97598684', '2268', '242.2420796', '213.1', '8.66', '119.9', '0.523945899', '1.99', '8.274835858', '2.488082171', '2.38856379');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '21CB 101', '29.69', '21.016', '0.45', '13', '0.791', '17.809', '20.225', '9.4572', '0.779349412', '8.217446271', '39.57555556', '2413.8', '250.4627151', '229.7', '9.02', '289.8', '0.499720209', '3.12', '5.315723768', '3.646251019', '3.571889049');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '21CB 98', '28.82', '21.358', '0.535', '9.097', '0.994', '17.745', '20.364', '11.42653', '1.049893402', '4.575955734', '33.1682243', '2234.5', '234.3223855', '209.2', '8.8', '125', '0.498872667', '2.08', '7.503927935', '2.526775747', '2.466554482');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '21CB 96', '28.24', '21.376', '0.524', '9.104', '0.971', '17.809', '20.405', '11.201024', '1.055648517', '4.687950566', '33.98664122', '2196.5', '229.8560002', '205.5', '8.82', '122.4', '0.49883086', '2.08', '7.033336781', '2.525956882', '2.465120183');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '21WFCB 96', '28.21', '21.14', '0.575', '9.038', '0.935', '17.845', '20.205', '12.1555', '1.214228575', '4.83315508', '31.03478261', '2088.9', '224.122063', '197.6', '8.6', '109.3', '0.52629254', '1.97', '6.593676506', '2.480146096', '2.363910558');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '21WFB 96', '28.21', '21.14', '0.575', '9.038', '0.935', '18.2254', '20.205', '12.1555', '1.240112159', '4.83315508', '31.69634783', '2088.9', '224.122063', '197.6', '8.6', '109.3', '0.52629254', '1.97', '6.709445251', '2.469175306', '2.363910558');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '21CB 92', '27.05', '21.24', '0.502', '9.064', '0.935', '17.745', '20.305', '10.66248', '1.051110109', '4.847058824', '35.34860558', '2086.4', '219.1688372', '196.5', '8.78', '116.3', '0.498896366', '2.07', '6.2704127', '2.513260939', '2.451292176');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '21CB 89', '26.17', '21.24', '0.485', '9.065', '0.903', '17.809', '20.337', '10.3014', '1.055177966', '5.019379845', '36.71958763', '2024.9', '212.2662224', '190.7', '8.8', '112.4', '0.49870488', '2.07', '5.679865995', '2.510383403', '2.448140032');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '21WFCB 89', '26.15', '21', '0.537', '9', '0.865', '17.845', '20.135', '11.277', '1.230926782', '5.202312139', '33.23091248', '1919.2', '206.6024168', '182.8', '8.57', '99.4', '0.528659457', '1.95', '5.27961307', '2.462311009', '2.339730927');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '21WFCB 89', '26.15', '21', '0.537', '9', '0.865', '18.2254', '20.135', '11.277', '1.25716632', '5.202312139', '33.93929236', '1919.2', '206.6024168', '182.8', '8.57', '99.4', '0.528659457', '1.95', '5.388668335', '2.451225195', '2.339730927');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '21CB 86', '25.28', '21.12', '0.47', '9.032', '0.875', '17.745', '20.245', '9.9264', '1.055314438', '5.161142857', '37.75531915', '1939.3', '204.0818708', '183.6', '8.76', '107.7', '0.498841861', '2.06', '5.174463141', '2.499532864', '2.436774863');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '21CB 83', '24.41', '21.122', '0.452', '9.032', '0.844', '17.809', '20.278', '9.547144', '1.055970032', '5.3507109', '39.40044248', '1879', '197.2572365', '177.9', '8.77', '103.9', '0.498766688', '2.06', '4.663794503', '2.496936686', '2.433421614');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '21WFCB 82', '24.1', '20.86', '0.499', '8.962', '0.795', '17.845', '20.065', '10.40914', '1.249812977', '5.636477987', '35.76152305', '1752.4', '189.2826906', '168', '8.53', '89.6', '0.53222184', '1.93', '4.15536688', '2.444183967', '2.313150809');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '21WFB 82', '24.1', '20.86', '0.499', '8.962', '0.795', '18.2254', '20.065', '10.40914', '1.27645511', '5.636477987', '36.5238477', '1752.4', '189.2826906', '168', '8.53', '89.6', '0.53222184', '1.93', '4.25691075', '2.432969219', '2.313150809');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '21CB 80', '23.53', '21', '0.438', '9', '0.815', '17.745', '20.185', '9.198', '1.059619632', '5.521472393', '40.51369863', '1794.4', '189.1410356', '170.9', '8.73', '99.2', '0.499105343', '2.05', '4.216453195', '2.485792099', '2.420383501');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '21CB 77', '22.63', '21', '0.42', '9', '0.783', '17.809', '20.217', '8.82', '1.061413367', '5.747126437', '42.40238095', '1732.1', '182.1256364', '165', '8.75', '95.3', '0.499131689', '2.05', '3.761478049', '2.482968367', '2.416283209');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '21CB 76', '22.34', '21.37', '0.469', '8.109', '0.793', '18.559', '20.577', '10.02253', '1.353589344', '5.112862547', '39.57142857', '1684', '178.2115326', '157.6', '8.68', '70.7', '0.498395863', '1.78', '3.590178302', '2.192806541', '2.148362837');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '21B 75', '22.05', '21', '0.52', '7', '0.82', '17.96556', '20.18', '10.92', '1.627542021', '4.268292683', '34.54915385', '1524', '164.472048', '145.1', '8.32', '41.9', '0.55938743', '1.38', '4.125512374', '1.870122107', '1.706942487');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '21CB 73', '21.46', '21.334', '0.427', '8.327', '0.769', '18.571', '20.565', '9.109618', '1.238363835', '5.414174252', '43.49180328', '1650.1', '173.5205791', '154.7', '8.77', '74.2', '0.498662698', '1.86', '3.220937543', '2.265117136', '2.220783156');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '21WFCB 73', '21.46', '21.24', '0.455', '8.295', '0.74', '18.555', '20.5', '9.6642', '1.375384879', '5.60472973', '40.78021978', '1600.3', '170.249702', '150.7', '8.64', '66.2', '0.531669388', '1.76', '3.058692952', '2.236428903', '2.121945871');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '21WFB 73', '21.46', '21.24', '0.455', '8.295', '0.74', '18.799', '20.5', '9.6642', '1.393471319', '5.60472973', '41.31648352', '1600.3', '170.249702', '150.7', '8.64', '66.2', '0.531669388', '1.76', '3.180072239', '2.229395486', '2.121945871');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '21CB 70', '20.59', '21.248', '0.433', '8.073', '0.732', '18.559', '20.516', '9.200384', '1.359866999', '5.514344262', '42.86143187', '1542.9', '163.6077595', '145.2', '8.66', '64.3', '0.499141546', '1.77', '2.836452697', '2.178271948', '2.131343877');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '21WFCB 68', '20.02', '21.13', '0.43', '8.27', '0.685', '18.555', '20.445', '9.0859', '1.408423728', '6.03649635', '43.15116279', '1478.3', '157.7940948', '139.9', '8.59', '60.4', '0.534550716', '1.74', '2.475687115', '2.221714891', '2.100816751');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '21WFB 68', '20.02', '21.13', '0.43', '8.27', '0.685', '18.799', '20.445', '9.0859', '1.426944633', '6.03649635', '43.71860465', '1478.3', '157.7940948', '139.9', '8.59', '60.4', '0.534550716', '1.74', '2.587379466', '2.214555632', '2.100816751');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '21CB 67', '19.71', '21.21', '0.393', '8.293', '0.707', '18.571', '20.503', '8.33553', '1.244791922', '5.864922207', '47.25445293', '1506.2', '158.7145537', '142', '8.74', '67.3', '0.499296015', '1.85', '2.517864077', '2.250873276', '2.204230807');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '21CB 64', '18.82', '21.126', '0.396', '8.036', '0.671', '18.559', '20.455', '8.365896', '1.362973178', '5.988077496', '46.86616162', '1403.3', '149.0458099', '132.9', '8.64', '58.2', '0.498583697', '1.76', '2.193767834', '2.163876532', '2.116331743');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '21WFCB 63', '18.52', '21', '0.41', '8.25', '0.62', '18.555', '20.38', '8.61', '1.487302053', '6.653225806', '45.25609756', '1343.6', '144.265604', '128', '8.52', '53.8', '0.539249826', '1.7', '1.928066702', '2.201869452', '2.069537237');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '21WF 63', '18.52', '21', '0.41', '8.25', '0.62', '18.799', '20.38', '8.61', '1.506860215', '6.653225806', '45.85121951', '1343.6', '144.265604', '128', '8.52', '53.8', '0.539249826', '1.7', '2.030356778', '2.194406671', '2.069537237');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '21CB 62', '18.23', '21.098', '0.367', '8.267', '0.651', '18.571', '20.447', '7.742966', '1.26640445', '6.349462366', '50.60217984', '1382', '145.9971505', '131', '8.71', '61.4', '0.499200698', '1.84', '1.995055331', '2.237216999', '2.189012988');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '21WFCB 62', '18.23', '20.99', '0.4', '8.24', '0.615', '18.555', '20.375', '8.396', '1.464598627', '6.699186992', '46.3875', '1326.8', '142.29811', '126.4', '8.53', '53.1', '0.539984115', '1.71', '1.856751297', '2.201722006', '2.068747729');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '21WFCB 62', '18.23', '20.99', '0.4', '8.24', '0.615', '18.799', '20.375', '8.396', '1.483858237', '6.699186992', '46.9975', '1326.8', '142.29811', '126.4', '8.53', '53.1', '0.539984115', '1.71', '1.956635505', '2.194350997', '2.068747729');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '21B 60.5', '17.68', '21', '0.428', '8.25', '0.5475', '18.78964', '20.4525', '8.988', '1.780426937', '7.534246575', '43.90102804', '1235.5', '134.6936043', '117.7', '8.36', '43.5', '0.588945986', '1.57', '1.713376082', '2.158077361', '1.944082093');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '21B 60.4', '17.68', '21', '0.428', '8.25', '0.5475', '18.78964', '20.4525', '8.988', '1.780426937', '7.534246575', '43.90102804', '1235.5', '134.6936043', '117.7', '8.36', '43.5', '0.588945986', '1.57', '1.713376082', '2.158077361', '1.944082093');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '21CB 60', '17.64', '21.034', '0.375', '8.015', '0.625', '18.559', '20.409', '7.88775', '1.389320025', '6.412', '49.49066667', '1304.9', '138.9307084', '124.1', '8.6', '43.7', '0.613660139', '1.75', '1.803828855', '2.151890331', '1.895617427');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '21WFCB 59', '17.36', '20.91', '0.39', '8.23', '0.575', '18.555', '20.335', '8.1549', '1.529177453', '7.156521739', '47.57692308', '1246.8', '134.2999198', '119.3', '8.47', '49.2', '0.54290145', '1.68', '1.581307364', '2.188151833', '2.047714568');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '21WFB 59', '17.36', '20.91', '0.39', '8.23', '0.575', '18.799', '20.335', '8.1549', '1.54928628', '7.156521739', '48.2025641', '1246.8', '134.2999198', '119.3', '8.47', '49.2', '0.54290145', '1.68', '1.675813953', '2.180536461', '2.047714568');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '21CB 58', '17.06', '21', '0.35', '8.25', '0.602', '18.571', '20.398', '7.35', '1.308738548', '6.852159468', '53.06', '1279.1', '135.5963084', '121.8', '8.66', '56.4', '0.499456865', '1.82', '1.619981391', '2.223776376', '2.173175017');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '21CB 58', '17.05', '21', '0.36', '8', '0.608', '18.559', '20.392', '7.56', '1.373610197', '6.578947368', '51.55277778', '1263.2', '134.413287', '120.3', '8.61', '52', '0.498871795', '1.75', '1.648918028', '2.148689037', '2.09934479');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '21B 58', '16.9', '21', '0.43', '6.5', '0.62', '18.53604', '20.38', '9.03', '1.977790868', '5.241935484', '43.10706977', '1143', '124.0325497', '108.8', '8.22', '24.5', '0.579141156', '1.2', '1.887781958', '1.688381298', '1.51480136');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '21B 57.5', '16.85', '21', '0.357', '6.5', '0.74', '17.9634', '20.26', '7.497', '1.33325027', '4.391891892', '50.31764706', '1227.5', '131.3233673', '116.9', '8.54', '28.4', '0.596310153', '1.3', '2.547581724', '1.762591716', '1.568760469');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '21CB 55', '16.17', '20.89', '0.36', '8', '0.553', '18.559', '20.337', '7.5204', '1.51022604', '7.233273056', '51.55277778', '1166.7', '125.197487', '111.7', '8.49', '47.3', '0.498830162', '1.71', '1.346205306', '2.128145103', '2.075068464');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20G 149', '43.84', '20.12', '0.69', '12.78', '1.2225', '15.793', '18.8975', '13.8828', '0.697483606', '5.226993865', '22.8884058', '3134.9', '348.8810999', '311.6', '8.46', '384.6', '0.552905491', '2.96', '20.23808622', '3.661010738', '3.415018767');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20G 149', '43.44', '20.12', '0.69', '12.78', '1.2225', '15.791', '18.8975', '13.8828', '0.697395278', '5.226993865', '22.88550725', '3106.6', '348.8790688', '308.8', '8.46', '384.5', '0.55304929', '2.97', '20.24304297', '3.661062956', '3.430020419');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20G 146', '42.97', '20.38', '0.71', '12.08', '1.24', '16.2142', '19.14', '14.4698', '0.768537839', '4.870967742', '22.83690141', '3105.1', '343.3617825', '304.7', '8.5', '332.3', '0.548164493', '2.78', '19.81743295', '3.443590918', '3.230612822');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20CB 146', '42.95', '20.38', '0.71', '12.08', '1.24', '16.475', '19.14', '14.4698', '0.780899514', '4.870967742', '23.20422535', '3108.8', '343.574663', '305.1', '8.51', '364.9', '0.499191726', '2.91', '18.01525247', '3.436505441', '3.38315423');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20G 142', '41.71', '20', '0.66', '12.75', '1.1625', '15.793', '18.8375', '13.2', '0.703243011', '5.483870968', '23.92878788', '2960.6', '330.4990919', '296.1', '8.43', '361', '0.55620523', '2.94', '17.56402433', '3.645293254', '3.388683688');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20G 142', '41.31', '20', '0.66', '12.75', '1.1625', '15.791', '18.8375', '13.2', '0.703153953', '5.483870968', '23.92575758', '2932.3', '330.4970608', '293.2', '8.43', '360.9', '0.556359346', '2.96', '17.56849982', '3.645345952', '3.404929255');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20G 140', '41.28', '20', '0.64', '12.5', '1.2005', '15.44556', '18.7995', '12.8', '0.658736087', '5.206164098', '24.1336875', '2938.3', '331.12329', '293.8', '8.44', '334.3', '0.584486629', '2.85', '19.53610782', '3.591177932', '3.270396762');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20G 140', '41.19', '20', '0.64', '12.5', '1.197', '15.693', '18.803', '12.8', '0.671246115', '5.2213868', '24.5203125', '2934.7', '330.6534561', '293.5', '8.44', '348.9', '0.558395583', '2.91', '18.43146931', '3.584479749', '3.343066435');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20G 135', '39.74', '20.18', '0.67', '12.04', '1.14', '16.2142', '19.04', '13.5206', '0.79147826', '5.280701754', '24.20029851', '2829.3', '314.7912185', '280.4', '8.44', '299.7', '0.553243504', '2.75', '15.7429851', '3.418412243', '3.189868949');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20CB 135', '39.71', '20.18', '0.669', '12.039', '1.14', '16.475', '19.04', '13.50042', '0.803075312', '5.280263158', '24.62630792', '2832.3', '314.9022909', '280.7', '8.45', '332', '0.49929448', '2.89', '14.20478902', '3.411054112', '3.355570052');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20G 135', '39.58', '19.88', '0.63', '12.72', '1.1025', '15.793', '18.7775', '12.5244', '0.709478886', '5.768707483', '25.06825397', '2788.9', '312.2808839', '280.6', '8.39', '337.7', '0.559922121', '2.92', '15.14154649', '3.629461561', '3.361441709');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20G 135', '39.18', '19.88', '0.63', '12.72', '1.1025', '15.791', '18.7775', '12.5244', '0.709389039', '5.768707483', '25.06507937', '2760.6', '312.2788528', '277.7', '8.39', '337.6', '0.560087974', '2.94', '15.14551424', '3.629514773', '3.378447438');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20G 127', '37.33', '19.75', '0.6', '12.69', '1.0375', '15.793', '18.7125', '11.85', '0.719724287', '6.115662651', '26.32166667', '2607.3', '292.9723731', '264', '8.36', '313', '0.564478478', '2.9', '12.81152827', '3.61230965', '3.330589543');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20G 125', '36.77', '20', '0.63', '12', '1.05', '16.2142', '18.95', '12.6', '0.81071', '5.714285714', '25.7368254', '2584', '289.0216945', '258.4', '8.38', '270.6', '0.558758315', '2.71', '12.55896699', '3.394828576', '3.149976043');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20CB 125', '36.76', '20', '0.65', '12', '1.05', '16.475', '18.95', '13', '0.849900794', '5.714285714', '25.34615385', '2587.7', '290.836625', '258.8', '8.39', '302.8', '0.499339498', '2.87', '11.44046284', '3.38231742', '3.329548985');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20G 120', '35.24', '20.12', '0.59', '12.03', '1.0085', '16.4142', '19.1115', '11.8708', '0.798233964', '5.964303421', '27.82067797', '2528', '279.9871753', '251.3', '8.47', '260.2', '0.562320927', '2.72', '11.11932486', '3.400270899', '3.145500738');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20G 120', '34.95', '20.12', '0.59', '12.03', '1.0085', '16.4142', '19.1115', '11.8708', '0.798233964', '5.964303421', '27.82067797', '2505.5', '279.9871753', '249.1', '8.47', '260.1', '0.562537121', '2.73', '11.11932486', '3.400270899', '3.158753251');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20CB 115', '33.83', '19.82', '0.591', '11.961', '0.96', '16.475', '18.86', '11.71362', '0.847957685', '6.2296875', '27.87648054', '2348.3', '263.9016591', '237', '8.33', '274.2', '0.499257971', '2.85', '8.753634555', '3.362937649', '3.303051907');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20G 115', '33.82', '19.82', '0.59', '11.96', '0.96', '16.2142', '18.86', '11.6938', '0.833192064', '6.229166667', '27.48169492', '2343.9', '263.5905705', '236.5', '8.32', '242.1', '0.565312693', '2.68', '9.846392101', '3.370585658', '3.106974355');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20G 113', '33.2', '20', '0.56', '12', '0.9485', '16.4142', '19.0515', '11.2', '0.807586716', '6.325777543', '29.31107143', '2362.8', '262.5078673', '236.3', '8.44', '240.8', '0.567209302', '2.69', '9.37987246', '3.384246603', '3.115630669');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20G 113', '32.9', '20', '0.56', '12', '0.9485', '16.4142', '19.0515', '11.2', '0.807586716', '6.325777543', '29.31107143', '2340.2', '262.5078673', '234', '8.43', '240.8', '0.567209302', '2.71', '9.37987246', '3.384246603', '3.130905087');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20G 112', '32.88', '20', '0.52', '12', '0.979', '16.1122', '19.021', '10.4', '0.713171944', '6.128702758', '30.985', '2368.9', '265.2823127', '236.9', '8.49', '232.8', '0.60556701', '2.66', '10.53890617', '3.409702779', '3.057106951');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20G 112', '32.81', '20', '0.55', '12', '0.9525', '16.3682', '19.0475', '11', '0.787621172', '6.299212598', '29.76036364', '2342.1', '262.4813471', '234.2', '8.45', '239.3', '0.573171751', '2.7', '9.502788138', '3.38918815', '3.119477785');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20G 107', '31.36', '19.88', '0.54', '11.98', '0.8885', '16.4142', '18.9915', '10.7352', '0.83272045', '6.741699494', '30.39666667', '2206.5', '246.1749953', '222', '8.39', '222.4', '0.572416122', '2.66', '7.913491577', '3.368017899', '3.084292376');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20G 107', '31.06', '19.88', '0.54', '11.98', '0.8885', '16.4142', '18.9915', '10.7352', '0.83272045', '6.741699494', '30.39666667', '2184', '246.1749953', '219.7', '8.39', '222.3', '0.572673619', '2.68', '7.913491577', '3.368017899', '3.099697685');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20G 99', '29.21', '19.75', '0.51', '11.95', '0.8235', '16.4142', '18.9265', '10.0725', '0.850664655', '7.255616272', '32.18470588', '2034.4', '227.819586', '206', '8.35', '202.1', '0.57945506', '2.63', '6.456973627', '3.349833171', '3.0469807');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20B 98', '28.89', '20.38', '0.58', '9.095', '0.99', '17.0014', '19.39', '11.8204', '1.095152959', '4.593434343', '29.31275862', '2010.5', '223.5908074', '197.3', '8.34', '114.1', '0.543971835', '1.99', '8.014366475', '2.520639894', '2.367844544');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20CB 98', '28.82', '20.38', '0.577', '9.092', '0.99', '17.175', '19.39', '11.75926', '1.100976216', '4.591919192', '29.7660312', '2009.7', '223.3682212', '197.2', '8.35', '124.3', '0.498839805', '2.08', '7.33172339', '2.515794365', '2.472042971');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20CB 88', '25.87', '20.18', '0.521', '9.036', '0.89', '17.175', '19.29', '10.51378', '1.112674769', '5.076404494', '32.96545106', '1784.4', '199.2283916', '176.9', '8.3', '109.7', '0.498805002', '2.06', '5.358946165', '2.491130728', '2.445628649');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20B 88', '25.86', '20.18', '0.52', '9.035', '0.89', '17.0014', '19.29', '10.4936', '1.099435777', '5.075842697', '32.695', '1782.4', '199.0376614', '176.7', '8.3', '99.4', '0.550309293', '1.96', '5.876043726', '2.495942193', '2.329303254');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20B 82', '24.23', '20', '0.57', '8.51', '0.808', '16.87684', '19.192', '11.4', '1.399023688', '5.266089109', '29.60849123', '1561.3', '179.9638793', '156.1', '8.03', '71.5', '0.580380421', '1.72', '5.068760638', '2.308320427', '2.096508797');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20B 82', '24.17', '20', '0.57', '8.89', '0.7675', '17.0454', '19.2325', '11.4', '1.423973502', '5.791530945', '29.90421053', '1559.8', '179.713552', '156', '8.03', '79.9', '0.562413377', '1.82', '4.577390878', '2.402641377', '2.219289525');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20B 80', '23.54', '20', '0.485', '9', '0.8', '17.0014', '19.2', '9.7', '1.145233194', '5.625', '35.05443299', '1595', '179.2014779', '159.5', '8.23', '87.2', '0.55733945', '1.93', '4.426860711', '2.473040956', '2.290938946');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20CB 80', '23.53', '20', '0.485', '9', '0.8', '17.175', '19.2', '9.7', '1.156927083', '5.625', '35.41237113', '1596.3', '179.2904', '159.6', '8.24', '97.4', '0.498973306', '2.03', '3.998876376', '2.468074524', '2.420464132');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20B 78', '22.77', '20.09', '0.46', '8.905', '0.801', '17.175', '19.289', '9.2414', '1.107613238', '5.558676654', '37.33695652', '1568.3', '176.8071137', '156.1', '8.3', '84.6', '0.557163526', '1.93', '4.219648728', '2.450296454', '2.286249317');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20CB 74', '21.77', '19.88', '0.451', '8.966', '0.74', '17.175', '19.14', '8.96588', '1.167462215', '6.058108108', '38.08203991', '1466.7', '165.1634776', '147.6', '8.21', '89.1', '0.498848848', '2.02', '3.188016035', '2.452672482', '2.403541594');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20B 74', '21.76', '19.88', '0.45', '8.965', '0.74', '17.0014', '19.14', '8.946', '1.153228019', '6.057432432', '37.78088889', '1464.7', '164.9757519', '147.4', '8.2', '78.9', '0.563150342', '1.9', '3.550536988', '2.457741347', '2.263318789');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20B 73', '21.37', '20', '0.43', '8.875', '0.756', '17.0914', '19.244', '8.6', '1.095357627', '5.869708995', '39.74744186', '1467.8', '165.774581', '146.8', '8.29', '78.5', '0.561016944', '1.92', '3.599136944', '2.441921079', '2.268320809');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20B 73', '21.37', '20', '0.43', '8.75', '0.7675', '17.0454', '19.2325', '8.6', '1.091413234', '5.700325733', '39.64046512', '1466.5', '165.713552', '146.7', '8.28', '75.9', '0.564520245', '1.88', '3.711059529', '2.409426325', '2.230533261');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20B 72', '21.43', '20', '0.43', '8.37', '0.808', '16.87684', '19.192', '8.6', '1.073056945', '5.179455446', '39.24846512', '1467.9', '165.9638793', '146.8', '8.28', '67.6', '0.584063132', '1.78', '4.167944231', '2.31186189', '2.102110008');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20B 72', '21.37', '20', '0.43', '8.75', '0.7675', '17.0454', '19.2325', '8.6', '1.091413234', '5.700325733', '39.64046512', '1466.5', '165.713552', '146.7', '8.28', '75.9', '0.564520245', '1.88', '3.711059529', '2.409426325', '2.230533261');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20B 69', '20.26', '20', '0.52', '8.145', '0.6465', '17.4866', '19.3535', '10.4', '1.726828078', '6.299303944', '33.62807692', '1268.9', '147.3295317', '126.9', '7.91', '51.2', '0.568578703', '1.59', '2.789685469', '2.150847776', '1.975918057');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20B 68.5', '20.12', '19.88', '0.41', '8.855', '0.696', '17.0914', '19.184', '8.1508', '1.137008444', '6.361350575', '41.68634146', '1366', '153.180459', '137.4', '8.24', '71', '0.56719885', '1.88', '2.907200708', '2.426103906', '2.226334381');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20B 68', '19.95', '20', '0.49', '7.69', '0.705', '17.2626', '19.295', '9.8', '1.560223556', '5.453900709', '35.22979592', '1269.6', '146.81992', '127', '7.98', '45.7', '0.584615991', '1.51', '3.086484999', '2.056219358', '1.863217837');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20CB 65', '19.12', '20.25', '0.416', '8.046', '0.69', '17.745', '19.56', '8.424', '1.32965881', '5.830434783', '42.65625', '1309.9', '145.624032', '129.4', '8.28', '60', '0.499179428', '1.77', '2.356703978', '2.173386406', '2.129501324');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20B 65', '19.08', '20.25', '0.415', '8.045', '0.69', '17.6746', '19.56', '8.40375', '1.321364246', '5.829710145', '42.58939759', '1305.6', '145.4572184', '128.9', '8.27', '53.5', '0.559618687', '1.67', '2.573562248', '2.175484702', '2.014743947');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20B 64.5', '18.86', '20', '0.45', '8.075', '0.6465', '17.4866', '19.3535', '9', '1.507324747', '6.24516628', '38.85911111', '1222.1', '140.3295317', '122.2', '8.05', '49.8', '0.569620399', '1.62', '2.412856128', '2.158624823', '1.985838055');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20B 64.5', '18.79', '20.12', '0.4', '8.025', '0.7045', '17.5146', '19.4155', '8.048', '1.239179374', '5.695528744', '43.7865', '1283.2', '144.713205', '127.6', '8.26', '54.3', '0.558772527', '1.7', '2.62640276', '2.182026238', '2.032515515');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20B 64', '18.86', '20', '0.45', '8.075', '0.6465', '17.4866', '19.3535', '9', '1.507324747', '6.24516628', '38.85911111', '1222.1', '140.3295317', '122.2', '8.05', '49.8', '0.569620399', '1.62', '2.412856128', '2.158624823', '1.985838055');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20B 63', '18.55', '20', '0.42', '7.62', '0.705', '17.2626', '19.295', '8.4', '1.349619702', '5.404255319', '41.10142857', '1223', '139.81992', '122.3', '8.12', '44.3', '0.586771564', '1.54', '2.730954495', '2.061614794', '1.869373269');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20B 62', '18.11', '20.06', '0.39', '8.015', '0.6745', '17.5146', '19.3855', '7.8234', '1.263511938', '5.941438102', '44.90923077', '1227.9', '138.8705285', '122.4', '8.23', '51.5', '0.56195826', '1.69', '2.34516525', '2.174175943', '2.019465375');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20CB 60', '17.65', '20.12', '0.395', '8.025', '0.625', '17.745', '19.495', '7.9474', '1.39748785', '6.42', '44.92405063', '1189.1', '132.9422033', '118.2', '8.21', '53.9', '0.49939608', '1.75', '1.824155108', '2.154720842', '2.108299308');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20B 60', '17.65', '20', '0.375', '7.58', '0.705', '17.2626', '19.295', '7.5', '1.211376523', '5.375886525', '46.0336', '1193.1', '135.3878505', '119.3', '8.22', '43.4', '0.589556943', '1.57', '2.546684514', '2.067008363', '1.87340656');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20B 60', '17.63', '20.12', '0.395', '8.025', '0.625', '17.6746', '19.495', '7.9474', '1.391943576', '6.42', '44.74582278', '1185.5', '132.8779052', '117.8', '8.2', '47.5', '0.566683131', '1.64', '2.009477582', '2.156789796', '1.982534627');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20B 59.5', '17.36', '20', '0.375', '8', '0.6465', '17.4866', '19.3535', '7.5', '1.26787993', '6.18716164', '46.63093333', '1172.2', '132.8295317', '117.2', '8.22', '48.3', '0.571097308', '1.66', '2.10329913', '2.168083518', '1.9969837');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20B 59.5', '17.33', '20', '0.375', '8', '0.6445', '17.5146', '19.3555', '7.5', '1.273850853', '6.206361521', '46.7056', '1169.7', '132.554315', '117', '8.22', '48.6', '0.565816187', '1.68', '2.067823948', '2.16674112', '2.004990888');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20B 59', '17.36', '20', '0.375', '8', '0.6465', '17.4866', '19.3535', '7.5', '1.26787993', '6.18716164', '46.63093333', '1172.2', '132.8295317', '117.2', '8.22', '48.3', '0.571097308', '1.66', '2.10329913', '2.168083518', '1.9969837');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20B 58.5', '17.15', '20', '0.35', '7.55', '0.705', '17.2626', '19.295', '7', '1.13511061', '5.354609929', '49.32171429', '1176.3', '132.81992', '117.6', '8.28', '43', '0.588003986', '1.58', '2.454953854', '2.067903677', '1.878183239');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20B 56', '16.51', '19.88', '0.375', '8', '0.5845', '17.5146', '19.2955', '7.455', '1.404613986', '6.843455945', '46.7056', '1086.1', '122.983115', '109.3', '8.11', '43.5', '0.573302682', '1.62', '1.676933174', '2.146251432', '1.959510379');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20CB 55', '16.19', '20', '0.37', '8', '0.565', '17.745', '19.435', '7.4', '1.452577434', '7.079646018', '47.95945946', '1075.6', '120.7833133', '107.6', '8.15', '48.3', '0.49910283', '1.73', '1.395713654', '2.136986646', '2.088549171');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '20B 55', '16.16', '20', '0.37', '8', '0.565', '17.6746', '19.435', '7.4', '1.446814602', '7.079646018', '47.76918919', '1071.9', '120.7190152', '107.2', '8.14', '41.8', '0.576714514', '1.61', '1.550883515', '2.139116967', '1.946561022');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '19WFCB 124', '36.45', '18.64', '0.651', '11.889', '1.071', '15.173', '17.569', '12.13464', '0.775742613', '5.550420168', '23.30721966', '2227.1', '268.0061144', '239', '7.82', '281.9', '0.532045936', '2.78', '11.6839082', '3.376086358', '3.218897229');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '19WFB 124', '36.45', '18.64', '0.651', '11.889', '1.071', '15.3698', '17.569', '12.13464', '0.785804311', '5.550420168', '23.60952381', '2227.1', '268.0061144', '239', '7.82', '281.9', '0.532045936', '2.78', '12.2469239', '3.370249409', '3.218897229');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18WFB 114', '33.51', '18.48', '0.595', '11.833', '0.991', '15.3698', '17.489', '10.9956', '0.779860032', '5.970232089', '25.83159664', '2033.8', '245.5721816', '220.1', '7.79', '255.6', '0.535323307', '2.76', '9.707714258', '3.347343377', '3.18667589');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18WFCB 114', '33.51', '18.48', '0.595', '11.833', '0.991', '15.173', '17.489', '10.9956', '0.769874446', '5.970232089', '25.50084034', '2033.8', '245.5721816', '220.1', '7.79', '255.6', '0.535323307', '2.76', '9.213589959', '3.353148765', '3.18667589');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18WFCB 105', '30.86', '18.32', '0.554', '11.792', '0.911', '15.173', '17.409', '10.14928', '0.782483836', '6.472008782', '27.38808664', '1852.5', '224.713876', '202.2', '7.75', '231', '0.538874413', '2.73', '7.223806241', '3.330895586', '3.153460019');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18WFB 105', '30.86', '18.32', '0.554', '11.792', '0.911', '15.3698', '17.409', '10.14928', '0.792632971', '6.472008782', '27.7433213', '1852.5', '224.713876', '202.2', '7.75', '231', '0.538874413', '2.73', '7.664819501', '3.324994019', '3.153460019');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18CB 100', '29.4', '18.238', '0.498', '12.069', '0.864', '14.985', '17.374', '9.082524', '0.715650634', '6.984375', '30.09036145', '1783.4', '215.1056228', '195.6', '7.79', '253.4', '0.499504894', '2.94', '6.296743639', '3.421050963', '3.354700789');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18G 100', '29.25', '18.12', '0.52', '11.54', '0.8995', '14.7338', '17.2205', '9.4224', '0.738093087', '6.414674819', '28.33423077', '1725.7', '213.1880307', '190.5', '7.68', '202.6', '0.568588285', '2.63', '7.552588471', '3.273012078', '3.026077952');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18CB 99', '29.12', '18.274', '0.485', '11.795', '0.885', '15.179', '17.389', '8.86289', '0.705250956', '6.663841808', '31.29690722', '1771.1', '214.5427001', '194.5', '7.81', '242.2', '0.499668212', '2.88', '6.34751013', '3.34395649', '3.290406637');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18G 99', '29.11', '18.25', '0.485', '11.795', '0.8845', '14.8818', '17.3655', '8.85125', '0.691833233', '6.667608819', '30.68412371', '1767.7', '213.8939085', '193.7', '7.79', '211.2', '0.57268593', '2.69', '7.218704561', '3.351537424', '3.076881672');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18WFB 96', '28.22', '18.16', '0.512', '11.75', '0.831', '15.3698', '17.329', '9.29792', '0.805933646', '7.069795427', '30.01914063', '1674.7', '204.0442408', '184.4', '7.7', '206.8', '0.543228871', '2.71', '5.930511205', '3.302222501', '3.117213597');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18WFCB 96', '28.22', '18.16', '0.512', '11.75', '0.831', '15.173', '17.329', '9.29792', '0.795614205', '7.069795427', '29.63476563', '1674.7', '204.0442408', '184.4', '7.7', '206.8', '0.543228871', '2.71', '5.54035044', '3.308222864', '3.117213597');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18CB 93', '27.35', '18.12', '0.463', '12.034', '0.805', '14.985', '17.315', '8.38956', '0.716195933', '7.474534161', '32.3650108', '1648.4', '199.2879581', '181.9', '7.76', '234', '0.499607326', '2.93', '5.114322299', '3.404811491', '3.337242988');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18G 93', '27.14', '18', '0.48', '11.5', '0.8395', '14.7338', '17.1605', '8.64', '0.732550328', '6.849315068', '30.69541667', '1593.4', '197.4432867', '177', '7.66', '185.1', '0.574812967', '2.61', '6.181945641', '3.256602111', '2.995480848');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18G 92', '27.13', '18.12', '0.46', '11.77', '0.8195', '14.8818', '17.3005', '8.3352', '0.709721358', '7.181208054', '32.35173913', '1628.5', '197.8998336', '179.8', '7.75', '192.2', '0.579353609', '2.66', '5.881878292', '3.334387429', '3.040858261');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18G 92', '27.12', '18', '0.48', '11.5', '0.8385', '14.6978', '17.1615', '8.64', '0.731631951', '6.857483602', '30.62041667', '1591.4', '197.230057', '176.8', '7.66', '182.6', '0.581988722', '2.59', '6.246978148', '3.257347056', '2.976952333');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18G 92', '27.09', '18', '0.47', '11.5', '0.8445', '14.52724', '17.1555', '8.46', '0.703045569', '6.808762581', '30.90902128', '1595.3', '197.4343041', '177.3', '7.67', '172.4', '0.62083282', '2.52', '6.73631136', '3.266049655', '2.888025045');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18CB 92', '27.06', '18.138', '0.46', '11.77', '0.817', '15.179', '17.321', '8.34348', '0.726110093', '7.203182375', '32.99782609', '1631.8', '197.8842267', '179.9', '7.76', '222.2', '0.499604273', '2.87', '5.070612754', '3.325801823', '3.270603737');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18G 87.5', '25.4', '17.88', '0.46', '11.48', '0.7795', '14.7338', '17.1005', '8.2248', '0.757381329', '7.363694676', '32.03', '1472.8', '183.4662147', '164.7', '7.61', '168.9', '0.581876594', '2.58', '5.095404616', '3.240260924', '2.96112971');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18G 86', '25.35', '18', '0.44', '11.75', '0.7595', '14.8818', '17.2405', '7.92', '0.733740507', '7.735352205', '33.82227273', '1503.6', '183.5258616', '167.1', '7.7', '174.9', '0.587043552', '2.63', '4.824888342', '3.317972478', '3.00376955');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18CB 86', '25.29', '18', '0.429', '12', '0.745', '14.985', '17.255', '7.722', '0.719078859', '8.053691275', '34.93006993', '1514.1', '183.4939157', '168.2', '7.74', '214.7', '0.499673964', '2.91', '4.082959937', '3.388277271', '3.318528184');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18CB 86', '25.29', '18.018', '0.44', '11.75', '0.757', '15.179', '17.261', '7.92792', '0.750865398', '7.760898283', '34.49772727', '1506.6', '183.4943015', '167.2', '7.72', '204.8', '0.499687265', '2.85', '4.108283288', '3.309090888', '3.2513582');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18WFCB 85', '24.97', '18.32', '0.526', '8.838', '0.911', '15.173', '17.409', '9.63632', '0.991253715', '4.850713502', '28.8460076', '1429.9', '175.9593325', '156.1', '7.57', '99.4', '0.527245326', '2', '5.565404434', '2.46698936', '2.354310044');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18WFB 85', '24.97', '18.32', '0.526', '8.838', '0.911', '15.537', '17.409', '9.63632', '1.015033874', '4.850713502', '29.53802281', '1429.9', '175.9593325', '156.1', '7.57', '99.4', '0.527245326', '2', '5.655472301', '2.456913468', '2.354310044');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18G 81', '23.81', '17.75', '0.44', '11.46', '0.7145', '14.7338', '17.0355', '7.81', '0.791736371', '8.019594122', '33.48590909', '1360.6', '168.5973492', '153.3', '7.56', '151.7', '0.590730316', '2.52', '4.085459159', '3.221623117', '2.903248147');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18CB 80', '25.32', '17.898', '0.42', '11.73', '0.697', '15.179', '17.201', '7.51716', '0.779761271', '8.414634146', '36.14047619', '1383.4', '169.2322195', '154.6', '7.67', '187.6', '0.499703895', '2.82', '3.279154989', '3.291541128', '3.230528095');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18G 80', '23.59', '17.88', '0.42', '11.73', '0.6995', '14.8818', '17.1805', '7.5096', '0.761761507', '8.3845604', '35.43285714', '1380.7', '169.2796896', '154.4', '7.65', '157.8', '0.596202112', '2.59', '3.908989613', '3.30076636', '2.963007515');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18CB 78', '22.94', '18.242', '0.471', '8.565', '0.866', '14.985', '17.376', '8.591982', '0.951551712', '4.945150115', '31.81528662', '1318.8', '160.9791378', '144.6', '7.58', '90.9', '0.498832642', '1.99', '4.677216469', '2.396001193', '2.336994559');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18B 77', '22.7', '18.16', '0.48', '8.79', '0.831', '15.191', '17.329', '8.7168', '0.998246284', '5.288808664', '31.64791667', '1287.1', '159.1586844', '141.7', '7.53', '85', '0.553308672', '1.93', '4.568497375', '2.445924812', '2.279797593');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18WFCB 77', '22.63', '18.16', '0.475', '8.787', '0.831', '15.173', '17.329', '8.626', '0.987014237', '5.28700361', '31.94315789', '1286.8', '158.8581565', '141.7', '7.54', '88.6', '0.530283281', '1.98', '4.220117269', '2.446976104', '2.327575027');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18WFB 77', '22.63', '18.16', '0.475', '8.787', '0.831', '15.537', '17.329', '8.626', '1.010692691', '5.28700361', '32.70947368', '1286.8', '158.8581565', '141.7', '7.54', '88.6', '0.530283281', '1.98', '4.30240408', '2.436938397', '2.327575027');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18CB 77', '22.65', '18.152', '0.48', '8.79', '0.824', '15.179', '17.328', '8.71296', '1.005931277', '5.333737864', '31.62291667', '1283.9', '158.1918528', '141.5', '7.53', '93.5', '0.498770754', '2.03', '4.161798086', '2.444594432', '2.392692054');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18B 74', '21.79', '18.12', '0.44', '8.77', '0.8185', '15.175', '17.3015', '7.9728', '0.930171651', '5.357361026', '34.48863636', '1249.2', '153.9966437', '137.9', '7.57', '82.9', '0.554985565', '1.95', '4.217351095', '2.448952309', '2.280457658');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18B 74', '21.61', '18.12', '0.44', '8.77', '0.8185', '15.175', '17.3015', '7.9728', '0.930171651', '5.357361026', '34.48863636', '1238', '153.9966437', '136.6', '7.57', '82.9', '0.554985565', '1.96', '4.217351095', '2.448952309', '2.291283335');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18CB 72', '21.17', '18.11', '0.436', '8.53', '0.8', '14.985', '17.31', '7.89596', '0.957423798', '5.33125', '34.36926606', '1208.1', '147.8346709', '133.4', '7.55', '82.9', '0.499115784', '1.98', '3.721118946', '2.380349882', '2.319171613');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18CB 70', '20.59', '18', '0.44', '8.75', '0.748', '15.179', '17.252', '7.92', '1.020436975', '5.848930481', '34.49772727', '1155.3', '142.8763618', '128.4', '7.49', '83.7', '0.498906374', '2.02', '3.151472594', '2.425362417', '2.371291497');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18B 70', '20.58', '18', '0.44', '8.75', '0.751', '15.191', '17.249', '7.92', '1.017164162', '5.825565912', '34.525', '1152.7', '143.2048284', '128.1', '7.48', '74.8', '0.560507273', '1.91', '3.443932038', '2.425754405', '2.244105124');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18WFB 70', '20.56', '18', '0.438', '8.75', '0.751', '15.537', '17.249', '7.884', '1.035602967', '5.825565912', '35.47260274', '1153.9', '143.1516397', '128.2', '7.49', '78.5', '0.534088459', '1.95', '3.249744699', '2.416639649', '2.298041033');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18WFCB 70', '20.56', '18', '0.438', '8.75', '0.751', '15.173', '17.249', '7.884', '1.011340917', '5.825565912', '34.64155251', '1153.9', '143.1516397', '128.2', '7.49', '78.5', '0.534088459', '1.95', '3.172808019', '2.426894026', '2.298041033');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18B 69', '20.37', '18', '0.42', '8.75', '0.7585', '15.175', '17.2415', '7.56', '0.960316414', '5.767963085', '36.13095238', '1153.7', '142.8734717', '128.2', '7.53', '75.6', '0.560114354', '1.93', '3.44221342', '2.434365766', '2.254703352');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18B 69', '20.2', '18', '0.42', '8.75', '0.7585', '15.175', '17.2415', '7.56', '0.960316414', '5.767963085', '36.13095238', '1142.5', '142.8734717', '126.9', '7.52', '75.6', '0.560114354', '1.93', '3.44221342', '2.434365766', '2.266222839');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18CB 67', '19.69', '18', '0.406', '8.5', '0.745', '14.985', '17.255', '7.308', '0.960743782', '5.704697987', '36.908867', '1117.1', '136.9341677', '124.1', '7.53', '76.4', '0.499043548', '1.97', '3.030317761', '2.367281245', '2.30464094');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18B 64.5', '18.97', '17.88', '0.4', '8.73', '0.6985', '15.175', '17.1815', '7.152', '0.995423838', '6.249105225', '37.9375', '1059.7', '131.8564997', '118.5', '7.47', '68.4', '0.566202515', '1.9', '2.7714594', '2.419076703', '2.226816425');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18B 64.5', '18.79', '17.88', '0.4', '8.73', '0.6985', '15.175', '17.1815', '7.152', '0.995423838', '6.249105225', '37.9375', '1048.5', '131.8564997', '117.3', '7.47', '68.4', '0.566202515', '1.91', '2.7714594', '2.419076703', '2.238177807');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18CB 64', '18.83', '17.87', '0.405', '8.715', '0.683', '15.179', '17.187', '7.23735', '1.032785398', '6.379941435', '37.47901235', '1047.2', '129.8816326', '117.2', '7.46', '75.5', '0.498993261', '2', '2.42847972', '2.408700455', '2.352852546');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18B 64', '18.81', '17.87', '0.405', '8.715', '0.686', '15.191', '17.184', '7.23735', '1.029081758', '6.352040816', '37.50864198', '1044.6', '130.2100992', '116.9', '7.45', '66.7', '0.567308395', '1.88', '2.673024076', '2.409147614', '2.214128364');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18WFB 64', '18.8', '17.87', '0.403', '8.715', '0.686', '15.537', '17.184', '7.20161', '1.047323154', '6.352040816', '38.55334988', '1045.8', '130.1569106', '117', '7.46', '70.3', '0.53825704', '1.93', '2.517259523', '2.400000561', '2.272123146');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18WFCB 64', '18.8', '17.87', '0.403', '8.715', '0.686', '15.173', '17.184', '7.20161', '1.022786523', '6.352040816', '37.65012407', '1045.8', '130.1569106', '117', '7.46', '70.3', '0.53825704', '1.93', '2.446307529', '2.410354604', '2.272123146');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18WFCB 60', '17.64', '18.25', '0.416', '7.558', '0.695', '15.875', '17.555', '7.592', '1.257231844', '5.437410072', '38.16105769', '984', '121.776078', '107.8', '7.47', '47.1', '0.530888495', '1.63', '2.192193334', '2.055433904', '1.958332774');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18WFB 60', '17.64', '18.25', '0.416', '7.558', '0.695', '16.0662', '17.555', '7.592', '1.272374063', '5.437410072', '38.62067308', '984', '121.776078', '107.8', '7.47', '47.1', '0.530888495', '1.63', '2.272107805', '2.049958032', '1.958332774');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18B 59', '17.48', '17.75', '0.38', '8.71', '0.6335', '15.175', '17.1165', '6.745', '1.045075152', '6.874506709', '39.93421053', '960.3', '120.1720655', '108.2', '7.41', '60.7', '0.574686701', '1.86', '2.159325561', '2.401357794', '2.191155501');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18B 59', '17.4', '18', '0.495', '7.675', '0.5915', '15.7002', '17.4085', '8.91', '1.711895501', '6.487743026', '31.71757576', '883.3', '113.9659537', '98.1', '7.12', '39.1', '0.569943622', '1.5', '2.068075313', '2.029673347', '1.862599805');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18B 58.5', '17.29', '18', '0.48', '7.47', '0.6185', '15.51548', '17.3815', '8.64', '1.611929886', '6.038803557', '32.32391667', '883.6', '113.9144602', '98.2', '7.15', '35.9', '0.598447166', '1.44', '2.231937849', '1.991595703', '1.782461298');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18CB 58', '17.05', '18.252', '0.393', '7.573', '0.676', '15.775', '17.576', '7.173036', '1.211008707', '5.601331361', '40.13994911', '960.8', '118.0388429', '105.3', '7.51', '49', '0.499313422', '1.7', '2.030675936', '2.066137367', '2.022222222');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18B 57', '16.81', '18.25', '0.38', '7.56', '0.68', '15.7962', '17.57', '6.935', '1.167630719', '5.558823529', '41.56894737', '953.2', '117.3708555', '104.5', '7.53', '44', '0.556468233', '1.62', '2.169057436', '2.067543307', '1.923264768');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18CB 57', '16.76', '18.25', '0.378', '7.558', '0.675', '15.775', '17.575', '6.8985', '1.168827732', '5.598518519', '41.73280423', '952', '116.6516438', '104.3', '7.54', '48.7', '0.498671133', '1.7', '1.97480259', '2.067015276', '2.025606096');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18WFB 55', '16.19', '18.12', '0.39', '7.532', '0.63', '16.0662', '17.49', '7.0668', '1.320465063', '5.977777778', '41.19538462', '889.9', '110.7081594', '98.2', '7.41', '42', '0.534122591', '1.61', '1.750189193', '2.032430247', '1.933965882');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18WFCB 55', '16.19', '18.12', '0.39', '7.532', '0.63', '15.875', '17.49', '7.0668', '1.304750525', '5.977777778', '40.70512821', '889.9', '110.7081594', '98.2', '7.41', '42', '0.534122591', '1.61', '1.678232183', '2.038068612', '1.933965882');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18B 54.5', '16.06', '18.12', '0.37', '7.54', '0.6445', '15.7382', '17.4755', '6.7044', '1.198291604', '5.849495733', '42.53567568', '896.1', '111.0729363', '98.9', '7.47', '41.1', '0.560162319', '1.6', '1.885950137', '2.056106633', '1.905559757');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18B 54.5', '15.95', '18.12', '0.37', '7.54', '0.6445', '15.7382', '17.4755', '6.7044', '1.198291604', '5.849495733', '42.53567568', '888.5', '111.0729363', '98.1', '7.46', '41.1', '0.560162319', '1.6', '1.885950137', '2.056106633', '1.913313847');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18B 54.5', '15.87', '18', '0.41', '7.59', '0.5915', '15.7002', '17.4085', '7.38', '1.43381301', '6.415891801', '38.29317073', '842', '107.0809537', '93.6', '7.28', '37.7', '0.571685899', '1.54', '1.710839825', '2.038624837', '1.872399122');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18B 54', '15.87', '18', '0.41', '7.59', '0.5915', '15.7002', '17.4085', '7.38', '1.43381301', '6.415891801', '38.29317073', '842', '107.0809537', '93.6', '7.28', '37.7', '0.571685899', '1.54', '1.710839825', '2.038624837', '1.872399122');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18B 52.5', '15.4', '18', '0.375', '7.37', '0.6185', '15.51548', '17.3815', '6.75', '1.276407336', '5.957962813', '41.37461333', '832.9', '105.4631329', '92.5', '7.35', '34.4', '0.5997945', '1.49', '1.815299755', '2.002016348', '1.797781816');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18B 52', '15.34', '18.06', '0.355', '7.525', '0.6145', '15.7382', '17.4455', '6.4113', '1.208245042', '6.122864117', '44.33295775', '851.7', '105.7578648', '94.3', '7.45', '38.7', '0.56383131', '1.59', '1.651634828', '2.0486957', '1.892022727');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18CB 52', '15.3', '18.114', '0.354', '7.534', '0.607', '15.775', '17.507', '6.412356', '1.22111994', '6.205930807', '44.56214689', '855.1', '105.338412', '94.4', '7.48', '43.3', '0.499570053', '1.68', '1.483637885', '2.049406498', '2.003774378');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18CB 52', '15.29', '18.12', '0.351', '7.531', '0.61', '15.775', '17.51', '6.36012', '1.205296795', '6.17295082', '44.94301994', '857.3', '105.5016416', '94.6', '7.49', '43.5', '0.499134139', '1.69', '1.492307836', '2.050688373', '2.006444427');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18B 52', '15.29', '18.12', '0.35', '7.53', '0.615', '15.7962', '17.505', '6.342', '1.193852233', '6.12195122', '45.132', '857.1', '105.9722385', '94.6', '7.49', '38.8', '0.563958404', '1.59', '1.643614776', '2.051609843', '1.894682109');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18B 52', '15.24', '18', '0.375', '7.555', '0.5915', '15.7002', '17.4085', '6.75', '1.317489719', '6.386306002', '41.8672', '825', '104.2459537', '91.7', '7.36', '37.1', '0.572931894', '1.56', '1.594812984', '2.042753849', '1.876583809');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18B 52', '15.22', '18.06', '0.355', '7.525', '0.6145', '15.7382', '17.4455', '6.4113', '1.208245042', '6.122864117', '44.33295775', '844.1', '105.7578648', '93.5', '7.45', '38.7', '0.56383131', '1.59', '1.651634828', '2.0486957', '1.900099702');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18CB 51', '15', '18.024', '0.375', '7.555', '0.562', '15.775', '17.462', '6.759', '1.393252565', '6.721530249', '42.06666667', '810', '100.9180179', '89.9', '7.35', '40.5', '0.49865876', '1.64', '1.308083581', '2.031601919', '1.983260032');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18WFCB 50', '14.71', '18', '0.358', '7.5', '0.57', '15.875', '17.43', '6.444', '1.329415205', '6.578947368', '44.34357542', '800.6', '99.9544842', '89', '7.38', '37.2', '0.538684476', '1.59', '1.261732561', '2.022177609', '1.908579094');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18WFB 50', '14.71', '18', '0.358', '7.5', '0.57', '16.0662', '17.43', '6.444', '1.345426807', '6.578947368', '44.87765363', '800.6', '99.9544842', '89', '7.38', '37.2', '0.538684476', '1.59', '1.325107502', '2.016461183', '1.908579094');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18B 49', '14.47', '18.06', '0.33', '7.51', '0.585', '15.7962', '17.475', '5.9598', '1.186508245', '6.418803419', '47.86727273', '810.3', '100.2548895', '89.7', '7.48', '36.3', '0.568836959', '1.58', '1.417942477', '2.044913011', '1.880401917');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18B 49', '14.44', '18', '0.33', '7.5', '0.5845', '15.7382', '17.4155', '5.94', '1.184740462', '6.415739949', '47.69151515', '802.8', '99.66259231', '89.2', '7.46', '36.1', '0.569219616', '1.58', '1.412513252', '2.042562379', '1.877258804');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18CB 49', '14.4', '18.06', '0.327', '7.507', '0.58', '15.775', '17.48', '5.90562', '1.184739071', '6.471551724', '48.24159021', '808.6', '99.4575863', '89.5', '7.49', '41', '0.498726148', '1.69', '1.271785911', '2.044477765', '2.000949495');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18B 49', '14.32', '18', '0.33', '7.5', '0.5845', '15.7382', '17.4155', '5.94', '1.184740462', '6.415739949', '47.69151515', '795.3', '99.66259231', '88.4', '7.45', '36.1', '0.569219616', '1.59', '1.412513252', '2.042562379', '1.885734056');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18B 49', '14.25', '18', '0.32', '7.5', '0.5915', '15.7002', '17.4085', '5.76', '1.132502451', '6.339814032', '49.063125', '798.3', '99.79095373', '88.7', '7.48', '36.2', '0.574445356', '1.59', '1.444270624', '2.049806882', '1.884769101');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18B 48.5', '14.25', '18', '0.32', '7.5', '0.5915', '15.7002', '17.4085', '5.76', '1.132502451', '6.339814032', '49.063125', '798.3', '99.79095373', '88.7', '7.48', '36.2', '0.574445356', '1.59', '1.444270624', '2.049806882', '1.884769101');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18B 48.5', '14.23', '18', '0.31', '7.3', '0.6185', '15.51548', '17.3815', '5.58', '1.065281403', '5.901374293', '50.04993548', '801.3', '100.1444602', '89', '7.5', '33.4', '0.600316902', '1.53', '1.630200136', '2.00720774', '1.805954726');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18B 48.2', '14.09', '18', '0.38', '7.5', '0.502', '15.97852', '17.498', '6.84', '1.61270587', '7.470119522', '42.04873684', '737.1', '93.25976576', '81.9', '7.23', '30', '0.58828125', '1.46', '1.138855741', '1.984718408', '1.79018488');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18B 48', '14.08', '18', '0.38', '7.5', '0.502', '15.97852', '17.498', '6.84', '1.61270587', '7.470119522', '42.04873684', '737.1', '93.25976576', '81.9', '7.23', '30', '0.58828125', '1.46', '1.138855741', '1.984718408', '1.79018488');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18B 47', '13.9', '17.94', '0.325', '7.495', '0.5545', '15.7382', '17.3855', '5.8305', '1.230736933', '6.758340848', '48.42523077', '764.1', '95.21703781', '85.2', '7.42', '34', '0.572211127', '1.56', '1.244170114', '2.033573729', '1.862508468');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18B 47', '13.84', '18', '0.32', '7.5', '0.555', '15.7962', '17.445', '5.76', '1.214362523', '6.756756757', '49.363125', '768.8', '95.3827305', '85.4', '7.45', '34.1', '0.572191166', '1.57', '1.237296523', '2.036726161', '1.86624537');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18CB 47', '13.82', '18', '0.32', '7.5', '0.55', '15.775', '17.45', '5.76', '1.223757576', '6.818181818', '49.296875', '768.6', '94.83005', '85.4', '7.46', '38.7', '0.499636628', '1.67', '1.110953512', '2.035788665', '1.98842523');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18CB 47', '13.82', '18', '0.32', '7.5', '0.55', '15.775', '17.45', '5.76', '1.223757576', '6.818181818', '49.296875', '768.6', '94.83005', '85.4', '7.46', '38.7', '0.499636628', '1.67', '1.110953512', '2.035788665', '1.98842523');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18WFCB 47', '13.81', '17.9', '0.35', '7.492', '0.52', '15.875', '17.38', '6.265', '1.426200768', '7.203846154', '45.35714286', '736.4', '92.5824142', '82.3', '7.3', '33.5', '0.543964549', '1.56', '1.01712822', '2.005040412', '1.880755646');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18WFB 47', '13.81', '17.9', '0.35', '7.492', '0.52', '16.0662', '17.38', '6.265', '1.443378065', '7.203846154', '45.90342857', '736.4', '92.5824142', '82.3', '7.3', '33.5', '0.543964549', '1.56', '1.076241058', '1.999000523', '1.880755646');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18B 46', '13.53', '18', '0.322', '6', '0.6635', '15.239', '17.3365', '5.796', '1.232594323', '4.521477016', '47.32608696', '733.2', '91.28885418', '81.5', '7.36', '19.9', '0.600150754', '1.21', '1.696339909', '1.639551426', '1.45483402');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18B 46', '13.34', '18', '0.38', '6', '0.555', '15.77964', '17.445', '6.84', '1.80067964', '5.405405405', '41.52536842', '675.7', '85.13532867', '75.1', '7.12', '17.1', '0.584210526', '1.13', '1.211248564', '1.576453106', '1.409284177');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18B 45', '13.24', '17.86', '0.335', '7.477', '0.499', '15.877', '17.361', '5.9831', '1.425559424', '7.491983968', '47.39402985', '704.5', '88.58668024', '78.9', '7.3', '31.9', '0.54489241', '1.55', '0.898990609', '1.999552934', '1.87339437');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16CB 115', '33.82', '16.236', '0.532', '14.068', '0.918', '12.875', '15.318', '8.637552', '0.530375958', '7.662309368', '24.20112782', '1665.6', '225.4020268', '205.2', '7.02', '426.2', '0.4997411', '3.55', '8.450167919', '4.056264388', '3.988449332');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '17WFCB 114', '33.51', '16.64', '0.631', '11.629', '1.035', '13.245', '15.605', '10.49984', '0.694382235', '5.617874396', '20.99049128', '1642.6', '221.3099571', '197.4', '7', '254.6', '0.532755346', '2.76', '10.2305758', '3.330485778', '3.172287312');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '17WFB 114', '33.51', '16.64', '0.631', '11.629', '1.035', '13.4418', '15.605', '10.49984', '0.70469967', '5.617874396', '21.30237718', '1642.6', '221.3099571', '197.4', '7', '254.6', '0.532755346', '2.76', '10.7477847', '3.324703186', '3.172287312');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16CB 107', '31.46', '16.11', '0.496', '14.032', '0.855', '12.875', '15.255', '7.99056', '0.532283769', '8.205847953', '25.95766129', '1537.2', '208.7323668', '190.8', '6.99', '393.9', '0.499755539', '3.54', '6.857516935', '4.03705596', '3.968212432');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16WFCB 105', '30.87', '16.48', '0.584', '11.582', '0.955', '13.245', '15.525', '9.62432', '0.699323106', '6.063874346', '22.67979452', '1497.5', '202.7126707', '181.7', '6.96', '230.7', '0.535951157', '2.73', '8.066576682', '3.3073046', '3.139403515');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16WFB 105', '30.87', '16.48', '0.584', '11.582', '0.955', '13.4418', '15.525', '9.62432', '0.709713954', '6.063874346', '23.01678082', '1497.5', '202.7126707', '181.7', '6.96', '230.7', '0.535951157', '2.73', '8.52574804', '3.301469755', '3.139403515');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16CB 100', '29.41', '16', '0.464', '14', '0.8', '12.875', '15.2', '7.424', '0.533392857', '8.75', '27.74784483', '1426.8', '194.29376', '178.3', '6.97', '366', '0.499817851', '3.53', '5.641774921', '4.020213689', '3.94976873');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16WFCB 96', '28.22', '16.32', '0.535', '11.533', '0.875', '13.245', '15.445', '8.7312', '0.702191228', '6.590285714', '24.75700935', '1355.1', '184.2543923', '166.1', '6.93', '207.2', '0.539838597', '2.71', '6.222754693', '3.283897975', '3.103766332');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16WFB 96', '28.22', '16.32', '0.535', '11.533', '0.875', '13.4418', '15.445', '8.7312', '0.712624692', '6.590285714', '25.12485981', '1355.1', '184.2543923', '166.1', '6.93', '207.2', '0.539838597', '2.71', '6.626197937', '3.278027123', '3.103766332');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16G 94', '27.75', '16.25', '0.485', '11.565', '0.885', '12.8898', '15.365', '7.88125', '0.610799974', '6.533898305', '26.57690722', '1341.4', '182.4866152', '165.1', '6.95', '199.9', '0.570671445', '2.68', '7.010928548', '3.316578704', '3.049889782');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16G 90', '26.51', '16.25', '0.49', '11.58', '0.825', '13.0098', '15.425', '7.9625', '0.667273983', '7.018181818', '26.55061224', '1274.1', '173.2775797', '156.8', '6.93', '185.1', '0.576755788', '2.64', '5.960736392', '3.302925041', '3.017364446');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16CB 90', '26.47', '16.25', '0.48', '12.07', '0.795', '13.335', '15.455', '7.8', '0.667052258', '7.591194969', '27.78125', '1285.5', '174.0906428', '158.2', '6.97', '233.2', '0.499550211', '2.97', '4.860180373', '3.433533917', '3.375052558');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16CB 90', '26.46', '16.24', '0.495', '12.076', '0.783', '13.249', '15.457', '8.0388', '0.693590974', '7.711366539', '26.76565657', '1275.5', '172.8004138', '157.1', '6.94', '230', '0.499599498', '2.95', '4.80782001', '3.430534279', '3.363747834');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16WFCB 88', '25.87', '16.16', '0.504', '11.502', '0.795', '13.245', '15.365', '8.14464', '0.730032185', '7.233962264', '26.2797619', '1222.6', '167.2468403', '151.3', '6.87', '185.2', '0.544333409', '2.67', '4.774295718', '3.260931537', '3.066565968');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16WFB 88', '25.87', '16.16', '0.504', '11.502', '0.795', '13.4418', '15.365', '8.14464', '0.740879322', '7.233962264', '26.6702381', '1222.6', '167.2468403', '151.3', '6.87', '185.2', '0.544333409', '2.67', '5.136292202', '3.254832491', '3.066565968');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16G 87', '25.68', '16.12', '0.45', '11.53', '0.82', '12.8898', '15.3', '7.254', '0.613501364', '7.030487805', '28.644', '1230.8', '168.04622', '152.7', '6.92', '181.3', '0.577727079', '2.66', '5.659663831', '3.298846452', '3.01376997');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16CB 83', '24.42', '16.12', '0.45', '12.04', '0.73', '13.335', '15.39', '7.254', '0.682741319', '8.246575342', '29.63333333', '1172.3', '159.443793', '145.4', '6.93', '212.5', '0.499645684', '2.95', '3.816803424', '3.41427133', '3.353525214');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16CB 83', '24.41', '16.12', '0.458', '12.039', '0.723', '13.249', '15.397', '7.38296', '0.697139782', '8.325726141', '28.9279476', '1167.7', '158.6733798', '144.9', '6.92', '210.4', '0.499669176', '2.94', '3.809595795', '3.412265712', '3.343426128');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16G 83', '24.36', '16.12', '0.45', '11.54', '0.76', '13.0098', '15.36', '7.254', '0.667519155', '7.592105263', '28.91066667', '1161.6', '158.4965862', '144.1', '6.9', '166.4', '0.584919972', '2.61', '4.73268861', '3.284187225', '2.978004026');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16G 81', '23.82', '16', '0.42', '11.5', '0.76', '12.8898', '15.24', '6.72', '0.619418307', '7.565789474', '30.69', '1131.3', '155.015912', '141.4', '6.89', '164.6', '0.585188842', '2.63', '4.592087955', '3.282485017', '2.97829489');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16WFB 78', '22.92', '16.32', '0.529', '8.586', '0.875', '13.609', '15.445', '8.63328', '0.958259093', '4.906285714', '25.72589792', '1042.6', '144.1091018', '127.8', '6.74', '87.5', '0.527462278', '1.95', '4.957202945', '2.403167072', '2.299416048');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16WFCB 78', '22.92', '16.32', '0.529', '8.586', '0.875', '13.245', '15.445', '8.63328', '0.932628531', '4.906285714', '25.03780718', '1042.6', '144.1091018', '127.8', '6.74', '87.5', '0.527462278', '1.95', '4.874889353', '2.413588902', '2.299416048');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16CB 76', '22.34', '16', '0.419', '12', '0.663', '13.249', '15.337', '6.704', '0.697754022', '9.049773756', '31.62052506', '1061.3', '144.5765994', '132.7', '6.89', '191.1', '0.499591837', '2.92', '2.955092827', '3.39397716', '3.323151134');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16G 76', '22.34', '16', '0.41', '11.5', '0.7', '13.0098', '15.3', '6.56', '0.662610932', '8.214285714', '31.73121951', '1058.6', '144.8166422', '132.3', '6.88', '149.3', '0.594224436', '2.59', '3.753839665', '3.266932166', '2.938195568');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16CB 76', '22.33', '16', '0.41', '12', '0.67', '13.335', '15.33', '6.56', '0.680018657', '8.955223881', '32.52439024', '1065.5', '145.282049', '133.2', '6.91', '193.1', '0.499637494', '2.94', '2.95696403', '3.39635556', '3.333458894');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16G 74.5', '21.96', '15.88', '0.39', '11.47', '0.7', '12.8898', '15.18', '6.1932', '0.626108108', '8.192857143', '33.05076923', '1033.6', '142.126004', '130.2', '6.86', '148.1', '0.594363305', '2.6', '3.672748369', '3.2659499', '2.938278282');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16B 71.5', '21.07', '16.25', '0.455', '8.565', '0.8325', '13.287', '15.4175', '7.39375', '0.847865028', '5.144144144', '29.2021978', '973.5', '134.0527632', '119.8', '6.8', '79', '0.551769902', '1.94', '4.299599429', '2.41481705', '2.254639531');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16WFB 71', '20.86', '16.16', '0.486', '8.543', '0.795', '13.609', '15.365', '7.85376', '0.973834034', '5.372955975', '28.00205761', '936.9', '130.1468554', '115.9', '6.7', '77.9', '0.530248739', '1.93', '3.778293093', '2.382040807', '2.272366067');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16WFCB 71', '20.86', '16.16', '0.486', '8.543', '0.795', '13.245', '15.365', '7.85376', '0.947786889', '5.372955975', '27.25308642', '936.9', '130.1468554', '115.9', '6.7', '77.9', '0.530248739', '1.93', '3.701502063', '2.392618823', '2.272366067');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16CB 68', '20', '16.226', '0.438', '8.563', '0.776', '13.249', '15.45', '7.106988', '0.873312236', '5.517396907', '30.24885845', '923.7', '126.2417468', '113.9', '6.8', '81.3', '0.499422106', '2.02', '3.372145614', '2.407664982', '2.348186867');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16B 68', '19.99', '16.25', '0.435', '8.55', '0.785', '13.381', '15.465', '7.06875', '0.867245502', '5.445859873', '30.76091954', '925.7', '127.1558422', '113.9', '6.81', '73.6', '0.555531821', '1.92', '3.66170461', '2.403345151', '2.235306132');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16CB 68', '19.99', '16.23', '0.436', '8.51', '0.785', '13.335', '15.445', '7.07628', '0.870322663', '5.420382166', '30.58486239', '924.4', '126.6038062', '113.9', '6.8', '80.8', '0.498959999', '2.01', '3.38642293', '2.392264652', '2.340576158');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16B 66', '19.4', '16.12', '0.42', '8.53', '0.7675', '13.287', '15.3525', '6.7704', '0.852410538', '5.557003257', '31.63571429', '888.4', '122.7684431', '110.2', '6.77', '71.2', '0.557524861', '1.92', '3.406752955', '2.398793203', '2.227018141');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16WFB 64', '18.8', '16', '0.443', '8.5', '0.715', '13.609', '15.285', '7.088', '0.991984698', '5.944055944', '30.72009029', '833.8', '116.4051402', '104.2', '6.66', '68.4', '0.534965125', '1.91', '2.80625082', '2.36054593', '2.239813795');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16WFCB 64', '18.8', '16', '0.443', '8.5', '0.715', '13.245', '15.285', '7.088', '0.965452077', '5.944055944', '29.89841986', '833.8', '116.4051402', '104.2', '6.66', '68.4', '0.534965125', '1.91', '2.735906769', '2.371302173', '2.239813795');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16B 63', '18.55', '16.12', '0.415', '8.53', '0.72', '13.381', '15.4', '6.6898', '0.904180507', '5.923611111', '32.24337349', '845.9', '116.8617565', '105', '6.75', '66.3', '0.56167464', '1.89', '2.91883155', '2.387163714', '2.204994331');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16CB 63', '18.52', '16.12', '0.403', '8.477', '0.73', '13.335', '15.39', '6.49636', '0.868426411', '5.806164384', '33.08933002', '851.7', '116.8892986', '105.7', '6.78', '74.2', '0.499418077', '2', '2.73053382', '2.378562441', '2.324174709');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16CB 63', '18.52', '16.114', '0.406', '8.531', '0.72', '13.249', '15.394', '6.542284', '0.875743042', '5.924305556', '32.63300493', '849.9', '116.4104911', '105.5', '6.77', '74.6', '0.499358272', '2.01', '2.712345901', '2.393551121', '2.332941922');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16B 60.5', '17.89', '16', '0.39', '8.5', '0.7075', '13.287', '15.2925', '6.24', '0.861680316', '6.007067138', '34.06923077', '812.1', '112.6289351', '101.5', '6.74', '64.3', '0.563107099', '1.9', '2.710901195', '2.383953241', '2.200881765');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16CB 58', '17.06', '16', '0.375', '8.5', '0.663', '13.249', '15.337', '6', '0.881620974', '6.41025641', '35.33066667', '776.6', '106.6185019', '97.1', '6.75', '68', '0.498976563', '2', '2.141690625', '2.379165816', '2.317394929');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16CB 58', '17.06', '16', '0.375', '8.449', '0.67', '13.335', '15.33', '6', '0.88337311', '6.305223881', '35.56', '776.5', '106.9288614', '97.1', '6.75', '67.4', '0.499631246', '1.99', '2.142667364', '2.363567069', '2.30662191');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16B 58', '17.05', '16', '0.385', '8.5', '0.66', '13.381', '15.34', '6.16', '0.918303922', '6.439393939', '34.75584416', '769.7', '106.7222485', '96.2', '6.72', '59.4', '0.568634259', '1.87', '2.295177165', '2.371673067', '2.176222862');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16WFB 58', '17.04', '15.86', '0.407', '8.464', '0.645', '13.609', '15.215', '6.45502', '1.014577563', '6.56124031', '33.43734644', '746.4', '104.6629338', '94.1', '6.62', '60.5', '0.538703824', '1.88', '2.114948904', '2.34125447', '2.211586123');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16WFB 58', '17.04', '15.86', '0.407', '8.464', '0.645', '13.245', '15.215', '6.45502', '0.987440652', '6.56124031', '32.54299754', '746.4', '104.6629338', '94.1', '6.62', '60.5', '0.538703824', '1.88', '2.05046579', '2.352227601', '2.211586123');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16B 56.5', '16.63', '15.88', '0.375', '8.485', '0.6475', '13.287', '15.2325', '5.955', '0.906914996', '6.552123552', '35.432', '742.3', '103.5538811', '93.5', '6.68', '57.8', '0.570277488', '1.86', '2.163195814', '2.368437619', '2.169844988');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16B 50', '14.78', '16.25', '0.365', '7.32', '0.628', '13.9102', '15.622', '5.93125', '1.104474044', '5.828025478', '38.11013699', '669', '92.27979445', '82.3', '6.73', '36.6', '0.56082912', '1.57', '1.688398783', '2.01324391', '1.863776983');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16B 50', '14.72', '16.12', '0.36', '7.29', '0.635', '13.7662', '15.485', '5.8032', '1.070570623', '5.74015748', '38.23944444', '658.7', '91.480845', '81.7', '6.69', '36.6', '0.560136636', '1.58', '1.710503561', '2.010100932', '1.862387815');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16CB 50', '14.7', '16.25', '0.36', '7.318', '0.628', '14.069', '15.622', '5.85', '1.102081422', '5.826433121', '39.08055556', '668.1', '92.02789113', '82.2', '6.74', '41.1', '0.499015219', '1.67', '1.504459753', '2.010040064', '1.976233792');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16CB 50', '14.7', '16.254', '0.362', '7.072', '0.647', '13.935', '15.607', '5.883948', '1.102475662', '5.465224111', '38.49447514', '666', '91.66518429', '81.9', '6.73', '38.2', '0.499213622', '1.61', '1.599524964', '1.945753735', '1.907807044');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16WFCB 50', '14.7', '16.25', '0.38', '7.073', '0.628', '14.009', '15.622', '6.175', '1.198470725', '5.631369427', '36.86578947', '655.4', '90.74839039', '80.7', '6.68', '34.8', '0.532120668', '1.54', '1.527194473', '1.932970209', '1.835296234');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16WFB 50', '14.7', '16.25', '0.38', '7.073', '0.628', '14.2002', '15.622', '6.175', '1.214827896', '5.631369427', '37.36894737', '655.4', '90.74839039', '80.7', '6.68', '34.8', '0.532120668', '1.54', '1.588805279', '1.927442188', '1.835296234');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16WF 45.1', '13.26', '15.875', '0.417', '7.11', '0.487', '14.1072', '15.388', '6.619875', '1.698941076', '7.299794661', '33.83021583', '530.1', '76.42967641', '66.8', '6.32', '24.2', '0.602755458', '1.35', '1.169873425', '1.873646115', '1.669535057');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16B 45', '13.26', '16.12', '0.33', '7.285', '0.563', '13.9102', '15.557', '5.3196', '1.119204282', '6.469804618', '42.15212121', '594.5', '82.30524545', '73.8', '6.69', '31.9', '0.568623932', '1.55', '1.242548454', '1.996978625', '1.833644283');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16WFB 45', '13.24', '16.12', '0.346', '7.039', '0.563', '14.2002', '15.557', '5.57752', '1.239798766', '6.251332149', '41.04104046', '583.3', '81.09865516', '72.4', '6.64', '30.5', '0.536488238', '1.52', '1.17204361', '1.910495969', '1.810208353');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16WFCB 45', '13.24', '16.12', '0.346', '7.039', '0.563', '14.009', '15.557', '5.57752', '1.223105373', '6.251332149', '40.48843931', '583.3', '81.09865516', '72.4', '6.64', '30.5', '0.536488238', '1.52', '1.118143645', '1.916112024', '1.810208353');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16CB 45', '13.23', '16.12', '0.328', '7.286', '0.563', '14.069', '15.557', '5.28736', '1.124966297', '6.470692718', '42.89329268', '594.6', '82.25033698', '73.8', '6.7', '36.3', '0.499905626', '1.66', '1.099432702', '1.993604279', '1.956018958');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16CB 45', '13.23', '16.128', '0.326', '7.036', '0.584', '13.935', '15.544', '5.257728', '1.105569108', '6.023972603', '42.74539877', '595', '82.11049946', '73.8', '6.71', '34', '0.498574631', '1.6', '1.181800399', '1.930884425', '1.892246339');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16B 45', '13.2', '16', '0.32', '7.25', '0.575', '13.7662', '15.425', '5.12', '1.056715802', '6.304347826', '43.019375', '588.6', '81.896201', '73.6', '6.68', '32.2', '0.567080543', '1.56', '1.275504142', '1.99613409', '1.836904665');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16CB 43', '12.65', '15.934', '0.375', '7.085', '0.487', '13.935', '15.447', '5.97525', '1.514500514', '7.27412731', '37.16', '523.8', '74.27965157', '65.7', '6.44', '28.9', '0.499424032', '1.51', '0.894864333', '1.891996263', '1.843203609');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16B 40', '11.83', '16', '0.295', '7.25', '0.503', '13.9102', '15.497', '4.72', '1.125250977', '7.206759443', '47.15322034', '526.2', '73.04541945', '65.8', '6.67', '27.6', '0.578750896', '1.53', '0.904723265', '1.982105161', '1.802811887');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16CB 40', '11.78', '16', '0.292', '7.25', '0.503', '14.069', '15.497', '4.672', '1.126523068', '7.206759443', '48.18150685', '525.9', '72.92554738', '65.7', '6.88', '32', '0.499172648', '1.65', '0.786933413', '1.978974895', '1.942679347');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16B 40', '11.78', '15.88', '0.285', '7.215', '0.515', '13.7662', '15.365', '4.5258', '1.055881961', '7.004854369', '48.30245614', '521.7', '72.755775', '65.7', '6.66', '27.9', '0.577737804', '1.54', '0.931961233', '1.982037604', '1.806220227');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16WFB 40', '11.77', '16', '0.307', '7', '0.503', '14.2002', '15.497', '4.912', '1.23813161', '6.958250497', '46.25472313', '515.5', '71.81987476', '64.4', '6.62', '26.5', '0.542544025', '1.5', '0.845445666', '1.895595435', '1.785619097');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16WFCB 40', '11.77', '16', '0.307', '7', '0.503', '14.009', '15.497', '4.912', '1.221460665', '6.958250497', '45.63192182', '515.5', '71.81987476', '64.4', '6.62', '26.5', '0.542544025', '1.5', '0.799233512', '1.901198235', '1.785619097');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16CB 40', '11.75', '16', '0.29', '7', '0.52', '13.935', '15.48', '4.64', '1.110206044', '6.730769231', '48.05172414', '524.6', '72.572816', '65.6', '6.68', '29.8', '0.498769575', '1.59', '0.841018697', '1.915772312', '1.875109753');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16WF 38.7', '11.39', '15.875', '0.299', '6.992', '0.487', '13.94', '15.388', '4.746625', '1.224062466', '7.178644764', '46.62207358', '490.8', '68.99521548', '61.9', '6.56', '22.9', '0.605782177', '1.42', '0.933901412', '1.897416036', '1.687129843');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16CB 38', '11.17', '16.012', '0.314', '6.024', '0.526', '13.935', '15.486', '5.027768', '1.380911714', '5.726235741', '44.37898089', '475.1', '66.63773686', '59.3', '6.52', '19.2', '0.499066202', '1.31', '0.809397162', '1.623452028', '1.58335354');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16CB 37', '10.88', '15.88', '0.29', '7.248', '0.443', '14.069', '15.437', '4.6052', '1.270689135', '8.180586907', '48.5137931', '470', '65.86556018', '59.2', '6.57', '28.1', '0.500231129', '1.61', '0.587499848', '1.956971281', '1.914074162');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16B 37', '10.88', '15.88', '0.29', '7.245', '0.443', '13.9102', '15.437', '4.6052', '1.256866805', '8.177200903', '47.9662069', '469.2', '65.79630145', '59.1', '6.57', '23.7', '0.592364882', '1.48', '0.681868637', '1.961019526', '1.759328292');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16WFB 36', '10.59', '15.85', '0.299', '6.992', '0.428', '14.2002', '15.422', '4.73915', '1.418797651', '8.168224299', '47.49230769', '446.3', '62.95680476', '56.3', '6.49', '22.1', '0.551663827', '1.45', '0.594894034', '1.867571086', '1.739791846');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16WFCB 36', '10.59', '15.85', '0.299', '6.992', '0.428', '14.009', '15.422', '4.73915', '1.39969411', '8.168224299', '46.85284281', '446.3', '62.95680476', '56.3', '6.49', '22.1', '0.551663827', '1.45', '0.553475756', '1.873817006', '1.739791846');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16B 35', '10.29', '15.81', '0.285', '7.24', '0.408', '13.9102', '15.402', '4.50585', '1.342083401', '8.87254902', '48.8077193', '435.8', '61.46596045', '55.1', '6.51', '21.4', '0.602949365', '1.44', '0.570498119', '1.947305835', '1.729436613');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16CB 35', '10.29', '15.93', '0.29', '6', '0.485', '13.935', '15.445', '4.6197', '1.38871134', '6.18556701', '48.05172414', '435.5', '61.170566', '54.7', '6.5', '17.5', '0.498857143', '1.3', '0.640054937', '1.613584874', '1.571825462');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16B 31', '9.12', '15.84', '0.275', '5.525', '0.442', '13.971', '15.398', '4.356', '1.573278598', '6.25', '50.80363636', '372.5', '52.980819', '47', '6.39', '11.57', '0.536913732', '1.13', '0.471994281', '1.467048746', '1.376686046');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16B 26', '7.65', '15.65', '0.25', '5.5', '0.345', '13.975', '15.305', '3.9125', '1.841238472', '7.971014493', '55.9', '298.1', '43.0288375', '38.1', '6.24', '8.71', '0.549171211', '1.07', '0.266971198', '1.432658342', '1.322660119');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15G 147', '43.3', '15.12', '0.83', '11.78', '1.378', '10.2782', '13.742', '12.5496', '0.525533794', '4.274310595', '12.38337349', '1685.4', '254.6021586', '222.9', '6.24', '347.5', '0.540193102', '2.83', '26.79222552', '3.482716612', '3.272897049');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15G 147', '42.73', '15.12', '0.83', '11.78', '1.378', '10.2782', '13.742', '12.5496', '0.525533794', '4.274310595', '12.38337349', '1666.2', '254.6021586', '220.4', '6.24', '347.3', '0.540504183', '2.85', '26.79222552', '3.482716612', '3.29045966');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15G 141', '41.44', '15', '0.8', '11.75', '1.318', '10.2782', '13.682', '12', '0.530950182', '4.457511381', '12.84775', '1596.8', '242.2702506', '212.9', '6.21', '328.5', '0.542390895', '2.82', '23.65569259', '3.466060207', '3.248924742');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15G 141', '40.86', '15', '0.8', '11.75', '1.318', '10.2782', '13.682', '12', '0.530950182', '4.457511381', '12.84775', '1577.7', '242.2702506', '210.4', '6.21', '328.3', '0.542721318', '2.83', '23.65569259', '3.466060207', '3.267174786');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15G 140', '41.28', '15', '0.8', '11.75', '1.337', '9.9286', '13.663', '12', '0.505601935', '4.394166043', '12.41075', '1591.5', '244.6014509', '212.2', '6.21', '319.2', '0.566240434', '2.78', '25.78139532', '3.477490994', '3.205655053');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15G 140', '41.27', '15', '0.8', '11.75', '1.3365', '10.1206', '13.6635', '12', '0.515572112', '4.395809951', '12.65075', '1592.7', '244.7390997', '212.4', '6.21', '331', '0.545850011', '2.83', '24.85225394', '3.473031167', '3.262892183');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15G 135', '39.58', '14.88', '0.77', '11.72', '1.258', '10.2782', '13.622', '11.4576', '0.536783968', '4.658187599', '13.34831169', '1509.9', '230.0769426', '202.9', '6.18', '309.7', '0.544930385', '2.8', '20.77907989', '3.449296022', '3.224296852');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15G 135', '39.01', '14.88', '0.77', '11.72', '1.258', '10.2782', '13.622', '11.4576', '0.536783968', '4.658187599', '13.34831169', '1490.7', '230.0769426', '200.4', '6.18', '309.5', '0.545282521', '2.82', '20.77907989', '3.449296022', '3.243298403');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15G 127', '37.47', '14.75', '0.73', '11.68', '1.193', '10.2782', '13.557', '10.7675', '0.538463956', '4.895222129', '14.07972603', '1415.6', '216.6152506', '191.9', '6.15', '289.1', '0.547948364', '2.78', '17.85223083', '3.429608233', '3.195606962');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15G 111', '32.75', '15.12', '0.64', '11.29', '1.067', '11.2466', '14.053', '9.6768', '0.597506813', '5.290534208', '17.5728125', '1319.3', '196.095314', '174.5', '6.35', '231.3', '0.553209165', '2.66', '12.09375625', '3.277694226', '3.051824998');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15G 111', '32.4', '15.12', '0.64', '11.29', '1.067', '11.2466', '14.053', '9.6768', '0.597506813', '5.290534208', '17.5728125', '1306.3', '196.095314', '172.8', '6.35', '231.2', '0.553448442', '2.67', '12.09375625', '3.277694226', '3.066137107');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15CB 108', '31.77', '15.32', '0.617', '11.097', '1.055', '11.985', '14.265', '9.45244', '0.631633502', '5.259241706', '19.42463533', '1320.4', '193.9223912', '172.4', '6.45', '240.6', '0.499335391', '2.75', '10.01148239', '3.202902196', '3.155005139');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15G 108', '31.75', '15.32', '0.615', '11.095', '1.055', '11.7294', '14.265', '9.4218', '0.61627017', '5.258293839', '19.07219512', '1317.5', '193.6390228', '172', '6.44', '217', '0.553341699', '2.61', '11.09848742', '3.209603423', '2.999760165');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15G 105', '30.8', '15', '0.6', '11.25', '1.007', '11.2466', '13.993', '9', '0.595649123', '5.585898709', '18.74433333', '1231.3', '183.64367', '164.2', '6.32', '214.4', '0.557289693', '2.64', '10.21610506', '3.259528654', '3.02249947');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15G 105', '30.45', '15', '0.6', '11.25', '1.007', '11.2466', '13.993', '9', '0.595649123', '5.585898709', '18.74433333', '1218.2', '183.64367', '162.4', '6.32', '214.3', '0.557549744', '2.65', '10.21610506', '3.259528654', '3.038494764');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15G 104', '30.58', '15', '0.6', '11.25', '1.013', '10.929', '13.987', '9', '0.575399803', '5.552813425', '18.215', '1219.7', '184.2543942', '162.6', '6.32', '203.3', '0.591219007', '2.58', '11.12892905', '3.268808383', '2.957029848');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15G 104', '30.5', '15', '0.6', '11.25', '1.0095', '11.123', '13.9905', '9', '0.587644048', '5.572065379', '18.53833333', '1220.1', '183.960685', '162.7', '6.32', '213', '0.562345263', '2.64', '10.48580295', '3.263229721', '3.026200128');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15G 99', '29.14', '15.16', '0.56', '11.04', '0.975', '11.7294', '14.185', '8.4896', '0.610225195', '5.661538462', '20.94535714', '1198.4', '176.9518968', '158.1', '6.41', '195.7', '0.55864995', '2.59', '8.781635461', '3.185773967', '2.962982934');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15CB 99', '29.11', '15.16', '0.559', '11.039', '0.975', '11.985', '14.185', '8.47444', '0.622465803', '5.661025641', '21.44007156', '1200.4', '177.0604576', '158.4', '6.42', '218.8', '0.499534229', '2.74', '7.846306009', '3.178775379', '3.130010125');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15G 99', '29', '14.88', '0.57', '11.22', '0.947', '11.2466', '13.933', '8.4816', '0.603327705', '5.923970433', '19.73087719', '1147.7', '171.898562', '154.3', '6.29', '198.5', '0.561547881', '2.62', '8.618992776', '3.242658036', '2.993674743');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15G 99', '28.65', '14.88', '0.57', '11.22', '0.947', '11.2466', '13.933', '8.4816', '0.603327705', '5.923970433', '19.73087719', '1134.7', '171.898562', '152.5', '6.29', '198.4', '0.561830919', '2.63', '8.618992776', '3.242658036', '3.010531896');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15G 94', '27.66', '14.8', '0.54', '11.19', '0.907', '11.2466', '13.893', '7.992', '0.59838078', '6.168687982', '20.82703704', '1090.2', '163.59557', '147.3', '6.28', '187.4', '0.565127855', '2.6', '7.59038813', '3.230168597', '2.972805117');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15G 91', '26.77', '15', '0.52', '11', '0.895', '11.7294', '14.105', '7.8', '0.619531539', '6.145251397', '22.55653846', '1086.8', '161.3832408', '144.9', '6.37', '175.7', '0.564999526', '2.56', '6.905606684', '3.163622677', '2.924308829');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15CB 91', '26.76', '15', '0.52', '11', '0.895', '11.985', '14.105', '7.8', '0.633031996', '6.145251397', '23.04807692', '1089.1', '161.549258', '145.2', '6.38', '198.7', '0.49959948', '2.73', '6.118762363', '3.15660315', '3.106613125');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15G 85', '25.01', '14.88', '0.49', '10.97', '0.835', '11.7294', '14.045', '7.2912', '0.627449495', '6.568862275', '23.93755102', '1004.9', '149.8622328', '135.1', '6.34', '161', '0.57055726', '2.54', '5.693116108', '3.146805527', '2.892884786');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15CB 85', '24.99', '14.88', '0.49', '10.97', '0.835', '11.985', '14.045', '7.2912', '0.641122495', '6.568862275', '24.45918367', '1007.2', '150.02825', '135.4', '6.35', '183.9', '0.499509075', '2.71', '5.002312016', '3.139684186', '3.088356355');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15G 80.5', '23.66', '15.12', '0.48', '10.79', '0.785', '12.0754', '14.335', '7.2576', '0.68430807', '6.872611465', '25.15708333', '977.4', '143.2930403', '129.3', '6.43', '143.1', '0.574266009', '2.46', '4.809523617', '3.076869937', '2.816465302');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15G 80.5', '23.44', '15.12', '0.48', '10.79', '0.785', '12.0754', '14.335', '7.2576', '0.68430807', '6.872611465', '25.15708333', '968.5', '143.2930403', '128.1', '6.43', '143', '0.574667594', '2.47', '4.809523617', '3.076869937', '2.828637565');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15G 74', '21.76', '15', '0.44', '10.75', '0.725', '12.0754', '14.275', '6.6', '0.681722662', '7.413793103', '27.44409091', '892.7', '131.2931963', '119', '6.4', '128.9', '0.582276464', '2.43', '3.833457702', '3.0591564', '2.780520098');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15G 74', '21.55', '15', '0.44', '10.75', '0.725', '12.0754', '14.275', '6.6', '0.681722662', '7.413793103', '27.44409091', '883.8', '131.2931963', '117.8', '6.4', '128.9', '0.582276464', '2.45', '3.833457702', '3.0591564', '2.794646456');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15G 73', '21.52', '15', '0.42', '10.5', '0.755', '11.83212', '14.245', '6.3', '0.626867285', '6.953642384', '28.17171429', '886.5', '131.701752', '118.2', '6.42', '116.6', '0.624647566', '2.33', '4.401535257', '3.003994632', '2.650676733');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15G 73', '21.49', '15', '0.43', '10.5', '0.747', '12.0074', '14.253', '6.45', '0.65827526', '7.02811245', '27.92418605', '883.4', '131.2297337', '117.8', '6.41', '123.2', '0.584920099', '2.39', '4.031739465', '2.995083954', '2.730051586');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15B 72', '21.27', '15', '0.54', '7.15', '0.9965', '11.39892', '14.0035', '8.1', '0.863921179', '3.587556448', '21.10911111', '797.9', '122.5202089', '106.4', '6.13', '55.1', '0.550887076', '1.61', '6.348601641', '2.041056992', '1.904181255');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15B 72', '21.2', '15.31', '0.525', '7.585', '0.92', '12.215', '14.39', '8.03775', '0.918986988', '4.122282609', '23.26666667', '837.2', '124.1795629', '109.4', '6.28', '62.1', '0.538743119', '1.71', '5.159072612', '2.143333101', '2.020935897');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15CB 72', '21.18', '15.31', '0.522', '7.58', '0.92', '12.245', '14.39', '7.99182', '0.916583974', '4.119565217', '23.45785441', '838.2', '124.0281415', '109.5', '6.29', '67', '0.49835566', '1.78', '4.809299879', '2.141676471', '2.098194484');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15B 71.5', '20.95', '15', '0.52', '7.5', '0.942', '11.6738', '14.058', '7.8', '0.859218117', '3.98089172', '22.44961538', '796.2', '121.6262493', '106.2', '6.16', '61.3', '0.540247757', '1.71', '5.514383225', '2.13356262', '2.014256392');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15B 71.5', '21.04', '15', '0.52', '7.5', '0.9305', '11.7198', '14.0695', '7.8', '0.873264696', '4.030091349', '22.53807692', '799.5', '120.5805987', '106.6', '6.16', '60.9', '0.537157482', '1.7', '5.327548844', '2.130518356', '2.004723023');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15B 71.5', '20.79', '15', '0.52', '7.5', '0.9305', '11.7198', '14.0695', '7.8', '0.873264696', '4.030091349', '22.53807692', '789.4', '120.5805987', '105.3', '6.16', '60.8', '0.538040964', '1.71', '5.327548844', '2.130518356', '2.015403174');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15B 71', '20.95', '15', '0.52', '7.5', '0.942', '11.6738', '14.058', '7.8', '0.859218117', '3.98089172', '22.44961538', '796.2', '121.6262493', '106.2', '6.16', '61.3', '0.540247757', '7.71', '5.514383225', '2.13356262', '2.014256392');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15G 69', '20.18', '14.88', '0.42', '10.73', '0.665', '12.0754', '14.215', '6.2496', '0.710770589', '8.067669173', '28.75095238', '815.3', '120.5498243', '109.6', '6.36', '115.8', '0.591195345', '2.4', '3.073982716', '3.041762585', '2.740358846');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15G 69', '19.96', '14.88', '0.42', '10.73', '0.665', '12.0754', '14.215', '6.2496', '0.710770589', '8.067669173', '28.75095238', '806.4', '120.5498243', '108.4', '6.36', '115.8', '0.591195345', '2.41', '3.073982716', '3.041762585', '2.755485137');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15CB 66', '19.41', '15.16', '0.48', '7.538', '0.845', '12.245', '14.315', '7.2768', '0.922756652', '4.46035503', '25.51041667', '760', '112.9538752', '100.3', '6.26', '60.5', '0.498526774', '1.77', '3.743535695', '2.123065745', '2.07781989');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15B 66', '19.38', '15.16', '0.48', '7.54', '0.845', '12.215', '14.315', '7.2768', '0.920251754', '4.461538462', '25.44791667', '758.1', '112.9272143', '100', '6.25', '55.6', '0.542893584', '1.69', '4.018683958', '2.124445249', '1.994885962');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15G 64.5', '19.09', '14.82', '0.39', '10.7', '0.635', '12.0754', '14.185', '5.7798', '0.693120318', '8.42519685', '30.9625641', '771.6', '114.1223663', '104.1', '6.36', '108.6', '0.596917054', '2.39', '2.671564539', '3.032809301', '2.720127243');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15B 64', '18.85', '15', '0.6', '7.2', '0.7465', '12.133', '14.2535', '9', '1.354431793', '4.822505023', '20.22166667', '666.8', '103.8817562', '88.9', '5.95', '40.8', '0.569096471', '1.47', '3.655800842', '1.976654635', '1.80852686');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15B 64', '18.81', '15', '0.605', '7.195', '0.7385', '12.265', '14.2615', '9.075', '1.396502216', '4.871360867', '20.27272727', '664.9', '103.3894645', '88.6', '5.95', '41.9', '0.547075953', '1.49', '3.489738761', '1.967489773', '1.836359711');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15CB 60', '17.63', '15', '0.442', '7.5', '0.765', '12.245', '14.235', '6.63', '0.943318519', '4.901960784', '27.70361991', '680.7', '101.722532', '90.8', '6.21', '53.9', '0.498970895', '1.75', '2.821013496', '2.103489252', '2.055489186');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15B 60', '17.58', '15', '0.44', '7.5', '0.765', '12.215', '14.235', '6.6', '0.936749455', '4.901960784', '27.76136364', '678.2', '101.5809583', '90.4', '6.21', '49.1', '0.547750127', '1.67', '3.036302229', '2.104786369', '1.966166394');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15B 59.5', '17.49', '15.12', '0.45', '7.04', '0.7975', '12.289', '14.3225', '6.804', '0.984976133', '4.413793103', '27.30888889', '676.2', '100.9498461', '89.4', '6.22', '42.8', '0.541780855', '1.56', '3.194861099', '1.972302458', '1.85160158');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15B 59.5', '17.32', '15.12', '0.45', '7.04', '0.7975', '12.289', '14.3225', '6.804', '0.984976133', '4.413793103', '27.30888889', '668.7', '100.9498461', '88.4', '6.21', '42.8', '0.541780855', '1.57', '3.194861099', '1.972302458', '1.862044988');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15CB 55', '16.18', '14.88', '0.405', '7.463', '0.705', '12.245', '14.175', '6.0264', '0.94256488', '5.292907801', '30.2345679', '620.4', '92.95144875', '83.4', '6.19', '48.9', '0.499389419', '1.74', '2.213143593', '2.088294958', '2.03853391');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15B 55', '16.16', '14.88', '0.405', '7.465', '0.705', '12.215', '14.175', '6.0264', '0.940003705', '5.294326241', '30.16049383', '618.4', '92.92058232', '83.1', '6.19', '44.2', '0.552936218', '1.65', '2.400395467', '2.089687743', '1.941588356');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15B 54.5', '16.05', '15', '0.41', '7', '0.7375', '12.289', '14.2625', '6.15', '0.975978692', '4.745762712', '29.97317073', '617', '92.33850208', '82.3', '6.2', '38.6', '0.546119387', '1.55', '2.528474116', '1.957485207', '1.828843595');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15B 54.5', '15.88', '15', '0.41', '7', '0.7385', '12.265', '14.2615', '6.15', '0.972753651', '4.739336493', '29.91463415', '610', '92.42071453', '81.3', '6.2', '38.3', '0.551143386', '1.55', '2.555355606', '1.958298239', '1.832828036');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15B 54.5', '15.87', '15', '0.41', '7', '0.7375', '12.289', '14.2625', '6.15', '0.975978692', '4.745762712', '29.97317073', '609.5', '92.33850208', '81.3', '6.2', '38.6', '0.546119387', '1.56', '2.528474116', '1.957485207', '1.84005672');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15B 54', '15.88', '15', '0.41', '7', '0.7385', '12.265', '14.2615', '6.15', '0.972753651', '4.739336493', '29.91463415', '610', '92.42071453', '81.3', '6.2', '38.3', '0.551143386', '1.55', '2.555355606', '1.958298239', '1.832828036');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15B 54', '15.85', '15', '0.4', '7', '0.7465', '12.133', '14.2535', '6', '0.928753229', '4.688546551', '30.3325', '610.5', '92.6317562', '81.4', '6.21', '37.2', '0.57358759', '1.53', '2.692035614', '1.965660122', '1.804700047');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15B 50.5', '14.84', '14.88', '0.385', '6.975', '0.6775', '12.289', '14.2025', '5.7288', '1.001206735', '5.147601476', '31.91948052', '563.3', '84.67986208', '75.7', '6.16', '34.7', '0.552117121', '1.53', '2.007747668', '1.943163713', '1.804198007');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15B 50.5', '14.66', '14.88', '0.385', '6.975', '0.6775', '12.289', '14.2025', '5.7288', '1.001206735', '5.147601476', '31.91948052', '555.8', '84.67986208', '74.7', '6.16', '34.7', '0.552117121', '1.54', '2.007747668', '1.943163713', '1.816234151');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15B 49', '14.43', '15.25', '0.385', '6.835', '0.655', '12.8782', '14.595', '5.87125', '1.107480469', '5.217557252', '33.44987013', '568.7', '84.00576148', '74.6', '6.28', '31.6', '0.551554622', '1.48', '1.77836707', '1.885918023', '1.758171271');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15CB 49', '14.41', '15.25', '0.382', '6.832', '0.655', '12.915', '14.595', '5.8255', '1.102474659', '5.215267176', '33.80890052', '569.6', '83.869945', '74.7', '6.29', '34.9', '0.498744593', '1.56', '1.633590427', '1.884950835', '1.846458131');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15B 46', '13.63', '14.75', '0.365', '6.955', '0.6125', '12.289', '14.1375', '5.38375', '1.052946199', '5.67755102', '33.66849315', '508.2', '76.87529896', '68.9', '6.11', '30.8', '0.557526524', '1.5', '1.550449259', '1.926983417', '1.777612348');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15B 46', '13.52', '15', '0.44', '6.81', '0.543', '12.667', '14.457', '6.6', '1.507229916', '6.270718232', '28.78863636', '484.8', '74.71204183', '64.6', '5.99', '25.2', '0.567099649', '1.36', '1.403588205', '1.83345446', '1.679221956');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15B 46', '13.46', '15', '0.43', '6.81', '0.5495', '12.74164', '14.4505', '6.45', '1.464127768', '6.196542311', '29.63172093', '484.6', '74.76356554', '64.6', '5.99', '24.2', '0.59760252', '1.34', '1.413122125', '1.836277607', '1.645196827');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15B 44', '12.94', '15.12', '0.345', '6.795', '0.59', '12.8782', '14.53', '5.2164', '1.108237363', '5.758474576', '37.32811594', '505.9', '74.9733016', '66.9', '6.25', '27.6', '0.558894797', '1.46', '1.312740328', '1.869909759', '1.731248027');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15CB 44', '12.93', '15.12', '0.343', '6.793', '0.59', '12.915', '14.53', '5.18616', '1.105286599', '5.756779661', '37.65306122', '507.1', '74.8975998', '67.1', '6.26', '30.9', '0.498766332', '1.55', '1.19858361', '1.868998798', '1.829093005');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15B 42.5', '12.5', '15.09', '0.325', '6.785', '0.5795', '12.8682', '14.5105', '4.90425', '1.06364786', '5.854184642', '39.59446154', '492', '72.78340127', '65.2', '6.27', '26.9', '0.560750243', '1.47', '1.218877618', '1.871204298', '1.730129189');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15B 42.5', '12.39', '15.09', '0.325', '6.785', '0.5795', '12.8682', '14.5105', '4.90425', '1.06364786', '5.854184642', '39.59446154', '486.8', '72.78340127', '64.5', '6.27', '26.9', '0.560750243', '1.47', '1.218877618', '1.871204298', '1.739492152');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15B 42', '12.41', '15', '0.36', '6.74', '0.5495', '12.74164', '14.4505', '5.4', '1.238512054', '6.132848044', '35.39344444', '464.9', '70.82606554', '62', '6.12', '23.4', '0.599170307', '1.37', '1.214896198', '1.84015217', '1.65134769');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15B 41', '12.02', '15', '0.34', '6.71', '0.543', '12.667', '14.457', '5.1', '1.182035005', '6.178637201', '37.25588235', '456.7', '69.08704183', '60.9', '6.16', '24', '0.569606455', '1.41', '1.124351781', '1.838887939', '1.687800329');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15B 40', '11.8', '15.03', '0.305', '6.765', '0.5495', '12.8682', '14.4805', '4.58415', '1.055801182', '6.155595996', '42.19081967', '463.3', '68.58843377', '61.6', '6.27', '25.1', '0.564827889', '1.46', '1.041958609', '1.864275401', '1.717604961');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15B 40', '11.68', '15.03', '0.305', '6.765', '0.5495', '12.8682', '14.4805', '4.58415', '1.055801182', '6.155595996', '42.19081967', '458.1', '68.58843377', '61', '6.26', '25.1', '0.564827889', '1.47', '1.041958609', '1.864275401', '1.726031528');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15CB 39', '11.47', '15', '0.3', '6.75', '0.53', '12.915', '14.47', '4.5', '1.083018868', '6.367924528', '43.05', '448.8', '66.340695', '59.8', '6.25', '27.2', '0.499386776', '1.54', '0.861761148', '1.855029724', '1.814066184');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15B 39', '11.45', '15', '0.3', '6.75', '0.53', '12.8782', '14.47', '4.5', '1.079932914', '6.367924528', '42.92733333', '447', '66.3020896', '59.6', '6.25', '23.9', '0.568339762', '1.45', '0.94948375', '1.856024433', '1.70331546');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15B 38.5', '11.37', '15', '0.29', '6.75', '0.5345', '12.8682', '14.4655', '4.35', '1.034342376', '6.314312442', '44.37310345', '447.6', '66.22103665', '59.7', '6.27', '24.1', '0.56840873', '1.46', '0.951958573', '1.861325798', '1.708728577');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15B 38.5', '11.27', '15', '0.29', '6.66', '0.543', '12.8342', '14.457', '4.35', '1.029183327', '6.132596685', '44.25586207', '442.6', '66.27454183', '59', '6.27', '23.4', '0.571248948', '1.44', '0.984938007', '1.838049347', '1.69319125');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15B 38.5', '11.26', '15', '0.29', '6.75', '0.5345', '12.8682', '14.4655', '4.35', '1.034342376', '6.314312442', '44.37310345', '442.4', '66.22103665', '59', '6.27', '24.1', '0.56840873', '1.46', '0.951958573', '1.861325798', '1.718835214');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15B 38', '11.27', '15', '0.29', '6.66', '0.543', '12.8342', '14.457', '4.35', '1.029183327', '6.132596685', '44.25586207', '442.6', '66.27454183', '59', '6.27', '23.4', '0.571248948', '1.44', '0.984938007', '1.838049347', '1.69319125');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15B 38', '11.21', '15', '0.28', '6.66', '0.5495', '12.74164', '14.4505', '4.2', '0.97485817', '6.060054595', '45.50585714', '442.4', '66.32606554', '59', '6.28', '22.5', '0.601210588', '1.42', '1.050107152', '1.845681391', '1.659937333');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15B 37.5', '10.91', '15', '0.332', '6.75', '0.456', '13.1694', '14.544', '4.98', '1.420481092', '7.401315789', '39.66686747', '405.5', '61.19398472', '54.1', '6.1', '19.9', '0.58727544', '1.35', '0.723982017', '1.810900692', '1.635516164');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15B 37.3', '10.91', '15', '0.332', '6.75', '0.456', '13.1694', '14.544', '4.98', '1.420481092', '7.401315789', '39.66686747', '405.5', '61.19398472', '54.1', '6.1', '19.9', '0.58727544', '1.35', '0.723982017', '1.810900692', '1.635516164');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15B 36', '10.63', '15', '0.289', '5.5', '0.588', '12.5126', '14.412', '4.335', '1.118163698', '4.676870748', '43.29619377', '405.1', '60.33380442', '54', '6.17', '13.5', '0.60387963', '1.13', '1.085767438', '1.516745024', '1.342199687');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15B 36', '10.61', '14.91', '0.28', '6.74', '0.4895', '12.8682', '14.4205', '4.1748', '1.092102097', '6.884576098', '45.95785714', '410.9', '61.12268515', '55.1', '6.22', '21.7', '0.575561063', '1.43', '0.764839217', '1.848956331', '1.685113776');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15B 35', '10.34', '14.88', '0.28', '6.73', '0.47', '12.8782', '14.41', '4.1664', '1.139987986', '7.159574468', '45.99357143', '396.3', '59.1443176', '53.3', '6.19', '20.6', '0.579554903', '1.41', '0.698035024', '1.839562842', '1.668733553');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15CB 35', '10.29', '14.88', '0.275', '6.725', '0.47', '12.915', '14.41', '4.092', '1.123665269', '7.154255319', '46.96363636', '396.7', '58.906155', '53.3', '6.21', '23.9', '0.498420133', '1.52', '0.619662456', '1.839247819', '1.797431459');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15B 35', '10.22', '15', '0.33', '5.5', '0.49', '13.02324', '14.51', '4.95', '1.594682449', '5.612244898', '39.46436364', '367.9', '55.27656567', '49', '6', '11.6', '0.585659124', '1.06', '0.736747544', '1.465061707', '1.310538135');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15WFCB 136', '39.98', '14.75', '0.66', '14.74', '1.063', '11.299', '13.687', '9.735', '0.475941085', '6.933207902', '17.11969697', '1593', '240.751689', '216', '6.31', '567.7', '0.499718669', '3.77', '13.46356888', '4.30245506', '4.241033543');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15WFB 136', '39.98', '14.75', '0.66', '14.74', '1.063', '11.299', '13.687', '9.735', '0.475941085', '6.933207902', '17.11969697', '1593', '240.751689', '216', '6.31', '567.7', '0.499718669', '3.77', '13.46356888', '4.30245506', '4.241033543');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15CB 136', '39.98', '14.75', '0.662', '14.74', '1.063', '11.199', '13.687', '9.7645', '0.473158325', '6.933207902', '16.91691843', '1592.3', '240.8313717', '215.9', '6.31', '567.7', '0.499718669', '3.77', '13.58239713', '4.30503533', '4.242015604');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14CB 135', '39.7', '14.452', '0.645', '15.239', '1.031', '10.965', '13.421', '9.32154', '0.450145814', '7.390397672', '17', '1530.4', '235.6166463', '211.8', '6.21', '608.4', '0.499755544', '3.92', '12.78051451', '4.454782907', '4.390450299');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15CB 127', '37.33', '14.62', '0.612', '14.69', '0.998', '11.199', '13.622', '8.94744', '0.467496463', '7.359719439', '18.29901961', '1476', '224.0898682', '201.9', '6.29', '527.6', '0.499700629', '3.76', '11.19087531', '4.281932201', '4.218807157');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15WFCB 127', '37.33', '14.62', '0.61', '14.69', '0.998', '11.299', '13.622', '8.9182', '0.470129503', '7.359719439', '18.52295082', '1476.7', '224.0101855', '202', '6.29', '527.6', '0.499700629', '3.76', '11.08743231', '4.279399006', '4.217762769');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15WFB 127', '37.33', '14.62', '0.61', '14.69', '0.998', '11.299', '13.622', '8.9182', '0.470129503', '7.359719439', '18.52295082', '1476.7', '224.0101855', '202', '6.29', '527.6', '0.499700629', '3.76', '11.08743231', '4.279399006', '4.217762769');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14CB 125', '36.75', '14.304', '0.597', '15.191', '0.957', '10.965', '13.347', '8.539488', '0.450282082', '7.936781609', '18.36683417', '1402.1', '216.947524', '196', '6.18', '559.4', '0.499766707', '3.9', '10.23180728', '4.428978116', '4.364254092');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15WFCB 119', '34.99', '14.5', '0.57', '14.65', '0.938', '11.299', '13.562', '8.265', '0.46867782', '7.809168443', '19.82280702', '1373.1', '209.0745015', '189.4', '6.26', '491.8', '0.499742105', '3.75', '9.199266383', '4.258960435', '4.196151377');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15WFB 119', '34.99', '14.5', '0.57', '14.65', '0.938', '11.299', '13.562', '8.265', '0.46867782', '7.809168443', '19.82280702', '1373.1', '209.0745015', '189.4', '6.26', '491.8', '0.499742105', '3.75', '9.199266383', '4.258960435', '4.196151377');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15CB 119', '34.97', '14.5', '0.571', '14.649', '0.938', '11.199', '13.562', '8.2795', '0.465376593', '7.808635394', '19.61295972', '1372.2', '209.1016217', '189.3', '6.26', '491.7', '0.499741391', '3.75', '9.284438169', '4.261359946', '4.196832818');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14CB 115', '33.82', '14.154', '0.551', '15.145', '0.882', '10.965', '13.272', '7.798854', '0.45229561', '8.585600907', '19.90018149', '1275.9', '198.4322079', '180.3', '6.14', '510.9', '0.499757441', '3.89', '8.037503989', '4.403064126', '4.336339501');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14WFB 111', '32.65', '14.37', '0.54', '14.62', '0.873', '11.299', '13.497', '7.7598', '0.478048712', '8.373424971', '20.92407407', '1266.5', '193.780046', '176.3', '6.23', '454.9', '0.499757337', '3.73', '7.481762938', '4.238068347', '4.172875605');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14WFCB 111', '32.65', '14.37', '0.54', '14.62', '0.873', '11.299', '13.497', '7.7598', '0.478048712', '8.373424971', '20.92407407', '1266.5', '193.780046', '176.3', '6.23', '454.9', '0.499757337', '3.73', '7.481762938', '4.238068347', '4.172875605');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14CB 111', '32.62', '14.37', '0.54', '14.618', '0.873', '11.199', '13.497', '7.7598', '0.473882644', '8.372279496', '20.73888889', '1265.3', '193.7564802', '176.1', '6.23', '454.7', '0.499771994', '3.73', '7.551802931', '4.24042547', '4.174326599');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14CB 106', '31.18', '14.018', '0.509', '15.103', '0.814', '10.965', '13.204', '7.135162', '0.453982164', '9.277027027', '21.54223969', '1164.1', '181.8623045', '166.1', '6.11', '467.6', '0.499756353', '3.87', '6.342675355', '4.379435187', '4.311120828');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14CB 105', '30.88', '14.37', '0.536', '12.101', '0.99', '10.965', '13.38', '7.70232', '0.490588056', '6.111616162', '20.45708955', '1169.6', '180.8628876', '162.8', '6.15', '292.6', '0.499624135', '3.08', '8.838420807', '3.524704864', '3.467552295');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14CB 103', '30.27', '14.25', '0.498', '14.576', '0.813', '11.199', '13.437', '7.0965', '0.470630081', '8.964329643', '22.48795181', '1165.4', '179.0733092', '163.6', '6.2', '419.8', '0.499783535', '3.72', '6.096958902', '4.219720341', '4.152080149');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14WFCB 103', '30.26', '14.25', '0.495', '14.575', '0.813', '11.299', '13.437', '7.05375', '0.472004456', '8.963714637', '22.82626263', '1165.8', '178.9428609', '163.6', '6.21', '419.7', '0.499799734', '3.72', '6.02236949', '4.217153169', '4.151585588');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14WFB 103', '30.26', '14.25', '0.495', '14.575', '0.813', '11.299', '13.437', '7.05375', '0.472004456', '8.963714637', '22.82626263', '1165.8', '178.9428609', '163.6', '6.21', '419.7', '0.499799734', '3.72', '6.02236949', '4.217153169', '4.151585588');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14CB 96', '28.23', '13.866', '0.462', '15.056', '0.738', '10.965', '13.128', '6.406092', '0.455915801', '10.20054201', '23.73376623', '1042.1', '163.6001615', '150.3', '6.08', '419.9', '0.499871135', '3.86', '4.75404729', '4.352904677', '4.282306353');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14WFCB 95', '27.94', '14.12', '0.465', '14.545', '0.748', '11.299', '13.372', '6.5658', '0.48292272', '9.722593583', '24.29892473', '1063.5', '164.0090385', '150.6', '6.17', '383.7', '0.499884568', '3.71', '4.743704503', '4.195744049', '4.127305344');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14WFB 95', '27.94', '14.12', '0.465', '14.545', '0.748', '11.299', '13.372', '6.5658', '0.48292272', '9.722593583', '24.29892473', '1063.5', '164.0090385', '150.6', '6.17', '383.7', '0.499884568', '3.71', '4.743704503', '4.195744049', '4.127305344');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14CB 95', '27.93', '14.186', '0.485', '12.05', '0.898', '10.965', '13.288', '6.88021', '0.491458659', '6.70935412', '22.60824742', '1044', '162.4014613', '147.2', '6.11', '262', '0.499752459', '3.06', '6.622573068', '3.497929549', '3.438836697');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14CB 95', '27.92', '14.12', '0.466', '14.544', '0.748', '11.199', '13.372', '6.57992', '0.479711023', '9.721925134', '24.03218884', '1062.5', '164.0388776', '150.5', '6.17', '383.7', '0.49978147', '3.71', '4.801053439', '4.198211991', '4.128676314');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14CB 87', '25.56', '14', '0.422', '14.5', '0.688', '11.199', '13.312', '5.908', '0.473734763', '10.5377907', '26.53791469', '966.2', '149.6135592', '138', '6.15', '349.7', '0.499822229', '3.7', '3.73508452', '4.177461677', '4.106907578');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14WFB 87', '25.56', '14', '0.42', '14.5', '0.688', '11.299', '13.312', '5.88', '0.475699679', '10.5377907', '26.90238095', '966.9', '149.5338765', '138.1', '6.15', '349.7', '0.499822229', '3.7', '3.682680659', '4.175014174', '4.105420376');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14WFCB 87', '25.56', '14', '0.42', '14.5', '0.688', '11.299', '13.312', '5.88', '0.475699679', '10.5377907', '26.90238095', '966.9', '149.5338765', '138.1', '6.15', '349.7', '0.499822229', '3.7', '3.682680659', '4.175014174', '4.105420376');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14CB 86', '25.28', '13.714', '0.414', '15.008', '0.662', '10.965', '13.052', '5.677596', '0.456907373', '11.33534743', '26.48550725', '923', '145.5639857', '134.6', '6.04', '373.1', '0.499827282', '3.84', '3.455729346', '4.326213257', '4.253178691');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14CB 85', '24.99', '14', '0.435', '12', '0.805', '10.965', '13.195', '6.09', '0.493765528', '7.453416149', '25.20689655', '921.3', '144.1581409', '131.6', '6.07', '232', '0.499655172', '3.05', '4.80361512', '3.470944239', '3.410403358');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14WFCB 84', '24.71', '14.18', '0.451', '12.023', '0.778', '11.299', '13.402', '6.39518', '0.544783702', '7.726863753', '25.05321508', '928.4', '143.3293335', '130.9', '6.13', '225.5', '0.499678135', '3.02', '4.411139518', '3.460150625', '3.397607908');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14WFB 84', '24.71', '14.18', '0.451', '12.023', '0.778', '11.299', '13.402', '6.39518', '0.544783702', '7.726863753', '25.05321508', '928.4', '143.3293335', '130.9', '6.13', '225.5', '0.499678135', '3.02', '4.411139518', '3.460150625', '3.397607908');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14CB 84', '24.68', '14.18', '0.451', '12.021', '0.778', '11.199', '13.402', '6.39518', '0.540052017', '7.725578406', '24.83148559', '927.2', '143.30848', '130.8', '6.13', '225.4', '0.49965039', '3.02', '4.465858691', '3.462321112', '3.398152718');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14CB 78', '22.94', '14.06', '0.43', '12', '0.718', '11.199', '13.342', '6.0458', '0.558910167', '8.356545961', '26.04418605', '850.5', '132.0864499', '121', '6.09', '206.9', '0.499719671', '3', '3.577510952', '3.444843074', '3.377404133');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14WFCB 78', '22.94', '14.06', '0.428', '12', '0.718', '11.299', '13.342', '6.01768', '0.561278087', '8.356545961', '26.39953271', '851.2', '132.0067672', '121.1', '6.09', '206.9', '0.499719671', '3', '3.522101201', '3.44248506', '3.376009376');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14WFB 78', '22.94', '14.06', '0.428', '12', '0.718', '11.299', '13.342', '6.01768', '0.561278087', '8.356545961', '26.39953271', '851.2', '132.0067672', '121.1', '6.09', '206.9', '0.499719671', '3', '3.522101201', '3.44248506', '3.376009376');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14CB 75', '22.05', '14.382', '0.468', '10.086', '0.786', '11.585', '13.596', '6.730776', '0.683912248', '6.416030534', '24.7542735', '823.5', '126.9828389', '114.5', '6.11', '134.5', '0.499661523', '2.47', '3.916705072', '2.87783814', '2.825849179');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14WFCB 74', '21.76', '14.19', '0.45', '10.072', '0.783', '11.299', '13.407', '6.3855', '0.64472579', '6.431673052', '25.10888889', '796.8', '123.6612478', '112.3', '6.05', '133.5', '0.499397543', '2.48', '3.856341515', '2.883232753', '2.822939441');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14WFB 74', '21.76', '14.19', '0.45', '10.072', '0.783', '11.299', '13.407', '6.3855', '0.64472579', '6.431673052', '25.10888889', '796.8', '123.6612478', '112.3', '6.05', '133.5', '0.499397543', '2.48', '3.856341515', '2.883232753', '2.822939441');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14CB 74', '21.75', '14.19', '0.451', '10.071', '0.783', '11.199', '13.407', '6.39969', '0.640503384', '6.431034483', '24.83148559', '795.9', '123.6905915', '112.2', '6.05', '133.4', '0.499623059', '2.48', '3.915221294', '2.885408484', '2.823139205');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14CB 68', '20', '14.06', '0.42', '10.04', '0.718', '11.199', '13.342', '5.9052', '0.652484768', '6.991643454', '26.66428571', '723.4', '112.9121067', '102.9', '6.01', '121.2', '0.499622188', '2.46', '3.062756595', '2.867439663', '2.803103237');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14WFCB 68', '20', '14.06', '0.418', '10.04', '0.718', '11.299', '13.342', '5.87708', '0.655176231', '6.991643454', '27.03110048', '724.1', '112.832424', '103', '6.02', '121.2', '0.499622188', '2.46', '3.008249996', '2.865183596', '2.801742176');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14WFB 68', '20', '14.06', '0.418', '10.04', '0.718', '11.299', '13.342', '5.87708', '0.655176231', '6.991643454', '27.03110048', '724.1', '112.832424', '103', '6.02', '121.2', '0.499622188', '2.46', '3.008249996', '2.865183596', '2.801742176');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14CB 68', '19.99', '14.238', '0.425', '10.043', '0.714', '11.585', '13.524', '6.05115', '0.686630821', '7.032913165', '27.25882353', '738.8', '114.4117845', '103.8', '6.08', '120.6', '0.499758335', '2.46', '2.94974536', '2.85716271', '2.802931991');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14CB 61', '17.94', '14.094', '0.382', '10', '0.642', '11.585', '13.452', '5.383908', '0.689325545', '7.788161994', '30.32722513', '656.2', '102.0330176', '93.1', '6.05', '107.1', '0.499533147', '2.44', '2.158492613', '2.836456658', '2.78162337');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14CB 61', '17.94', '13.91', '0.38', '10', '0.643', '11.199', '13.267', '5.2858', '0.661838258', '7.776049767', '29.47105263', '640.8', '100.4465207', '92.1', '5.98', '107.3', '0.499378689', '2.45', '2.235795537', '2.846142848', '2.779978343');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14WFCB 61', '17.94', '13.91', '0.378', '10', '0.643', '11.299', '13.267', '5.25798', '0.664233593', '7.776049767', '29.89153439', '641.5', '100.366838', '92.2', '5.98', '107.3', '0.499378689', '2.45', '2.190083231', '2.843903221', '2.778470354');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14WFB 61', '17.94', '13.91', '0.378', '10', '0.643', '11.299', '13.267', '5.25798', '0.664233593', '7.776049767', '29.89153439', '641.5', '100.366838', '92.2', '5.98', '107.3', '0.499378689', '2.45', '2.190083231', '2.843903221', '2.778470354');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14CB 58', '17.05', '14.242', '0.413', '8.07', '0.716', '11.585', '13.526', '5.881946', '0.828055665', '5.63547486', '28.05084746', '609.4', '95.09777345', '85.6', '5.98', '62.8', '0.499335838', '1.92', '2.452174065', '2.277940035', '2.227473948');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14WFCB 58', '17.06', '14.06', '0.406', '8.098', '0.718', '11.299', '13.342', '5.70836', '0.78897606', '5.639275766', '27.83004926', '597.9', '93.75083015', '85', '5.92', '63.7', '0.498812219', '1.93', '2.494320238', '2.29403194', '2.235917235');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14WFB 58', '17.06', '14.06', '0.406', '8.098', '0.718', '11.299', '13.342', '5.70836', '0.78897606', '5.639275766', '27.83004926', '597.9', '93.75083015', '85', '5.92', '63.7', '0.498812219', '1.93', '2.494320238', '2.29403194', '2.235917235');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14CB 58', '17.03', '14.06', '0.406', '8.096', '0.718', '11.199', '13.342', '5.70836', '0.782186533', '5.637883008', '27.58374384', '596.7', '93.73167104', '84.9', '5.92', '63.6', '0.499226443', '1.93', '2.541451676', '2.296046742', '2.235476882');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14CB 53', '15.59', '14.122', '0.378', '8.035', '0.656', '11.585', '13.466', '5.338116', '0.830803117', '6.124237805', '30.64814815', '552.5', '86.48582881', '78.2', '5.95', '56.8', '0.499265896', '1.91', '1.897504228', '2.262234629', '2.211439683');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14WFCB 53', '15.59', '13.94', '0.37', '8.062', '0.658', '11.299', '13.282', '5.1578', '0.788084971', '6.126139818', '30.53783784', '542.1', '85.19959775', '77.8', '5.9', '57.5', '0.499695208', '1.92', '1.931218703', '2.278420387', '2.215444445');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14WFB 53', '15.59', '13.94', '0.37', '8.062', '0.658', '11.299', '13.282', '5.1578', '0.788084971', '6.126139818', '30.53783784', '542.1', '85.19959775', '77.8', '5.9', '57.5', '0.499695208', '1.92', '1.931218703', '2.278420387', '2.215444445');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14CB 53', '15.56', '13.94', '0.37', '8.06', '0.658', '11.199', '13.282', '5.1578', '0.781303974', '6.124620061', '30.26756757', '541.1', '85.18211864', '77.6', '5.9', '57.5', '0.499323411', '1.92', '1.972093795', '2.280437419', '2.218297562');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14CB 48', '14.12', '14', '0.343', '8', '0.595', '11.585', '13.405', '4.802', '0.834801471', '6.722689076', '33.7755102', '496', '77.87904058', '70.9', '5.93', '50.8', '0.499737533', '1.9', '1.429016501', '2.246268068', '2.191427715');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14WFCB 48', '14.11', '13.81', '0.339', '8.031', '0.593', '11.299', '13.217', '4.68159', '0.804295035', '6.771500843', '33.33038348', '484.9', '76.45063173', '70.2', '5.86', '51.3', '0.498959114', '1.91', '1.443004618', '2.261594907', '2.197564211');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14WFCB 48', '14.11', '13.81', '0.339', '8.031', '0.593', '11.299', '13.217', '4.68159', '0.804295035', '6.771500843', '33.33038348', '484.9', '76.45063173', '70.2', '5.86', '51.3', '0.498959114', '1.91', '1.443004618', '2.261594907', '2.197564211');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14CB 48', '14.1', '13.81', '0.34', '8.03', '0.593', '11.199', '13.217', '4.6954', '0.799627871', '6.770657673', '32.93823529', '484', '76.48263539', '70.1', '5.86', '51.2', '0.499746915', '1.91', '1.480390818', '2.263669872', '2.196986654');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14WFCB 43', '12.65', '13.68', '0.308', '8', '0.528', '11.299', '13.152', '4.21344', '0.823885417', '7.575757576', '36.68506494', '429', '67.82518195', '62.7', '5.82', '45.1', '0.499512195', '1.89', '1.046758226', '2.244317915', '2.174880517');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14WFB 43', '12.65', '13.68', '0.308', '8', '0.528', '11.299', '13.152', '4.21344', '0.823885417', '7.575757576', '36.68506494', '429', '67.82518195', '62.7', '5.82', '45.1', '0.499512195', '1.89', '1.046758226', '2.244317915', '2.174880517');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14CB 43', '12.64', '13.68', '0.31', '8', '0.528', '11.199', '13.152', '4.2408', '0.821896307', '7.575757576', '36.12580645', '428.3', '67.90486464', '62.6', '5.82', '45.1', '0.499512195', '1.89', '1.080452721', '2.246385407', '2.176616949');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14B 42', '12.46', '14.25', '0.34', '6.825', '0.578', '12.0302', '13.672', '4.845', '1.036862745', '5.903979239', '35.38294118', '436.5', '68.46808388', '61.3', '5.92', '27.3', '0.560908359', '1.48', '1.237281978', '1.889015316', '1.744825956');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14B 42', '12.4', '14.12', '0.34', '6.79', '0.58', '11.8962', '13.54', '4.8008', '1.027044843', '5.853448276', '34.98882353', '426.8', '67.56078025', '60.5', '5.87', '27', '0.56039249', '1.48', '1.23977205', '1.881213514', '1.738195131');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14B 42', '12.38', '14.25', '0.335', '6.82', '0.578', '12.0302', '13.672', '4.77375', '1.022363748', '5.899653979', '35.91104478', '435.3', '68.21425576', '61.1', '5.93', '27.2', '0.561734131', '1.48', '1.226704272', '1.889190821', '1.744475498');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14CB 42', '12.35', '14.25', '0.333', '6.818', '0.578', '12.169', '13.672', '4.74525', '1.028286867', '5.897923875', '36.54354354', '435.3', '68.15212089', '61.1', '5.94', '30.6', '0.498880072', '1.57', '1.096036799', '1.885438155', '1.850295681');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14CB 42', '12.35', '14.24', '0.342', '6.822', '0.569', '12.177', '13.671', '4.87008', '1.072858461', '5.994727592', '35.60526316', '431.5', '67.74410232', '60.6', '5.91', '30.2', '0.498493182', '1.56', '1.073008584', '1.880913464', '1.845662563');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14WFCB 42', '12.34', '14.24', '0.338', '6.801', '0.573', '12.109', '13.667', '4.81312', '1.050261831', '5.934554974', '35.82544379', '432.2', '67.74769463', '60.7', '5.92', '28.1', '0.534546365', '1.51', '1.092373196', '1.879066453', '1.778608706');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14WFB 42', '12.34', '14.24', '0.338', '6.801', '0.573', '12.3002', '13.667', '4.81312', '1.066845369', '5.934554974', '36.39112426', '432.2', '67.74769463', '60.7', '5.92', '28.1', '0.534546365', '1.51', '1.141960258', '1.873628148', '1.778608706');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14CB 39', '11.47', '14.16', '0.318', '6.798', '0.529', '12.177', '13.631', '4.50288', '1.076788959', '6.425330813', '38.29245283', '398.3', '62.66617272', '56.3', '5.89', '27.7', '0.499963313', '1.56', '0.865432388', '1.870653475', '1.831194807');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14WF 38.1', '11.18', '13.875', '0.389', '6.852', '0.44', '12.2012', '13.435', '5.397375', '1.574280502', '7.786363636', '31.3655527', '346.7', '56.92752273', '49.9', '5.57', '19.2', '0.614359056', '1.31', '0.862920679', '1.822577007', '1.607696918');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14CB 38', '11.18', '14', '0.375', '6.855', '0.449', '12.177', '13.551', '5.25', '1.483603242', '7.63363029', '32.472', '357.5', '57.80190552', '51.1', '5.66', '24.2', '0.498049039', '1.47', '0.708827733', '1.836390252', '1.791298275');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14WFCB 38', '11.17', '14.12', '0.313', '6.776', '0.513', '12.109', '13.607', '4.41956', '1.090339773', '6.604288499', '38.68690096', '385.3', '60.71531383', '54.6', '5.87', '24.6', '0.54065622', '1.49', '0.806380838', '1.863040447', '1.750803583');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14WFB 38', '11.17', '14.12', '0.313', '6.776', '0.513', '12.3002', '13.607', '4.41956', '1.107556138', '6.604288499', '39.29776358', '385.3', '60.71531383', '54.6', '5.87', '24.6', '0.54065622', '1.49', '0.850628978', '1.857426411', '1.750803583');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14B 37.5', '11.07', '14.12', '0.305', '6.79', '0.513', '12.0302', '13.607', '4.3066', '1.053381162', '6.617933723', '39.44327869', '383.7', '60.43073726', '54.3', '5.89', '23.4', '0.571912494', '1.46', '0.887637192', '1.872366153', '1.712277731');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14B 37.5', '11.02', '14', '0.3', '6.75', '0.52', '11.8962', '13.48', '4.2', '1.016769231', '6.490384615', '39.654', '377.4', '59.87273625', '53.9', '5.85', '23.4', '0.56953125', '1.46', '0.901216079', '1.866434954', '1.710580411');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14B 37', '10.93', '14.12', '0.295', '6.78', '0.513', '12.0302', '13.607', '4.1654', '1.020346795', '6.608187135', '40.78033898', '381.3', '59.93230126', '54', '5.91', '23.3', '0.571833086', '1.46', '0.870970394', '1.873156279', '1.71335468');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14CB 37', '10.87', '14.12', '0.291', '6.776', '0.513', '12.169', '13.607', '4.10892', '1.01872536', '6.604288499', '41.81786942', '380.9', '59.77232324', '53.9', '5.92', '26.6', '0.500005377', '1.57', '0.764497482', '1.869685369', '1.832367711');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14CB 36', '10.58', '14.08', '0.294', '6.774', '0.489', '12.177', '13.591', '4.13952', '1.080770756', '6.926380368', '41.41836735', '365.6', '57.63718392', '51.9', '5.88', '25.4', '0.498688638', '1.55', '0.686832702', '1.860389312', '1.823660064');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14WFCB 34', '10', '14', '0.287', '6.75', '0.453', '12.109', '13.547', '4.018', '1.136549097', '7.450331126', '42.19163763', '339.2', '53.72508023', '48.5', '5.83', '21.3', '0.545065471', '1.46', '0.575017492', '1.846090201', '1.724747404');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14WFB 34', '10', '14', '0.287', '6.75', '0.453', '12.3002', '13.547', '4.018', '1.154495103', '7.450331126', '42.85783972', '339.2', '53.72508023', '48.5', '5.83', '21.3', '0.545065471', '1.46', '0.613922286', '1.840278937', '1.724747404');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14B 33', '9.73', '13.88', '0.265', '6.715', '0.46', '11.8962', '13.42', '3.6782', '1.020587588', '7.298913043', '44.89132075', '330.3', '52.54131025', '47.6', '5.83', '20', '0.580342854', '1.43', '0.639046331', '1.851534989', '1.679085385');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14CB 33', '9.71', '14', '0.27', '6.75', '0.449', '12.177', '13.551', '3.78', '1.08481069', '7.516703786', '45.1', '333.4', '52.65690552', '47.6', '5.86', '23', '0.500320822', '1.54', '0.534983922', '1.850120286', '1.809385545');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14B 33', '9.7', '14', '0.265', '6.75', '0.453', '12.0302', '13.547', '3.71', '1.042597662', '7.450331126', '45.39698113', '334.3', '52.74269326', '47.8', '5.87', '19.9', '0.583411785', '1.43', '0.621272788', '1.857672199', '1.679264695');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14CB 33', '9.69', '14', '0.265', '6.75', '0.453', '12.169', '13.547', '3.71', '1.054626768', '7.450331126', '45.92075472', '334.7', '52.78208964', '47.8', '5.88', '23.2', '0.500426488', '1.55', '0.540326903', '1.853765067', '1.813162013');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14WF 32.4', '9.53', '13.875', '0.27', '6.733', '0.44', '12.2012', '13.435', '3.74625', '1.112000594', '7.651136364', '45.18962963', '320.2', '51.20018289', '46.1', '5.79', '18.1', '0.618327695', '1.38', '0.628795656', '1.8396197', '1.62402482');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14B 30', '8.89', '13.88', '0.265', '6.75', '0.393', '12.0302', '13.487', '3.6782', '1.201772877', '8.58778626', '45.39698113', '294.9', '47.09699326', '42.5', '5.76', '16.8', '0.599533343', '1.38', '0.459719739', '1.835864315', '1.632686707');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14CB 30', '8.82', '13.964', '0.27', '6', '0.431', '12.177', '13.533', '3.77028', '1.27138051', '6.960556845', '45.1', '292', '46.58355027', '41.8', '5.75', '15.5', '0.500516129', '1.33', '0.447268284', '1.625497054', '1.584016683');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14CB 30', '8.81', '13.88', '0.26', '6.745', '0.393', '12.169', '13.487', '3.6088', '1.193586051', '8.581424936', '46.80384615', '294.3', '46.89557164', '42.4', '5.78', '20.1', '0.499989759', '1.51', '0.387054095', '1.832460506', '1.787959929');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14WFCB 30', '8.81', '13.86', '0.27', '6.733', '0.383', '12.109', '13.477', '3.7422', '1.2678406', '8.789817232', '44.84814815', '289.6', '46.32673193', '41.8', '5.73', '17.5', '0.556679621', '1.41', '0.383111939', '1.821802613', '1.679625656');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14WFB 30', '8.81', '13.86', '0.27', '6.733', '0.383', '12.3002', '13.477', '3.7422', '1.287859686', '8.789817232', '45.5562963', '289.6', '46.32673193', '41.8', '5.73', '17.5', '0.556679621', '1.41', '0.417054327', '1.815448208', '1.679625656');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14B 26', '7.65', '13.89', '0.255', '5.025', '0.418', '12.069', '13.472', '3.54195', '1.465207456', '6.01076555', '47.32941176', '242.6', '39.1607033', '34.9', '5.63', '8.26', '0.535085505', '1.04', '0.361658224', '1.346844257', '1.262636528');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14B 22', '6.47', '13.72', '0.23', '5', '0.335', '12.065', '13.385', '3.1556', '1.656686567', '7.462686567', '52.45652174', '197.4', '32.21226875', '28.8', '5.52', '6.4', '0.545247396', '0.99', '0.213127224', '1.320675751', '1.219517209');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14B 17.2', '5.05', '14', '0.21', '4', '0.272', '12.331', '13.728', '2.94', '2.380064338', '7.352941176', '58.71904762', '147.3', '24.44192064', '21', '5.4', '2.65', '0.547421384', '0.72', '0.134503652', '1.014925952', '0.930683313');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '13CB 85', '24.98', '12.5', '0.501', '12.106', '0.796', '9.583', '11.704', '6.2625', '0.498224955', '7.604271357', '19.12774451', '722', '127.6869488', '115.5', '5.38', '235.5', '0.499738627', '3.07', '4.824497111', '3.51507131', '3.454272717');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '13WFCB 85', '24.98', '12.5', '0.495', '12.105', '0.796', '9.583', '11.704', '6.1875', '0.492298855', '7.603643216', '19.35959596', '723.3', '127.4991557', '115.7', '5.38', '235.5', '0.499614796', '3.07', '4.802117429', '3.515883753', '3.451285883');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '13WFB 85', '24.98', '12.5', '0.495', '12.105', '0.796', '9.583', '11.704', '6.1875', '0.492298855', '7.603643216', '19.35959596', '723.3', '127.4991557', '115.7', '5.38', '235.5', '0.499614796', '3.07', '4.802117429', '3.515883753', '3.451285883');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12CB 83', '24.41', '12', '0.704', '10.196', '0.83', '9.115', '11.17', '8.448', '0.758265703', '6.142168675', '12.94744318', '598.9', '113.3452812', '99.8', '4.95', '147', '0.498734018', '2.45', '5.547189548', '2.929932795', '2.868170637');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12CB 82', '24.11', '12', '0.453', '12', '0.8', '9.175', '11.2', '5.436', '0.432945313', '7.5', '20.25386313', '650.8', '119.76912', '108.5', '5.2', '230.5', '0.49978308', '3.09', '4.617666701', '3.501900656', '3.449170073');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12CB 79', '23.22', '12.38', '0.476', '12.081', '0.736', '9.583', '11.644', '5.89288', '0.513012258', '8.207201087', '20.13235294', '661.9', '117.6931279', '106.9', '5.34', '216.4', '0.499744433', '3.05', '3.874066138', '3.496202148', '3.433016385');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12WFCB 79', '23.22', '12.38', '0.47', '12.08', '0.736', '9.583', '11.644', '5.8186', '0.506587649', '8.206521739', '20.3893617', '663', '117.5060812', '107.1', '5.34', '216.4', '0.499620345', '3.05', '3.854125758', '3.497111693', '3.429809456');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12WFB 79', '23.22', '12.38', '0.47', '12.08', '0.736', '9.583', '11.644', '5.8186', '0.506587649', '8.206521739', '20.3893617', '663', '117.5060812', '107.1', '5.34', '216.4', '0.499620345', '3.05', '3.854125758', '3.497111693', '3.429809456');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12G 76.5', '22.5', '12.12', '0.51', '10.29', '0.8235', '9.0214', '11.2965', '6.1812', '0.542956626', '6.247723133', '17.68901961', '594.2', '109.5741227', '98.1', '5.14', '132.1', '0.566012033', '2.42', '5.141653404', '2.991714725', '2.757870444');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12G 76.5', '22.29', '12.12', '0.51', '10.29', '0.8235', '9.0214', '11.2965', '6.1812', '0.542956626', '6.247723133', '17.68901961', '589', '109.5741227', '97.2', '5.14', '132.1', '0.566012033', '2.43', '5.141653404', '2.991714725', '2.770608944');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12CB 76', '22.35', '12', '0.67', '12.27', '0.608', '9.559', '11.392', '8.04', '0.858497673', '10.09046053', '14.26716418', '560.2', '104.4654976', '93.4', '5.01', '187.5', '0.49917721', '2.9', '3.248371795', '3.464987735', '3.381521774');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12CB 75', '22.05', '12', '0.508', '10', '0.83', '9.115', '11.17', '6.096', '0.557881928', '6.024096386', '17.94291339', '570.7', '106.2892812', '95.1', '5.09', '138.5', '0.499398315', '2.51', '4.508376194', '2.903544407', '2.851978301');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12WFCB 72', '21.16', '12.25', '0.43', '12.04', '0.671', '9.583', '11.579', '5.2675', '0.510059613', '8.971684054', '22.28604651', '597.4', '106.3357182', '97.5', '5.31', '195.3', '0.499710519', '3.04', '2.94196152', '3.475191916', '3.405409498');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12WFB 72', '21.16', '12.25', '0.43', '12.04', '0.671', '9.583', '11.579', '5.2675', '0.510059613', '8.971684054', '22.28604651', '597.4', '106.3357182', '97.5', '5.31', '195.3', '0.499710519', '3.04', '2.94196152', '3.475191916', '3.405409498');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12CB 72', '21.15', '12.25', '0.436', '12.041', '0.671', '9.583', '11.579', '5.341', '0.517133772', '8.97242921', '21.9793578', '596.2', '106.5219644', '97.3', '5.31', '195.3', '0.499835042', '3.04', '2.958624655', '3.474155169', '3.408907608');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12G 70.5', '20.79', '12', '0.47', '12.25', '0.7635', '9.0214', '11.2365', '5.64', '0.453342742', '8.022265881', '19.19446809', '543.6', '117.818806', '90.6', '5.11', '119.7', '0.97710652', '2.4', '4.88662266', '3.568569657', '2.724479262');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12G 70.5', '20.57', '12', '0.47', '10.25', '0.7635', '9.0214', '11.2365', '5.64', '0.541799863', '6.712508186', '19.19446809', '538.4', '100.6882787', '89.7', '5.12', '119.7', '0.572407402', '2.41', '4.138665768', '2.972508273', '2.738113105');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12G 70', '20.6', '12', '0.445', '10', '0.7985', '8.7614', '11.2015', '5.34', '0.488268378', '6.261740764', '19.68853933', '540.9', '101.1999298', '90.2', '5.12', '109.5', '0.607686454', '2.31', '4.756367237', '2.916161985', '2.607515415');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12CB 70', '20.58', '12', '0.523', '12.123', '0.608', '9.559', '11.392', '6.276', '0.678266654', '9.969572368', '18.27724665', '539', '99.1734976', '89.8', '5.12', '180.7', '0.499567867', '2.96', '2.564328047', '3.456846636', '3.385524011');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12G 70', '20.58', '12', '0.46', '10', '0.7895', '8.9474', '11.2105', '5.52', '0.521317796', '6.333122229', '19.45086957', '538.8', '100.8492676', '89.8', '5.12', '114.7', '0.573597791', '2.36', '4.390410191', '2.907299968', '2.675722276');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12CB 66', '19.41', '12.26', '0.448', '9.073', '0.795', '9.445', '11.465', '5.49248', '0.58662685', '5.706289308', '21.08258929', '525.7', '95.44852308', '85.8', '5.5', '99.1', '0.499303903', '2.26', '3.554988204', '2.622815922', '2.573150659');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12G 66', '19.32', '11.88', '0.45', '10.23', '0.7035', '9.0214', '11.1765', '5.346', '0.564087814', '7.270788913', '20.04755556', '496.9', '92.63950666', '83.7', '5.07', '108.3', '0.579537176', '2.37', '3.346793388', '2.955498404', '2.688991397');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12G 66', '19.11', '11.88', '0.45', '10.23', '0.7035', '9.0214', '11.1765', '5.346', '0.564087814', '7.270788913', '20.04755556', '491.7', '92.63950666', '82.8', '5.07', '108.3', '0.579537176', '2.38', '3.346793388', '2.955498404', '2.703565983');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12WFCB 65', '19.11', '12.12', '0.39', '12', '0.606', '9.583', '11.514', '4.7268', '0.513939769', '9.900990099', '24.57179487', '533.4', '95.33079324', '88', '5.28', '174.6', '0.499793814', '3.02', '2.188426728', '3.453123763', '3.37970581');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12WFB 65', '19.11', '12.12', '0.39', '12', '0.606', '9.583', '11.514', '4.7268', '0.513939769', '9.900990099', '24.57179487', '533.4', '95.33079324', '88', '5.28', '174.6', '0.499793814', '3.02', '2.188426728', '3.453123763', '3.37970581');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12CB 65', '19.11', '12', '0.4', '12', '0.608', '9.559', '11.392', '4.8', '0.524067982', '9.868421053', '23.8975', '521.3', '94.7454976', '86.9', '5.22', '175.2', '0.499726027', '3.03', '2.191333128', '3.450814844', '3.388770462');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12CB 65', '19.09', '12.12', '0.395', '12', '0.606', '9.583', '11.514', '4.7874', '0.52052874', '9.900990099', '24.26075949', '532', '95.47952382', '87.8', '5.28', '174.6', '0.499793814', '3.02', '2.199696536', '3.45188459', '3.383552944');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12WFCB 64', '18.83', '12.31', '0.405', '10.06', '0.701', '9.583', '11.609', '4.98555', '0.550351954', '7.175463623', '23.6617284', '528.3', '93.91454152', '85.8', '5.29', '119', '0.499785616', '2.51', '2.76487793', '2.901174453', '2.837345644');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12WFB 64', '18.83', '12.31', '0.405', '10.06', '0.701', '9.583', '11.609', '4.98555', '0.550351954', '7.175463623', '23.6617284', '528.3', '93.91454152', '85.8', '5.29', '119', '0.499785616', '2.51', '2.76487793', '2.901174453', '2.837345644');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12CB 64', '18.81', '12.31', '0.409', '10.06', '0.701', '9.583', '11.609', '5.03479', '0.555787529', '7.175463623', '23.43031785', '527.5', '94.03352598', '85.7', '5.3', '119', '0.499785616', '2.52', '2.774985504', '2.900332027', '2.839000555');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12G 61', '17.92', '12.12', '0.41', '10.03', '0.6655', '9.5106', '11.4545', '4.9692', '0.584174748', '7.535687453', '23.19658537', '483.6', '88.26073619', '79.8', '5.2', '95.9', '0.583513631', '2.31', '2.707181405', '2.883147247', '2.623499153');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12G 61', '17.77', '12.12', '0.41', '10.03', '0.6655', '9.5106', '11.4545', '4.9692', '0.584174748', '7.535687453', '23.19658537', '479.9', '88.26073619', '79.2', '5.2', '95.8', '0.584122727', '2.32', '2.707181405', '2.883147247', '2.63204454');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12CB 60', '17.65', '12.118', '0.409', '9.034', '0.724', '9.445', '11.394', '4.956262', '0.590617917', '6.238950276', '23.09290954', '472', '86.16482873', '77.9', '5.17', '89', '0.499813028', '2.25', '2.70244469', '2.602880969', '2.551228655');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12G 60', '17.62', '12.12', '0.39', '10.02', '0.662', '9.5166', '11.458', '4.7268', '0.559526566', '7.567975831', '24.40153846', '479.1', '87.23795427', '79.1', '5.21', '94.9', '0.584808526', '2.32', '2.621361229', '2.883605134', '2.621707736');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12WFB 58', '17.06', '12.19', '0.359', '10.014', '0.641', '9.583', '11.549', '4.37621', '0.53595746', '7.811232449', '26.69359331', '476.1', '84.81158637', '78.1', '5.28', '107.4', '0.499453733', '2.51', '2.105330788', '2.882611405', '2.817953462');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12WFCB 58', '17.06', '12.19', '0.359', '10.014', '0.641', '9.583', '11.549', '4.37621', '0.53595746', '7.811232449', '26.69359331', '476.1', '84.81158637', '78.1', '5.28', '107.4', '0.499453733', '2.51', '2.105330788', '2.882611405', '2.817953462');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12CB 58', '17.04', '12.19', '0.363', '10.014', '0.641', '9.583', '11.549', '4.42497', '0.541929131', '7.811232449', '26.39944904', '475.3', '84.93057083', '78', '5.28', '107.4', '0.499453733', '2.51', '2.113407071', '2.881681404', '2.819759264');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12G 55.5', '16.35', '12', '0.38', '10', '0.6055', '9.5106', '11.3945', '4.56', '0.596866722', '8.257638315', '25.02789474', '435.6', '79.92302819', '72.6', '5.16', '84.9', '0.594326659', '2.28', '2.097345029', '2.864850684', '2.581179298');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12G 55.5', '16.21', '12', '0.38', '10', '0.6055', '9.5106', '11.3945', '4.56', '0.596866722', '8.257638315', '25.02789474', '431.8', '79.92302819', '72', '5.16', '84.9', '0.594326659', '2.29', '2.097345029', '2.864850684', '2.591911899');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12G 55', '16.18', '12', '0.37', '10', '0.602', '9.5166', '11.398', '4.44', '0.584907309', '8.305647841', '25.72054054', '432.5', '79.26748227', '72.1', '5.17', '84.3', '0.595096876', '2.28', '2.048028951', '2.866213506', '2.581341618');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12G 55', '16.18', '12', '0.37', '9.75', '0.626', '9.4486', '11.374', '4.44', '0.572783157', '7.787539936', '25.53675676', '432', '79.96756079', '72', '5.17', '81.1', '0.596191912', '2.24', '2.220609449', '2.800232142', '2.530962981');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12CB 55', '16.17', '12', '0.375', '9', '0.665', '9.445', '11.335', '4.5', '0.59179198', '6.766917293', '25.18666667', '428.4', '78.51330938', '71.4', '5.15', '80.9', '0.499366502', '2.24', '2.105144142', '2.586116406', '2.534083489');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12G 55', '16.12', '12', '0.35', '9.75', '0.634', '9.2666', '11.366', '4.2', '0.524680094', '7.689274448', '26.476', '432', '80.0659808', '72', '5.18', '76.1', '0.643483184', '2.17', '2.452662704', '2.811461496', '2.450839709');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12WFB 53', '15.59', '12.06', '0.345', '10', '0.576', '9.583', '11.484', '4.1607', '0.573981771', '8.680555556', '27.77681159', '426.2', '76.41025002', '70.7', '5.23', '96.1', '0.499479709', '2.48', '1.58666468', '2.864394712', '2.79372453');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12WFCB 53', '15.59', '12.06', '0.345', '10', '0.576', '9.583', '11.484', '4.1607', '0.573981771', '8.680555556', '27.77681159', '426.2', '76.41025002', '70.7', '5.23', '96.1', '0.499479709', '2.48', '1.58666468', '2.864394712', '2.79372453');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12CB 53', '15.57', '12.06', '0.349', '10', '0.576', '9.583', '11.484', '4.20894', '0.580636632', '8.680555556', '27.45845272', '425.4', '76.52923448', '70.5', '5.23', '96.1', '0.499479709', '2.48', '1.59393621', '2.863358224', '2.797684453');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12G 51.5', '15.21', '11.91', '0.36', '9.98', '0.5605', '9.5106', '11.3495', '4.2876', '0.612074461', '8.902765388', '26.41833333', '400.6', '73.83403769', '67.3', '5.13', '76.9', '0.603753491', '2.25', '1.713350185', '2.850915335', '2.546413948');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12G 51.5', '15.07', '11.91', '0.36', '9.98', '0.5605', '9.5106', '11.3495', '4.2876', '0.612074461', '8.902765388', '26.41833333', '396.9', '73.83403769', '66.6', '5.13', '76.9', '0.603753491', '2.26', '1.713350185', '2.850915335', '2.559761024');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12WFB 50', '14.71', '12.19', '0.371', '8.077', '0.641', '9.583', '11.549', '4.52249', '0.686700376', '6.300312012', '25.83018868', '394.5', '70.82910503', '64.7', '5.18', '56.4', '0.499054445', '1.96', '1.789874074', '2.306314375', '2.243595728');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12WFCB 50', '14.71', '12.19', '0.371', '8.077', '0.641', '9.583', '11.549', '4.52249', '0.686700376', '6.300312012', '25.83018868', '394.5', '70.82910503', '64.7', '5.18', '56.4', '0.499054445', '1.96', '1.789874074', '2.306314375', '2.243595728');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12CB 50', '14.69', '12.258', '0.361', '8.071', '0.655', '9.823', '11.603', '4.425138', '0.670784006', '6.161068702', '27.21052632', '400.5', '72.15656555', '65.4', '5.22', '57.5', '0.499084694', '1.98', '1.796788885', '2.304220126', '2.258474526');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12CB 50', '14.69', '12.19', '0.375', '8.077', '0.641', '9.583', '11.549', '4.57125', '0.694104154', '6.300312012', '25.55466667', '393', '70.94808949', '64.5', '5.17', '56.4', '0.499054445', '1.96', '1.798372129', '2.305406748', '2.247071479');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12B 48.5', '14.28', '12.25', '0.395', '6.815', '0.7265', '9.7362', '11.5235', '4.83875', '0.776756871', '4.690295939', '24.64860759', '373.2', '68.52763432', '60.9', '5.11', '35.1', '0.545939901', '1.57', '2.219245131', '1.940694547', '1.822309407');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12WFB 45', '13.24', '12.06', '0.336', '8.042', '0.576', '9.583', '11.484', '4.05216', '0.695111083', '6.980902778', '28.52083333', '350.8', '63.1907879', '58.2', '5.15', '50', '0.499302154', '1.94', '1.321325188', '2.288514559', '2.221033474');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12WFCB 45', '13.24', '12.06', '0.336', '8.042', '0.576', '9.583', '11.484', '4.05216', '0.695111083', '6.980902778', '28.52083333', '350.8', '63.1907879', '58.2', '5.15', '50', '0.499302154', '1.94', '1.321325188', '2.288514559', '2.221033474');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12CB 45', '13.23', '12.13', '0.326', '8.036', '0.591', '9.823', '11.539', '3.95438', '0.674270773', '6.798646362', '30.13190184', '356.9', '64.57038014', '58.8', '5.19', '51.2', '0.499178714', '1.97', '1.330433621', '2.287149258', '2.241379556');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12CB 45', '13.21', '12.06', '0.34', '8.042', '0.576', '9.583', '11.484', '4.1004', '0.703386215', '6.980902778', '28.18529412', '349.3', '63.30977237', '57.9', '5.14', '50', '0.499302154', '1.95', '1.328305334', '2.287498354', '2.226780012');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12B 44.5', '13.1', '12.25', '0.375', '6.445', '0.6915', '9.8202', '11.5585', '4.59375', '0.826297606', '4.660159074', '26.1872', '340.9', '62.55168718', '55.7', '5.1', '28.3', '0.545121446', '1.47', '1.828564178', '1.826712013', '1.71356807');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12B 44', '12.97', '12.12', '0.36', '6.78', '0.6615', '9.7362', '11.4585', '4.3632', '0.781506231', '5.124716553', '27.045', '335.1', '61.84465794', '55.3', '5.08', '31.1', '0.552430051', '1.55', '1.693687805', '1.924465985', '1.795008525');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12B 40', '11.84', '12.12', '0.34', '6.41', '0.6265', '9.8202', '11.4935', '4.1208', '0.831419383', '5.115722267', '28.88294118', '304.6', '56.16176006', '50.3', '5.07', '24.9', '0.552223101', '1.45', '1.376224201', '1.810787676', '1.686657234');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12B 40', '11.8', '12', '0.33', '6.75', '0.6015', '9.8198', '11.3985', '3.96', '0.798136511', '5.610972569', '29.7569697', '301.2', '55.85864994', '50.2', '5.05', '27.6', '0.558543011', '1.53', '1.275135076', '1.907370356', '1.770155979');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12WFB 40', '11.77', '11.94', '0.294', '8', '0.516', '9.583', '11.424', '3.51036', '0.682510174', '7.751937984', '32.5952381', '310.1', '55.9036301', '51.9', '5.13', '44.1', '0.499229025', '1.94', '0.956221666', '2.271809262', '2.203077196');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12WFCB 40', '11.77', '11.94', '0.294', '8', '0.516', '9.583', '11.424', '3.51036', '0.682510174', '7.751937984', '32.5952381', '310.1', '55.9036301', '51.9', '5.13', '44.1', '0.499229025', '1.94', '0.956221666', '2.271809262', '2.203077196');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12CB 40', '11.76', '12', '0.29', '8', '0.526', '9.823', '11.474', '3.48', '0.676965304', '7.604562738', '33.87241379', '313.7', '56.97234804', '52.3', '5.17', '44.9', '0.499836674', '1.95', '0.947898747', '2.269758799', '2.21929355');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12CB 40', '11.75', '11.94', '0.298', '8', '0.516', '9.583', '11.424', '3.55812', '0.691796027', '7.751937984', '32.15771812', '308.6', '56.02261457', '51.7', '5.13', '44.1', '0.499229025', '1.94', '0.961666116', '2.270664778', '2.207334354');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12B 36.5', '10.6', '12', '0.31', '6.38', '0.5665', '9.8202', '11.4335', '3.72', '0.842289591', '5.631067961', '31.67806452', '269.2', '50.44348406', '44.9', '5.04', '21.9', '0.559804763', '1.44', '1.036129782', '1.796110641', '1.669834721');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12B 36', '10.63', '12', '0.31', '6.3', '0.577', '9.66148', '11.423', '3.72', '0.823927485', '5.459272097', '31.16606452', '270.2', '50.57069385', '45', '5.04', '20.4', '0.589367316', '1.38', '1.137379018', '1.778700757', '1.60910327');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12B 36', '10.61', '12', '0.31', '6.3', '0.575', '9.7862', '11.425', '3.72', '0.837466391', '5.47826087', '31.5683871', '269.2', '50.474167', '44.9', '5.04', '21.3', '0.562507923', '1.42', '1.070293586', '1.775175762', '1.646189161');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12CB 36', '10.59', '12.236', '0.308', '6.568', '0.538', '10.335', '11.698', '3.768688', '0.900836092', '6.104089219', '33.55519481', '280.1', '50.92587683', '45.8', '5.14', '25.4', '0.50011139', '1.55', '0.826400185', '1.834606119', '1.801046518');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12WFB 36', '10.59', '12.24', '0.305', '6.565', '0.54', '10.4498', '11.7', '3.7332', '0.899040648', '6.078703704', '34.26163934', '280.8', '50.974272', '45.9', '5.15', '23.7', '0.537240023', '1.5', '0.875112585', '1.831994914', '1.737983957');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12WFCB 36', '10.59', '12.24', '0.305', '6.565', '0.54', '10.295', '11.7', '3.7332', '0.885722547', '6.078703704', '33.75409836', '280.8', '50.974272', '45.9', '5.15', '23.7', '0.537240023', '1.5', '0.835530954', '1.836292179', '1.737983957');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12CB 36', '10.58', '12.25', '0.3', '6.56', '0.545', '10.335', '11.705', '3.675', '0.867224211', '6.018348624', '34.45', '282.3', '51.188636', '46.1', '5.17', '25.7', '0.498877194', '1.56', '0.84180917', '1.836579921', '1.806287224');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12B 36', '10.58', '12.25', '0.3', '6.555', '0.545', '10.1898', '11.705', '3.675', '0.855692482', '6.013761468', '33.966', '281.8', '51.12150338', '46', '5.16', '22.7', '0.563517603', '1.46', '0.943143986', '1.838985824', '1.699435648');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12CB 34', '9.99', '12.022', '0.375', '6.635', '0.431', '10.335', '11.591', '4.50825', '1.355262905', '7.697215777', '27.56', '238.1', '44.82275884', '39.6', '4.88', '21', '0.499573636', '1.45', '0.599705537', '1.796035882', '1.753103309');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12WF 32.5', '9.54', '12', '0.31', '6.57', '0.456', '10.2942', '11.544', '3.72', '1.065182648', '7.203947368', '33.20709677', '238.1', '44.11304064', '39.7', '5', '17.8', '0.605424097', '1.37', '0.701598968', '1.810138697', '1.608710546');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12B 32', '9.44', '12', '0.335', '6.205', '0.462', '10.1018', '11.538', '4.02', '1.180483202', '6.715367965', '30.15462687', '228.5', '43.31627076', '38.1', '4.92', '16', '0.574865313', '1.3', '0.67072837', '1.702839555', '1.556495154');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12CB 32', '9.42', '12.12', '0.275', '6.535', '0.48', '10.335', '11.64', '3.333', '0.906058722', '6.807291667', '37.58181818', '247', '45.074862', '40.8', '5.12', '22.3', '0.50060122', '1.54', '0.590034266', '1.819724062', '1.783544059');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12B 32', '9.42', '12.12', '0.275', '6.53', '0.48', '10.1898', '11.64', '3.333', '0.894013208', '6.802083333', '37.05381818', '246.4', '45.0116895', '40.7', '5.11', '19.4', '0.574113561', '1.44', '0.670984986', '1.822293239', '1.665578678');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12WFB 32', '9.41', '12.12', '0.273', '6.533', '0.48', '10.4498', '11.64', '3.30876', '0.909738826', '6.805208333', '38.27765568', '246.8', '45.0014148', '40.7', '5.12', '20.6', '0.541415576', '1.48', '0.626595042', '1.81660912', '1.716318556');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12WFCB 32', '9.41', '12.12', '0.273', '6.533', '0.48', '10.295', '11.64', '3.30876', '0.896262246', '6.805208333', '37.71062271', '246.8', '45.0014148', '40.7', '5.12', '20.6', '0.541415576', '1.48', '0.592537487', '1.820955499', '1.716318556');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12CB 32', '9.4', '12.118', '0.274', '6.534', '0.479', '10.335', '11.639', '3.320332', '0.9047871', '6.82045929', '37.7189781', '246.3', '44.95895285', '40.7', '5.12', '22.3', '0.499329006', '1.54', '0.585941799', '1.819492857', '1.785657093');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12B 31.5', '9.36', '12.12', '0.27', '6.525', '0.48', '10.1898', '11.64', '3.2724', '0.878431034', '6.796875', '37.74', '245.7', '44.8280715', '40.5', '5.12', '19.4', '0.57279578', '1.44', '0.664897978', '1.822526392', '1.669686154');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12B 31', '9.13', '12', '0.31', '6.16', '0.4625', '9.9998', '11.5375', '3.72', '1.088079326', '6.659459459', '32.25741935', '225.2', '42.31120125', '37.5', '4.97', '14.7', '0.612851556', '1.27', '0.672731835', '1.701343413', '1.503778574');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12WFB 31', '9.12', '12.09', '0.265', '6.525', '0.465', '10.4498', '11.625', '3.20385', '0.912683887', '7.016129032', '39.43320755', '238.4', '43.52284913', '39.4', '5.11', '19.8', '0.543685893', '1.47', '0.573039168', '1.812731301', '1.709094069');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12WFCB 31', '9.12', '12.09', '0.265', '6.525', '0.465', '10.295', '11.625', '3.20385', '0.89916368', '7.016129032', '38.8490566', '238.4', '43.52284913', '39.4', '5.11', '19.8', '0.543685893', '1.47', '0.540302443', '1.817090993', '1.709094069');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12B 31', '9.02', '12.06', '0.27', '6.27', '0.48', '10.1398', '11.58', '3.2562', '0.909671053', '6.53125', '37.55481481', '232.3', '43.136593', '38.5', '5.08', '17.3', '0.569923429', '1.38', '0.63924895', '1.748302194', '1.612991091');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12WF 29.6', '8.7', '12', '0.24', '6.5', '0.456', '10.2942', '11.544', '2.88', '0.833538462', '7.127192982', '42.8925', '228', '41.59304064', '38', '5.12', '17.1', '0.610277778', '1.4', '0.603010152', '1.815438966', '1.611645122');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12B 28.5', '8.42', '12', '0.25', '6.12', '0.462', '10.1018', '11.538', '3', '0.893193136', '6.623376623', '40.4072', '216.2', '40.25627076', '36', '5.07', '15.3', '0.57679776', '1.35', '0.558382782', '1.706953797', '1.565830451');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12B 28.5', '8.41', '12', '0.25', '6.1', '0.4625', '9.9998', '11.5375', '3', '0.886114311', '6.594594595', '39.9992', '216.6', '40.15120125', '36.1', '5.07', '14.2', '0.616072256', '1.3', '0.595581638', '1.703837607', '1.506369211');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12B 28.5', '8.4', '12', '0.25', '6.25', '0.45', '10.1398', '11.55', '3', '0.901315556', '6.944444444', '40.5592', '215.8', '40.15375', '36', '5.07', '15.9', '0.575803361', '1.38', '0.529891448', '1.741006609', '1.597067625');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12B 28', '8.28', '12', '0.245', '6.5', '0.42', '10.1898', '11.58', '2.94', '0.914469231', '7.738095238', '41.59102041', '213.6', '39.2065815', '35.6', '5.08', '16.4', '0.586089939', '1.41', '0.466261419', '1.806489885', '1.6331881');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12WFB 28', '8.23', '12', '0.24', '6.5', '0.42', '10.4498', '11.58', '2.88', '0.918663736', '7.738095238', '43.54083333', '213.5', '39.086136', '35.6', '5.09', '17.5', '0.54925', '1.46', '0.430378965', '1.801126361', '1.687070794');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12WFCB 28', '8.23', '12', '0.24', '6.5', '0.42', '10.295', '11.58', '2.88', '0.905054945', '7.738095238', '42.89583333', '213.5', '39.086136', '35.6', '5.09', '17.5', '0.54925', '1.46', '0.401531857', '1.805513769', '1.687070794');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12CB 28', '8.22', '12', '0.24', '6.5', '0.42', '10.335', '11.58', '2.88', '0.908571429', '7.738095238', '43.0625', '213.4', '39.086136', '35.6', '5.1', '19.2', '0.50061849', '1.53', '0.397775054', '1.804389555', '1.767115341');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12CB 28', '8.22', '12', '0.24', '6.5', '0.42', '10.335', '11.58', '2.88', '0.908571429', '7.738095238', '43.0625', '213.4', '39.086136', '35.6', '5.1', '19.2', '0.50061849', '1.53', '0.397775054', '1.804389555', '1.767115341');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12B 28', '8.15', '12', '0.284', '6', '0.41', '10.36028', '11.59', '3.408', '1.196064846', '7.317073171', '36.47985915', '199.4', '37.35366027', '33.2', '4.95', '12.6', '0.585714286', '1.24', '0.437182092', '1.636869666', '1.483006146');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12B 27.9', '8.15', '12', '0.284', '6', '0.41', '10.36028', '11.59', '3.408', '1.196064846', '7.317073171', '36.47985915', '199.4', '37.35366027', '33.2', '4.95', '12.6', '0.585714286', '1.24', '0.437182092', '1.636869666', '1.483006146');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12B 27.5', '8.04', '12', '0.255', '5', '0.5125', '9.7862', '11.4875', '3.06', '0.973846244', '4.87804878', '38.3772549', '199.6', '37.05375121', '33.3', '4.98', '8.7', '0.613625479', '1.04', '0.655372262', '1.395329315', '1.224997702');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12WFCB 27', '7.97', '11.96', '0.24', '6.5', '0.4', '10.295', '11.56', '2.8704', '0.950307692', '8.125', '42.89583333', '204.1', '37.528736', '34.1', '5.06', '16.6', '0.551455823', '1.44', '0.357401875', '1.798928883', '1.677415971');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12WFB 27', '7.97', '11.96', '0.24', '6.5', '0.4', '10.4498', '11.56', '2.8704', '0.964596923', '8.125', '43.54083333', '204.1', '37.528736', '34.1', '5.06', '16.6', '0.551455823', '1.44', '0.385517204', '1.794349971', '1.677415971');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12B 25', '7.44', '11.88', '0.24', '6.495', '0.36', '10.1898', '11.52', '2.8512', '1.04591224', '9.020833333', '42.4575', '185.1', '34.3735635', '31.2', '4.99', '13.6', '0.604393538', '1.35', '0.329678943', '1.786107285', '1.5845407');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12WFB 25', '7.39', '11.87', '0.24', '6.5', '0.355', '10.4498', '11.515', '2.8488', '1.086869772', '9.154929577', '43.54083333', '183.4', '34.0435985', '30.9', '4.98', '14.5', '0.560298132', '1.4', '0.298424363', '1.777140852', '1.643696895');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12WFCB 25', '7.39', '11.87', '0.24', '6.5', '0.355', '10.295', '11.515', '2.8488', '1.070769231', '9.154929577', '42.89583333', '183.4', '34.0435985', '30.9', '4.98', '14.5', '0.560298132', '1.4', '0.272206188', '1.782213197', '1.643696895');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12B 25', '7.38', '11.87', '0.24', '6.495', '0.355', '10.1898', '11.515', '2.8488', '1.060643398', '9.147887324', '42.4575', '182.8', '33.98792288', '30.8', '4.98', '13.4', '0.604894694', '1.35', '0.320269361', '1.784141438', '1.58268328');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12B 25', '7.37', '11.84', '0.24', '6.24', '0.37', '10.1398', '11.47', '2.8416', '1.054033264', '8.432432432', '42.24916667', '181.4', '33.843286', '30.6', '4.96', '12.6', '0.594570971', '1.31', '0.335679022', '1.716140078', '1.536707711');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12CB 25', '7.36', '11.868', '0.24', '6.5', '0.354', '10.335', '11.514', '2.84832', '1.077966102', '9.18079096', '43.0625', '182.9', '33.96645', '30.8', '4.98', '16.2', '0.500088735', '1.48', '0.267392726', '1.780503468', '1.740124268');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12B 25', '7.35', '12', '0.27', '5', '0.42', '10.28356', '11.58', '3.24', '1.322172', '5.952380952', '38.08725926', '175.5', '32.689353', '29.2', '4.89', '7.3', '0.599315068', '1', '0.398810571', '1.356194164', '1.203120942');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12CB 25', '7.34', '11.924', '0.24', '6', '0.382', '10.335', '11.542', '2.86176', '1.082198953', '7.853403141', '43.0625', '183', '33.927', '30.7', '4.99', '13.8', '0.49826087', '1.37', '0.29907796', '1.645512838', '1.610630402');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10CB 66', '19.43', '10.38', '0.46', '10.12', '0.748', '7.659', '9.632', '4.7748', '0.465422946', '6.764705882', '16.65', '382.5', '81.98835576', '73.7', '4.44', '129.3', '0.499647092', '2.58', '3.321683664', '2.960962904', '2.906757205');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10WFCB 66', '19.41', '10.38', '0.457', '10.117', '0.748', '7.759', '9.632', '4.74366', '0.468563661', '6.762700535', '16.97811816', '382.5', '81.90754746', '73.7', '4.44', '129.2', '0.499589254', '2.58', '3.269662137', '2.957789859', '2.905632952');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10WFB 66', '19.41', '10.38', '0.457', '10.117', '0.748', '7.759', '9.632', '4.74366', '0.468563661', '6.762700535', '16.97811816', '382.5', '81.90754746', '73.7', '4.44', '129.2', '0.499589254', '2.58', '3.269662137', '2.957789859', '2.905632952');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10CB 64', '18.81', '10', '0.791', '10.441', '0.558', '7.859', '9.442', '7.91', '1.067007513', '9.355734767', '9.935524652', '308.8', '70.6173374', '61.8', '4.05', '106.3', '0.497904413', '2.38', '2.960238515', '2.926781245', '2.849636041');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10CB 63', '18.53', '10', '0.787', '9.412', '0.61', '7.755', '9.39', '7.87', '1.063028189', '7.714754098', '9.853875476', '300.4', '69.0781375', '60.1', '4.03', '85.2', '0.497456087', '2.14', '3.172977123', '2.648413954', '2.579885073');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10WFCB 60', '17.66', '10.25', '0.415', '10.075', '0.683', '7.759', '9.567', '4.25375', '0.467937758', '7.375549048', '18.69638554', '343.7', '74.02119563', '67.1', '4.41', '116.5', '0.499630218', '2.57', '2.493091423', '2.936064873', '2.881871365');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10WFB 60', '17.66', '10.25', '0.415', '10.075', '0.683', '7.759', '9.567', '4.25375', '0.467937758', '7.375549048', '18.69638554', '343.7', '74.02119563', '67.1', '4.41', '116.5', '0.499630218', '2.57', '2.493091423', '2.936064873', '2.881871365');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10CB 60', '17.65', '10.25', '0.415', '10.075', '0.683', '7.659', '9.567', '4.25375', '0.461906855', '7.375549048', '18.45542169', '343.5', '74.02119563', '67', '4.41', '116.5', '0.499630218', '2.57', '2.529604147', '2.938802789', '2.884021213');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10CB 59', '17.34', '10', '0.644', '10.294', '0.558', '7.859', '9.442', '6.44', '0.881119461', '9.224014337', '12.20341615', '296.5', '66.9423374', '59.3', '4.13', '101.7', '0.498751818', '2.42', '2.195017676', '2.913547201', '2.845444571');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10CB 56', '16.47', '10', '0.581', '9.206', '0.61', '7.755', '9.39', '5.81', '0.80233757', '7.545901639', '13.34767642', '283.2', '63.9281375', '56.6', '4.15', '79.5', '0.498878022', '2.2', '2.162367194', '2.625388367', '2.567988929');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10CB 54', '15.89', '10.12', '0.37', '10.03', '0.618', '7.659', '9.502', '3.7444', '0.457177013', '8.114886731', '20.7', '305.6', '66.19913176', '60.4', '4.39', '104', '0.499662422', '2.56', '1.876649223', '2.916760975', '2.860162548');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10WFCB 54', '15.88', '10.12', '0.368', '10.028', '0.618', '7.759', '9.502', '3.72416', '0.460734539', '8.113268608', '21.08423913', '305.7', '66.14792456', '60.4', '4.39', '103.9', '0.4998442', '2.56', '1.842569067', '2.913825242', '2.858787139');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10WFB 54', '15.88', '10.12', '0.368', '10.028', '0.618', '7.759', '9.502', '3.72416', '0.460734539', '8.113268608', '21.08423913', '305.7', '66.14792456', '60.4', '4.39', '103.9', '0.4998442', '2.56', '1.842569067', '2.913825242', '2.858787139');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10CB 54', '15.87', '10', '0.497', '10.147', '0.558', '7.859', '9.442', '4.97', '0.689845472', '9.092293907', '15.81287726', '284.3', '63.2673374', '56.9', '4.23', '97.3', '0.49929026', '2.48', '1.680950379', '2.901167184', '2.841301281');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10G 50', '14.62', '10.12', '0.36', '9.04', '0.626', '7.7122', '9.494', '3.6432', '0.490611835', '7.220447284', '21.42277778', '277.5', '60.70986543', '54.8', '4.36', '66.4', '0.58040387', '2.13', '1.944245377', '2.624412383', '2.398299276');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10G 50', '14.51', '10.12', '0.36', '9.04', '0.626', '7.7122', '9.494', '3.6432', '0.490611835', '7.220447284', '21.42277778', '275.5', '60.70986543', '54.4', '4.36', '66.4', '0.58040387', '2.14', '1.944245377', '2.624412383', '2.407100404');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10CB 49', '14.41', '10', '0.375', '9', '0.61', '7.755', '9.39', '3.75', '0.529713115', '7.37704918', '20.68', '266', '58.7781375', '53.2', '4.3', '74.2', '0.499427224', '2.27', '1.609735177', '2.603883979', '2.558962578');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10WFB 49', '14.4', '10', '0.34', '10', '0.558', '7.759', '9.442', '3.4', '0.472770609', '8.960573477', '22.82058824', '272.9', '59.39502376', '54.6', '4.35', '93', '0.5', '2.54', '1.377226975', '2.894810624', '2.83571221');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10WFCB 49', '14.4', '10', '0.34', '10', '0.558', '7.759', '9.442', '3.4', '0.472770609', '8.960573477', '22.82058824', '272.9', '59.39502376', '54.6', '4.35', '93', '0.5', '2.54', '1.377226975', '2.894810624', '2.83571221');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10CB 49', '14.4', '10', '0.35', '10', '0.558', '7.859', '9.442', '3.5', '0.492948029', '8.960573477', '22.45428571', '272', '59.5923374', '54.4', '4.35', '93', '0.5', '2.54', '1.368661836', '2.889725216', '2.840920134');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10CB 49', '14.38', '10', '0.34', '10', '0.558', '7.659', '9.442', '3.4', '0.466677419', '8.960573477', '22.52647059', '272.7', '59.39502376', '54.5', '4.35', '93', '0.5', '2.54', '1.403164118', '2.897605698', '2.838312588');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10G 45', '13.25', '10.09', '0.33', '9.01', '0.565', '7.8042', '9.525', '3.3297', '0.50590514', '7.973451327', '23.64909091', '252.1', '55.01688476', '50', '4.36', '58.3', '0.590708228', '2.1', '1.469138463', '2.604301132', '2.35649634');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10WFB 45', '13.24', '10.12', '0.35', '8.022', '0.618', '7.759', '9.502', '3.542', '0.547775575', '6.490291262', '22.16857143', '248.6', '54.01305459', '49.1', '4.33', '53.2', '0.499739375', '2', '1.497926036', '2.320293084', '2.268859408');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10WFCB 45', '13.24', '10.12', '0.35', '8.022', '0.618', '7.759', '9.502', '3.542', '0.547775575', '6.490291262', '22.16857143', '248.6', '54.01305459', '49.1', '4.33', '53.2', '0.499739375', '2', '1.497926036', '2.320293084', '2.268859408');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10CB 45', '13.22', '10.12', '0.35', '8.02', '0.618', '7.659', '9.502', '3.542', '0.540850544', '6.488673139', '21.88285714', '248.3', '54.00131012', '49.1', '4.33', '53.2', '0.499365692', '2.01', '1.52703556', '2.322243035', '2.268859408');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10G 44.5', '13.14', '10', '0.32', '9', '0.566', '7.7122', '9.434', '3.2', '0.484472713', '7.950530035', '24.100625', '246.7', '54.25332143', '49.3', '4.33', '58.2', '0.590798969', '2.1', '1.458114693', '2.605503169', '2.359777038');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10G 44.5', '13.03', '10', '0.32', '9', '0.566', '7.7122', '9.434', '3.2', '0.484472713', '7.950530035', '24.100625', '244.7', '54.25332143', '48.9', '4.33', '58.2', '0.590798969', '2.11', '1.458114693', '2.605503169', '2.369408821');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10G 44', '12.95', '10', '0.31', '9', '0.5665', '7.6802', '9.4335', '3.1', '0.466973031', '7.943512798', '24.77483871', '244.2', '54.07818883', '48.8', '4.34', '57.3', '0.600608639', '2.1', '1.47286502', '2.608512152', '2.353362501');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10G 44', '12.95', '10', '0.3', '9', '0.572', '7.5182', '9.428', '3', '0.438123543', '7.867132867', '25.06066667', '244.3', '54.2029456', '48.9', '4.34', '53.6', '0.648302239', '2.03', '1.637650953', '2.615689724', '2.273122048');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10CB 42', '12.35', '10', '0.644', '8.324', '0.381', '8.513', '9.619', '6.44', '1.728667446', '10.92388451', '13.2189441', '190.4', '44.24596352', '38.1', '3.93', '36.8', '0.497613467', '1.73', '1.203429644', '2.213046115', '2.155318149');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10G 42', '12.34', '10', '0.32', '9', '0.52', '7.8042', '9.48', '3.2', '0.533620513', '8.653846154', '24.388125', '230.9', '50.69413951', '46.2', '4.33', '52.6', '0.600570342', '2.07', '1.192074637', '2.591426571', '2.32306336');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10G 41.5', '12.23', '9.91', '0.31', '8.99', '0.521', '7.7122', '9.389', '3.0721', '0.510437488', '8.627639155', '24.87806452', '225.8', '49.97602618', '45.6', '4.3', '52.6', '0.599721762', '2.07', '1.181803204', '2.592845543', '2.327046826');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10G 41.5', '12.12', '9.91', '0.31', '8.99', '0.521', '7.7122', '9.389', '3.0721', '0.510437488', '8.627639155', '24.87806452', '223.8', '49.97602618', '45.2', '4.3', '52.6', '0.599721762', '2.08', '1.181803204', '2.592845543', '2.337320813');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10CB 41', '12.06', '10', '0.33', '8', '0.558', '7.659', '9.442', '3.3', '0.566189516', '7.168458781', '23.20909091', '222.3', '48.66043812', '44.5', '4.29', '47.7', '0.499119497', '1.99', '1.157236409', '2.306144723', '2.249552765');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10WFCB 41', '12.06', '10', '0.328', '8', '0.558', '7.759', '9.442', '3.28', '0.570105735', '7.168458781', '23.6554878', '222.4', '48.62097539', '44.5', '4.29', '47.7', '0.499119497', '1.99', '1.129031596', '2.303897735', '2.249552765');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10WFB 41', '12.06', '10', '0.328', '8', '0.558', '7.759', '9.442', '3.28', '0.570105735', '7.168458781', '23.6554878', '222.4', '48.62097539', '44.5', '4.29', '47.7', '0.499119497', '1.99', '1.129031596', '2.303897735', '2.249552765');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10WFB 39', '11.48', '9.94', '0.318', '7.99', '0.528', '7.759', '9.412', '3.16092', '0.584860337', '7.566287879', '24.39937107', '209.7', '45.98116639', '42.2', '4.27', '44.9', '0.49985803', '1.98', '0.971697557', '2.295514423', '2.237653858');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10WFCB 39', '11.48', '9.94', '0.318', '7.99', '0.528', '7.759', '9.412', '3.16092', '0.584860337', '7.566287879', '24.39937107', '209.7', '45.98116639', '42.2', '4.27', '44.9', '0.49985803', '1.98', '0.971697557', '2.295514423', '2.237653858');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10WFCB 37', '10.88', '9.88', '0.306', '7.978', '0.498', '7.759', '9.382', '3.02328', '0.597590663', '8.010040161', '25.35620915', '196.9', '43.31289619', '39.9', '4.25', '42.2', '0.499364588', '1.97', '0.827709827', '2.286778968', '2.227421945');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10WFB 37', '10.88', '9.88', '0.306', '7.978', '0.498', '7.759', '9.382', '3.02328', '0.597590663', '8.010040161', '25.35620915', '196.9', '43.31289619', '39.9', '4.25', '42.2', '0.499364588', '1.97', '0.827709827', '2.286778968', '2.227421945');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10CB 37', '10.85', '9.88', '0.305', '7.975', '0.498', '7.659', '9.382', '3.0134', '0.588182196', '8.007028112', '25.11147541', '196.6', '43.27914812', '39.8', '4.26', '42.1', '0.499986267', '1.97', '0.848090596', '2.288909965', '2.227574452');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10CB 36', '10.58', '10', '0.467', '8.147', '0.381', '8.513', '9.619', '4.67', '1.280786738', '10.69160105', '18.22912206', '175.6', '39.82096352', '35.1', '4.07', '34.4', '0.499089503', '1.8', '0.66291455', '2.219575232', '2.171079005');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10CB 33', '9.72', '9.75', '0.295', '7.965', '0.433', '7.659', '9.317', '2.87625', '0.655119323', '9.197459584', '25.96271186', '170.8', '37.95364125', '35', '4.19', '36.5', '0.499540985', '1.94', '0.601470791', '2.269870028', '2.20412114');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10WFCB 33', '9.71', '9.75', '0.292', '7.964', '0.433', '7.759', '9.317', '2.847', '0.657006181', '9.19630485', '26.57191781', '170.9', '37.89041289', '35', '4.2', '36.5', '0.499352858', '1.94', '0.579712138', '2.267308506', '2.20412114');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10WFB 33', '9.71', '9.75', '0.292', '7.964', '0.433', '7.759', '9.317', '2.847', '0.657006181', '9.19630485', '26.57191781', '170.9', '37.89041289', '35', '4.2', '36.5', '0.499352858', '1.94', '0.579712138', '2.267308506', '2.20412114');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10CB 31', '9.11', '10', '0.32', '8', '0.381', '8.513', '9.619', '3.2', '0.893753281', '10.49868766', '26.603125', '163.4', '36.14596352', '32.7', '4.23', '32.5', '0.500184615', '1.89', '0.422900519', '2.228287982', '2.186340344');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10CB 30', '8.82', '10.228', '0.298', '6.068', '0.495', '8.513', '9.733', '3.047944', '0.844594262', '6.129292929', '28.56711409', '163.2', '35.59250076', '31.9', '4.3', '18.5', '0.498183043', '1.45', '0.595856484', '1.706153708', '1.679959788');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10WF 29.1', '8.55', '9.875', '0.425', '5.935', '0.389', '8.4704', '9.486', '4.196875', '1.559274315', '7.628534704', '19.93035294', '131.5', '30.6932327', '26.6', '3.92', '11.2', '0.605079588', '1.14', '0.596204152', '1.590982837', '1.413171126');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10B 29', '8.61', '10.25', '0.28', '5.79', '0.515', '8.3634', '9.735', '2.87', '0.785335278', '5.621359223', '29.86928571', '160.7', '34.95460783', '31.4', '4.32', '14.9', '0.559081866', '1.32', '0.683993334', '1.637784925', '1.519781978');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10CB 29', '8.54', '10.24', '0.279', '5.789', '0.51', '8.495', '9.73', '2.85696', '0.80277504', '5.675490196', '30.44802867', '159.3', '34.6560906', '31.1', '4.32', '16.5', '0.499707232', '1.39', '0.597920254', '1.633120765', '1.606583121');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10WFCB 29', '8.53', '10.22', '0.289', '5.799', '0.5', '8.455', '9.72', '2.95358', '0.842729781', '5.799', '29.25605536', '157.3', '34.3249969', '30.8', '4.29', '15.2', '0.534569894', '1.34', '0.583537658', '1.632011519', '1.548690272');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10WFB 29', '8.53', '10.22', '0.289', '5.799', '0.5', '8.5934', '9.72', '2.95358', '0.856524435', '5.799', '29.7349481', '157.3', '34.3249969', '30.8', '4.29', '15.2', '0.534569894', '1.34', '0.608436069', '1.628112668', '1.548690272');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10B 28.5', '8.41', '10.19', '0.285', '5.785', '0.4945', '8.3454', '9.6955', '2.90415', '0.83142362', '5.84934277', '29.28210526', '154.1', '33.74362279', '30.2', '4.28', '14.2', '0.561832419', '1.3', '0.624782815', '1.630394912', '1.509770058');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10B 28.5', '8.34', '10', '0.39', '5.99', '0.396', '8.3294', '9.604', '3.9', '1.369481965', '7.563131313', '21.3574359', '134.6', '31.0181952', '26.9', '4.02', '12.1', '0.586150361', '1.21', '0.530212452', '1.630065264', '1.469696375');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10B 27.5', '8.05', '10', '0.34', '5.94', '0.415', '8.1934', '9.585', '3.4', '1.130078293', '7.156626506', '24.09823529', '134.6', '30.71837333', '26.9', '4.09', '11.7', '0.619498592', '1.2', '0.530961646', '1.642101341', '1.443769462');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10B 26', '7.68', '10.09', '0.27', '5.77', '0.4445', '8.3454', '9.6455', '2.7243', '0.878543648', '6.490438695', '30.90888889', '137.9', '30.42884742', '27.3', '4.24', '12.5', '0.569256431', '1.28', '0.473809751', '1.617271326', '1.486007693');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10B 26', '7.65', '10.12', '0.26', '5.77', '0.45', '8.3634', '9.67', '2.6312', '0.83746736', '6.411111111', '32.16692308', '139.5', '30.60941108', '27.6', '4.27', '12.7', '0.567224507', '1.29', '0.478951276', '1.621427905', '1.49157659');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10CB 26', '7.65', '10.12', '0.26', '5.77', '0.45', '8.495', '9.67', '2.6312', '0.850645099', '6.411111111', '32.67307692', '139.7', '30.633701', '27.6', '4.27', '14.4', '0.500260503', '1.37', '0.423664523', '1.617765178', '1.588272236');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10WFCB 26', '7.65', '10.12', '0.259', '5.769', '0.45', '8.455', '9.67', '2.62108', '0.843529593', '6.41', '32.64478764', '139.7', '30.6080974', '27.6', '4.27', '13.4', '0.537313913', '1.32', '0.426375901', '1.618896925', '1.532131697');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10WFB 26', '7.65', '10.12', '0.259', '5.769', '0.45', '8.5934', '9.67', '2.62108', '0.857337339', '6.41', '33.17915058', '139.7', '30.6080974', '27.6', '4.27', '13.4', '0.537313913', '1.32', '0.447835307', '1.614989992', '1.532131697');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10CB 26', '7.64', '10.098', '0.259', '6.029', '0.43', '8.513', '9.668', '2.615382', '0.850488916', '7.010465116', '32.86872587', '139.5', '30.58980666', '27.6', '4.27', '15.7', '0.500176645', '1.43', '0.392495297', '1.688346253', '1.658244663');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10B 26', '7.61', '10.09', '0.27', '5.77', '0.4445', '8.3454', '9.6455', '2.7243', '0.878543648', '6.490438695', '30.90888889', '136.7', '30.42884742', '27.1', '4.24', '12.5', '0.569256431', '1.28', '0.473809751', '1.617271326', '1.491481037');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10WFB 25', '7.35', '10.08', '0.252', '5.762', '0.43', '8.5934', '9.65', '2.54016', '0.874025007', '6.7', '34.10079365', '133.2', '29.2649482', '26.4', '4.26', '12.7', '0.539763173', '1.31', '0.396867979', '1.609574315', '1.523521389');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10WFCB 25', '7.35', '10.08', '0.252', '5.762', '0.43', '8.455', '9.65', '2.54016', '0.8599485', '6.7', '33.5515873', '133.2', '29.2649482', '26.4', '4.26', '12.7', '0.539763173', '1.31', '0.376358524', '1.613551163', '1.523521389');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10B 25', '7.35', '9.9', '0.35', '5.86', '0.375', '9.025', '9.525', '3.465', '1.437428896', '7.813333333', '25.78571429', '117', '28.25690625', '23.6', '3.99', '9.84', '0.639069029', '1.16', '0.337192331', '1.564550919', '1.409155896');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10B 24.5', '7.15', '10', '0.25', '5.85', '0.415', '8.1934', '9.585', '2.5', '0.843723612', '7.048192771', '32.7736', '127.1', '28.46837333', '25.4', '4.22', '11.1', '0.623751309', '1.24', '0.43027907', '1.642593611', '1.447190463');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10B 23.5', '6.96', '10', '0.25', '5.75', '0.3995', '8.3454', '9.6005', '2.5', '0.908244001', '7.19649562', '33.3816', '123.2', '27.32066317', '24.6', '4.21', '10.9', '0.580647518', '1.25', '0.356293483', '1.604771639', '1.45840325');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10B 23.5', '6.94', '10', '0.25', '5.85', '0.396', '8.3294', '9.604', '2.5', '0.898881982', '7.386363636', '33.3176', '122.9', '27.5181952', '24.6', '4.21', '11.2', '0.589879788', '1.27', '0.360249438', '1.633625947', '1.478606243');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10B 23.5', '6.89', '10', '0.25', '5.75', '0.3995', '8.3454', '9.6005', '2.5', '0.908244001', '7.19649562', '33.3816', '121.9', '27.32066317', '24.4', '4.21', '10.9', '0.580647518', '1.26', '0.356293483', '1.604771639', '1.464368115');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10WFB 23', '6.77', '10', '0.24', '5.75', '0.39', '8.5934', '9.61', '2.4', '0.919694983', '7.371794872', '35.80583333', '120.6', '26.650929', '24.1', '4.22', '11.3', '0.546774751', '1.29', '0.308763609', '1.598119561', '1.500988609');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10WFCB 23', '6.77', '10', '0.24', '5.75', '0.39', '8.455', '9.61', '2.4', '0.904882943', '7.371794872', '35.22916667', '120.6', '26.650929', '24.1', '4.22', '11.3', '0.546774751', '1.29', '0.290027604', '1.602283616', '1.500988609');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10CB 23', '6.76', '10', '0.23', '6', '0.381', '8.513', '9.619', '2.3', '0.856513561', '7.874015748', '37.01304348', '122.2', '26.89612103', '24.4', '4.25', '13.7', '0.500583942', '1.43', '0.274857469', '1.674865693', '1.643294247');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10CB 23', '6.76', '10', '0.24', '5.75', '0.39', '8.495', '9.61', '2.4', '0.90916388', '7.371794872', '35.39583333', '120.5', '26.650929', '24.1', '4.22', '12.4', '0.498270539', '1.35', '0.28717203', '1.601090688', '1.572349248');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10B 23', '6.76', '10', '0.24', '5.75', '0.39', '8.3634', '9.61', '2.4', '0.895079599', '7.371794872', '34.8475', '120.3', '26.62663908', '24.1', '4.22', '10.6', '0.582882518', '1.25', '0.330645066', '1.604983', '1.453754618');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10WF 22.9', '6.73', '9.875', '0.24', '5.75', '0.389', '8.4704', '9.486', '2.37', '0.908861518', '7.390745501', '35.29333333', '116.6', '26.18313504', '23.6', '4.16', '9.9', '0.622496186', '1.22', '0.343298856', '1.599721577', '1.410548938');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10B 22.5', '6.65', '10', '0.2', '5.8', '0.415', '8.1934', '9.585', '2', '0.680797673', '6.987951807', '40.967', '122.8', '27.21837333', '24.6', '4.27', '10.8', '0.624779938', '1.27', '0.391963102', '1.643406414', '1.450525557');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10B 22.4', '6.54', '10', '0.252', '5.5', '0.379', '8.51116', '9.621', '2.52', '1.028933711', '7.255936675', '33.77444444', '113.6', '25.41131972', '22.7', '4.17', '9', '0.583853009', '1.17', '0.29970761', '1.519903141', '1.381031026');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10B 22.25', '6.54', '10', '0.252', '5.5', '0.379', '8.51116', '9.621', '2.52', '1.028933711', '7.255936675', '33.77444444', '113.6', '25.41131972', '22.7', '4.17', '9', '0.583853009', '1.17', '0.29970761', '1.519903141', '1.381031026');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10B 22', '6.52', '10', '0.232', '4.67', '0.462', '7.96236', '9.538', '2.32', '0.856191551', '5.054112554', '34.32051724', '113.9', '25.30566534', '22.8', '4.18', '6.4', '0.612676746', '0.99', '0.450267267', '1.316468845', '1.157007635');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10B 22', '6.42', '10', '0.25', '5', '0.4', '8.357', '9.6', '2.5', '1.044625', '6.25', '33.428', '110.3', '24.454375', '22.1', '4.15', '6.87', '0.606501698', '1.03', '0.32965061', '1.384626325', '1.22152638');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10B 21', '6.28', '9.9', '0.24', '5.74', '0.3495', '8.3454', '9.5505', '2.376', '0.998387941', '8.211731044', '34.7725', '108.1', '24.21501317', '21.8', '4.15', '9.3', '0.592268538', '1.22', '0.259776896', '1.589107754', '1.427286914');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10B 21', '6.24', '9.91', '0.24', '5.75', '0.345', '8.3634', '9.565', '2.3784', '1.011829112', '8.333333333', '34.8475', '107.5', '24.05078283', '21.7', '4.15', '9.2', '0.594091797', '1.21', '0.253371178', '1.590150333', '1.423939495');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10WFB 21', '6.19', '9.9', '0.24', '5.75', '0.34', '8.5934', '9.56', '2.376', '1.054944246', '8.455882353', '35.80583333', '106.3', '23.790304', '21.5', '4.14', '9.7', '0.555302298', '1.25', '0.229457174', '1.580593253', '1.468522434');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10WFCB 21', '6.19', '9.9', '0.24', '5.75', '0.34', '8.455', '9.56', '2.376', '1.037953964', '8.455882353', '35.22916667', '106.3', '23.790304', '21.5', '4.14', '9.7', '0.555302298', '1.25', '0.212204349', '1.585287888', '1.468522434');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10CB 21', '6.18', '9.9', '0.24', '5.75', '0.34', '8.495', '9.56', '2.376', '1.04286445', '8.455882353', '35.39583333', '106.3', '23.790304', '21.5', '4.15', '10.8', '0.498743731', '1.32', '0.20975488', '1.583942435', '1.549553574');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10CB 21', '6.18', '9.9', '0.24', '5.74', '0.375', '8.425', '9.525', '2.376', '0.939372822', '7.653333333', '35.10416667', '107.5', '25.5259125', '21.7', '4.17', '9.3', '0.635481263', '1.22', '0.261178325', '1.594466337', '1.428660711');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10CB 21', '6.17', '9.902', '0.23', '6', '0.332', '8.513', '9.57', '2.27746', '0.982926707', '9.036144578', '37.01304348', '107.6', '23.97052703', '21.7', '4.18', '12', '0.498', '1.39', '0.199334391', '1.657668483', '1.626678502');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9CB 48', '14.11', '9.242', '0.398', '9.082', '0.591', '6.935', '8.651', '3.678316', '0.514233729', '7.68358714', '17.42462312', '221.1', '52.89779196', '47.8', '3.96', '73.8', '0.499912925', '2.29', '1.548907633', '2.638144867', '2.584237301');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9G 43.5', '12.73', '9.12', '0.35', '8.54', '0.5755', '6.8342', '8.5445', '3.192', '0.48669012', '7.4196351', '19.52628571', '195.4', '47.47157457', '42.8', '3.92', '51.3', '0.582264522', '2.01', '1.467494206', '2.483337184', '2.262898775');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9G 43.5', '12.62', '9.12', '0.35', '8.54', '0.5755', '6.8342', '8.5445', '3.192', '0.48669012', '7.4196351', '19.52628571', '193.8', '47.47157457', '42.5', '3.92', '51.3', '0.582264522', '2.02', '1.467494206', '2.483337184', '2.270871432');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9CB 43', '12.65', '9.122', '0.357', '9.041', '0.531', '6.935', '8.591', '3.256554', '0.515707789', '8.513182674', '19.42577031', '195.5', '47.04142496', '42.9', '3.93', '65.4', '0.500017189', '2.28', '1.13140376', '2.617069209', '2.558981167');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9G 38.5', '11.35', '9', '0.31', '8.5', '0.5155', '6.8342', '8.4845', '2.79', '0.483505905', '8.24442289', '22.04580645', '171.9', '42.01923057', '38.2', '3.89', '44.4', '0.59418438', '1.98', '1.075925277', '2.463597944', '2.220536584');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9G 38.5', '11.23', '9', '0.31', '8.5', '0.5155', '6.8342', '8.4845', '2.79', '0.483505905', '8.24442289', '22.04580645', '170.3', '42.01923057', '37.9', '3.89', '44.4', '0.59418438', '1.99', '1.075925277', '2.463597944', '2.229307665');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9G 38', '11.22', '9', '0.33', '8.5', '0.5195', '6.7982', '8.4805', '2.97', '0.508046425', '8.180943215', '20.60060606', '170.9', '42.58371041', '38', '3.9', '44.1', '0.602868363', '1.98', '1.14071493', '2.461691329', '2.218315061');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9G 38', '11.18', '9', '0.29', '8.5', '0.522', '6.6482', '8.478', '2.61', '0.434522876', '8.141762452', '22.92482759', '169.8', '42.02523226', '37.7', '3.9', '40.7', '0.656374386', '1.91', '1.216368306', '2.473669944', '2.139233731');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9CB 38', '11.17', '9', '0.316', '9', '0.47', '6.935', '8.53', '2.844', '0.51807565', '9.574468085', '21.94620253', '170.4', '41.2140244', '37.9', '3.91', '57.1', '0.500043783', '2.26', '0.793783555', '2.595649041', '2.53488328');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9G 36', '10.66', '8.94', '0.29', '8.48', '0.4855', '6.8342', '8.4545', '2.5926', '0.481393914', '8.733264676', '23.5662069', '160.5', '39.33226257', '35.9', '3.88', '41', '0.601743889', '1.96', '0.910530709', '2.45377189', '2.197220642');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9G 36', '10.55', '8.94', '0.29', '8.48', '0.4855', '6.8342', '8.4545', '2.5926', '0.481393914', '8.733264676', '23.5662069', '158.9', '39.33226257', '35.5', '3.88', '41', '0.601743889', '1.97', '0.910530709', '2.45377189', '2.209564676');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9CB 35', '10.29', '9.192', '0.335', '6.556', '0.566', '6.935', '8.626', '3.07932', '0.626088745', '5.791519435', '20.70149254', '155.4', '37.4491652', '33.8', '3.89', '26.6', '0.499655167', '1.61', '0.994539991', '1.890930503', '1.842350248');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9CB 32', '9.4', '9.096', '0.307', '6.528', '0.518', '6.935', '8.578', '2.792472', '0.62961481', '6.301158301', '22.58957655', '140.5', '33.99249761', '30.9', '3.87', '24', '0.500354384', '1.6', '0.770542119', '1.877226589', '1.825174549');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9CB 29', '8.53', '9', '0.279', '6.5', '0.47', '6.935', '8.53', '2.511', '0.633343699', '6.914893617', '24.85663082', '126', '30.5903611', '28', '3.84', '21.5', '0.500285853', '1.59', '0.583714333', '1.863475973', '1.809671438');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9B 25', '7.34', '9', '0.38', '5.38', '0.3865', '7.4232', '8.6135', '3.42', '1.356572423', '6.959896507', '19.53473684', '95.5', '24.320605', '21.2', '3.61', '8.8', '0.56994429', '1.09', '0.43409951', '1.468979196', '1.337051812');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9B 24', '7.04', '9', '0.365', '5.555', '0.362', '7.4154', '8.638', '3.285', '1.345968243', '7.672651934', '20.31616438', '92.1', '23.59646967', '20.5', '3.62', '8.8', '0.58762037', '1.12', '0.387072428', '1.516301026', '1.361620269');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9B 23', '6.76', '9', '0.31', '5.5', '0.382', '7.30212', '8.618', '2.79', '1.077418943', '7.19895288', '23.55522581', '92.4', '23.31797232', '20.5', '3.7', '8.5', '0.623090686', '1.12', '0.380502073', '1.527068808', '1.336659469');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9B 23', '6.76', '9', '0.316', '5.316', '0.3865', '7.4232', '8.6135', '2.844', '1.141678372', '6.877102199', '23.49113924', '91.6', '23.024605', '20.4', '3.68', '8.4', '0.576028383', '1.12', '0.355651898', '1.468322062', '1.331678507');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9B 23', '6.75', '9.12', '0.26', '5.25', '0.41', '7.4534', '8.71', '2.3712', '0.900294541', '6.402439024', '28.66692308', '99.2', '23.20599867', '21.8', '3.83', '10.1', '0.489507271', '1.22', '0.35242667', '1.472040096', '1.42045186');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9B 22', '6.51', '9.06', '0.26', '5.51', '0.3895', '7.4354', '8.6705', '2.3556', '0.90077977', '7.073170732', '28.59769231', '93.9', '23.04453975', '20.7', '3.8', '9.42', '0.576408146', '1.2', '0.325783172', '1.542987287', '1.40458282');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9B 22', '6.45', '9.06', '0.26', '5.51', '0.3895', '7.4354', '8.6705', '2.3556', '0.90077977', '7.073170732', '28.59769231', '92.9', '23.04453975', '20.5', '3.8', '9.42', '0.576408146', '1.21', '0.325783172', '1.542987287', '1.411417813');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9B 21', '6.22', '9', '0.25', '5.44', '0.382', '7.30212', '8.618', '2.25', '0.878469549', '7.120418848', '29.20848', '88.8', '22.10297232', '19.7', '3.78', '8.2', '0.624978336', '1.15', '0.326413958', '1.526591195', '1.339251249');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9B 21', '6.17', '9', '0.25', '5.25', '0.3865', '7.4232', '8.6135', '2.25', '0.914581408', '6.791720569', '29.6928', '87.6', '21.688105', '19.5', '3.77', '8.1', '0.575388455', '1.14', '0.297751743', '1.468287434', '1.337519231');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9B 20.5', '6.09', '9', '0.25', '5.5', '0.3595', '7.4354', '8.6405', '2.25', '0.940118852', '7.649513213', '29.7416', '86.5', '21.34938075', '19.2', '3.77', '8.54', '0.58364376', '1.18', '0.2671854', '1.533862245', '1.386221915');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9B 20.5', '6.02', '9', '0.25', '5.5', '0.3595', '7.4354', '8.6405', '2.25', '0.940118852', '7.649513213', '29.7416', '85.5', '21.34938075', '19', '3.77', '8.53', '0.584327985', '1.19', '0.2671854', '1.533862245', '1.392682616');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9B 20.5', '6.02', '9', '0.234', '5.234', '0.3865', '7.4232', '8.6135', '2.106', '0.858665082', '6.771021992', '31.72307692', '86.6', '21.364105', '19.2', '3.79', '8', '0.577270574', '1.15', '0.28671853', '1.468384786', '1.339581713');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9B 20.5', '6.01', '9', '0.25', '5.44', '0.362', '7.4154', '8.638', '2.25', '0.941384669', '7.513812155', '29.6616', '85.1', '21.26771967', '18.9', '3.76', '8.2', '0.592256957', '1.17', '0.272127031', '1.517621448', '1.368887085');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9B 20', '6.01', '9', '0.25', '5.44', '0.362', '7.4154', '8.638', '2.25', '0.941384669', '7.513812155', '29.6616', '85.1', '21.26771967', '18.9', '3.76', '8.2', '0.592256957', '1.17', '0.272127031', '1.517621448', '1.368887085');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9B 20', '5.88', '9', '0.218', '5.218', '0.3865', '7.4232', '8.6135', '1.962', '0.802405843', '6.750323415', '34.05137615', '85.6', '21.040105', '19', '3.82', '7.9', '0.579233118', '1.16', '0.276721056', '1.468525516', '1.338170884');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9B 20', '5.86', '9', '0.235', '5.5', '0.3475', '7.4534', '8.6525', '2.115', '0.916441596', '7.913669065', '31.71659574', '84.1', '20.56704413', '18.7', '3.79', '8.26', '0.583286042', '1.19', '0.240472393', '1.534648134', '1.382372312');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9B 19', '5.68', '9', '0.19', '5.38', '0.382', '7.30212', '8.618', '1.71', '0.675082621', '7.041884817', '38.43221053', '85.1', '20.88797232', '18.9', '3.87', '7.9', '0.627482839', '1.18', '0.287792892', '1.526657117', '1.342056781');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8G 37', '10.77', '8.12', '0.33', '8.03', '0.5255', '5.9542', '7.5945', '2.6796', '0.465638726', '7.640342531', '18.0430303', '131.1', '36.1034751', '32.3', '3.49', '38.7', '0.58590492', '1.9', '1.074548826', '2.341716068', '2.132989987');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8G 36.5', '10.81', '8.12', '0.31', '8.02', '0.5305', '5.9442', '7.5895', '2.5172', '0.433107147', '7.558906692', '19.17483871', '132.6', '36.08594353', '32.6', '3.5', '39', '0.58473978', '1.9', '1.07432463', '2.343401809', '2.13066459');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8CB 36', '10.58', '8.198', '0.336', '8.046', '0.499', '6.175', '7.699', '2.754528', '0.516768063', '8.062124248', '18.37797619', '131.3', '35.26569085', '32', '3.52', '43.4', '0.499079412', '2.02', '0.833342636', '2.333010048', '2.284925464');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8WF 35', '10.3', '8.12', '0.315', '8.027', '0.493', '6.209', '7.627', '2.5578', '0.494233332', '8.140973631', '19.71111111', '126.5', '34.19031003', '31.1', '3.5', '42.5', '0.499961465', '2.03', '0.768527473', '2.328208476', '2.282843533');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8WF 35', '10.3', '8.12', '0.315', '8.027', '0.493', '6.209', '7.627', '2.5578', '0.494233332', '8.140973631', '19.71111111', '126.5', '34.19031003', '31.1', '3.5', '42.5', '0.499961465', '2.03', '0.768527473', '2.328208476', '2.282843533');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8CB 35', '10.28', '8.182', '0.315', '8.025', '0.491', '6.175', '7.691', '2.57733', '0.493652093', '8.17209776', '19.6031746', '128.2', '34.38705503', '31.3', '3.53', '42.3', '0.499913658', '2.03', '0.777522255', '2.328471666', '2.279682801');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8CB 33', '9.7', '8.124', '0.3', '8.01', '0.462', '6.175', '7.662', '2.4372', '0.500591793', '8.668831169', '20.58333333', '119.8', '32.24215044', '29.5', '3.51', '39.6', '0.499646779', '2.02', '0.654649092', '2.318976003', '2.267736869');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8WF 33', '9.7', '8.06', '0.3', '8.012', '0.463', '6.209', '7.597', '2.418', '0.502135566', '8.652267819', '20.69666667', '117.9', '31.99854363', '29.3', '3.49', '39.7', '0.499841211', '2.02', '0.642847358', '2.318381649', '2.268650047');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8WF 33', '9.7', '8.06', '0.3', '8.012', '0.463', '6.209', '7.597', '2.418', '0.502135566', '8.652267819', '20.69666667', '117.9', '31.99854363', '29.3', '3.49', '39.7', '0.499841211', '2.02', '0.642847358', '2.318381649', '2.268650047');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8G 33', '9.69', '8', '0.29', '8', '0.4705', '5.9442', '7.5295', '2.32', '0.457975027', '8.501594049', '20.49724138', '116.1', '31.88747153', '29', '3.46', '33.6', '0.597460317', '1.86', '0.787196282', '2.325784603', '2.088520347');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8G 33', '9.57', '8', '0.3', '8', '0.4655', '5.9542', '7.5345', '2.4', '0.479661654', '8.592910849', '19.84733333', '114.2', '31.7401671', '28.6', '3.45', '33.2', '0.598232932', '1.86', '0.777527412', '2.322404765', '2.091212885');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8G 32.5', '9.54', '8', '0.29', '8', '0.4685', '5.9222', '7.5315', '2.32', '0.458227855', '8.537886873', '20.42137931', '114.4', '31.76743197', '28.6', '3.46', '32.9', '0.607578521', '1.86', '0.79381909', '2.325864906', '2.081328709');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8G 32.5', '9.52', '8', '0.28', '8', '0.4715', '5.7802', '7.5285', '2.24', '0.42907105', '8.483563097', '20.64357143', '113.9', '31.73350684', '28.5', '3.46', '30.3', '0.663938394', '1.78', '0.88039239', '2.331975689', '2.000497964');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8WF 31', '9.12', '8', '0.288', '8', '0.433', '6.209', '7.567', '2.304', '0.516221709', '9.237875289', '21.55902778', '109.7', '29.87645283', '27.4', '3.47', '37', '0.499315315', '2.01', '0.534406242', '2.308631646', '2.260333126');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8WF 31', '9.12', '8', '0.288', '8', '0.433', '6.209', '7.567', '2.304', '0.516221709', '9.237875289', '21.55902778', '109.7', '29.87645283', '27.4', '3.47', '37', '0.499315315', '2.01', '0.534406242', '2.308631646', '2.260333126');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8CB 31', '9.1', '8.06', '0.29', '8', '0.43', '6.175', '7.63', '2.3374', '0.52056686', '9.302325581', '21.29310345', '110.9', '30.0056', '27.5', '3.49', '36.7', '0.499909173', '2.01', '0.540878772', '2.308887592', '2.256388909');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8G 31', '9.01', '7.94', '0.29', '7.99', '0.4355', '5.9542', '7.5045', '2.3026', '0.496233955', '9.173363949', '20.53172414', '106.2', '29.6697581', '26.7', '3.43', '30.5', '0.606942308', '1.84', '0.658001072', '2.313046809', '2.070332845');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8WF 30.8', '9.06', '7.875', '0.42', '6.675', '0.454', '6.006', '7.421', '3.3075', '0.832391229', '7.351321586', '14.3', '95.7', '27.5855738', '24.3', '3.25', '18.6', '0.604944417', '1.43', '0.887241193', '1.90050121', '1.685270246');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8CB 30', '8.81', '8.196', '0.298', '6.559', '0.498', '6.175', '7.698', '2.442408', '0.563360317', '6.585341365', '20.72147651', '107.8', '29.00668864', '26.3', '3.5', '23.4', '0.500432068', '1.63', '0.668417478', '1.897233833', '1.850563577');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8G 29.5', '8.69', '7.88', '0.285', '7.995', '0.4105', '5.9442', '7.4695', '2.2458', '0.516186502', '9.738124239', '20.85684211', '100.7', '27.99865353', '25.6', '3.41', '28.4', '0.615558', '1.81', '0.572630695', '2.30847643', '2.035494604');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8WF 28', '8.23', '8.06', '0.285', '6.54', '0.463', '6.209', '7.597', '2.2971', '0.584396734', '7.062634989', '21.78596491', '97.8', '26.63006231', '24.3', '3.45', '21.6', '0.499665356', '1.62', '0.533003789', '1.884284601', '1.837510393');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8WF 28', '8.23', '8.06', '0.285', '6.54', '0.463', '6.209', '7.597', '2.2971', '0.584396734', '7.062634989', '21.78596491', '97.8', '26.63006231', '24.3', '3.45', '21.6', '0.499665356', '1.62', '0.533003789', '1.884284601', '1.837510393');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8WF 28', '8.23', '8', '0.39', '6.65', '0.375', '6.125', '7.625', '3.12', '0.957894737', '8.866666667', '15.70512821', '90.1', '24.1396875', '22.5', '3.31', '17.73', '0.518329852', '1.47', '0.463316604', '1.872256943', '1.733277243');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8WF 27', '7.93', '8.098', '0.268', '6.529', '0.449', '6.175', '7.649', '2.170264', '0.564519238', '7.270601336', '23.04104478', '95.9', '25.89648413', '23.7', '3.48', '20.8', '0.500658698', '1.62', '0.494958175', '1.882433823', '1.832081659');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8WF 27', '7.93', '8.03', '0.273', '6.528', '0.448', '6.209', '7.582', '2.19219', '0.579597024', '7.285714286', '22.74358974', '94.1', '25.64740511', '23.4', '3.44', '20.8', '0.499314146', '1.62', '0.481955947', '1.879425726', '1.835695448');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8WF 27', '7.93', '8.03', '0.273', '6.528', '0.448', '6.209', '7.582', '2.19219', '0.579597024', '7.285714286', '22.74358974', '94.1', '25.64740511', '23.4', '3.44', '20.8', '0.499314146', '1.62', '0.481955947', '1.879425726', '1.835695448');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8WF 26.1', '7.68', '7.875', '0.245', '6.5', '0.454', '6.1732', '7.421', '1.929375', '0.512515757', '7.158590308', '25.19673469', '88.6', '24.8723902', '22.5', '3.4', '17.1', '0.607601121', '1.49', '0.582864159', '1.878220257', '1.679279607');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8WF 24', '7.06', '7.93', '0.245', '6.5', '0.398', '6.209', '7.532', '1.94285', '0.588018941', '8.165829146', '25.34285714', '82.5', '22.60253881', '20.8', '3.42', '18.2', '0.50046131', '1.61', '0.343393622', '1.864248232', '1.815282347');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8WF 24', '7.06', '7.93', '0.245', '6.5', '0.398', '6.209', '7.532', '1.94285', '0.588018941', '8.165829146', '25.34285714', '82.5', '22.60253881', '20.8', '3.42', '18.2', '0.50046131', '1.61', '0.343393622', '1.864248232', '1.815282347');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8CB 24', '7.06', '8', '0.239', '6.5', '0.4', '6.175', '7.6', '1.912', '0.567625', '8.125', '25.83682008', '84.2', '22.85744', '21.1', '3.46', '18.3', '0.500227687', '1.61', '0.355725767', '1.867695011', '1.815415819');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8WF 22.5', '6.61', '8', '0.375', '5.395', '0.352', '6.6694', '7.648', '3', '1.316994376', '7.663352273', '17.78506667', '68.3', '19.51432192', '17.1', '3.23', '7.5', '0.614150064', '1.08', '0.379635891', '1.474521775', '1.295064856');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8WF 22.5', '6.61', '8', '0.375', '5.395', '0.352', '6.6694', '7.648', '3', '1.316994376', '7.663352273', '17.78506667', '68.3', '19.51432192', '17.1', '3.23', '7.5', '0.614150064', '1.08', '0.346751341', '1.474521775', '1.295064856');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8B 21.25', '6.25', '8', '0.36', '5.37', '0.3365', '6.42084', '7.6635', '2.88', '1.27918982', '7.979197623', '17.83566667', '64.7', '18.63872437', '16.2', '3.22', '6.8', '0.638583609', '1.05', '0.334963791', '1.477167978', '1.268222728');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8B 21', '6.2', '8.19', '0.26', '5.275', '0.4', '6.5554', '7.79', '2.1294', '0.807774408', '6.59375', '25.21307692', '73.5', '19.96860575', '17.9', '3.44', '8.59', '0.569577695', '1.18', '0.326378997', '1.491870573', '1.367174021');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8WF 21', '6.18', '8.19', '0.252', '5.272', '0.403', '6.7574', '7.787', '2.06388', '0.801492976', '6.540942928', '26.81507937', '73.8', '19.97936252', '18', '3.45', '9.13', '0.538988163', '1.22', '0.307879363', '1.487744271', '1.405300581');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8WF 21', '6.18', '8.19', '0.252', '5.272', '0.403', '6.619', '7.787', '2.06388', '0.785077398', '6.540942928', '26.26587302', '73.8', '19.97936252', '18', '3.45', '9.13', '0.538988163', '1.22', '0.291216356', '1.491853761', '1.405300581');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8B 21', '6.17', '8', '0.36', '5.11', '0.342', '6.565', '7.658', '2.88', '1.352353486', '7.470760234', '18.23611111', '63.4', '18.18329567', '15.9', '3.21', '6.6', '0.576187225', '1.03', '0.305367009', '1.396479231', '1.260712587');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8WF 20', '5.88', '8.14', '0.248', '5.268', '0.378', '6.7574', '7.762', '2.01872', '0.841576776', '6.968253968', '27.24758065', '69.2', '18.83695592', '17', '3.43', '8.5', '0.541787433', '1.2', '0.264064196', '1.480618091', '1.393018306');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8WF 20', '5.88', '8.14', '0.248', '5.268', '0.378', '6.619', '7.762', '2.01872', '0.824340231', '6.968253968', '26.68951613', '69.2', '18.83695592', '17', '3.43', '8.5', '0.541787433', '1.2', '0.248172133', '1.48491874', '1.393018306');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8B 19.5', '5.78', '8', '0.325', '5.325', '0.3175', '6.5134', '7.6825', '2.6', '1.252067576', '8.385826772', '20.04123077', '60.6', '17.374875', '15.1', '3.24', '6.7', '0.596274885', '1.08', '0.255034229', '1.462763327', '1.305525065');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8B 19', '5.68', '8.06', '0.27', '5.27', '0.344', '6.5374', '7.716', '2.1762', '0.973643043', '7.659883721', '24.21259259', '63.7', '17.63853633', '15.8', '3.35', '7.2', '0.582742303', '1.13', '0.242285571', '1.471515153', '1.325924564');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8B 19', '5.62', '8.06', '0.27', '5.27', '0.344', '6.5374', '7.716', '2.1762', '0.973643043', '7.659883721', '24.21259259', '62.9', '17.63853633', '15.6', '3.35', '7.2', '0.582742303', '1.13', '0.242285571', '1.471515153', '1.334397012');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8B 19', '5.6', '8.09', '0.25', '5.265', '0.35', '6.5554', '7.74', '2.0225', '0.889350156', '7.521428571', '26.2216', '64.3', '17.6580605', '15.9', '3.39', '7.32', '0.581528286', '1.14', '0.237934762', '1.477304579', '1.334788514');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8WF 19', '5.59', '8.09', '0.244', '5.264', '0.353', '6.7574', '7.737', '1.97396', '0.887317134', '7.456090652', '27.6942623', '64.7', '17.70276232', '16', '3.4', '7.87', '0.545213209', '1.19', '0.225072458', '1.473000893', '1.379426851');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8WF 19', '5.59', '8.09', '0.244', '5.264', '0.353', '6.619', '7.737', '1.97396', '0.86914377', '7.456090652', '27.12704918', '64.7', '17.70276232', '16', '3.4', '7.87', '0.545213209', '1.19', '0.20999683', '1.477515707', '1.379426851');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8B 19', '5.59', '8', '0.287', '5.037', '0.342', '6.565', '7.658', '2.296', '1.09375127', '7.364035088', '22.87456446', '60.3', '17.01529567', '15.1', '3.29', '6.3', '0.578122887', '1.06', '0.237199045', '1.395622448', '1.263934255');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8WF 18.5', '5.44', '8', '0.23', '5.25', '0.352', '6.6694', '7.648', '1.84', '0.830066017', '7.457386364', '28.9973913', '62.1', '17.19432192', '15.5', '3.38', '6.9', '0.615163043', '1.13', '0.24358703', '1.474409708', '1.304720956');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8WF 18.5', '5.44', '8', '0.23', '5.25', '0.352', '6.6694', '7.648', '1.84', '0.830066017', '7.457386364', '28.9973913', '62.1', '17.19432192', '15.5', '3.38', '6.9', '0.615163043', '1.13', '0.219374319', '1.474409708', '1.304720956');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8B 18', '5.37', '8', '0.25', '5.26', '0.3365', '6.42084', '7.6635', '2', '0.906903429', '7.815750371', '25.68336', '60', '16.87872437', '15', '3.34', '6.4', '0.637648116', '1.09', '0.23737143', '1.475122872', '1.278624261');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8B 18', '5.29', '8', '0.25', '5', '0.342', '6.565', '7.658', '2', '0.959795322', '7.30994152', '26.26', '58.7', '16.42329567', '14.7', '3.33', '6.1', '0.584016393', '1.07', '0.211788302', '1.395503485', '1.260517656');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8B 17.5', '5.2', '8', '0.25', '5.25', '0.314', '6.5374', '7.686', '2', '0.991416439', '8.359872611', '26.1496', '57.7', '16.04899333', '14.4', '3.33', '6.39', '0.592550616', '1.11', '0.190144991', '1.461314267', '1.305883322');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8B 17.5', '5.18', '8', '0.25', '5.25', '0.3175', '6.5134', '7.6825', '2', '0.976887889', '8.267716535', '26.0536', '57.4', '16.174875', '14.3', '3.33', '6.4', '0.598219299', '1.11', '0.197251883', '1.463287368', '1.311167739');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8B 17.5', '5.15', '8', '0.21', '4.33', '0.4115', '6.15724', '7.5885', '1.68', '0.725684156', '5.261239368', '29.32019048', '58.3', '16.18499831', '14.6', '3.37', '4.5', '0.618642524', '0.93', '0.295698786', '1.23517236', '1.081416024');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8B 17.5', '5.14', '8', '0.25', '5.25', '0.314', '6.5374', '7.686', '2', '0.991416439', '8.359872611', '26.1496', '56.9', '16.04899333', '14.2', '3.33', '6.39', '0.592550616', '1.11', '0.190144991', '1.461314267', '1.315047528');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8B 17.5', '5.14', '8', '0.231', '4.981', '0.342', '6.565', '7.658', '1.848', '0.890233766', '7.282163743', '28.41991342', '57.4', '16.11929567', '14.5', '3.36', '6', '0.587006939', '1.08', '0.200806223', '1.395530542', '1.258734997');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8B 17.5', '5.13', '8', '0.22', '5', '0.3485', '6.66004', '7.6515', '1.76', '0.840865882', '7.173601148', '30.27290909', '58.4', '16.24734113', '14.6', '3.38', '6.2', '0.585517473', '1.1', '0.199590064', '1.403261162', '1.274611141');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8B 17.5', '5.12', '8', '0.22', '5', '0.3485', '6.66004', '7.6515', '1.76', '0.840865882', '7.173601148', '30.27290909', '58.4', '16.24734113', '14.6', '3.38', '6.2', '0.585517473', '1.1', '0.199590064', '1.403261162', '1.274611141');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8B 17', '5', '8', '0.235', '5.25', '0.305', '6.5554', '7.695', '1.88', '0.962072756', '8.606557377', '27.89531915', '56', '15.51199888', '14', '3.35', '6.16', '0.597056996', '1.11', '0.171597464', '1.462532249', '1.301114907');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8WF 17', '5', '8', '0.23', '5.25', '0.308', '6.7574', '7.692', '1.84', '0.961163884', '8.522727273', '29.38', '56.4', '15.57306272', '14.1', '3.36', '6.72', '0.552685547', '1.16', '0.16240452', '1.458082866', '1.353878589');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8WF 17', '5', '8', '0.23', '5.25', '0.308', '6.619', '7.692', '1.84', '0.941478046', '8.522727273', '28.77826087', '56.4', '15.57306272', '14.1', '3.36', '6.72', '0.552685547', '1.16', '0.149150341', '1.462935435', '1.353878589');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8B 17', '5', '8', '0.213', '4.963', '0.342', '6.565', '7.658', '1.704', '0.823842045', '7.255847953', '30.82159624', '57.2', '15.83129567', '14.3', '3.38', '6', '0.580666051', '1.09', '0.190704713', '1.395613569', '1.267506776');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8B 16.25', '4.81', '8', '0.18', '5.19', '0.3365', '6.42084', '7.6635', '1.44', '0.661777392', '7.711738484', '35.67133333', '57', '15.75872437', '14.3', '3.44', '6.1', '0.642652292', '1.12', '0.200349061', '1.474736081', '1.278484543');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8B 23', '6.77', '8', '0.46', '5.47', '0.3045', '6.5554', '7.6955', '3.68', '1.810432783', '8.981937603', '14.25086957', '65.4', '19.08159473', '16.4', '3.1', '7.07', '0.587419847', '1.02', '0.409135679', '1.45824115', '1.287926877');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8B 21', '6.18', '8', '0.38', '5.4', '0.3045', '6.5554', '7.6955', '3.04', '1.51496199', '8.866995074', '17.25105263', '62.3', '17.82499113', '15.6', '3.18', '6.8', '0.587595441', '1.05', '0.294857075', '1.461156649', '1.29507697');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8B 19', '5.59', '8', '0.31', '5.32', '0.3045', '6.5554', '7.6955', '2.48', '1.254474857', '8.735632184', '21.14645161', '59.2', '16.68159473', '14.8', '3.26', '6.45', '0.592353874', '1.08', '0.222979714', '1.459064919', '1.29494828');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8B 17', '5', '8', '0.24', '5.25', '0.3045', '6.5554', '7.6955', '1.92', '0.984155759', '8.620689655', '27.31416667', '56', '15.56159473', '14', '3.35', '6.16', '0.596078214', '1.11', '0.173750464', '1.460748354', '1.301157177');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8B 27', '7.94', '8', '0.355', '6.61', '0.398', '6.2542', '7.602', '2.84', '0.843947803', '8.304020101', '17.61746479', '88.51', '24.59241784', '22.13', '3.34', '17.43', '0.549552031', '1.48', '0.476966359', '1.870443179', '1.730242285');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8B 24', '7.06', '8', '0.245', '6.5', '0.398', '6.2542', '7.602', '1.96', '0.592299575', '8.165829146', '25.52734694', '83.81', '22.83241784', '20.95', '3.45', '16.52', '0.55135568', '1.53', '0.375567372', '1.863627509', '1.731258596');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8B 32.6', '9.59', '8', '0.313', '7.938', '0.4375', '6.2', '7.5625', '2.504', '0.558787748', '9.072', '19.80830671', '112.8', '30.23602734', '28.2', '3.45', '34.2', '0.533217002', '1.9', '0.565946855', '2.286381168', '2.141441402');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6B 41', '12.04', '6.75', '0.495', '6.245', '0.75', '4.525', '6', '3.34125', '0.478222578', '4.163333333', '9.141414141', '91.2', '31.51335938', '27', '2.75', '30.5', '0.499088435', '1.59', '2.020005879', '1.870211708', '1.840893503');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6B 30', '8.81', '6.38', '0.35', '6.1', '0.565', '4.525', '5.815', '2.233', '0.459524155', '5.398230088', '12.92857143', '63.2', '22.45311625', '19.8', '2.68', '21.4', '0.499393555', '1.56', '0.838735606', '1.803145502', '1.772695545');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6WF 27.5', '8.11', '6.46', '0.352', '6.112', '0.5', '4.735', '5.96', '2.27392', '0.54539267', '6.112', '13.45170455', '59.7', '20.8371808', '18.5', '2.71', '19.1', '0.498087253', '1.53', '0.623077767', '1.786371575', '1.754037813');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6CB 27.5', '8.09', '6.46', '0.352', '6.112', '0.5', '4.835', '5.96', '2.27392', '0.556910995', '6.112', '13.73579545', '59.6', '20.8371808', '18.4', '2.71', '19', '0.500708765', '1.53', '0.611850977', '1.783243922', '1.754187536');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6WF 27.5', '8.09', '6.28', '0.335', '6.085', '0.514', '4.527', '5.766', '2.1038', '0.484877018', '5.9192607', '13.51343284', '56.6', '20.344379', '18', '2.65', '19.3', '0.500041802', '1.55', '0.64694182', '1.789189196', '1.758185618');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6B 27', '7.92', '6.25', '0.335', '6.085', '0.5', '4.525', '5.75', '2.09375', '0.498233361', '6.085', '13.50746269', '55', '19.80273438', '17.6', '2.63', '18.8', '0.499358741', '1.54', '0.603666593', '1.786021501', '1.752433373');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6WF 25', '7.37', '6.37', '0.32', '6.08', '0.456', '4.733', '5.914', '2.0384', '0.546283472', '6.666666667', '14.790625', '53.5', '18.77962784', '16.8', '2.69', '17.1', '0.499457138', '1.52', '0.472646049', '1.770657739', '1.734878547');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6CB 25', '7.35', '6.37', '0.32', '6.08', '0.456', '4.833', '5.914', '2.0384', '0.557825485', '6.666666667', '15.103125', '53.5', '18.77962784', '16.8', '2.69', '17.1', '0.499457138', '1.52', '0.463389659', '1.767508284', '1.734878547');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6CB 25', '7.35', '6.37', '0.32', '6.08', '0.456', '4.833', '5.914', '2.0384', '0.557825485', '6.666666667', '15.103125', '53.4', '18.77962784', '16.7', '2.69', '17.1', '0.499457138', '1.53', '0.463389659', '1.767508284', '1.740065041');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6WF 25', '7.35', '6.19', '0.3', '6.05', '0.471', '4.523', '5.719', '1.857', '0.47618045', '6.422505308', '15.07666667', '50.9', '18.36218925', '16.4', '2.63', '17.4', '0.499524204', '1.54', '0.493647324', '1.773494335', '1.741797852');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6B 23', '6.76', '6.12', '0.275', '6.025', '0.435', '4.525', '5.685', '1.683', '0.474793723', '6.925287356', '16.45454545', '46.3', '16.79459625', '15.1', '2.62', '15.9', '0.498634175', '1.53', '0.388663737', '1.760980725', '1.730056654');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6WF 22.5', '6.63', '6.28', '0.29', '6.05', '0.411', '4.733', '5.869', '1.8212', '0.551997748', '7.360097324', '16.32068966', '47.4', '16.75331984', '15.1', '2.67', '15.2', '0.498979969', '1.51', '0.348177103', '1.754866486', '1.718701188');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6WF 22.5', '6.62', '6', '0.375', '6.063', '0.377', '4.521', '5.623', '2.25', '0.741714649', '8.041114058', '12.056', '41', '15.43282625', '13.7', '2.49', '12.2', '0.573935355', '1.36', '0.343189514', '1.739779088', '1.582299445');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6CB 22.5', '6.61', '6.28', '0.29', '6.05', '0.411', '4.833', '5.869', '1.8212', '0.563660493', '7.360097324', '16.66551724', '47.3', '16.75331984', '15', '2.67', '15.2', '0.498979969', '1.52', '0.340623412', '1.751668711', '1.724420676');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6WF 22.5', '6.61', '6.1', '0.27', '6.02', '0.425', '4.525', '5.675', '1.647', '0.477525894', '7.082352941', '16.75925926', '45', '16.37995625', '14.8', '2.61', '15.5', '0.498500341', '1.53', '0.363551811', '1.757798705', '1.723863707');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6WF 22.5', '6.62', '6', '0.375', '6.063', '0.375', '5.125', '5.625', '2.25', '0.84529111', '8.084', '13.66666667', '41', '15.373125', '13.7', '2.49', '12.2', '0.570890605', '1.36', '0.307318866', '1.710387725', '1.582580817');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6B 20.5', '6.06', '6.188', '0.3', '6.06', '0.359', '4.7854', '5.829', '1.8564', '0.659891337', '8.440111421', '15.95133333', '41.5', '14.92367544', '13.4', '2.62', '12.8', '0.52014102', '1.45', '0.267721349', '1.739132', '1.668532289');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6WF 20', '5.9', '6.2', '0.258', '6.018', '0.367', '4.741', '5.833', '1.5996', '0.553823543', '8.198910082', '18.37596899', '41.7', '14.80987536', '13.4', '2.66', '13.3', '0.501175379', '1.5', '0.248671726', '1.738834078', '1.701392099');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6WF 20', '5.89', '6', '0.25', '6', '0.375', '4.525', '5.625', '1.5', '0.502777778', '8', '18.1', '39.2', '14.37890625', '13.1', '2.58', '13.5', '0.5', '1.51', '0.256599285', '1.742239624', '1.702462294');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6CB 20', '5.88', '6.2', '0.258', '6.018', '0.367', '4.841', '5.833', '1.5996', '0.56550512', '8.198910082', '18.76356589', '41.7', '14.80987536', '13.4', '2.66', '13.3', '0.501175379', '1.5', '0.242606109', '1.735613977', '1.701392099');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6CB 20', '5.88', '6.2', '0.258', '6.018', '0.367', '4.841', '5.833', '1.5996', '0.56550512', '8.198910082', '18.76356589', '41.5', '14.80987536', '13.4', '2.66', '13.3', '0.501175379', '1.51', '0.242606109', '1.735613977', '1.701392099');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6WF 20', '5.88', '6', '0.25', '5.938', '0.378', '4.519', '5.622', '1.5', '0.50332715', '7.854497354', '18.076', '38.8', '14.33765981', '12.9', '2.57', '11.4', '0.57853053', '1.39', '0.259476851', '1.724718399', '1.57611533');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6B 18', '5.33', '6.094', '0.27', '6.03', '0.314', '4.7814', '5.78', '1.64538', '0.681823367', '9.601910828', '17.70888889', '35.8', '12.95906091', '11.7', '2.59', '11', '0.521564055', '1.43', '0.184809325', '1.721679403', '1.648361009');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6WF 18', '5.31', '6.11', '0.25', '6.01', '0.322', '4.741', '5.788', '1.5275', '0.612462666', '9.332298137', '18.964', '36.4', '13.06837561', '11.9', '2.62', '11.7', '0.497865669', '1.48', '0.179195847', '1.724469321', '1.686819891');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6WF 18', '5.3', '5.91', '0.245', '5.995', '0.328', '4.529', '5.582', '1.44795', '0.564293924', '9.138719512', '18.48571429', '34.1', '12.66699813', '11.5', '2.54', '11.8', '0.499089178', '1.49', '0.183507188', '1.728036853', '1.692279142');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6CB 18', '5.29', '6.11', '0.25', '6.01', '0.322', '4.841', '5.788', '1.5275', '0.625381094', '9.332298137', '19.364', '36.2', '13.06837561', '11.9', '2.62', '11.6', '0.502157614', '1.48', '0.174100823', '1.72090891', '1.67959579');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6B 18', '5.28', '6.09', '0.265', '6.025', '0.314', '4.861', '5.776', '1.61385', '0.680902291', '9.593949045', '18.34339623', '35.5', '12.90217655', '11.7', '2.59', '11', '0.520267708', '1.44', '0.176758585', '1.718200608', '1.647790543');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6CB 18', '5.28', '6.09', '0.265', '6.025', '0.314', '4.837', '5.776', '1.61385', '0.677540503', '9.593949045', '18.25283019', '35.5', '12.90379127', '11.7', '2.59', '11', '0.520267708', '1.44', '0.171051294', '1.719143403', '1.647790543');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6WF 15.5', '4.62', '6', '0.24', '6', '0.269', '4.737', '5.731', '1.44', '0.704386617', '11.15241636', '19.7375', '30.3', '11.03984064', '10.1', '2.56', '9.69', '0.499690402', '1.45', '0.116927562', '1.705170439', '1.658064451');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6B 15.5', '4.61', '6', '0.24', '6', '0.269', '4.7774', '5.731', '1.44', '0.710394052', '11.15241636', '19.90583333', '30.3', '11.03822592', '10.1', '2.56', '9.19', '0.52687704', '1.41', '0.121477719', '1.703539223', '1.614720188');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6CB 15.5', '4.59', '6', '0.24', '6', '0.269', '4.837', '5.731', '1.44', '0.719256506', '11.15241636', '20.15416667', '30.3', '11.03984064', '10.1', '2.56', '9.69', '0.499690402', '1.45', '0.112908972', '1.701090722', '1.658064451');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6CB 15.5', '4.59', '6', '0.24', '6', '0.269', '4.837', '5.731', '1.44', '0.719256506', '11.15241636', '20.15416667', '30.1', '11.03984064', '10', '2.56', '9.19', '0.52687704', '1.42', '0.112908972', '1.701090722', '1.622773706');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6B 15.5', '4.59', '6', '0.24', '6', '0.269', '4.861', '5.731', '1.44', '0.722825279', '11.15241636', '20.25416667', '30.1', '11.03822592', '10', '2.56', '9.19', '0.52687704', '1.42', '0.117135355', '1.700090582', '1.622773706');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6CB 15.5', '4.59', '6', '0.24', '6', '0.269', '4.837', '5.731', '1.44', '0.719256506', '11.15241636', '20.15416667', '30.1', '11.03984064', '10', '2.56', '9.19', '0.52687704', '1.42', '0.112908972', '1.701090722', '1.622773706');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6WF 15.5', '4.57', '5.79', '0.24', '5.99', '0.27', '4.525', '5.52', '1.3896', '0.67148952', '11.09259259', '18.85416667', '28.1', '10.581246', '9.7', '2.48', '9.7', '0.498529946', '1.46', '0.116740427', '1.707891569', '1.661324773');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '5H 18.9', '5.56', '5', '0.313', '5', '0.418', '3.439', '4.582', '1.565', '0.515027273', '5.980861244', '10.98722045', '23.8', '10.93314861', '9.5', '2.08', '7.8', '0.558226496', '1.2', '0.31324709', '1.472593385', '1.371507047');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '5H 18.9', '5.54', '5', '0.313', '5', '0.417', '3.415', '4.583', '1.565', '0.512659472', '5.995203837', '10.91054313', '23.8', '10.91362726', '9.5', '2.08', '7.8', '0.556891026', '1.2', '0.313872957', '1.473073929', '1.371656701');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '5B 18.9', '5.47', '5', '0.313', '5', '0.4165', '3.345664', '4.5835', '1.565', '0.502853701', '6.00240096', '10.68902236', '23.8', '10.8921733', '9.5', '2.08', '7.8', '0.556223291', '1.2', '0.346767153', '1.474957564', '1.371731522');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '5WF 18.5', '5.45', '5.12', '0.265', '5.025', '0.42', '3.555', '4.7', '1.3568', '0.446375267', '5.982142857', '13.41509434', '25.4', '11.132944', '9.94', '2.16', '8.89', '0.499544845', '1.28', '0.295106809', '1.482792354', '1.449744999');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '5CB 18.5', '5.45', '5.12', '0.265', '5.025', '0.42', '3.555', '4.7', '1.3568', '0.446375267', '5.982142857', '13.41509434', '25.4', '11.132944', '9.94', '2.16', '8.89', '0.499544845', '1.28', '0.295106809', '1.482792354', '1.449744999');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '5WF 16', '4.7', '5', '0.24', '5', '0.36', '3.555', '4.64', '1.2', '0.474', '6.944444444', '14.8125', '21.3', '9.451104', '8.53', '2.13', '7.51', '0.499334221', '1.26', '0.192266445', '1.464744975', '1.429188277');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '5CB 16', '4.7', '5', '0.24', '5', '0.36', '3.555', '4.64', '1.2', '0.474', '6.944444444', '14.8125', '21.3', '9.451104', '8.53', '2.13', '7.51', '0.499334221', '1.26', '0.192266445', '1.464744975', '1.429188277');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '5WF 13.5', '3.98', '4.86', '0.23', '4.99', '0.292', '3.551', '4.568', '1.1178', '0.56052516', '8.544520548', '15.43913043', '17.1', '7.70728156', '7.02', '2.07', '6.05', '0.499744321', '1.23', '0.114390798', '1.445572105', '1.402998417');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '4H 13.8', '3.99', '4', '0.313', '4', '0.361', '2.553', '3.639', '1.252', '0.553385734', '5.540166205', '8.156549521', '10.7', '6.095534473', '5.3', '1.64', '3.6', '0.534814815', '0.95', '0.184148764', '1.184044411', '1.111704454');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '4H 13.8', '3.99', '4', '0.313', '4', '0.3715', '2.445664', '3.6285', '1.252', '0.515136495', '5.383580081', '7.813623003', '10.7', '6.213867509', '5.3', '1.64', '3.6', '0.55037037', '0.95', '0.219458325', '1.189397899', '1.110099435');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '4B 13', '3.82', '4.16', '0.28', '4.06', '0.345', '2.927', '3.815', '1.1648', '0.585107446', '5.884057971', '10.45357143', '11.31', '6.1865335', '5.45', '1.72', '3.76', '0.511714949', '0.99', '0.155079344', '1.190184716', '1.147170432');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '4H 13', '3.82', '4', '0.25', '3.937', '0.372', '2.505', '3.628', '1', '0.427601662', '5.291666667', '10.02', '10.4', '5.976034192', '5.2', '1.65', '3.4', '0.556389623', '0.94', '0.172128859', '1.173588842', '1.089071588');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '4H 13', '3.82', '4', '0.253', '3.94', '0.371', '2.533', '3.629', '1.012', '0.438415176', '5.309973046', '10.01185771', '9.9', '5.976025633', '5', '1.64', '3.3', '0.573016845', '0.95', '0.170307166', '1.173400908', '1.094335415');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '4BCB 10', '2.93', '4', '0.22', '4', '0.265', '2.927', '3.735', '0.88', '0.607490566', '7.547169811', '13.30454545', '8.31', '4.6213495', '4.16', '1.68', '2.74', '0.515815085', '0.97', '0.075280718', '1.159457805', '1.109069907');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '4B 7.5', '2.22', '3.87', '0.17', '3.95', '0.2', '2.927', '3.67', '0.6579', '0.629860759', '9.875', '17.21764706', '6.06', '3.41103825', '3.13', '1.65', '1.96', '0.524063563', '0.94', '0.033497365', '1.133685876', '1.071948451');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12B 22', '6.47', '12.31', '0.26', '4.03', '0.424', '10.8354', '11.886', '3.2006', '1.64872185', '4.752358491', '41.67461538', '155.7', '28.84937978', '25.3', '4.91', '4.55', '0.508262832', '0.84', '0.296379712', '1.068226285', '1.03382803');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12CB 22', '6.47', '12.31', '0.26', '4.03', '0.424', '10.737', '11.886', '3.2006', '1.633749239', '4.752358491', '41.29615385', '155.7', '28.84937978', '25.3', '4.91', '4.55', '0.508262832', '0.84', '0.291590527', '1.070917096', '1.03382803');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12B 21', '6.22', '12.16', '0.25', '4.135', '0.401', '10.5694', '11.759', '3.04', '1.593567472', '5.155860349', '42.2776', '147', '27.55227322', '24.2', '4.86', '4.3', '0.549441188', '0.83', '0.278263323', '1.101423445', '1.022107893');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12BL 19', '5.62', '12.16', '0.24', '4.01', '0.349', '10.8354', '11.811', '2.9184', '1.858174049', '5.744985673', '45.1475', '130.1', '24.41202303', '21.4', '4.81', '3.67', '0.510988627', '0.81', '0.187235346', '1.046117728', '1.006362586');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12CB 19', '5.62', '12.16', '0.24', '4.01', '0.349', '10.737', '11.811', '2.9184', '1.84129933', '5.744985673', '44.7375', '130.1', '24.41202303', '21.4', '4.81', '3.67', '0.510988627', '0.81', '0.183271017', '1.049049655', '1.006362586');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12B 18.5', '5.44', '12', '0.24', '4.125', '0.321', '10.5694', '11.679', '2.88', '1.915722458', '6.425233645', '44.03916667', '121.5', '23.19620922', '20.2', '4.73', '3.33', '0.563834196', '0.78', '0.175392942', '1.074676123', '0.981147414');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12BL 16.5', '4.86', '12', '0.23', '4', '0.269', '10.8354', '11.731', '2.76', '2.3161171', '7.434944238', '47.11043478', '105.3', '20.17675903', '17.5', '4.65', '2.79', '0.514217443', '0.76', '0.114789273', '1.012922793', '0.967020313');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12CB 16.5', '4.86', '12', '0.23', '4', '0.269', '10.737', '11.731', '2.76', '2.295083643', '7.434944238', '46.6826087', '105.3', '20.17675903', '17.5', '4.65', '2.79', '0.514217443', '0.76', '0.111656887', '1.016327266', '0.967020313');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12BJ 14', '4.14', '11.91', '0.2', '3.97', '0.224', '10.8354', '11.686', '2.382', '2.436892767', '8.861607143', '54.177', '88.2', '16.96099828', '14.8', '4.61', '2.25', '0.519105672', '0.74', '0.072459728', '0.996067248', '0.942493458');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12CB 14', '4.14', '11.91', '0.2', '3.97', '0.224', '10.737', '11.686', '2.382', '2.414762504', '8.861607143', '53.685', '88.2', '16.96099828', '14.8', '4.61', '2.25', '0.519105672', '0.74', '0.069978515', '0.999565397', '0.942493458');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12J 11.8', '3.45', '12', '0.175', '3.06', '0.2255', '10.92772', '11.7745', '2.1', '2.771402693', '6.784922395', '62.44411429', '72.2', '13.95793727', '12', '4.57', '0.98', '0.549418785', '0.53', '0.052779258', '0.754257175', '0.693391724');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12J 11.8', '3.45', '12', '0.175', '3.063', '0.225', '10.92972', '11.775', '2.1', '2.775348787', '6.806666667', '62.45554286', '72.2', '13.94926847', '12', '4.57', '0.98', '0.549814497', '0.53', '0.052587381', '0.754797453', '0.693406446');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '11J 10.3', '3.01', '11', '0.165', '2.844', '0.215', '9.9788', '10.785', '1.815', '2.692738691', '6.613953488', '60.47757576', '53.1', '11.2014399', '9.6', '4.2', '0.75', '0.549521548', '0.5', '0.041596852', '0.704734521', '0.649067841');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10BL 19', '5.61', '10.25', '0.25', '4.02', '0.394', '8.8354', '9.856', '2.5625', '1.39458166', '5.101522843', '35.3416', '96.2', '21.20631153', '18.8', '4.14', '4.19', '0.509071884', '0.86', '0.236112427', '1.0863277', '1.048005197');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10CB 19', '5.61', '10.25', '0.25', '4.02', '0.394', '8.737', '9.856', '2.5625', '1.379050181', '5.101522843', '34.948', '96.2', '21.20631153', '18.8', '4.14', '4.19', '0.509071884', '0.86', '0.231676434', '1.089163298', '1.048005197');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10BJ 19', '5.6', '10.16', '0.25', '4.01', '0.3985', '8.5794', '9.7615', '2.54', '1.34222161', '5.031367629', '34.3176', '94.5', '21.07011779', '18.6', '4.11', '3.9', '0.549054671', '0.83', '0.257676605', '1.090509899', '1.011623974');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10BL 17', '4.98', '10.12', '0.24', '4.01', '0.329', '8.8354', '9.791', '2.4288', '1.607300897', '6.094224924', '36.81416667', '81.8', '18.28893503', '16.2', '4.05', '3.45', '0.512423071', '0.83', '0.158900342', '1.066304093', '1.021058365');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10CB 17', '4.98', '10.12', '0.24', '4.01', '0.329', '8.737', '9.791', '2.4288', '1.589400359', '6.094224924', '36.40416667', '81.8', '18.28893503', '16.2', '4.05', '3.45', '0.512423071', '0.83', '0.155102847', '1.069472737', '1.021058365');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10BJ 16.5', '4.86', '10', '0.24', '4', '0.3185', '8.5794', '9.6815', '2.4', '1.616213501', '6.279434851', '35.7475', '77.4', '17.58645379', '15.5', '3.99', '3.02', '0.562472406', '0.79', '0.160110747', '1.066180178', '0.971167073');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10BL 15', '4.4', '10', '0.23', '4', '0.269', '8.8354', '9.731', '2.3', '1.888607807', '7.434944238', '38.41478261', '68.8', '15.61849903', '13.8', '3.95', '2.79', '0.514217443', '0.8', '0.10667794', '1.043019694', '0.991805008');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10CB 15', '4.4', '10', '0.23', '4', '0.269', '8.737', '9.731', '2.3', '1.867574349', '7.434944238', '37.98695652', '68.8', '15.61849903', '13.8', '3.95', '2.79', '0.514217443', '0.8', '0.103545554', '1.046588007', '0.991805008');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10BJ 11.5', '3.39', '9.87', '0.18', '3.95', '0.204', '8.8354', '9.666', '1.7766', '1.973655994', '9.681372549', '49.08555556', '51.9', '11.81768778', '10.5', '3.92', '2.01', '0.521247699', '0.77', '0.050980568', '1.020502112', '0.961859806');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10CB 11.5', '3.39', '9.87', '0.18', '3.95', '0.204', '8.737', '9.666', '1.7766', '1.951675354', '9.681372549', '48.53888889', '51.9', '11.81768778', '10.5', '3.92', '2.01', '0.521247699', '0.77', '0.048790193', '1.024156205', '0.961859806');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10J 9', '2.64', '10', '0.155', '2.688', '0.2075', '9.02388', '9.7925', '1.55', '2.507711919', '6.477108434', '58.21858065', '39', '9.020388442', '7.8', '3.85', '0.61', '0.550547523', '0.48', '0.033431818', '0.67365204', '0.618798723');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9J 7.5', '2.2', '9', '0.145', '2.375', '0.1935', '8.08496', '8.8065', '1.305', '2.550946172', '6.136950904', '55.75834483', '26.2', '6.735196977', '5.8', '3.45', '0.39', '0.553893104', '0.42', '0.024257961', '0.594686153', '0.544132891');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8B 16', '4.74', '8.12', '0.24', '3.875', '0.3755', '6.5914', '7.7445', '1.9488', '1.087194536', '5.159786951', '27.46416667', '52.4', '14.51995439', '12.9', '3.32', '3.31', '0.550067292', '0.84', '0.205667757', '1.076915542', '0.99678349');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8BL 15', '4.43', '8.12', '0.245', '4.015', '0.314', '6.8654', '7.806', '1.9894', '1.334187085', '6.393312102', '28.02204082', '48', '13.27906868', '11.8', '3.29', '3.3', '0.513205274', '0.86', '0.139540261', '1.091928014', '1.044756885');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8CB 15', '4.43', '8.12', '0.245', '4.015', '0.314', '6.767', '7.806', '1.9894', '1.315064527', '6.393312102', '27.62040816', '48', '13.27906868', '11.8', '3.29', '3.3', '0.513205274', '0.86', '0.135826031', '1.095340083', '1.044756885');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8B 14.5', '4.28', '8', '0.24', '3.875', '0.3155', '6.5914', '7.6845', '1.92', '1.293951025', '6.141045959', '27.46416667', '44.9', '12.64600439', '11.2', '3.24', '2.73', '0.56036447', '0.8', '0.144587527', '1.060324194', '0.967754327');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8BL 13', '3.83', '8', '0.23', '4', '0.254', '6.8654', '7.746', '1.84', '1.554175197', '7.874015748', '29.84956522', '39.5', '11.09741468', '9.88', '3.21', '2.62', '0.517048346', '0.83', '0.089610226', '1.069684897', '1.013435053');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8CB 13', '3.83', '8', '0.23', '4', '0.254', '6.767', '7.746', '1.84', '1.531899606', '7.874015748', '29.42173913', '39.5', '11.09741468', '9.88', '3.21', '2.62', '0.517048346', '0.83', '0.086638854', '1.07353848', '1.013435053');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8BJ 10', '2.95', '7.9', '0.17', '3.94', '0.204', '6.8654', '7.696', '1.343', '1.452072758', '9.656862745', '40.38470588', '30.8', '8.57126468', '7.79', '3.23', '1.99', '0.522497853', '0.82', '0.044403606', '1.055214213', '0.991460328');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8CB 10', '2.95', '7.9', '0.17', '3.94', '0.204', '6.767', '7.696', '1.343', '1.431260575', '9.656862745', '39.80588235', '30.8', '8.57126468', '7.79', '3.23', '1.99', '0.522497853', '0.82', '0.042257278', '1.058844198', '0.991460328');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8J 6.5', '1.92', '8', '0.135', '2.281', '0.189', '7.12604', '7.811', '1.08', '2.231489948', '6.034391534', '52.78548148', '18.7', '5.327218451', '4.7', '3.12', '0.34', '0.549765518', '0.42', '0.019660841', '0.582325427', '0.531531308');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '7B 12', '3.52', '7', '0.188', '3.5', '0.323', '5.7274', '6.677', '1.316', '0.952455728', '5.417956656', '30.46489362', '29.8', '9.445894352', '8.5', '2.91', '2.1', '0.549548611', '0.77', '0.111603524', '0.978921562', '0.908188242');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '7B 12', '3.52', '7', '0.188', '3.5', '0.3325', '5.607', '6.6675', '1.316', '0.905792481', '5.263157895', '29.82446809', '29.8', '9.6360716', '8.5', '2.91', '2.1', '0.565711806', '0.77', '0.122622095', '0.984051915', '0.907541929');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '7J 5.5', '1.61', '7', '0.126', '2.078', '0.1805', '6.17312', '6.8195', '0.882', '2.073731454', '5.756232687', '48.99301587', '12.1', '3.945568085', '3.5', '2.74', '0.25', '0.53987421', '0.39', '0.014930538', '0.536511618', '0.49351147');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6CB 16', '4.72', '6.25', '0.26', '4.03', '0.404', '4.817', '5.846', '1.625', '0.769243053', '4.987623762', '18.52692308', '31.7', '11.44298818', '10.1', '2.59', '4.32', '0.510072031', '0.96', '0.22194171', '1.153721797', '1.118138481');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6B 16', '4.72', '6.25', '0.26', '4.03', '0.404', '4.899', '5.846', '1.625', '0.782337911', '4.987623762', '18.84230769', '31.7', '11.44298818', '10.1', '2.59', '4.32', '0.510072031', '0.96', '0.225882703', '1.151329861', '1.118138481');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6B 14', '4.11', '6.12', '0.245', '4.015', '0.339', '4.861', '5.781', '1.4994', '0.874996786', '5.921828909', '19.84081633', '26.4', '9.681919773', '8.63', '2.54', '3.57', '0.512161448', '0.93', '0.145981889', '1.135428406', '1.09349096');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6CB 12', '3.53', '6', '0.23', '4', '0.279', '4.817', '5.721', '1.38', '0.992750896', '7.168458781', '20.94347826', '21.7', '8.08751943', '7.24', '2.48', '2.89', '0.514878893', '0.9', '0.089584693', '1.118726944', '1.068564186');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6B 12', '3.53', '6', '0.23', '4', '0.279', '4.899', '5.721', '1.38', '1.009650538', '7.168458781', '21.3', '21.7', '8.08751943', '7.24', '2.48', '2.89', '0.514878893', '0.9', '0.092251813', '1.115688989', '1.068564186');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6B 11', '3.25', '6', '0.23', '3.33', '0.2945', '4.739', '5.7055', '1.38', '1.111437414', '5.653650255', '20.60434783', '19.3', '7.2745373', '6.43', '2.44', '1.64', '0.552577129', '0.71', '0.097321285', '0.928254288', '0.852998553');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6B 10', '2.91', '6', '0.188', '3', '0.31', '4.7534', '5.69', '1.128', '0.960902366', '4.838709677', '25.28404255', '17.8', '6.6520868', '5.9', '2.47', '1.3', '0.536538462', '0.66', '0.088356853', '0.843418852', '0.791747691');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6B 10', '2.91', '6', '0.188', '3', '0.318', '4.665', '5.682', '1.128', '0.919308176', '4.716981132', '24.81382979', '17.8', '6.767232576', '5.9', '2.47', '1.3', '0.550384615', '0.66', '0.093764255', '0.847252829', '0.791190907');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6B 9.4', '2.77', '6', '0.188', '2.938', '0.29', '4.797', '5.71', '1.128', '1.058468111', '5.065517241', '25.51595745', '16.7', '6.244258333', '5.6', '2.46', '1.2', '0.510729425', '0.64', '0.071301051', '0.81985615', '0.782167319');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6B 8.5', '2.5', '5.83', '0.17', '3.94', '0.194', '4.899', '5.636', '0.9911', '1.089578209', '10.15463918', '28.81764706', '14.8', '5.56658593', '5.07', '2.43', '1.89', '0.523175436', '0.87', '0.03463829', '1.084761824', '1.024937579');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6CB 8.5', '2.5', '5.83', '0.17', '3.94', '0.194', '4.817', '5.636', '0.9911', '1.071340729', '10.15463918', '28.33529412', '14.8', '5.56658593', '5.07', '2.43', '1.89', '0.523175436', '0.87', '0.033024879', '1.088007674', '1.024937579');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6J 4.4', '1.3', '6', '0.114', '1.844', '0.1725', '5.2182', '5.8275', '0.684', '1.870146185', '5.344927536', '45.77368421', '7.3', '2.764535243', '2.4', '2.37', '0.17', '0.530202391', '0.36', '0.010790259', '0.483129607', '0.45430235');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18H 427', '125.72', '18.438', '1.94', '16.76', '3.025', '11.1118', '15.413', '35.76972', '0.425193633', '2.770247934', '5.727731959', '6416.2', '855.8259694', '696', '7.14', '2355.9', '0.503743347', '4.33', '338.8935591', '5.196876881', '5.107429701');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18H 413', '121.48', '18.25', '1.88', '16.7', '2.931', '11.1118', '15.319', '34.31', '0.426785814', '2.848857045', '5.910531915', '6121.5', '821.9301605', '670.8', '7.1', '2257.2', '0.503980745', '4.31', '307.9374487', '5.166109784', '5.076784211');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18H 399', '117.26', '18.063', '1.82', '16.64', '2.837', '11.1128', '15.226', '32.87466', '0.428432323', '2.932675361', '6.105934066', '5834', '788.5938153', '646', '7.05', '2160.3', '0.504224553', '4.29', '278.9563221', '5.13521119', '5.045668206');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18H 384', '113.07', '17.875', '1.76', '16.58', '2.7435', '11.1108', '15.1315', '31.46', '0.429901051', '3.021687625', '6.312954545', '5553.6', '755.7861219', '621.4', '7.01', '2065.1', '0.504587178', '4.27', '252.0107721', '5.104405267', '5.014306909');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18H 370', '108.9', '17.688', '1.7', '16.52', '2.65', '11.1118', '15.038', '30.0696', '0.431496642', '3.116981132', '6.536352941', '5280.2', '723.5280938', '597.1', '6.96', '1971.7', '0.504956446', '4.26', '226.8498843', '5.073415358', '4.982839804');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '17H 363', '106.86', '17.313', '1.94', '16.76', '2.462', '11.1128', '14.851', '33.58722', '0.522472174', '3.403736799', '5.728247423', '4909.6', '687.2128944', '567.2', '6.78', '1914.5', '0.504514293', '4.23', '205.0758511', '5.100984753', '5.00636403');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18H 356', '104.75', '17.5', '1.64', '16.46', '2.556', '11.1118', '14.944', '28.7', '0.433149267', '3.219874804', '6.775487805', '5013.7', '691.612973', '573', '6.92', '1880', '0.505255729', '4.24', '203.3610657', '5.042270766', '4.951309168');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '17H 356', '104.68', '17.38', '1.81', '16.43', '2.4945', '11.1158', '14.8855', '31.4578', '0.490905872', '3.293245139', '6.141325967', '4877', '679.525896', '561.4', '6.83', '1827', '0.504633881', '4.18', '200.0040745', '5.01189729', '4.921526016');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '17H 342', '100.63', '17.313', '1.58', '16.4', '2.462', '11.1128', '14.851', '27.35454', '0.434859226', '3.330625508', '7.033417722', '4754', '660.2362972', '549.2', '6.87', '1790.1', '0.505546437', '4.22', '181.5752177', '5.010988359', '4.919672956');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '17H 342', '100.57', '17.19', '1.75', '16.37', '2.401', '11.1138', '14.789', '30.0825', '0.494834289', '3.408996252', '6.350742857', '4622', '648.3862209', '537.8', '6.78', '1737', '0.505309117', '4.16', '178.5214986', '4.980137581', '4.887017756');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '17H 328', '96.53', '17.125', '1.52', '16.34', '2.3685', '11.1108', '14.7565', '26.03', '0.436378632', '3.449440574', '7.309736842', '4500.9', '629.3839344', '525.7', '6.83', '1701.8', '0.505987491', '4.2', '161.5200218', '4.979792536', '4.887220732');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '17H 328', '96.48', '17', '1.69', '16.31', '2.307', '11.1118', '14.693', '28.73', '0.499079309', '3.534893801', '6.575029586', '4373', '617.6470296', '514.5', '6.73', '1650', '0.50552692', '4.14', '158.5878573', '4.948120677', '4.853885462');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '17H 314', '92.45', '16.938', '1.46', '16.28', '2.275', '11.1118', '14.663', '24.72948', '0.438027594', '3.578021978', '7.610821918', '4254.5', '599.0603081', '502.4', '6.78', '1615.2', '0.506450554', '4.18', '142.9964661', '4.948404452', '4.85494995');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '17H 314', '92.41', '16.81', '1.63', '16.25', '2.213', '11.1098', '14.597', '27.4003', '0.503569092', '3.67148667', '6.815828221', '4131', '587.3960046', '491.4', '6.69', '1564', '0.505968541', '4.11', '140.2177022', '4.915936153', '4.819673342');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '17H 301', '88.56', '16.75', '1.41', '16.23', '2.181', '11.1118', '14.569', '23.6175', '0.442618277', '3.720770289', '7.88070922', '4018.4', '569.7765668', '479.8', '6.74', '1533.2', '0.506793654', '4.16', '126.3270955', '4.919221973', '4.824687149');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '17H 301', '88.54', '16.63', '1.58', '16.2', '2.1195', '11.1158', '14.5105', '26.2754', '0.511504402', '3.821656051', '7.035316456', '3899', '558.851818', '469', '6.64', '1483', '0.506356125', '4.09', '123.9238534', '4.885723075', '4.789722417');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16H 293', '86.24', '16.375', '1.64', '16.46', '1.9935', '11.1108', '14.3815', '26.855', '0.555319734', '4.128417356', '6.774878049', '3685.1', '534.7925281', '405.1', '6.54', '1462', '0.50673058', '4.12', '111.1073616', '4.935732459', '5.094243027');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '17H 288', '84.69', '16.563', '1.36', '16.18', '2.087', '11.1128', '14.476', '22.52568', '0.447570486', '3.876377575', '8.171176471', '3788.4', '540.9792839', '457.5', '6.69', '1452.5', '0.507178242', '4.14', '111.017257', '4.88980037', '4.793710588');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16H 287', '84.51', '16.44', '1.52', '16.14', '2.026', '11.1138', '14.414', '24.9888', '0.516610458', '3.983218164', '7.311710526', '3669', '529.6224077', '446.4', '6.59', '1400', '0.507038282', '4.07', '108.4851805', '4.85323544', '4.754219028');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16H 274', '80.67', '16.375', '1.3', '16.12', '1.9935', '11.1108', '14.3815', '21.2875', '0.449476929', '4.043140206', '8.546769231', '3560.7', '512.000575', '434.9', '6.64', '1370.6', '0.50771428', '4.12', '96.71895602', '4.858076813', '4.760447225');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16H 274', '80.51', '16.25', '1.46', '16.08', '1.932', '11.1118', '14.318', '23.725', '0.522208703', '4.161490683', '7.610821918', '3445', '500.7807796', '424', '6.54', '1319', '0.507503701', '4.05', '94.35251953', '4.82043665', '4.719170308');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16H 265', '78', '16.25', '1.26', '16.08', '1.931', '11.1118', '14.319', '20.475', '0.450906653', '4.163645779', '8.818888889', '3412.4', '492.925473', '420', '6.61', '1316.8', '0.508088474', '4.11', '87.8817636', '4.836758092', '4.737798766');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16H 265', '77.86', '16.13', '1.42', '16.04', '1.8695', '11.1158', '14.2605', '22.9046', '0.526379825', '4.28991709', '7.828028169', '3300', '482.105742', '409.3', '6.51', '1266', '0.507836146', '4.03', '85.68744946', '4.798292053', '4.696219193');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16H 256', '75.35', '16.125', '1.22', '16.04', '1.8685', '11.1108', '14.2565', '19.6725', '0.452280324', '4.292213005', '9.107213115', '3266.7', '474.0565125', '405.2', '6.58', '1263.8', '0.508448063', '4.1', '79.61797044', '4.815440066', '4.715154401');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16H 256', '75.21', '16', '1.38', '16', '1.807', '11.1118', '14.193', '22.08', '0.530377836', '4.427227449', '8.052028986', '3157', '463.2495296', '394.6', '6.48', '1214', '0.508063701', '4.02', '77.55853593', '4.776331529', '4.672538693');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16H 247', '72.7', '16', '1.18', '16', '1.806', '11.1118', '14.194', '18.88', '0.453762597', '4.429678848', '9.416779661', '3123.7', '455.394223', '390.5', '6.55', '1211.4', '0.508872379', '4.08', '71.88413212', '4.794007957', '4.692136828');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16H 247', '72.57', '15.88', '1.34', '15.96', '1.7445', '11.1158', '14.1355', '21.2792', '0.534985069', '4.574376612', '8.295373134', '3016', '444.972229', '380', '6.45', '1162', '0.508606915', '4', '69.98515272', '4.753979807', '4.648917673');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16H 238', '70.07', '15.875', '1.14', '15.96', '1.7435', '11.1108', '14.1315', '18.0975', '0.455192757', '4.577000287', '9.746315789', '2983.4', '436.9362', '375.9', '6.53', '1159.8', '0.509279579', '4.07', '64.68317617', '4.772574616', '4.669114486');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16H 238', '69.95', '15.75', '1.3', '15.92', '1.682', '11.1118', '14.068', '20.475', '0.539459336', '4.732461356', '8.547538462', '2879', '426.5382796', '365.5', '6.41', '1111', '0.509049338', '3.99', '62.9132668', '4.73178911', '4.623964816');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16H 230', '67.6', '15.75', '1.11', '15.93', '1.681', '11.1118', '14.069', '17.4825', '0.46059997', '4.738251041', '10.01063063', '2848.9', '419.3031293', '361.8', '6.49', '1111', '0.509705988', '4.05', '58.22016191', '4.753096703', '4.647713674');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16H 230', '67.49', '15.63', '1.27', '15.89', '1.6195', '11.1158', '14.0105', '19.8501', '0.548579527', '4.905835134', '8.752598425', '2747', '409.2658082', '351.6', '6.38', '1063', '0.509375595', '3.97', '56.64572308', '4.711237772', '4.602078458');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16H 221', '65.14', '15.625', '1.08', '15.9', '1.6185', '11.1108', '14.0065', '16.875', '0.466293388', '4.911955514', '10.28777778', '2716.9', '401.8528406', '347.8', '6.46', '1062.7', '0.51016675', '4.04', '52.21443752', '4.733517058', '4.625837436');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16H 221', '64.88', '15.5', '1.23', '15.85', '1.557', '11.1118', '13.943', '19.065', '0.553823842', '5.089916506', '9.03398374', '2614', '391.2401546', '337.3', '6.35', '1013', '0.510018255', '3.95', '50.53338469', '4.688732696', '4.575722391');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16H 212', '62.53', '15.5', '1.04', '15.86', '1.556', '11.1118', '13.944', '16.12', '0.468279321', '5.096401028', '10.68442308', '2584.1', '383.985473', '333.4', '6.43', '1013', '0.510656013', '4.02', '46.42216191', '4.711733264', '4.602572244');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15H 212', '62.29', '15.38', '1.19', '15.81', '1.4945', '11.1158', '13.8855', '18.3022', '0.559834806', '5.289394446', '9.341008403', '2484', '373.738114', '323.1', '6.31', '964', '0.510544085', '3.93', '44.89514569', '4.665816544', '4.551303547');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15H 203', '59.94', '15.375', '1', '15.82', '1.4935', '11.1108', '13.8815', '15.375', '0.470255219', '5.296283897', '11.1108', '2453.9', '366.3187781', '319.2', '6.4', '963.9', '0.51122424', '4.01', '41.08535', '4.689935884', '4.578126089');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15H 203', '59.7', '15.25', '1.15', '15.77', '1.432', '11.1118', '13.818', '17.5375', '0.56585811', '5.506284916', '9.662434783', '2356', '356.1271859', '309', '6.28', '916', '0.51092997', '3.92', '39.68933735', '4.642997385', '4.525599247');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15H 195', '57.35', '15.25', '0.96', '15.78', '1.431', '11.1118', '13.819', '14.64', '0.472399051', '5.513626834', '11.57479167', '2326.1', '348.8532855', '305.1', '6.37', '915.5', '0.511824459', '4', '36.17301977', '4.668001072', '4.553353636');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15H 194', '57.13', '15.13', '1.11', '15.73', '1.3695', '11.1158', '13.7605', '16.7943', '0.572760347', '5.742971888', '10.01423423', '2231', '339.0120822', '295', '6.25', '868', '0.511737488', '3.9', '34.91741938', '4.619749524', '4.49936229');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15H 186', '54.77', '15.125', '0.92', '15.74', '1.3685', '11.1108', '13.7565', '13.915', '0.474551803', '5.750822068', '12.07695652', '2200.9', '331.5865906', '291', '6.34', '867.7', '0.512516843', '3.98', '31.6773263', '4.646046756', '4.528738901');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15H 186', '54.56', '15', '1.07', '15.69', '1.307', '11.1118', '13.693', '16.05', '0.579788588', '6.002295333', '10.38485981', '2108', '321.8120296', '281.1', '6.22', '821', '0.512412854', '3.88', '30.54274878', '4.596555584', '4.471728854');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15H 177', '52.2', '15', '0.88', '15.7', '1.306', '11.1118', '13.694', '13.2', '0.476896636', '6.010719755', '12.62704545', '2078', '314.519223', '277.1', '6.31', '820.7', '0.513187955', '3.96', '27.57025368', '4.623946111', '4.503229885');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15H 169', '49.65', '14.875', '0.84', '15.66', '1.2435', '11.1108', '13.6315', '12.495', '0.479277531', '6.296743064', '13.22714286', '1957.6', '297.6487781', '263.2', '6.28', '774.2', '0.51402785', '3.95', '23.84152649', '4.60181788', '4.477550236');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15H 160', '47.1', '14.75', '0.8', '15.62', '1.181', '11.1118', '13.569', '11.8', '0.481885075', '6.613039797', '13.88975', '1839.5', '280.9757855', '249.4', '6.25', '728.5', '0.514851739', '3.93', '20.46560384', '4.579531598', '4.45169577');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15H 151', '44.56', '14.625', '0.76', '15.58', '1.1185', '11.1108', '13.5065', '11.115', '0.484568837', '6.964684846', '14.61947368', '1723.8', '264.4978406', '235.7', '6.22', '683.4', '0.515800938', '3.92', '17.43024576', '4.557206241', '4.425008503');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15H 143', '42.03', '14.5', '0.72', '15.54', '1.056', '11.1118', '13.444', '10.44', '0.487530713', '7.357954545', '15.43305556', '1610.4', '248.215473', '222.1', '6.19', '638.9', '0.516895591', '3.9', '14.71194574', '4.534706596', '4.397353897');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '19H 426', '125.34', '18.69', '1.88', '16.7', '3.033', '11.299', '15.657', '35.1372', '0.419381218', '2.753049786', '6.010106383', '6613', '867.9459994', '707.6', '7.26', '2361.7', '0.498443398', '4.34', '330.6580784', '5.173830333', '5.11161023');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '19CB 426', '125.3', '18.69', '1.879', '16.699', '3.033', '11.199', '15.657', '35.11851', '0.415473329', '2.752884932', '5.960085152', '6611.4', '867.8586704', '707.5', '7.26', '2361.2', '0.498459392', '4.34', '331.7548465', '5.175955007', '5.111430301');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '19WF 426', '125.25', '18.69', '1.875', '16.695', '3.033', '11.299', '15.657', '35.04375', '0.418391109', '2.752225519', '6.026133333', '6610.3', '867.5093543', '707.4', '7.26', '2359.5', '0.49846016', '4.34', '330.2247008', '5.172495742', '5.109951064');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '19CB 425', '124.99', '18.51', '1.912', '16.506', '3.06', '10.965', '15.45', '35.39112', '0.415081385', '2.697058824', '5.734832636', '6420.5', '853.7329458', '693.7', '7.17', '2301', '0.498366778', '4.29', '337.4077335', '5.126872315', '5.061994933');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '19CB 412', '121.16', '18.5', '1.827', '16.647', '2.938', '11.199', '15.562', '33.7995', '0.418340606', '2.833049694', '6.129720854', '6309.7', '833.9102194', '682.1', '7.22', '2265.7', '0.498512531', '4.32', '301.75056', '5.147495189', '5.083875251');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '19WF 412', '121.15', '18.5', '1.825', '16.645', '2.938', '11.299', '15.562', '33.7625', '0.42166474', '2.832709326', '6.191232877', '6309.7', '833.7390944', '682.1', '7.22', '2264.9', '0.498508895', '4.32', '300.4940905', '5.14454414', '5.082977635');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18CB 405', '119.2', '18.246', '1.829', '16.423', '2.928', '10.965', '15.318', '33.371934', '0.417060228', '2.804474044', '5.995079278', '6010.5', '806.7830887', '658.8', '7.1', '2168.2', '0.49848026', '4.27', '295.0491569', '5.08446228', '5.020638008');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18H 398', '117.08', '18.31', '1.775', '16.595', '2.843', '11.299', '15.467', '32.50025', '0.42509329', '2.918571931', '6.365633803', '6016.3', '800.4450268', '657.2', '7.17', '2171.7', '0.498571619', '4.31', '272.6186162', '5.116452467', '5.055209788');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18CB 398', '117.05', '18.31', '1.775', '16.595', '2.843', '11.199', '15.467', '32.50025', '0.421331069', '2.918571931', '6.309295775', '6015.2', '800.4450268', '657', '7.17', '2171.7', '0.498571619', '4.31', '273.6295456', '5.118906987', '5.055979168');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18WF 398', '116.98', '18.31', '1.77', '16.59', '2.843', '11.299', '15.467', '32.4087', '0.4240236', '2.917692578', '6.383615819', '6013.7', '800.0259567', '656.9', '7.17', '2169.7', '0.498580263', '4.31', '272.2437625', '5.115145377', '5.054035155');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18CB 385', '113.22', '17.978', '1.746', '16.34', '2.794', '10.965', '15.184', '31.389588', '0.419347851', '2.924123121', '6.280068729', '5609.4', '760.2177603', '624', '7.04', '2037.4', '0.4985687', '4.24', '255.9805463', '5.041564875', '4.978791687');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18WF 384', '112.93', '18.12', '1.72', '16.54', '2.748', '11.299', '15.372', '31.1664', '0.427578857', '3.009461426', '6.569186047', '5727.3', '767.2140259', '632.2', '7.12', '2078.1', '0.498626729', '4.29', '246.1887189', '5.086922308', '5.026389801');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18CB 384', '112.92', '18.12', '1.721', '16.541', '2.748', '11.199', '15.372', '31.18452', '0.424015395', '3.009643377', '6.507263219', '5726.9', '767.2961095', '632.1', '7.12', '2078.4', '0.498645189', '4.29', '247.1884214', '5.089665541', '5.027150207');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18H 370', '108.87', '17.94', '1.66', '16.48', '2.658', '11.299', '15.282', '29.7804', '0.428189401', '3.100075245', '6.806626506', '5456.6', '735.5469139', '608.3', '7.08', '1987.9', '0.498713149', '4.27', '222.2896608', '5.056817849', '4.997047279');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18CB 370', '108.83', '17.94', '1.659', '16.479', '2.658', '11.199', '15.282', '29.76246', '0.424169855', '3.099887133', '6.75045208', '5455.1', '735.466453', '608.2', '7.08', '1987.5', '0.498722721', '4.27', '223.0775348', '5.059061261', '4.996955255');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18WF 370', '108.78', '17.94', '1.655', '16.475', '2.658', '11.299', '15.282', '29.6907', '0.427029233', '3.099134688', '6.827190332', '5454.2', '735.1446094', '608.1', '7.08', '1986', '0.498736044', '4.27', '221.9699215', '5.055540789', '4.99547995');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18CB 365', '107.34', '17.71', '1.661', '16.255', '2.66', '10.965', '15.05', '29.41631', '0.421220654', '3.055451128', '6.601444913', '5221.4', '714.4823145', '589.7', '6.97', '1909.1', '0.498692268', '4.22', '220.442264', '4.997956726', '4.93573719');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18CB 356', '104.68', '17.75', '1.602', '16.422', '2.563', '11.199', '15.187', '28.4355', '0.42625266', '3.203667577', '6.990636704', '5179.3', '703.0403757', '583.6', '7.03', '1896.4', '0.498787495', '4.26', '199.9168082', '5.028842924', '4.96739082');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18WF 356', '104.68', '17.75', '1.6', '16.42', '2.563', '11.299', '15.187', '28.4', '0.429574242', '3.203277409', '7.061875', '5179.4', '702.8828444', '583.6', '7.03', '1895.7', '0.498789392', '4.26', '199.0206646', '5.02581306', '4.966473952');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '17CB 345', '101.47', '17.438', '1.578', '16.172', '2.524', '10.965', '14.914', '27.517164', '0.423899156', '3.203645008', '6.948669202', '4843.4', '669.3220844', '555.5', '6.91', '1783.5', '0.498799706', '4.19', '188.1353846', '4.954343662', '4.893015559');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18WF 342', '100.59', '17.56', '1.545', '16.365', '2.468', '11.299', '15.092', '27.1302', '0.432222457', '3.315437601', '7.313268608', '4911.5', '671.1029479', '559.4', '6.99', '1806.9', '0.49885901', '4.24', '177.7266852', '4.995957196', '4.937012518');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '18CB 342', '100.56', '17.56', '1.545', '16.365', '2.468', '11.199', '15.092', '27.1302', '0.428397141', '3.315437601', '7.248543689', '4910.4', '671.1029479', '559.3', '6.99', '1806.9', '0.49885901', '4.24', '178.4360737', '4.998510514', '4.937453854');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '17H 328', '96.52', '17.38', '1.48', '16.3', '2.378', '11.299', '15.002', '25.7224', '0.431421982', '3.42724979', '7.634459459', '4658.3', '640.4637119', '536', '6.95', '1720.1', '0.498930119', '4.22', '158.384876', '4.964392865', '4.906299275');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '17CB 328', '96.47', '17.38', '1.479', '16.299', '2.378', '11.199', '15.002', '25.70502', '0.427341046', '3.427039529', '7.572008114', '4656.8', '640.3881958', '535.9', '6.95', '1719.7', '0.498954326', '4.22', '158.9783324', '4.966708395', '4.906186463');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '17WF 328', '96.43', '17.38', '1.475', '16.295', '2.378', '11.299', '15.002', '25.6355', '0.430096406', '3.426198486', '7.660338983', '4656.1', '640.0861314', '535.8', '6.95', '1718.5', '0.49893522', '4.22', '158.1398064', '4.963168869', '4.904932062');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '17CB 325', '95.58', '17.164', '1.493', '16.087', '2.387', '10.965', '14.777', '25.625852', '0.426325159', '3.369710934', '7.344273275', '4475.9', '624.7303001', '521.6', '6.84', '1659.9', '0.498901068', '4.17', '158.9181074', '4.909836534', '4.848979074');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '17WF 320', '94.12', '16.81', '1.89', '16.71', '2.093', '11.299', '14.717', '31.7709', '0.610599065', '3.991877688', '5.978306878', '4141.7', '590.0129397', '492.8', '6.63', '1635.1', '0.497706157', '4.17', '136.8818576', '5.007374523', '4.941188896');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '17CB 320', '94.09', '16.81', '1.89', '16.71', '2.093', '11.199', '14.717', '31.7709', '0.605195055', '3.991877688', '5.925396825', '4140.7', '590.0129397', '492.6', '6.63', '1635', '0.497736598', '4.17', '137.5781749', '5.011107401', '4.942040747');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '17H 314', '92.39', '17.19', '1.42', '16.24', '2.283', '11.299', '14.907', '24.4098', '0.432749342', '3.556723609', '7.957042254', '4401.5', '609.2654479', '512.1', '6.9', '1633', '0.498995415', '4.2', '139.9616387', '4.933121193', '4.875238116');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '17CB 314', '92.36', '17.19', '1.42', '16.24', '2.283', '11.199', '14.907', '24.4098', '0.428919363', '3.556723609', '7.886619718', '4400.5', '609.2654479', '512', '6.9', '1632.9', '0.499025974', '4.2', '140.5427363', '4.935705933', '4.875564901');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '17WF 314', '92.3', '17.19', '1.415', '16.235', '2.283', '11.299', '14.907', '24.32385', '0.431358385', '3.555628559', '7.985159011', '4399.4', '608.8960778', '511.9', '6.9', '1631.4', '0.499023602', '4.2', '139.738957', '4.931917752', '4.873800993');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '17CB 305', '89.7', '16.89', '1.406', '16', '2.25', '10.965', '14.64', '23.74734', '0.428244167', '3.555555556', '7.798719772', '4121.5', '580.9995032', '488', '6.78', '1539.1', '0.498992918', '4.14', '132.8440957', '4.864620723', '4.804841309');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '17H 300', '88.28', '17', '1.36', '16.18', '2.188', '11.299', '14.812', '23.12', '0.434063314', '3.697440585', '8.308088235', '4151.5', '578.5562819', '488.4', '6.86', '1547.5', '0.499080919', '4.19', '123.0432445', '4.901752329', '4.844169769');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '17CB 300', '88.24', '17', '1.359', '16.179', '2.188', '11.199', '14.812', '23.103', '0.429931938', '3.697212066', '8.240618102', '4150.1', '578.4840319', '488.2', '6.86', '1547.2', '0.499085141', '4.19', '123.525782', '4.904121877', '4.844692252');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '17WF 300', '88.2', '17', '1.355', '16.175', '2.188', '11.299', '14.812', '23.035', '0.432601177', '3.696297989', '8.338745387', '4149.5', '578.1950319', '488.2', '6.86', '1546', '0.499102161', '4.19', '122.8416508', '4.900571009', '4.842813129');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '17H 298', '87.63', '16.875', '1.39', '15.61', '2.246', '11.1128', '14.629', '23.45625', '0.440580877', '3.475066785', '7.994820144', '4011.3', '566.1549178', '475.4', '6.77', '1406.5', '0.506171255', '4.01', '130.6034283', '4.740402464', '4.651923901');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '17CB 295', '86.76', '16.752', '1.362', '15.956', '2.181', '10.965', '14.571', '22.816224', '0.42914697', '3.657955066', '8.050660793', '3948.1', '559.3421946', '471.4', '6.75', '1479.4', '0.499069338', '4.13', '120.8742598', '4.841726679', '4.781649067');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '17H 291.2', '85.63', '16.88', '1.41', '15.16', '2.2485', '11.1178', '14.6315', '23.8008', '0.459881434', '3.371136313', '7.884964539', '3897.7', '552.7781264', '462', '6.75', '1290.7', '0.505805957', '3.88', '128.1718406', '4.599887977', '4.520860386');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '17H 289', '85.01', '16.75', '1.35', '15.57', '2.1835', '11.1118', '14.5665', '22.6125', '0.441241524', '3.565376689', '8.230962963', '3857.7', '546.9462598', '460.6', '6.74', '1356.1', '0.506461074', '3.99', '119.9029442', '4.719853443', '4.630698441');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '17H 288.5', '84.5', '16.88', '1.41', '14.9', '2.25', '11.1178', '14.63', '23.8008', '0.467594273', '3.311111111', '7.884964539', '3836.1', '544.4762655', '454.7', '6.74', '1226.7', '0.505617052', '3.81', '126.3457828', '4.519604008', '4.442361235');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '17H 287.5', '84.5', '16.88', '1.41', '14.9', '2.25', '11.1178', '14.63', '23.8008', '0.467594273', '3.311111111', '7.884964539', '3836.1', '544.4762655', '454.7', '6.74', '1226.7', '0.505617052', '3.81', '126.3457828', '4.519604008', '4.442361235');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '17CB 287', '84.39', '16.81', '1.313', '16.133', '2.093', '11.199', '14.717', '22.07153', '0.435471371', '3.854037267', '8.529322163', '3912.3', '549.2513372', '465.5', '6.81', '1467.3', '0.499130911', '4.17', '108.5139468', '4.875949949', '4.81608633');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '17WF 287', '84.37', '16.81', '1.31', '16.13', '2.093', '11.299', '14.717', '22.0211', '0.438437516', '3.853320592', '8.62519084', '3912.1', '549.0394052', '465.5', '6.81', '1466.5', '0.499124648', '4.17', '107.9291314', '4.872599916', '4.81477324');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '17CB 285', '83.82', '16.614', '1.318', '15.912', '2.112', '10.965', '14.502', '21.897252', '0.430036543', '3.767045455', '8.319423369', '3778.1', '537.9385372', '454.8', '6.71', '1420.7', '0.499096584', '4.12', '109.6551694', '4.818781301', '4.7592653');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '17H 282.4', '83.07', '16.75', '1.37', '15.12', '2.186', '11.1118', '14.564', '22.9475', '0.460577835', '3.458371455', '8.11080292', '3748.1', '533.828265', '447.5', '6.72', '1244.3', '0.506056706', '3.87', '117.68815', '4.579685053', '4.499780901');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '17H 280', '82.39', '16.625', '1.31', '15.53', '2.121', '11.1128', '14.504', '21.77875', '0.4419597', '3.661008958', '8.483053435', '3706.9', '527.9436678', '445.9', '6.71', '1306.4', '0.506754505', '3.98', '109.7930862', '4.699214763', '4.609440861');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '17H 279.5', '81.97', '16.75', '1.37', '14.86', '2.1875', '11.1118', '14.5625', '22.9475', '0.468315047', '3.396571429', '8.11080292', '3688.8', '525.8024418', '440.5', '6.71', '1182.4', '0.505893178', '3.8', '116.0153371', '4.499529233', '4.420915617');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '17H 278.5', '81.97', '16.75', '1.37', '14.86', '2.1875', '11.1118', '14.5625', '22.9475', '0.468315047', '3.396571429', '8.11080292', '3688.8', '525.8024418', '440.5', '6.71', '1182.4', '0.505893178', '3.8', '116.0153371', '4.499529233', '4.420915617');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16CB 275', '80.87', '16.472', '1.276', '15.87', '2.041', '10.965', '14.431', '21.018272', '0.431955869', '3.887800098', '8.593260188', '3607.8', '516.4001187', '438.1', '6.68', '1362', '0.49913202', '4.1', '98.98115221', '4.795880712', '4.736255719');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '17H 273.7', '80.51', '16.63', '1.33', '15.08', '2.1235', '11.1178', '14.5065', '22.1179', '0.461760619', '3.5507417', '8.35924812', '3601.2', '515.4962634', '433.2', '6.69', '1198.5', '0.5063339', '3.86', '107.7901149', '4.559056394', '4.479619418');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '17WF 273', '80.3', '16.62', '1.25', '16.07', '1.998', '11.299', '14.622', '20.775', '0.439884502', '4.021521522', '9.0392', '3675.1', '519.2828089', '442.3', '6.76', '1384.2', '0.49918672', '4.15', '93.78237719', '4.840980655', '4.783318997');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '17CB 273', '80.28', '16.62', '1.25', '16.07', '1.998', '11.199', '14.622', '20.775', '0.435991374', '4.021521522', '8.9592', '3674.1', '519.2828089', '442.1', '6.77', '1384.2', '0.49918672', '4.15', '94.20519407', '4.843654528', '4.784400829');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '17WF 273', '80.22', '16.62', '1.245', '16.065', '1.998', '11.299', '14.622', '20.6919', '0.438261324', '4.02027027', '9.075502008', '3673.2', '518.9375284', '442', '6.77', '1382.9', '0.49918974', '4.15', '93.61733543', '4.839848973', '4.782694554');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '17H 271', '79.79', '16.5', '1.27', '15.49', '2.0585', '11.1118', '14.4415', '20.955', '0.44257395', '3.762448385', '8.749448819', '3558.8', '509.1448535', '431.4', '6.68', '1257.3', '0.507089903', '3.97', '100.291268', '4.678591269', '4.587441529');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '17H 271', '79.44', '16.63', '1.33', '14.82', '2.125', '11.1178', '14.505', '22.1179', '0.469530015', '3.487058824', '8.35924812', '3544.1', '507.73894', '426.4', '6.68', '1138.7', '0.506189321', '3.79', '106.2617614', '4.479033891', '4.400884097');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '17H 270', '79.44', '16.63', '1.33', '14.82', '2.125', '11.1178', '14.505', '22.1179', '0.469530015', '3.487058824', '8.35924812', '3544.1', '507.73894', '426.4', '6.68', '1138.7', '0.506189321', '3.79', '106.2617614', '4.479033891', '4.400884097');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '17H 265.1', '77.97', '16.5', '1.29', '15.04', '2.061', '11.1118', '14.439', '21.285', '0.462432446', '3.648714216', '8.61379845', '3457', '496.962015', '419', '6.66', '1153.3', '0.506638235', '3.85', '98.47884412', '4.53877369', '4.457770387');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16CB 265', '77.93', '16.332', '1.232', '15.826', '1.971', '10.965', '14.361', '20.121024', '0.433073448', '4.014713343', '8.900162338', '3442.4', '495.2450604', '421.6', '6.65', '1304.2', '0.499200103', '4.09', '89.08220245', '4.772629333', '4.713018452');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '17WF 264', '77.63', '16.5', '1.205', '16.025', '1.938', '11.299', '14.562', '19.8825', '0.438404744', '4.134416925', '9.376763485', '3526', '500.2528444', '427.4', '6.74', '1331.2', '0.499256045', '4.14', '85.30695886', '4.819372954', '4.762115352');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '17CB 264', '77.62', '16.5', '1.206', '16.026', '1.938', '11.199', '14.562', '19.899', '0.434858177', '4.134674923', '9.286069652', '3525.4', '500.3209069', '427.3', '6.74', '1331.5', '0.499237007', '4.14', '85.72870191', '4.822272216', '4.763209182');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '17H 262.5', '76.93', '16.5', '1.29', '14.78', '2.0625', '11.1118', '14.4375', '21.285', '0.470225022', '3.583030303', '8.61379845', '3402.1', '489.4765043', '412.4', '6.65', '1095.6', '0.506505295', '3.77', '97.08634945', '4.458882319', '4.379229285');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16H 262', '77.2', '16.375', '1.23', '15.45', '1.996', '11.1128', '14.379', '20.14125', '0.443240656', '3.870240481', '9.034796748', '3413.4', '490.5502303', '416.9', '6.65', '1209', '0.507385955', '3.96', '91.34599324', '4.657877565', '4.566111863');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '17H 261.5', '76.93', '16.5', '1.29', '14.78', '2.0625', '11.1118', '14.4375', '21.285', '0.470225022', '3.583030303', '8.61379845', '3402.1', '489.4765043', '412.4', '6.65', '1095.6', '0.506505295', '3.77', '97.08634945', '4.458882319', '4.379229285');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16H 256.5', '75.43', '16.38', '1.25', '15', '1.9985', '11.1178', '14.3815', '20.475', '0.463589359', '3.752814611', '8.89424', '3315.4', '479.0182504', '404.9', '6.63', '1108.7', '0.506970438', '3.83', '89.71859466', '4.518072759', '4.437314698');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16CB 255', '74.99', '16.192', '1.187', '15.781', '1.901', '10.965', '14.291', '19.219904', '0.433853113', '4.150710153', '9.237573715', '3280', '474.2801568', '405.1', '6.61', '1247.1', '0.499232846', '4.08', '79.84428945', '4.749092561', '4.690140251');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16CB 255', '74.98', '16.37', '1.172', '15.992', '1.873', '11.199', '14.497', '19.18564', '0.43819387', '4.269087026', '9.555460751', '3372.3', '480.9229281', '412', '6.71', '1278.6', '0.499263911', '4.13', '77.5390675', '4.802130163', '4.742887393');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16WF 255', '74.98', '16.37', '1.17', '15.99', '1.873', '11.299', '14.497', '19.1529', '0.44140742', '4.268553123', '9.657264957', '3372.6', '480.7889397', '412', '6.71', '1278.1', '0.499271859', '4.13', '77.11935709', '4.79898458', '4.741959943');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16H 254', '74.62', '16.25', '1.19', '15.41', '1.9335', '11.1118', '14.3165', '19.3375', '0.443797204', '3.985001293', '9.337647059', '3270.6', '472.1575098', '402.5', '6.62', '1161.2', '0.507766236', '3.94', '82.96871795', '4.637179757', '4.544373328');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16H 254', '74.43', '16.38', '1.25', '14.74', '2', '11.1178', '14.38', '20.475', '0.471412822', '3.685', '8.89424', '3262.7', '471.7973395', '398.5', '6.62', '1053.2', '0.506792699', '3.76', '88.4536982', '4.438317632', '4.359189086');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16H 253', '74.43', '16.38', '1.25', '14.74', '2', '11.1178', '14.38', '20.475', '0.471412822', '3.685', '8.89424', '3262.7', '471.7973395', '398.5', '6.62', '1053.2', '0.506792699', '3.76', '88.4536982', '4.438317632', '4.359189086');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16H 247.9', '72.91', '16.25', '1.21', '14.96', '1.936', '11.1118', '14.314', '19.6625', '0.464229612', '3.863636364', '9.183305785', '3176.3', '460.895765', '390.9', '6.6', '1064.7', '0.507331272', '3.82', '81.5072745', '4.497709296', '4.415158515');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16CB 246', '72.33', '16.25', '1.127', '15.947', '1.813', '11.199', '14.437', '18.31375', '0.43654233', '4.397959184', '9.937000887', '3228.6', '462.3024538', '397.4', '6.68', '1227.1', '0.499313818', '4.12', '70.09665442', '4.780485527', '4.721168785');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16WF 246', '72.33', '16.25', '1.125', '15.945', '1.813', '11.299', '14.437', '18.28125', '0.439713909', '4.397407612', '10.04355556', '3228.9', '462.1704225', '397.4', '6.68', '1226.6', '0.499329435', '4.12', '69.7103338', '4.77734842', '4.720206832');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16H 245.5', '71.94', '16.25', '1.21', '14.7', '1.9375', '11.1118', '14.3125', '19.6625', '0.472074716', '3.793548387', '9.183305785', '3125.8', '453.9424418', '384.7', '6.59', '1011.3', '0.507145367', '3.5', '80.36189716', '4.418088424', '4.337321974');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16CB 245', '72.06', '16.05', '1.144', '15.738', '1.83', '10.965', '14.22', '18.3612', '0.435546', '4.3', '9.58479021', '3119.6', '453.4481394', '388.7', '6.58', '1190.6', '0.499289679', '4.06', '71.22943177', '4.725750332', '4.666706298');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16H 245', '72.05', '16.125', '1.15', '15.37', '1.871', '11.1128', '14.254', '18.54375', '0.444399625', '4.107429182', '9.663304348', '3130.4', '453.9671053', '388.3', '6.59', '1114.2', '0.5081021', '3.93', '75.11380718', '4.616391513', '4.522215573');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16H 244.5', '71.94', '16.25', '1.21', '14.7', '1.9375', '11.1118', '14.3125', '19.6625', '0.472074716', '3.793548387', '9.183305785', '3125.8', '453.9424418', '384.7', '6.59', '1011.3', '0.507145367', '3.75', '80.36189716', '4.418088424', '4.337321974');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16H 239.3', '70.39', '16.13', '1.17', '14.92', '1.8735', '11.1178', '14.2565', '18.8721', '0.465352657', '3.981852148', '9.502393162', '3039.9', '443.3365874', '377', '6.57', '1021.4', '0.507671832', '3.81', '73.81240969', '4.476935607', '4.394593541');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16WF 237', '69.69', '16.12', '1.09', '15.91', '1.748', '11.299', '14.372', '17.5708', '0.442848215', '4.550915332', '10.36605505', '3080.9', '443.1221579', '382.2', '6.65', '1174.8', '0.499351988', '4.11', '62.57845245', '4.756819387', '4.699809275');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16CB 237', '69.68', '16.12', '1.091', '15.911', '1.748', '11.199', '14.372', '17.58692', '0.439303933', '4.551201373', '10.26489459', '3080.2', '443.1871215', '382.2', '6.65', '1175', '0.49936114', '4.11', '62.91047475', '4.759765233', '4.70020931');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16H 237', '69.45', '16.13', '1.17', '14.66', '1.875', '11.1178', '14.255', '18.8721', '0.473226958', '3.909333333', '9.502393162', '2991.5', '436.643964', '371', '6.56', '970', '0.507516543', '3.74', '72.7788152', '4.397454047', '4.316855637');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16H 236', '69.49', '16', '1.11', '15.33', '1.8085', '11.1118', '14.1915', '17.76', '0.444883938', '4.238319049', '10.01063063', '2992.9', '435.9767285', '374.1', '6.56', '1067.8', '0.508479929', '3.92', '67.78750663', '4.595620248', '4.500391099');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16H 236', '69.45', '16.13', '1.17', '14.66', '1.875', '11.1178', '14.255', '18.8721', '0.473226958', '3.909333333', '9.502393162', '2991.5', '436.643964', '371', '6.56', '970', '0.507516543', '3.74', '72.7788152', '4.397454047', '4.316855637');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16CB 235', '69.11', '15.908', '1.099', '15.693', '1.759', '10.965', '14.149', '17.482892', '0.436550524', '4.460773167', '9.977252047', '2961.9', '432.7462615', '372.4', '6.55', '1134.5', '0.499341909', '4.05', '63.21413575', '4.701896944', '4.642429202');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16H 230.8', '67.89', '16', '1.13', '14.88', '1.811', '11.1118', '14.189', '18.08', '0.465952319', '4.108227499', '9.833451327', '2905.9', '425.622015', '363.2', '6.55', '978.7', '0.508038248', '3.8', '66.6291309', '4.456490782', '4.372328369');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16H 228.5', '66.98', '16', '1.13', '14.62', '1.8125', '11.1118', '14.1875', '18.08', '0.473846276', '4.033103448', '9.833451327', '2859.6', '419.1927543', '357.5', '6.53', '929.4', '0.507850891', '3.72', '65.69976219', '4.377146757', '4.294387702');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16WF 228', '67.06', '16', '1.045', '15.865', '1.688', '11.299', '14.312', '16.72', '0.440903738', '4.699348341', '10.81244019', '2942.4', '424.9112819', '367.8', '6.62', '1124.8', '0.499385718', '4.1', '56.16097927', '4.735161782', '4.678072599');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16CB 228', '67.03', '16', '1.045', '15.865', '1.688', '11.199', '14.312', '16.72', '0.437001589', '4.699348341', '10.71674641', '2941.4', '424.9112819', '367.7', '6.62', '1124.7', '0.49943012', '4.1', '56.442656', '4.737892868', '4.678500698');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16H 227.5', '66.98', '16', '1.13', '14.62', '1.8125', '11.1118', '14.1875', '18.08', '0.473846276', '4.033103448', '9.833451327', '2859.6', '419.1927543', '357.5', '6.53', '929.4', '0.507850891', '3.72', '65.69976219', '4.377146757', '4.294387702');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16H 227', '66.94', '15.875', '1.07', '15.29', '1.746', '11.1128', '14.129', '16.98625', '0.445405475', '4.378579611', '10.38579439', '2857.8', '418.1867928', '360', '6.53', '1022', '0.508902464', '3.91', '60.94932065', '4.574758785', '4.478317827');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16CB 225', '66.17', '15.764', '1.056', '15.65', '1.687', '10.965', '14.077', '16.646784', '0.43857425', '4.638411381', '10.38352273', '2806.2', '412.1818138', '356', '6.51', '1079.1', '0.499361631', '4.04', '55.79003581', '4.678201682', '4.618978117');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16H 222.3', '65.39', '15.88', '1.09', '14.84', '1.7485', '11.1178', '14.1315', '17.3092', '0.467031117', '4.243637403', '10.19981651', '2774.5', '408.4437744', '349.5', '6.51', '936.6', '0.508430903', '3.78', '59.92782474', '4.435644327', '4.351436199');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16H 220.5', '64.52', '15.88', '1.09', '14.58', '1.75', '11.1178', '14.13', '17.3092', '0.474952067', '4.165714286', '10.19981651', '2730.2', '402.2713135', '344', '6.51', '889.3', '0.508254324', '3.71', '59.09546938', '4.356442845', '4.273670234');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16H 219.5', '64.52', '15.88', '1.09', '14.58', '1.75', '11.1178', '14.13', '17.3092', '0.474952067', '4.165714286', '10.19981651', '2730.2', '402.2713135', '344', '6.51', '889.3', '0.508254324', '3.71', '59.09546938', '4.356442845', '4.273670234');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16H 219', '64.44', '15.87', '1.01', '15.83', '1.623', '11.299', '14.247', '16.0287', '0.444183015', '4.876771411', '11.18712871', '2799.9', '406.2749637', '352.8', '6.59', '1074.2', '0.499453281', '4.08', '50.00955437', '4.714485343', '4.657201194');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16CB 219', '64.42', '15.87', '1.01', '15.83', '1.623', '11.199', '14.247', '16.0287', '0.440251844', '4.876771411', '11.08811881', '2798.8', '406.2749637', '352.7', '6.59', '1074.2', '0.499453281', '4.08', '50.26819753', '4.717247804', '4.657861368');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16H 219', '64.4', '15.75', '1.03', '15.25', '1.6835', '11.1118', '14.0665', '16.2225', '0.445798575', '4.529254529', '10.78815534', '2725.3', '400.5950098', '346.1', '6.51', '976.9', '0.509320663', '3.89', '54.60098163', '4.553915916', '4.455559858');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16WF 219', '64.36', '15.87', '1.005', '15.825', '1.623', '11.299', '14.247', '15.94935', '0.442123737', '4.875231054', '11.24278607', '2798.2', '405.9601425', '352.6', '6.59', '1073.2', '0.499445111', '4.08', '49.90730868', '4.71348239', '4.656352951');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16CB 215', '63.23', '15.622', '1.01', '15.604', '1.616', '10.965', '14.006', '15.77822', '0.439190272', '4.827970297', '10.85643564', '2654.7', '391.9379976', '339.9', '6.48', '1024.5', '0.499408549', '4.03', '48.99323063', '4.654005073', '4.594332919');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16H 214.4', '63.07', '15.75', '1.06', '14.81', '1.686', '11.1118', '14.064', '16.695', '0.471712791', '4.392052195', '10.48283019', '2648.7', '391.7534213', '336.3', '6.48', '897', '0.508802289', '3.77', '53.92947359', '4.417195431', '4.330840794');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16H 212', '62.07', '15.75', '1.05', '14.54', '1.6875', '11.1118', '14.0625', '16.5375', '0.47551643', '4.308148148', '10.58266667', '2603.3', '385.2199418', '330.6', '6.48', '849.8', '0.508673401', '3.7', '52.95886154', '4.336057605', '4.251314252');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16WF 211', '62.07', '15.75', '0.98', '15.8', '1.563', '11.299', '14.187', '15.435', '0.44838391', '5.054382598', '11.52959184', '2671.4', '389.3981569', '339.2', '6.56', '1028.6', '0.499462024', '4.07', '44.7923996', '4.695747511', '4.637945326');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16H 211', '62.07', '15.75', '1.05', '14.54', '1.6875', '11.1118', '14.0625', '16.5375', '0.47551643', '4.308148148', '10.58266667', '2603.3', '385.2199418', '330.6', '6.48', '849.8', '0.508673401', '3.7', '52.95886154', '4.336057605', '4.251314252');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16CB 211', '62.04', '15.75', '0.98', '15.8', '1.563', '11.199', '14.187', '15.435', '0.444415559', '5.054382598', '11.42755102', '2670.4', '389.3981569', '339.1', '6.56', '1028.6', '0.499462024', '4.07', '45.03143248', '4.698546357', '4.638629137');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16H 210', '61.86', '15.625', '0.99', '15.21', '1.621', '11.1128', '14.004', '15.46875', '0.446217362', '4.691548427', '11.22505051', '2595.4', '383.2017928', '332.2', '6.48', '932.4', '0.50978511', '3.88', '48.70646142', '4.53298376', '4.433149441');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16H 206', '60.59', '15.63', '1.02', '14.77', '1.6235', '11.1178', '14.0065', '15.9426', '0.472918432', '4.54881429', '10.89980392', '2522.1', '374.9430537', '322.8', '6.45', '856', '0.509259065', '3.76', '48.13182665', '4.396226555', '4.309431028');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15CB 205', '60.28', '15.478', '0.965', '15.559', '1.544', '10.965', '13.934', '14.93627', '0.440460505', '5.038536269', '11.3626943', '2505', '371.7726138', '323.7', '6.45', '970.3', '0.499465001', '4.01', '42.72506764', '4.629744669', '4.569877634');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16H 204.5', '59.78', '15.63', '1.02', '14.51', '1.625', '11.1178', '14.005', '15.9426', '0.480948142', '4.464615385', '10.89980392', '2481.9', '369.2826302', '317.7', '6.44', '812.6', '0.509093484', '3.69', '47.4727484', '4.317314016', '4.232104281');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16H 203.5', '59.78', '15.63', '1.02', '14.51', '1.625', '11.1178', '14.005', '15.9426', '0.480948142', '4.464615385', '10.89980392', '2481.9', '369.2826302', '317.7', '6.44', '812.6', '0.509093484', '3.69', '47.4727484', '4.317314016', '4.232104281');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16H 202', '59.5', '15.5', '0.96', '15.18', '1.5585', '11.1118', '13.9415', '14.88', '0.450896715', '4.870067372', '11.57479167', '2470.9', '366.6054785', '318.8', '6.44', '890.3', '0.510275247', '3.87', '43.4499142', '4.514042442', '4.412134916');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16WF 202', '59.39', '15.63', '0.93', '15.75', '1.503', '11.299', '14.127', '14.5359', '0.443898235', '5.239520958', '12.14946237', '2538.8', '371.4703257', '324.9', '6.54', '979.7', '0.499489428', '4.06', '39.6054619', '4.673080116', '4.615105923');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16CB 202', '59.38', '15.63', '0.931', '15.751', '1.503', '11.199', '14.127', '14.55153', '0.440414707', '5.239853626', '12.02900107', '2538.1', '371.5313999', '324.8', '6.54', '979.8', '0.499533587', '4.06', '39.839167', '4.676053934', '4.616051888');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16H 197.6', '58.12', '15.5', '0.98', '14.73', '1.561', '11.1118', '13.939', '15.19', '0.473592528', '4.718129404', '11.33857143', '2397.9', '358.02264', '309.3', '6.42', '815.6', '0.509744655', '3.75', '42.77330984', '4.375567502', '4.286960281');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16H 196', '57.35', '15.5', '0.98', '14.47', '1.5625', '11.1118', '13.9375', '15.19', '0.48163932', '4.6304', '11.33857143', '2359.7', '352.6171293', '304.5', '6.41', '774.2', '0.509555163', '3.68', '42.19100943', '4.296799765', '4.209304827');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16H 195', '57.35', '15.5', '0.98', '14.47', '1.5625', '11.1118', '13.9375', '15.19', '0.48163932', '4.6304', '11.33857143', '2359.7', '352.6171293', '304.5', '6.41', '774.2', '0.509555163', '3.68', '42.19100943', '4.296799765', '4.209304827');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15CB 195', '57.34', '15.334', '0.919', '15.513', '1.472', '10.965', '13.862', '14.091946', '0.441286402', '5.269361413', '11.93144723', '2358.2', '351.8100602', '307.6', '6.41', '916.8', '0.499504421', '4', '37.00422222', '4.605218259', '4.545085801');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15H 194', '56.99', '15.375', '0.92', '15.14', '1.496', '11.1128', '13.879', '14.145', '0.451391999', '5.060160428', '12.07913043', '2345.8', '349.5955819', '305.1', '6.42', '846.9', '0.510852873', '3.86', '38.4099979', '4.492986009', '4.388934026');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16CB 193', '56.75', '15.5', '0.893', '15.713', '1.438', '11.199', '14.062', '13.8415', '0.442601322', '5.46349096', '12.54087346', '2402.3', '353.3133444', '310', '6.51', '930.6', '0.499564908', '4.05', '34.92856889', '4.654591981', '4.594192898');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16WF 193', '56.73', '15.5', '0.89', '15.71', '1.438', '11.299', '14.062', '13.795', '0.445138281', '5.462447844', '12.69550562', '2402.4', '353.1331569', '310', '6.51', '930.1', '0.499547225', '4.05', '34.68508454', '4.651232843', '4.592958531');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15H 189.3', '55.67', '15.38', '0.94', '14.69', '1.4985', '11.1178', '13.8815', '14.4572', '0.474753492', '4.901568235', '11.82744681', '2276.1', '341.5860594', '296.1', '6.39', '775.8', '0.510259517', '3.73', '37.82915889', '4.354520471', '4.26440933');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15H 187.5', '54.92', '15.38', '0.94', '14.43', '1.5', '11.1178', '13.88', '14.4572', '0.482824301', '4.81', '11.82744681', '2239.8', '336.4295485', '291.4', '6.39', '736.3', '0.510098687', '3.66', '37.31747005', '4.275902499', '4.187572718');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15H 186.5', '54.92', '15.38', '0.94', '14.43', '1.5', '11.1178', '13.88', '14.4572', '0.482824301', '4.81', '11.82744681', '2239.8', '336.4295485', '291.4', '6.39', '736.3', '0.510098687', '3.66', '37.31747005', '4.275902499', '4.187572718');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15H 185', '54.48', '15.25', '0.88', '15.1', '1.4335', '11.1118', '13.8165', '13.42', '0.451744053', '5.266829438', '12.62704545', '2223', '332.780166', '291.5', '6.39', '804.2', '0.511426496', '3.84', '33.78506231', '4.47195001', '4.365628517');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15CB 185', '54.41', '15.188', '0.875', '15.469', '1.399', '10.965', '13.789', '13.2895', '0.443339814', '5.528591851', '12.53142857', '2213.5', '331.9903272', '291.5', '6.38', '863.9', '0.499527857', '3.98', '31.79423399', '4.580780652', '4.520264473');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15H 184', '54.15', '15.38', '0.845', '15.665', '1.378', '11.299', '14.002', '12.9961', '0.442300164', '5.683962264', '13.37159763', '2276.4', '335.9182884', '296', '6.48', '883.6', '0.499578181', '4.04', '30.41068726', '4.629581194', '4.571534871');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15CB 184', '54.12', '15.38', '0.845', '15.665', '1.378', '11.199', '14.002', '12.9961', '0.438385657', '5.683962264', '13.25325444', '2275.3', '335.9182884', '295.9', '6.48', '883.6', '0.499578181', '4.04', '30.58792141', '4.632373994', '4.572307286');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15WF 184', '54.07', '15.38', '0.84', '15.66', '1.378', '11.299', '14.002', '12.9192', '0.439823388', '5.682148041', '13.45119048', '2274.8', '335.6226079', '295.8', '6.49', '882.7', '0.499608845', '4.04', '30.34117939', '4.62869716', '4.570750519');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15H 180.9', '53.22', '15.25', '0.9', '14.65', '1.436', '11.1118', '13.814', '13.725', '0.475373383', '5.10097493', '12.34644444', '2156.7', '325.0621713', '282.8', '6.37', '736.5', '0.510873431', '3.72', '33.28816133', '4.333774161', '4.241225863');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15H 179.5', '52.51', '15.25', '0.9', '14.39', '1.4375', '11.1118', '13.8125', '13.725', '0.483457473', '5.005217391', '12.34644444', '2122.3', '320.156348', '278.3', '6.36', '699', '0.510659968', '3.65', '32.84109602', '4.255304947', '4.164886133');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15H 178.5', '52.51', '15.25', '0.9', '14.39', '1.4375', '11.1118', '13.8125', '13.725', '0.483457473', '5.005217391', '12.34644444', '2122.3', '320.156348', '278.3', '6.36', '699', '0.510659968', '3.65', '32.84109602', '4.255304947', '4.164886133');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15H 177', '51.99', '15.125', '0.84', '15.06', '1.371', '11.1128', '13.754', '12.705', '0.452106091', '5.492341357', '13.22952381', '2102.6', '316.1596444', '278', '6.36', '762.1', '0.512058008', '3.83', '29.54622884', '4.450824091', '4.341932774');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15CB 176', '51.73', '15.25', '0.822', '15.642', '1.313', '11.199', '13.937', '12.5355', '0.448222914', '5.956587966', '13.62408759', '2149.1', '318.9869382', '281.9', '6.45', '838.2', '0.499588771', '4.03', '26.68770352', '4.613415736', '4.551933854');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15WF 176', '51.73', '15.25', '0.82', '15.64', '1.313', '11.299', '13.937', '12.505', '0.451182645', '5.955826352', '13.77926829', '2149.6', '318.8706569', '281.9', '6.45', '837.9', '0.499575965', '4.02', '26.49942824', '4.610210884', '4.55111919');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15CB 175', '51.47', '15.042', '0.83', '15.424', '1.326', '10.965', '13.716', '12.48486', '0.444985836', '5.815987934', '13.21084337', '2071.7', '312.3764651', '275.5', '6.34', '811.6', '0.499587185', '3.97', '27.08863494', '4.556062151', '4.494785363');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15H 172.7', '50.78', '15.13', '0.86', '14.61', '1.3735', '11.1178', '13.7565', '13.0118', '0.476473146', '5.318529305', '12.92767442', '2039.5', '308.9957277', '269.7', '6.34', '697.9', '0.511451983', '3.71', '29.12733158', '4.312650114', '4.218859908');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15H 171.5', '50.11', '15.13', '0.86', '14.35', '1.375', '11.1178', '13.755', '13.0118', '0.484576902', '5.218181818', '12.92767442', '2007', '304.3350042', '265.4', '6.33', '662.3', '0.511237144', '3.64', '28.7392459', '4.234334624', '4.142783309');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15H 170.5', '50.11', '15.13', '0.86', '14.35', '1.375', '11.1178', '13.755', '13.0118', '0.484576902', '5.218181818', '12.92767442', '2007', '304.3350042', '265.4', '6.33', '662.3', '0.511237144', '3.64', '28.7392459', '4.234334624', '4.142783309');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15H 168', '49.51', '15', '0.8', '15.02', '1.3085', '11.1118', '13.6915', '12', '0.452304328', '5.739396255', '13.88975', '1984.6', '299.7317285', '264.6', '6.33', '720.6', '0.512752777', '3.82', '25.68530493', '4.429722594', '4.317802033');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15CB 167', '49.1', '15.12', '0.782', '15.602', '1.248', '11.199', '13.872', '11.82384', '0.449770678', '6.250801282', '14.32097187', '2020.4', '301.2617491', '267.2', '6.41', '790.5', '0.499657356', '4.01', '22.93581277', '4.591324821', '4.52988579');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15WF 167', '49.09', '15.12', '0.78', '15.6', '1.248', '11.299', '13.872', '11.7936', '0.452684295', '6.25', '14.48589744', '2020.8', '301.1474419', '267.3', '6.42', '790.2', '0.499654852', '4.01', '22.76681967', '4.588115491', '4.528178888');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15CB 165', '48.52', '14.896', '0.783', '15.377', '1.253', '10.965', '13.643', '11.663568', '0.445602596', '6.136073424', '14.00383142', '1932.6', '292.9148726', '259.5', '6.31', '759.9', '0.499606665', '3.96', '22.85253191', '4.530914878', '4.469402658');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15H 164.4', '48.36', '15', '0.82', '14.57', '1.311', '11.1118', '13.689', '12.3', '0.477019381', '5.55682685', '13.55097561', '1924.7', '292.864515', '256.6', '6.32', '659.8', '0.51213893', '3.69', '25.33410907', '4.291817951', '4.195161588');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15H 163', '47.71', '15', '0.82', '14.31', '1.3125', '11.1118', '13.6875', '12.3', '0.48513133', '5.451428571', '13.55097561', '1894', '288.4502543', '252.5', '6.3', '626.1', '0.511909588', '3.62', '24.99953894', '4.213655501', '4.119440448');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15H 162.2', '47.71', '15', '0.82', '14.31', '1.3125', '11.1118', '13.6875', '12.3', '0.48513133', '5.451428571', '13.55097561', '1894', '288.4502543', '252.5', '6.31', '625.1', '0.512728512', '3.62', '24.99953894', '4.213655501', '4.116149371');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15H 162', '47.71', '15', '0.82', '14.31', '1.3125', '11.1118', '13.6875', '12.3', '0.48513133', '5.451428571', '13.55097561', '1894', '288.4502543', '252.5', '6.3', '626.1', '0.511909588', '3.62', '24.99953894', '4.213655501', '4.119440448');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15H 161', '47.33', '14.875', '0.78', '15', '1.246', '11.1128', '13.629', '11.6025', '0.463776565', '6.019261637', '14.24717949', '1874.4', '284.60316', '252', '6.29', '682.5', '0.513461538', '3.8', '22.40694758', '4.411794314', '4.296037418');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15WF 158', '46.47', '15', '0.73', '15.55', '1.188', '11.299', '13.812', '10.95', '0.446494419', '6.544612795', '15.47808219', '1900.6', '284.2387819', '253.4', '6.4', '745', '0.499654844', '4', '19.51680678', '4.565662196', '4.505968155');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15CB 158', '46.44', '15', '0.73', '15.55', '1.188', '11.199', '13.812', '10.95', '0.442542791', '6.544612795', '15.34109589', '1899.6', '284.2387819', '253.3', '6.4', '745', '0.499654844', '4.01', '19.64624552', '4.568514774', '4.50685752');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15H 155', '45.62', '14.875', '0.78', '14.27', '1.25', '11.1128', '13.625', '11.6025', '0.48594164', '5.708', '14.24717949', '1793.8', '272.8781738', '241.2', '6.27', '590.6', '0.512515783', '3.6', '21.60003357', '4.192745783', '4.084240685');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15CB 155', '45.58', '14.75', '0.736', '15.33', '1.18', '10.965', '13.57', '10.856', '0.446130883', '6.495762712', '14.89809783', '1796.8', '273.7193844', '243.6', '6.28', '709', '0.499667371', '3.94', '19.08704478', '4.505712981', '4.443850107');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15H 155', '45.33', '14.88', '0.78', '14.27', '1.25', '11.1178', '13.63', '11.6064', '0.48616028', '5.708', '14.25358974', '1783.3', '272.9914975', '239.8', '6.27', '590.5', '0.512602576', '3.61', '21.60082449', '4.192615156', '4.096550299');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15H 154.1', '45.33', '14.88', '0.78', '14.27', '1.25', '11.1178', '13.63', '11.6064', '0.48616028', '5.708', '14.25358974', '1783.3', '272.9914975', '239.8', '6.27', '589.5', '0.513472131', '3.61', '21.60082449', '4.192615156', '4.093080116');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15H 154', '45.33', '14.88', '0.78', '14.27', '1.25', '11.1178', '13.63', '11.6064', '0.48616028', '5.708', '14.25358974', '1783.3', '272.9914975', '239.8', '6.27', '589.5', '0.513472131', '3.61', '21.60082449', '4.192615156', '4.093080116');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15H 153', '45.01', '15', '0.75', '14.83', '1.188', '11.299', '13.812', '11.25', '0.480998454', '6.241582492', '15.06533333', '1822.2', '273.2213765', '243', '6.36', '646.3', '0.499602372', '3.79', '18.89629486', '4.346302525', '4.285753892');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15CB 153', '44.98', '15', '0.75', '14.828', '1.188', '11.199', '13.812', '11.25', '0.476805757', '6.240740741', '14.932', '1820.9', '273.1885592', '242.8', '6.36', '646', '0.499632187', '3.79', '19.02632291', '4.348616312', '4.286523459');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15H 150', '44.16', '14.88', '0.7', '15.52', '1.128', '11.299', '13.752', '10.416', '0.451790643', '6.879432624', '16.14142857', '1788.3', '268.6391539', '240.4', '6.36', '703.2', '0.499717021', '3.99', '16.77859772', '4.546247274', '4.484769567');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15CB 150', '44.13', '14.88', '0.7', '15.52', '1.128', '11.199', '13.752', '10.416', '0.447792142', '6.879432624', '15.99857143', '1787.2', '268.6391539', '240.2', '6.36', '703.2', '0.499717021', '3.99', '16.89581357', '4.549143757', '4.486636277');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15WF 150', '44.08', '14.88', '0.695', '15.515', '1.128', '11.299', '13.752', '10.3416', '0.448708125', '6.877216312', '16.25755396', '1786.9', '268.3623859', '240.2', '6.37', '702.5', '0.49973166', '3.99', '16.73292769', '4.545532804', '4.484402611');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 149', '43.82', '14.125', '1.41', '14.9', '0.875', '11.1128', '13.25', '19.91625', '1.201844525', '8.514285714', '7.88141844', '1379.1', '226.7087598', '195.3', '5.61', '468.8', '0.514514963', '3.27', '20.25767718', '4.157747059', '3.98782068');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 149', '43.52', '14.125', '1.41', '14.9', '0.875', '11.1128', '13.25', '19.91625', '1.201844525', '8.514285714', '7.88141844', '1368.5', '226.7087598', '193.8', '5.61', '468.8', '0.514514963', '3.28', '20.25767718', '4.157747059', '4.003223675');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 148', '43.52', '14.125', '1.41', '14.9', '0.875', '11.1128', '13.25', '19.91625', '1.201844525', '8.514285714', '7.88141844', '1368.5', '226.7087598', '193.8', '5.61', '468.6', '0.51473456', '3.28', '20.25767718', '4.157747059', '4.002369654');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15H 147', '43.25', '14.75', '0.74', '14.23', '1.1875', '11.1118', '13.5625', '10.915', '0.486606177', '5.991578947', '15.01594595', '1685.3', '257.491348', '228.5', '6.24', '555.5', '0.513313882', '3.58', '18.52964719', '4.171858194', '4.06025965');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15H 147', '42.95', '14.75', '0.74', '14.23', '1.1875', '11.1118', '13.5625', '10.915', '0.486606177', '5.991578947', '15.01594595', '1674.7', '257.491348', '227.1', '6.24', '554.4', '0.514332362', '3.6', '18.52964719', '4.171858194', '4.068721103');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15H 146', '42.95', '14.75', '0.74', '14.23', '1.1875', '11.1118', '13.5625', '10.915', '0.486606177', '5.991578947', '15.01594595', '1674.7', '257.491348', '227.1', '6.24', '554.4', '0.514332362', '3.59', '18.52964719', '4.171858194', '4.068721103');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15H 145', '42.64', '14.88', '0.71', '14.79', '1.128', '11.299', '13.752', '10.5648', '0.480862692', '6.555851064', '15.91408451', '1711.9', '257.7136205', '230.1', '6.34', '608.7', '0.499607643', '3.78', '16.16337273', '4.325682532', '4.264923794');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15CB 145', '42.64', '14.602', '0.69', '15.284', '1.106', '10.965', '13.496', '10.07538', '0.447574743', '6.909584087', '15.89130435', '1662.7', '254.6186248', '227.7', '6.24', '658.5', '0.499722828', '3.93', '15.73565118', '4.48035621', '4.417574794');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15CB 145', '42.62', '14.88', '0.711', '14.789', '1.128', '11.199', '13.752', '10.57968', '0.477310444', '6.555407801', '15.75105485', '1710.9', '257.7379496', '230', '6.34', '608.5', '0.499670486', '3.78', '16.28950483', '4.328154369', '4.26514998');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15WF 142', '41.85', '14.75', '0.68', '15.5', '1.063', '11.299', '13.687', '10.03', '0.46631991', '7.290686736', '16.61617647', '1672.2', '252.6059694', '226.7', '6.32', '660.1', '0.499732253', '3.97', '14.2216611', '4.526638391', '4.463938905');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15CB 142', '41.76', '14.746', '0.68', '15.5', '1.061', '11.199', '13.685', '10.02728', '0.46306406', '7.304429783', '16.46911765', '1667.8', '252.1487814', '226.2', '6.32', '658.9', '0.499700432', '3.97', '14.2588297', '4.529112329', '4.464479741');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15H 139', '40.88', '14.625', '0.7', '14.19', '1.125', '11.1128', '13.5', '10.2375', '0.487289014', '6.306666667', '15.87542857', '1578.9', '242.2900488', '215.9', '6.21', '520.9', '0.514237928', '3.57', '15.76551881', '4.150878502', '4.035550106');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15H 139', '40.59', '14.63', '0.7', '14.19', '1.125', '11.1178', '13.505', '10.241', '0.487508261', '6.306666667', '15.88257143', '1568.4', '242.3915282', '214.5', '6.21', '520.9', '0.514237928', '3.58', '15.76609047', '4.15075346', '4.049448004');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15H 138', '40.59', '14.63', '0.7', '14.19', '1.125', '11.1178', '13.505', '10.241', '0.487508261', '6.306666667', '15.88257143', '1568.4', '242.3915282', '214.5', '6.21', '519.7', '0.515425316', '3.58', '15.76609047', '4.15075346', '4.044780948');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15WF 136', '39.98', '14.75', '0.66', '14.74', '1.063', '11.299', '13.687', '9.735', '0.475941085', '6.933207902', '17.11969697', '1593', '240.751689', '216', '6.31', '567.7', '0.499718669', '3.77', '13.46356888', '4.30245506', '4.241033543');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15CB 136', '39.98', '14.75', '0.662', '14.74', '1.063', '11.199', '13.687', '9.7645', '0.473158325', '6.933207902', '16.91691843', '1592.3', '240.8313717', '215.9', '6.31', '567.7', '0.499718669', '3.77', '13.58239713', '4.30503533', '4.242015604');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14CB 135', '39.7', '14.452', '0.645', '15.239', '1.031', '10.965', '13.421', '9.32154', '0.450145814', '7.390397672', '17', '1530.4', '235.6166463', '211.8', '6.21', '608.4', '0.499755544', '3.92', '12.78051451', '4.454782907', '4.390450299');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15H 131.5', '38.68', '14.5', '0.67', '14.16', '1.0625', '11.1118', '13.4375', '9.715', '0.494842539', '6.663529412', '16.58477612', '1477.3', '227.7977543', '203.8', '6.18', '488', '0.515130934', '3.55', '13.37910925', '4.131274345', '4.010994458');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15H 131.5', '38.38', '14.5', '0.67', '14.16', '1.0625', '11.1118', '13.4375', '9.715', '0.494842539', '6.663529412', '16.58477612', '1466.7', '227.7977543', '202.3', '6.18', '487.9', '0.515236516', '3.57', '13.37910925', '4.131274345', '4.025424713');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14CB 131', '38.52', '14.162', '0.874', '15.468', '0.886', '10.965', '13.276', '12.377588', '0.699281733', '8.729119639', '12.54576659', '1358.4', '215.4853007', '191.8', '5.94', '547.3', '0.499263156', '3.77', '10.84366432', '4.438745851', '4.352181982');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15H 130.5', '38.38', '14.5', '0.67', '14.16', '1.0625', '11.1118', '13.4375', '9.715', '0.494842539', '6.663529412', '16.58477612', '1466.7', '227.7977543', '202.3', '6.18', '486.9', '0.516294713', '3.56', '13.37910925', '4.131274345', '4.021297341');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15CB 127', '37.33', '14.62', '0.612', '14.69', '0.998', '11.199', '13.622', '8.94744', '0.467496463', '7.359719439', '18.29901961', '1476', '224.0898682', '201.9', '6.29', '527.6', '0.499700629', '3.76', '11.19087531', '4.281932201', '4.218807157');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15WF 127', '37.33', '14.62', '0.61', '14.69', '0.998', '11.299', '13.622', '8.9182', '0.470129503', '7.359719439', '18.52295082', '1476.7', '224.0101855', '202', '6.29', '527.6', '0.499700629', '3.76', '11.08743231', '4.279399006', '4.217762769');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14CB 125', '36.75', '14.304', '0.597', '15.191', '0.957', '10.965', '13.347', '8.539488', '0.450282082', '7.936781609', '18.36683417', '1402.1', '216.947524', '196', '6.18', '559.4', '0.499766707', '3.9', '10.23180728', '4.428978116', '4.364254092');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 123.5', '36.33', '14.375', '0.63', '14.12', '1', '11.1128', '13.375', '9.05625', '0.495826062', '7.06', '17.63936508', '1375.1', '212.9544629', '191.3', '6.15', '454.4', '0.516279073', '3.54', '11.17270611', '4.110113633', '3.985598749');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 123.5', '36.04', '14.38', '0.63', '14.12', '1', '11.1178', '13.38', '9.0594', '0.49604915', '7.06', '17.64730159', '1364.6', '213.0445575', '189.9', '6.16', '454.4', '0.516279073', '3.55', '11.17312285', '4.109993428', '4.001010931');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 122.5', '36.04', '14.38', '0.63', '14.12', '1', '11.1178', '13.38', '9.0594', '0.49604915', '7.06', '17.64730159', '1364.6', '213.0445575', '189.9', '6.16', '453.4', '0.517417756', '3.55', '11.17312285', '4.109993428', '3.996605985');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15WF 119', '34.99', '14.5', '0.57', '14.65', '0.938', '11.299', '13.562', '8.265', '0.46867782', '7.809168443', '19.82280702', '1373.1', '209.0745015', '189.4', '6.26', '491.8', '0.499742105', '3.75', '9.199266383', '4.258960435', '4.196151377');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15CB 119', '34.97', '14.5', '0.571', '14.649', '0.938', '11.199', '13.562', '8.2795', '0.465376593', '7.808635394', '19.61295972', '1372.2', '209.1016217', '189.3', '6.26', '491.7', '0.499741391', '3.75', '9.284438169', '4.261359946', '4.196832818');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 115.5', '34', '14.25', '0.59', '14.08', '0.9375', '11.1118', '13.3125', '8.4075', '0.496663788', '7.509333333', '18.83355932', '1275.1', '198.2927543', '179', '6.12', '421.4', '0.517491789', '3.52', '9.227356492', '4.088973197', '3.958544785');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 115.5', '33.7', '14.25', '0.59', '14.08', '0.9375', '11.1118', '13.3125', '8.4075', '0.496663788', '7.509333333', '18.83355932', '1264.5', '198.2927543', '177.5', '6.13', '421.3', '0.517614621', '3.54', '9.227356492', '4.088973197', '3.974764144');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14CB 115.5', '33.82', '14.154', '0.551', '15.145', '0.882', '10.965', '13.272', '7.798854', '0.45229561', '8.585600907', '19.90018149', '1275.9', '198.4322079', '180.3', '6.14', '510.9', '0.499757441', '3.89', '8.037503989', '4.403064126', '4.336339501');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 114.6', '33.7', '14.25', '0.59', '14.08', '0.9375', '11.1118', '13.3125', '8.4075', '0.496663788', '7.509333333', '18.83355932', '1264.5', '198.2927543', '177.5', '6.13', '420.3', '0.518846158', '3.53', '9.227356492', '4.088973197', '3.97004408');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 114.5', '33.7', '14.25', '0.59', '14.08', '0.9375', '11.1118', '13.3125', '8.4075', '0.496663788', '7.509333333', '18.83355932', '1264.5', '198.2927543', '177.5', '6.13', '420.3', '0.518846158', '3.53', '9.227356492', '4.088973197', '3.97004408');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14WF 111', '32.65', '14.37', '0.54', '14.62', '0.873', '11.299', '13.497', '7.7598', '0.478048712', '8.373424971', '20.92407407', '1266.5', '193.780046', '176.3', '6.23', '454.9', '0.499757337', '3.73', '7.481762938', '4.238068347', '4.172875605');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14CB 111', '32.62', '14.37', '0.54', '14.618', '0.873', '11.199', '13.497', '7.7598', '0.473882644', '8.372279496', '20.73888889', '1265.3', '193.7564802', '176.1', '6.23', '454.7', '0.499771994', '3.73', '7.551802931', '4.24042547', '4.174326599');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 107.5', '31.67', '14.125', '0.55', '14.04', '0.875', '11.1128', '13.25', '7.76875', '0.497520554', '8.022857143', '20.20509091', '1177.2', '183.8129004', '166.7', '6.1', '388.9', '0.518907786', '3.5', '7.523518966', '4.067735332', '3.931371753');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 107.5', '31.38', '14.13', '0.55', '14.04', '0.875', '11.1178', '13.255', '7.7715', '0.497744404', '8.022857143', '20.21418182', '1166.6', '183.8913445', '165.2', '6.1', '388.9', '0.518907786', '3.52', '7.523796258', '4.067621102', '3.949924717');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 106.7', '31.38', '14.13', '0.55', '14.04', '0.875', '11.1178', '13.255', '7.7715', '0.497744404', '8.022857143', '20.21418182', '1166.6', '183.8913445', '165.2', '6.1', '387.8', '0.520379675', '3.52', '7.523796258', '4.067621102', '3.944334598');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 106.5', '31.38', '14.13', '0.55', '14.04', '0.875', '11.1178', '13.255', '7.7715', '0.497744404', '8.022857143', '20.21418182', '1166.6', '183.8913445', '165.2', '6.1', '387.8', '0.520379675', '3.52', '7.523796258', '4.067621102', '3.944334598');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14CB 106', '31.18', '14.018', '0.509', '15.103', '0.814', '10.965', '13.204', '7.135162', '0.453982164', '9.277027027', '21.54223969', '1164.1', '181.8623045', '166.1', '6.11', '467.6', '0.499756353', '3.87', '6.342675355', '4.379435187', '4.311120828');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14CB 105', '30.88', '14.37', '0.536', '12.101', '0.99', '10.965', '13.38', '7.70232', '0.490588056', '6.111616162', '20.45708955', '1169.6', '180.8628876', '162.8', '6.15', '292.6', '0.499624135', '3.08', '8.838420807', '3.524704864', '3.467552295');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14CB 103', '30.27', '14.25', '0.498', '14.576', '0.813', '11.199', '13.437', '7.0965', '0.470630081', '8.964329643', '22.48795181', '1165.4', '179.0733092', '163.6', '6.2', '419.8', '0.499783535', '3.72', '6.096958902', '4.219720341', '4.152080149');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14WF 103', '30.26', '14.25', '0.495', '14.575', '0.813', '11.299', '13.437', '7.05375', '0.472004456', '8.963714637', '22.82626263', '1165.8', '178.9428609', '163.6', '6.21', '419.7', '0.499799734', '3.72', '6.02236949', '4.217153169', '4.151585588');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 100', '29.36', '14', '0.51', '14', '0.8125', '11.1118', '13.1875', '7.14', '0.498199385', '8.615384615', '21.78784314', '1081.2', '169.5127543', '154.5', '6.07', '356.9', '0.520570655', '3.49', '6.046984839', '4.046524111', '3.902790782');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 100', '29.06', '14', '0.51', '14', '0.8125', '11.1118', '13.1875', '7.14', '0.498199385', '8.615384615', '21.78784314', '1070.6', '169.5127543', '153', '6.07', '356.9', '0.520570655', '3.5', '6.046984839', '4.046524111', '3.921875448');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 99', '29.06', '14', '0.51', '14', '0.8125', '11.1118', '13.1875', '7.14', '0.498199385', '8.615384615', '21.78784314', '1070.6', '169.5127543', '153', '6.07', '356.9', '0.520570655', '3.5', '6.046984839', '4.046524111', '3.921875448');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 98.8', '29.06', '14', '0.51', '14', '0.8125', '11.1118', '13.1875', '7.14', '0.498199385', '8.615384615', '21.78784314', '1070.6', '169.5127543', '153', '6.07', '355.9', '0.522033343', '3.5', '6.046984839', '4.046524111', '3.916377232');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14CB 96', '28.23', '13.866', '0.462', '15.056', '0.738', '10.965', '13.128', '6.406092', '0.455915801', '10.20054201', '23.73376623', '1042.1', '163.6001615', '150.3', '6.08', '419.9', '0.499871135', '3.86', '4.75404729', '4.352904677', '4.282306353');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14WF 95', '27.94', '14.12', '0.465', '14.545', '0.748', '11.299', '13.372', '6.5658', '0.48292272', '9.722593583', '24.29892473', '1063.5', '164.0090385', '150.6', '6.17', '383.7', '0.499884568', '3.71', '4.743704503', '4.195744049', '4.127305344');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14CB 95', '27.93', '14.186', '0.485', '12.05', '0.898', '10.965', '13.288', '6.88021', '0.491458659', '6.70935412', '22.60824742', '1044', '162.4014613', '147.2', '6.11', '262', '0.499752459', '3.06', '6.622573068', '3.497929549', '3.438836697');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14CB 95', '27.92', '14.12', '0.466', '14.544', '0.748', '11.199', '13.372', '6.57992', '0.479711023', '9.721925134', '24.03218884', '1062.5', '164.0388776', '150.5', '6.17', '383.7', '0.49978147', '3.71', '4.801053439', '4.198211991', '4.128676314');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 93.7', '27.56', '14', '0.51', '13', '0.8175', '11.1118', '13.1825', '7.14', '0.533240932', '7.951070336', '21.78784314', '1004.7', '159.5746419', '143.5', '6.04', '288.5', '0.518788995', '3.24', '5.755998717', '3.750778454', '3.640246981');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 92', '27.05', '13.875', '0.47', '13.96', '0.75', '11.1128', '13.125', '6.52125', '0.498855396', '9.306666667', '23.64425532', '987.4', '155.3925879', '142.3', '6.04', '325.5', '0.522378482', '3.47', '4.779358332', '4.025222968', '3.874428981');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 92', '26.76', '13.88', '0.47', '13.96', '0.75', '11.1178', '13.13', '6.5236', '0.499079847', '9.306666667', '23.65489362', '976.8', '155.4594815', '140.8', '6.04', '325.4', '0.522539017', '3.49', '4.779531371', '4.025114985', '3.895155609');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 91', '26.76', '13.88', '0.47', '13.96', '0.75', '11.1178', '13.13', '6.5236', '0.499079847', '9.306666667', '23.65489362', '976.8', '155.4594815', '140.8', '6.04', '325.4', '0.522539017', '3.49', '4.779531371', '4.025114985', '3.895155609');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 90', '26.52', '14', '0.51', '12.12', '0.822', '11.1118', '13.178', '7.14', '0.568826937', '7.372262774', '21.78784314', '956.7', '150.7401701', '136.7', '6.01', '235.8', '0.517195372', '2.98', '5.491867404', '3.490490318', '3.371299971');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 90', '26.22', '14', '0.51', '12.12', '0.822', '11.1118', '13.178', '7.14', '0.568826937', '7.372262774', '21.78784314', '946.1', '150.7401701', '135.2', '6.01', '235.8', '0.517195372', '3', '5.491867404', '3.490490318', '3.389950123');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 89.2', '26.23', '14', '0.52', '12.04', '0.8225', '11.1118', '13.1775', '7.28', '0.583479183', '7.319148936', '21.36884615', '942.4', '150.326752', '134.6', '5.99', '231.4', '0.516976458', '2.97', '5.513191464', '3.464691284', '3.365585764');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14CB 87', '25.56', '14', '0.422', '14.5', '0.688', '11.199', '13.312', '5.908', '0.473734763', '10.5377907', '26.53791469', '966.2', '149.6135592', '138', '6.15', '349.7', '0.499822229', '3.7', '3.73508452', '4.177461677', '4.106907578');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14WF 87', '25.56', '14', '0.42', '14.5', '0.688', '11.299', '13.312', '5.88', '0.475699679', '10.5377907', '26.90238095', '966.9', '149.5338765', '138.1', '6.15', '349.7', '0.499822229', '3.7', '3.682680659', '4.175014174', '4.105420376');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14CB 86', '25.28', '13.714', '0.414', '15.008', '0.662', '10.965', '13.052', '5.677596', '0.456907373', '11.33534743', '26.48550725', '923', '145.5639857', '134.6', '6.04', '373.1', '0.499827282', '3.84', '3.455729346', '4.326213257', '4.253178691');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14CB 85', '24.99', '14', '0.435', '12', '0.805', '10.965', '13.195', '6.09', '0.493765528', '7.453416149', '25.20689655', '921.3', '144.1581409', '131.6', '6.07', '232', '0.499655172', '3.05', '4.80361512', '3.470944239', '3.410403358');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 84', '24.76', '13.75', '0.43', '13.92', '0.6875', '11.1118', '13.0625', '5.9125', '0.49927628', '10.12363636', '25.84139535', '895.5', '141.4502543', '130.2', '6.01', '294.5', '0.524715463', '3.45', '3.705713414', '4.00396067', '3.84357457');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14WF 84', '24.71', '14.18', '0.451', '12.023', '0.778', '11.299', '13.402', '6.39518', '0.544783702', '7.726863753', '25.05321508', '928.4', '143.3293335', '130.9', '6.13', '225.5', '0.499678135', '3.02', '4.411139518', '3.460150625', '3.397607908');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 84', '24.69', '14.18', '0.45', '12.02', '0.778', '11.299', '13.402', '6.381', '0.543711424', '7.724935733', '25.10888889', '928', '143.2582119', '130.9', '6.13', '225.3', '0.499747422', '3.02', '4.406752083', '3.459493652', '3.396100874');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14CB 84', '24.68', '14.18', '0.451', '12.021', '0.778', '11.199', '13.402', '6.39518', '0.540052017', '7.725578406', '24.83148559', '927.2', '143.30848', '130.8', '6.13', '225.4', '0.49965039', '3.02', '4.465858691', '3.462321112', '3.398152718');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 84', '24.46', '13.75', '0.43', '13.92', '0.6875', '11.1118', '13.0625', '5.9125', '0.49927628', '10.12363636', '25.84139535', '884.9', '141.4502543', '128.7', '6.01', '294.5', '0.524715463', '3.47', '3.705713414', '4.00396067', '3.865908137');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 83.5', '24.46', '13.75', '0.43', '13.92', '0.6875', '11.1118', '13.0625', '5.9125', '0.49927628', '10.12363636', '25.84139535', '884.9', '141.4502543', '128.7', '6.01', '294.5', '0.524715463', '3.47', '3.705713414', '4.00396067', '3.865908137');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 83', '24.45', '13.875', '0.47', '12.08', '0.759', '11.1128', '13.116', '6.52125', '0.569655961', '7.957839262', '23.64425532', '874.2', '138.1856281', '126', '5.98', '215.1', '0.518347397', '2.97', '4.343974638', '3.470361476', '3.345959183');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 83', '24.15', '13.88', '0.47', '12.08', '0.759', '11.1178', '13.121', '6.5236', '0.569912267', '7.957839262', '23.65489362', '863.6', '138.2459941', '124.5', '5.98', '215', '0.518588489', '2.98', '4.344147677', '3.470260275', '3.365914068');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 82.2', '24.17', '13.88', '0.48', '12', '0.7595', '11.1178', '13.1205', '6.6624', '0.585532587', '7.899934167', '23.16208333', '860.4', '137.9028595', '124', '5.97', '211', '0.518331754', '2.96', '4.364240283', '3.444323358', '3.341108506');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 78', '22.97', '14.06', '0.43', '12', '0.718', '11.299', '13.342', '6.0458', '0.563900882', '8.356545961', '26.27674419', '851.5', '132.0864499', '121.1', '6.09', '206.9', '0.499719671', '3', '3.528280372', '3.441979473', '3.376009376');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14WF 78', '22.94', '14.06', '0.428', '12', '0.718', '11.299', '13.342', '6.01768', '0.561278087', '8.356545961', '26.39953271', '851.2', '132.0067672', '121.1', '6.09', '206.9', '0.499719671', '3', '3.522101201', '3.44248506', '3.376009376');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14CB 78', '22.94', '14.06', '0.43', '12', '0.718', '11.199', '13.342', '6.0458', '0.558910167', '8.356545961', '26.04418605', '850.5', '132.0864499', '121', '6.09', '206.9', '0.499719671', '3', '3.577510952', '3.444843074', '3.377404133');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 77.6', '22.81', '13.88', '0.48', '11.04', '0.7645', '11.1178', '13.1155', '6.6624', '0.63228595', '7.220405494', '23.16208333', '800.6', '128.9918314', '115.4', '5.93', '165.9', '0.516722149', '2.7', '4.133064168', '3.161043287', '3.070419508');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 76', '22.39', '13.75', '0.43', '12.04', '0.697', '11.1118', '13.053', '5.9125', '0.569368723', '8.637015782', '25.84139535', '793.5', '125.9382951', '115.4', '5.95', '194.7', '0.520672981', '2.95', '3.382705727', '3.450564822', '3.318335113');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 76', '22.09', '13.75', '0.43', '12.04', '0.697', '11.1118', '13.053', '5.9125', '0.569368723', '8.637015782', '25.84139535', '782.9', '125.9382951', '113.9', '5.95', '194.7', '0.520672981', '2.97', '3.382705727', '3.450564822', '3.340113962');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14CB 75', '22.05', '14.382', '0.468', '10.086', '0.786', '11.585', '13.596', '6.730776', '0.683912248', '6.416030534', '24.7542735', '823.5', '126.9828389', '114.5', '6.11', '134.5', '0.499661523', '2.47', '3.916705072', '2.87783814', '2.825849179');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14WF 74', '21.76', '14.19', '0.45', '10.072', '0.783', '11.299', '13.407', '6.3855', '0.64472579', '6.431673052', '25.10888889', '796.8', '123.6612478', '112.3', '6.05', '133.5', '0.499397543', '2.48', '3.856341515', '2.883232753', '2.822939441');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 74', '21.76', '14.19', '0.45', '10.07', '0.783', '11.299', '13.407', '6.3855', '0.644853839', '6.430395913', '25.10888889', '796.7', '123.6402525', '112.3', '6.05', '133.4', '0.499474244', '2.48', '3.85570145', '2.882639931', '2.821881962');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14CB 74', '21.75', '14.19', '0.451', '10.071', '0.783', '11.199', '13.407', '6.39969', '0.640503384', '6.431034483', '24.83148559', '795.9', '123.6905915', '112.2', '6.05', '133.4', '0.499623059', '2.48', '3.915221294', '2.885408484', '2.823139205');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 73.5', '21.66', '13.875', '0.47', '10.12', '0.769', '11.1128', '13.106', '6.52125', '0.671142133', '6.579973992', '23.64425532', '753.3', '119.8708348', '108.6', '5.9', '129.1', '0.514470396', '2.44', '3.860908251', '2.891843447', '2.791054343');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 73.5', '21.37', '13.88', '0.47', '10.12', '0.769', '11.1178', '13.111', '6.5236', '0.671444101', '6.579973992', '23.65489362', '742.7', '119.9242452', '107.1', '5.9', '129', '0.51486921', '2.46', '3.861081289', '2.891749732', '2.809978717');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 71', '20.88', '13.75', '0.44', '11', '0.702', '11.1118', '13.048', '6.05', '0.633150997', '7.834757835', '25.25409091', '727', '117.5133771', '105.7', '5.9', '150.2', '0.518398802', '2.68', '3.220224493', '3.141725098', '3.044769698');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 69', '20.34', '13.625', '0.39', '12', '0.634', '11.1128', '12.991', '5.31375', '0.569662461', '9.463722397', '28.49435897', '714.6', '113.7103156', '104.9', '5.93', '174.7', '0.522587293', '2.93', '2.567332815', '3.430459376', '3.289008546');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 69', '20.04', '13.63', '0.39', '12', '0.634', '11.1178', '12.996', '5.3157', '0.56991877', '9.463722397', '28.50717949', '704', '113.7604061', '103.3', '5.93', '174.7', '0.522587293', '2.95', '2.56743168', '3.430364041', '3.315019941');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 68', '20.03', '14.06', '0.42', '10.04', '0.718', '11.299', '13.342', '5.9052', '0.658311046', '6.991643454', '26.90238095', '724.4', '112.9121067', '103', '6.01', '121.2', '0.499622188', '2.46', '3.014195714', '2.864685902', '2.801742176');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14CB 68', '20', '14.08', '0.42', '10.04', '0.718', '11.219', '13.362', '5.9136', '0.653650024', '6.991643454', '26.71190476', '723.4', '113.1093439', '102.9', '6.01', '121.2', '0.499622188', '2.46', '3.063250515', '2.867089335', '2.805203412');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14WF 68', '20', '14.06', '0.418', '10.04', '0.718', '11.299', '13.342', '5.87708', '0.655176231', '6.991643454', '27.03110048', '724.1', '112.832424', '103', '6.02', '121.2', '0.499622188', '2.46', '3.008249996', '2.865183596', '2.801742176');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14CB 68', '19.99', '14.238', '0.425', '10.043', '0.714', '11.585', '13.524', '6.05115', '0.686630821', '7.032913165', '27.25882353', '738.8', '114.4117845', '103.8', '6.08', '120.6', '0.499758335', '2.46', '2.94974536', '2.85716271', '2.802931991');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 67.5', '19.85', '13.75', '0.43', '10.08', '0.7065', '11.1118', '13.0435', '5.9125', '0.670934576', '7.133757962', '25.84139535', '684.3', '109.2436484', '99.5', '5.87', '116.8', '0.516261422', '2.43', '3.010053179', '2.873296372', '2.766890387');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 67.5', '19.55', '13.75', '0.43', '10.08', '0.7065', '11.1118', '13.0435', '5.9125', '0.670934576', '7.133757962', '25.84139535', '673.7', '109.2436484', '98', '5.87', '116.8', '0.516261422', '2.44', '3.010053179', '2.873296372', '2.787985155');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 66.7', '19.61', '13.75', '0.44', '10.03', '0.707', '11.1118', '13.043', '6.05', '0.689472178', '7.093352192', '25.25409091', '672.5', '109.2227455', '97.8', '5.84', '115.1', '0.516494431', '2.42', '3.034348795', '2.856130091', '2.770396844');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 61.5', '18.04', '13.625', '0.39', '10.04', '0.644', '11.1128', '12.981', '5.31375', '0.670298929', '7.795031056', '28.49435897', '616.9', '98.76427234', '90.6', '5.85', '104.8', '0.518256165', '2.41', '2.296475189', '2.854755078', '2.740031904');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 61.5', '17.75', '13.63', '0.39', '10.04', '0.644', '11.1178', '12.986', '5.3157', '0.670600517', '7.795031056', '28.50717949', '606.3', '98.80863215', '89', '5.84', '104.8', '0.518256165', '2.43', '2.296574054', '2.854666511', '2.765084065');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 61', '17.97', '13.91', '0.38', '10', '0.643', '11.299', '13.267', '5.2858', '0.667748056', '7.776049767', '29.73421053', '641.8', '100.4465207', '92.3', '5.98', '107.3', '0.499378689', '2.44', '2.19493843', '2.843344164', '2.776964815');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 61', '17.95', '13.63', '0.41', '10', '0.6445', '11.1178', '12.9855', '5.5883', '0.707261133', '7.757951901', '27.11658537', '607.5', '99.29511382', '89.2', '5.82', '103.7', '0.517920283', '2.4', '2.346717569', '2.837472688', '2.747396189');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14CB 61', '17.94', '14.094', '0.382', '10', '0.642', '11.585', '13.452', '5.383908', '0.689325545', '7.788161994', '30.32722513', '656.2', '102.0330176', '93.1', '6.05', '107.1', '0.499533147', '2.44', '2.158492613', '2.836456658', '2.78162337');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14WF 61', '17.94', '13.91', '0.378', '10', '0.643', '11.299', '13.267', '5.25798', '0.664233593', '7.776049767', '29.89153439', '641.5', '100.366838', '92.2', '5.98', '107.3', '0.499378689', '2.45', '2.190083231', '2.843903221', '2.778470354');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14CB 61', '17.94', '13.91', '0.38', '10', '0.643', '11.199', '13.267', '5.2858', '0.661838258', '7.776049767', '29.47105263', '640.8', '100.4465207', '92.1', '5.98', '107.3', '0.499378689', '2.45', '2.235795537', '2.846142848', '2.779978343');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 58.5', '17.23', '13.75', '0.43', '8.12', '0.7165', '11.1118', '13.0335', '5.9125', '0.821259956', '5.666434054', '25.84139535', '572.2', '92.1335054', '83.2', '5.76', '62.4', '0.51229303', '1.9', '2.608458406', '2.296099665', '2.210783232');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 58.5', '16.93', '13.75', '0.43', '8.12', '0.7165', '11.1118', '13.0335', '5.9125', '0.821259956', '5.666434054', '25.84139535', '561.6', '92.1335054', '81.7', '5.76', '62.4', '0.51229303', '1.92', '2.608458406', '2.296099665', '2.230985753');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14WF 58', '17.06', '14.06', '0.406', '8.098', '0.718', '11.299', '13.342', '5.70836', '0.78897606', '5.639275766', '27.83004926', '597.9', '93.75083015', '85', '5.92', '63.7', '0.498812219', '1.93', '2.494320238', '2.29403194', '2.235917235');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 58', '17.05', '14.06', '0.405', '8.095', '0.718', '11.299', '13.342', '5.6943', '0.787324443', '5.63718663', '27.89876543', '597.5', '93.68225014', '85', '5.92', '63.6', '0.499041476', '1.93', '2.49076063', '2.293388971', '2.234161509');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14CB 58', '17.05', '14.242', '0.413', '8.07', '0.716', '11.585', '13.526', '5.881946', '0.828055665', '5.63547486', '28.05084746', '609.4', '95.09777345', '85.6', '5.98', '62.8', '0.499335838', '1.92', '2.452174065', '2.277940035', '2.227473948');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14CB 58', '17.03', '14.06', '0.406', '8.096', '0.718', '11.199', '13.342', '5.70836', '0.782186533', '5.637883008', '27.58374384', '596.7', '93.73167104', '84.9', '5.92', '63.6', '0.499226443', '1.93', '2.541451676', '2.296046742', '2.235476882');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '13H 57.1', '16.79', '13.36', '0.41', '9.04', '0.649', '10.8478', '12.711', '5.4776', '0.758075392', '6.964560863', '26.45804878', '558.5', '89.48252361', '82', '5.77', '77.5', '0.515545547', '2.15', '2.193902899', '2.560211017', '2.450861596');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 55', '16.25', '13.5', '0.35', '10', '0.5815', '11.1118', '12.9185', '4.725', '0.668809974', '8.598452279', '31.748', '551', '88.43114838', '81.6', '5.82', '93.1', '0.520497673', '2.39', '1.708066648', '2.836366036', '2.714693531');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 55', '15.95', '13.5', '0.35', '10', '0.5815', '11.1118', '12.9185', '4.725', '0.668809974', '8.598452279', '31.748', '540.4', '88.43114838', '80.1', '5.82', '93.1', '0.520497673', '2.42', '1.708066648', '2.836366036', '2.739994111');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 53.5', '15.67', '13.625', '0.39', '8.08', '0.654', '11.1128', '12.971', '5.31375', '0.820160778', '6.177370031', '28.49435897', '516.2', '83.33079094', '75.8', '5.74', '56', '0.51338427', '1.89', '1.997136049', '2.278977361', '2.188926316');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 53.5', '15.37', '13.63', '0.39', '8.08', '0.654', '11.1178', '12.976', '5.3157', '0.820529794', '6.177370031', '28.50717949', '505.6', '83.36922406', '74.2', '5.74', '56', '0.51338427', '1.91', '1.997234914', '2.278896143', '2.2128271');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14CB 53', '15.39', '14.122', '0.378', '8.035', '0.656', '11.585', '13.466', '5.338116', '0.830803117', '6.124237805', '30.64814815', '552.5', '86.48582881', '78.2', '5.95', '56.8', '0.499265896', '1.91', '1.897504228', '2.262234629', '2.211439683');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14WF 53', '15.59', '13.94', '0.37', '8.062', '0.658', '11.299', '13.282', '5.1578', '0.788084971', '6.126139818', '30.53783784', '542.1', '85.19959775', '77.8', '5.9', '57.5', '0.499695208', '1.92', '1.931218703', '2.278420387', '2.215444445');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 53', '15.59', '13.94', '0.37', '8.06', '0.658', '11.299', '13.282', '5.1578', '0.788280525', '6.124620061', '30.53783784', '542', '85.18211864', '77.8', '5.9', '57.5', '0.499323411', '1.92', '1.93083885', '2.277830631', '2.215444445');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14CB 53', '15.56', '13.94', '0.37', '8.06', '0.658', '11.199', '13.282', '5.1578', '0.781303974', '6.124620061', '30.26756757', '541', '85.18211864', '77.6', '5.9', '57.5', '0.499323411', '1.92', '1.972093795', '2.280437419', '2.218297562');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 51.4', '15.12', '13.5', '0.37', '9', '0.587', '11.1118', '12.913', '4.995', '0.778225629', '7.666098807', '30.03189189', '498.3', '82.26761057', '73.8', '5.75', '68.8', '0.518317587', '2.13', '1.646728283', '2.5374136', '2.453378844');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14CB 48', '14.12', '14', '0.343', '8', '0.595', '11.585', '13.405', '4.802', '0.834801471', '6.722689076', '33.7755102', '496', '77.87904058', '70.9', '5.93', '50.8', '0.499737533', '1.9', '1.429016501', '2.246268068', '2.191427715');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 48', '14.12', '13.81', '0.34', '8.03', '0.593', '11.299', '13.217', '4.6954', '0.806768043', '6.770657673', '33.23235294', '485', '76.48263539', '70.2', '5.86', '51.2', '0.499746915', '1.9', '1.444841415', '2.261003171', '2.195421291');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 48', '14.12', '13.5', '0.35', '8.04', '0.5915', '11.1118', '12.9085', '4.725', '0.817789749', '6.796280642', '31.748', '461.5', '74.6591304', '68.4', '5.72', '49.7', '0.515448477', '1.88', '1.491830653', '2.262045773', '2.165574033');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14WF 48', '14.11', '13.81', '0.339', '8.031', '0.593', '11.299', '13.217', '4.68159', '0.804295035', '6.771500843', '33.33038348', '484.9', '76.45063173', '70.2', '5.86', '51.3', '0.498959114', '1.91', '1.443004618', '2.261594907', '2.197564211');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14CB 48', '14.1', '13.81', '0.34', '8.03', '0.593', '11.199', '13.217', '4.6954', '0.799627871', '6.770657673', '32.93823529', '484', '76.48263539', '70.1', '5.86', '51.2', '0.499746915', '1.91', '1.480390818', '2.263669872', '2.196986654');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 48', '13.82', '13.5', '0.35', '8.04', '0.5915', '11.1118', '12.9085', '4.725', '0.817789749', '6.796280642', '31.748', '450.9', '74.6591304', '66.8', '5.71', '49.7', '0.515448477', '1.9', '1.491830653', '2.262045773', '2.191355584');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 47.8', '14.07', '13.5', '0.37', '8.04', '0.5915', '11.1118', '12.9085', '4.995', '0.864520592', '6.796280642', '30.03189189', '454.1', '75.41768272', '67.3', '5.68', '49.7', '0.515448477', '1.88', '1.535216719', '2.256140341', '2.183200157');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 43', '12.67', '13.68', '0.31', '8', '0.528', '11.299', '13.152', '4.2408', '0.829235322', '7.575757576', '36.4483871', '429.3', '67.90486464', '62.8', '5.82', '45.1', '0.499512195', '1.89', '1.050019787', '2.24364768', '2.173148234');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14WF 43', '12.65', '13.68', '0.308', '8', '0.528', '11.299', '13.152', '4.21344', '0.823885417', '7.575757576', '36.68506494', '429', '67.82518195', '62.7', '5.82', '45.1', '0.499512195', '1.89', '1.046758226', '2.244317915', '2.174880517');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14CB 43', '12.64', '13.68', '0.31', '8', '0.528', '11.199', '13.152', '4.2408', '0.821896307', '7.575757576', '36.12580645', '428.3', '67.90486464', '62.6', '5.82', '45.1', '0.499512195', '1.89', '1.080452721', '2.246385407', '2.176616949');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '13H 43', '12.58', '13.375', '0.31', '8', '0.529', '11.1128', '12.846', '4.14625', '0.814028355', '7.561436673', '35.84774194', '408.2', '66.11797844', '61', '5.7', '43.6', '0.517675841', '1.86', '1.082210032', '2.245245851', '2.142630527');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '13H 43', '12.28', '13.38', '0.31', '8', '0.529', '11.1178', '12.851', '4.1478', '0.814394612', '7.561436673', '35.86387097', '397.6', '66.14868606', '59.5', '5.69', '43.6', '0.517675841', '1.88', '1.082259684', '2.245169458', '2.169892535');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '13H 42.6', '12.53', '13.38', '0.33', '8', '0.529', '11.1178', '12.851', '4.4154', '0.8669362', '7.561436673', '33.69030303', '400.8', '66.9078541', '59.9', '5.66', '43.6', '0.517675841', '1.87', '1.116837683', '2.238520056', '2.162635349');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16H 285.9', '84.09', '15.875', '1.41', '15.16', '2.2435', '10.1228', '13.6315', '22.38375', '0.419657021', '3.378649432', '7.17929078', '3361.9', '509.3202176', '423.6', '6.32', '1287.6', '0.505896254', '3.91', '126.5210481', '4.634208752', '4.551654977');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16H 277.3', '81.56', '15.75', '1.37', '15.12', '2.181', '10.1218', '13.569', '21.5775', '0.420504708', '3.466299862', '7.388175182', '3230.5', '491.8569338', '410.2', '6.29', '1241.2', '0.506160239', '3.9', '116.1578635', '4.613390582', '4.530873936');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16H 268.8', '79.05', '15.625', '1.33', '15.08', '2.1185', '10.1228', '13.5065', '20.78125', '0.421427127', '3.55912202', '7.61112782', '3101.5', '474.5911551', '396.9', '6.26', '1195.4', '0.506451656', '3.89', '106.3664439', '4.59247458', '4.509957922');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '16H 260.2', '76.54', '15.5', '1.29', '15.04', '2.056', '10.1218', '13.444', '19.995', '0.422256667', '3.657587549', '7.846356589', '2974.9', '457.5206838', '383.9', '6.24', '1150.2', '0.506771298', '3.88', '97.1641751', '4.571563232', '4.487731648');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15H 251.8', '74.05', '15.375', '1.25', '15', '1.9935', '10.1228', '13.3815', '19.21875', '0.423158599', '3.762227239', '8.09824', '2850.8', '440.6458426', '370.8', '6.21', '1105.7', '0.507074139', '3.86', '88.50068999', '4.550552424', '4.46669392');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15H 243.3', '71.56', '15.25', '1.21', '14.96', '1.931', '10.1218', '13.319', '18.4525', '0.423964267', '3.873640601', '8.365123967', '2729.1', '423.9644338', '357.9', '6.18', '1061.8', '0.507403066', '3.85', '80.38745797', '4.529546003', '4.444893124');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15H 234.9', '69.09', '15.125', '1.17', '14.92', '1.8685', '10.1228', '13.2565', '17.69625', '0.42483921', '3.992507359', '8.651965812', '2609.7', '407.4767801', '345.1', '6.15', '1018.5', '0.507758605', '3.84', '72.77993251', '4.508438602', '4.422903636');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15H 226.5', '66.62', '15', '1.13', '14.88', '1.806', '10.1218', '13.194', '16.95', '0.425613621', '4.119601329', '8.957345133', '2492.7', '391.1806838', '332.4', '6.12', '975.8', '0.508141283', '3.83', '65.6844132', '4.487335465', '4.400713964');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15H 219.8', '64.64', '15', '1.13', '14.31', '1.809', '10.1218', '13.191', '16.95', '0.441832842', '3.955223881', '8.957345133', '2404.9', '378.0513631', '320.7', '6.1', '870.2', '0.507641529', '3.67', '63.6355066', '4.312599771', '4.230424239');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15H 211.7', '62.25', '14.875', '1.09', '14.27', '1.7465', '10.1228', '13.1285', '16.21375', '0.442725555', '4.085313484', '9.286972477', '2294.2', '362.4792691', '308.5', '6.07', '832.4', '0.508074258', '3.66', '57.22583982', '4.291719724', '4.208535627');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15H 204.1', '60.03', '14.75', '1.06', '14.24', '1.684', '10.1218', '13.066', '15.635', '0.447416031', '4.228028504', '9.548867925', '2188.4', '347.6363631', '296.7', '6.04', '797', '0.508431545', '3.64', '51.49176727', '4.273049406', '4.189157768');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15H 196.1', '57.66', '14.625', '1.02', '14.2', '1.6215', '10.1228', '13.0035', '14.9175', '0.4484309', '4.378661733', '9.924313725', '2081.9', '332.4258707', '284.7', '6.01', '760.3', '0.50888043', '3.63', '45.94790742', '4.252033104', '4.166907836');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15H 188', '55.31', '14.5', '0.98', '14.16', '1.559', '10.1218', '12.941', '14.21', '0.449339356', '4.541372675', '10.32836735', '1977.7', '317.3988631', '272.8', '5.98', '724.2', '0.509326307', '3.62', '40.82801917', '4.231022954', '4.14453678');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 180.1', '52.96', '14.375', '0.94', '14.12', '1.4965', '10.1228', '12.8785', '13.5125', '0.450315704', '4.717674574', '10.76893617', '1875.5', '302.5555582', '260.9', '5.95', '688.6', '0.509838405', '3.61', '36.10166924', '4.209909215', '4.122532736');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 172.1', '50.63', '14.25', '0.9', '14.08', '1.434', '10.1218', '12.816', '12.825', '0.451178561', '4.909344491', '11.24644444', '1775.5', '287.8938631', '249.2', '5.92', '653.6', '0.510344955', '3.59', '31.76395587', '4.188802014', '4.099616707');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 164.2', '48.3', '14.125', '0.86', '14.04', '1.3715', '10.1228', '12.7535', '12.1475', '0.45210175', '5.118483412', '11.77069767', '1677.5', '273.4139957', '237.5', '5.89', '619', '0.511005107', '3.58', '27.78767594', '4.167590469', '4.076741862');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 156.4', '45.99', '14', '0.82', '14', '1.309', '10.1218', '12.691', '11.48', '0.45290167', '5.347593583', '12.34365854', '1581.6', '259.1138631', '225.9', '5.86', '585.1', '0.511578648', '3.57', '24.16524839', '4.146386381', '4.054057068');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 150.5', '44.27', '14', '0.82', '13.31', '1.3125', '10.1218', '12.6875', '11.48', '0.475110071', '5.07047619', '12.34365854', '1511.4', '248.1515104', '215.9', '5.84', '504.9', '0.510795264', '3.38', '23.24921644', '3.938099145', '3.851672865');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 143', '42.05', '13.875', '0.78', '13.27', '1.25', '10.1228', '12.625', '10.8225', '0.476008078', '5.308', '12.97794872', '1421.7', '234.6323555', '204.9', '5.82', '475.9', '0.511476672', '3.36', '20.08710728', '3.917229186', '3.829019418');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '13H 141', '41.48', '13.125', '1.41', '14.59', '0.8715', '10.1228', '12.2535', '18.50625', '1.122527749', '8.370625359', '7.17929078', '1129.3', '201.4530191', '173.7', '5.22', '438.6', '0.514260768', '3.25', '19.08636427', '4.104791326', '3.933231278');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 135.5', '39.84', '13.75', '0.74', '13.23', '1.1875', '10.1218', '12.5625', '10.175', '0.476755826', '5.570526316', '13.67810811', '1333.9', '221.2857292', '194', '5.79', '447.4', '0.512195696', '3.35', '17.23138995', '3.896374724', '3.806012098');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 128', '37.64', '13.625', '0.7', '13.19', '1.125', '10.1228', '12.5', '9.5375', '0.477530789', '5.862222222', '14.46114286', '1248.1', '208.1117305', '183.2', '5.76', '419.3', '0.513074937', '3.34', '14.66067279', '3.875424159', '3.782158328');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 121', '35.59', '13.5', '0.67', '13.16', '1.0625', '10.1218', '12.4375', '9.045', '0.485006687', '6.192941176', '15.10716418', '1166.1', '195.5640104', '172.8', '5.72', '392.7', '0.513871414', '3.32', '12.4425603', '3.856034552', '3.759327231');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '13H 113.6', '33.41', '13.375', '0.63', '13.12', '1', '10.1228', '12.375', '8.42625', '0.486079573', '6.56', '16.06793651', '1083.9', '182.7230196', '162.1', '5.7', '365.5', '0.514911839', '3.31', '10.39063926', '3.834901878', '3.735164981');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '13H 106.2', '31.24', '13.25', '0.59', '13.08', '0.9375', '10.1218', '12.3125', '7.8175', '0.487001998', '6.976', '17.15559322', '1003.5', '170.0508854', '151.5', '5.67', '338.8', '0.516023952', '3.29', '8.581560036', '3.813782415', '3.710423726');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '13H 98.9', '29.08', '13.125', '0.55', '13.04', '0.875', '10.1228', '12.25', '7.21875', '0.487952673', '7.451428571', '18.40509091', '924.8', '157.5477071', '140.9', '5.64', '312.5', '0.517379908', '3.28', '6.99718925', '3.792560829', '3.68572188');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '13H 91.5', '26.93', '13', '0.51', '13', '0.8125', '10.1218', '12.1875', '6.63', '0.488721231', '8', '19.84666667', '847.9', '145.2115104', '130.5', '5.61', '286.7', '0.518853186', '3.26', '5.624185284', '3.771357795', '3.658903092');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '13H 86.6', '25.48', '13', '0.51', '12.04', '0.8175', '10.1218', '12.1825', '6.63', '0.524461581', '7.363914373', '19.84666667', '793.6', '136.3642969', '122.1', '5.58', '229.9', '0.517186291', '3', '5.342652216', '3.486717517', '3.3866075');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '13H 79.8', '23.46', '12.875', '0.47', '12', '0.7545', '10.1228', '12.1205', '6.05125', '0.525482218', '7.952286282', '21.53787234', '723.5', '124.9056498', '112.4', '5.55', '209.5', '0.518606205', '2.99', '4.22163663', '3.465995166', '3.360888682');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '13H 75.6', '22.22', '12.875', '0.48', '11.04', '0.7595', '10.1228', '12.1155', '6.18', '0.579488794', '7.267939434', '21.08916667', '674.8', '117.05236', '104.8', '5.51', '164.8', '0.516769109', '2.72', '4.030763893', '3.179896486', '3.086410128');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '13H 69.1', '20.33', '12.75', '0.44', '11', '0.697', '10.1218', '12.053', '5.61', '0.580878049', '7.890961263', '23.00409091', '611.2', '106.5859243', '95.9', '5.48', '149.1', '0.518503801', '2.71', '3.136643612', '3.159862125', '3.060991324');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '13H 64.9', '19.09', '12.75', '0.44', '10.04', '0.702', '10.1218', '12.048', '5.61', '0.631887266', '7.150997151', '23.00409091', '565.6', '99.0683838', '88.7', '5.44', '114.6', '0.516621394', '2.45', '2.957421644', '2.876547248', '2.789799425');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '13H 58.9', '17.33', '12.625', '0.4', '10', '0.639', '10.1228', '11.986', '5.05', '0.633665102', '7.824726135', '25.307', '508.3', '89.4586081', '80.5', '5.42', '102.8', '0.517996109', '2.44', '2.251298013', '2.85704635', '2.766436819');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '13H 55', '16.17', '12.625', '0.4', '9.03', '0.644', '10.1228', '11.981', '5.05', '0.696284985', '7.010869565', '25.307', '466.5', '82.52078686', '73.9', '5.37', '76.6', '0.51586861', '2.18', '2.110606501', '2.571483404', '2.491860362');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '13H 49.9', '14.67', '12.5', '0.37', '9', '0.582', '10.1218', '11.918', '4.625', '0.714980145', '7.731958763', '27.35621622', '417', '74.30786792', '66.7', '5.33', '68.2', '0.518423754', '2.16', '1.597764215', '2.553289541', '2.468402418');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '13H 46.3', '13.62', '12.5', '0.37', '8.04', '0.5865', '10.1218', '11.9135', '4.625', '0.794210109', '6.854219949', '27.35621622', '379.7', '68.04167902', '60.8', '5.28', '49.3', '0.515238132', '1.9', '1.489231607', '2.271355286', '2.197740223');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12H 41.2', '12.12', '12.375', '0.33', '8', '0.524', '10.1228', '11.851', '4.08375', '0.796880725', '7.633587786', '30.67515152', '334.5', '60.26052682', '54.1', '5.25', '43.2', '0.517530864', '1.89', '1.081371458', '2.253255947', '2.175232794');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15H 268.8', '79.06', '15', '1.41', '14.32', '2.2435', '9.2558', '12.7565', '21.15', '0.406222507', '3.191441943', '6.564397163', '2777', '448.7685691', '370.3', '5.93', '1086.2', '0.50543357', '3.71', '119.1864864', '4.40480983', '4.325425259');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15H 260.7', '76.68', '14.875', '1.37', '14.28', '2.1805', '9.2568', '12.6945', '20.37875', '0.407283812', '3.274478331', '6.756788321', '2666.2', '433.1189857', '358.5', '5.9', '1046.5', '0.505615332', '3.69', '109.3466722', '4.383880095', '4.304451695');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15H 252.8', '74.31', '14.75', '1.33', '14.24', '2.1185', '9.2558', '12.6315', '19.6175', '0.408062931', '3.360868539', '6.95924812', '2557.6', '417.7910691', '346.8', '5.87', '1007.5', '0.505978584', '3.68', '100.190088', '4.363145726', '4.283467226');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15H 244.6', '71.94', '14.625', '1.29', '14.2', '2.0555', '9.2568', '12.5695', '18.86625', '0.409114399', '3.454147409', '7.175813953', '2451.1', '402.5124232', '335.2', '5.84', '969', '0.50614796', '3.67', '91.45425504', '4.342114255', '4.262396896');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '15H 236.6', '69.59', '14.5', '1.25', '14.16', '1.9935', '9.2558', '12.5065', '18.125', '0.409868442', '3.551542513', '7.40464', '2346.9', '387.5535691', '323.7', '5.81', '931', '0.506611534', '3.66', '83.35356573', '4.321279995', '4.240883934');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 228.6', '67.24', '14.375', '1.21', '14.12', '1.9305', '9.2568', '12.4445', '17.39375', '0.410905305', '3.657083657', '7.650247934', '2244.7', '372.6421107', '312.3', '5.78', '893.6', '0.506815035', '3.65', '75.65305768', '4.300144135', '4.219483725');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12CB 230', '67.64', '12', '1.98', '14.98', '1.677', '7.221', '10.323', '23.76', '0.569138099', '4.466308885', '3.646969697', '1461.9', '296.331723', '243.7', '4.65', '945.5', '0.496850491', '3.74', '77.66081291', '4.55781899', '4.474978652');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 220.7', '64.91', '14.25', '1.17', '14.08', '1.8685', '9.2558', '12.3815', '16.6725', '0.411627202', '3.767728124', '7.910940171', '2144.7', '358.0485691', '301.1', '5.75', '856.8', '0.507271383', '3.63', '68.54068772', '4.279207745', '4.197164436');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12CB 220', '64.7', '12', '1.735', '14.735', '1.677', '7.221', '10.323', '20.82', '0.50700661', '4.393261777', '4.161959654', '1426.6', '287.511723', '237.8', '4.7', '898.2', '0.497770536', '3.73', '67.14951216', '4.494169184', '4.415384879');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 212.8', '62.58', '14.125', '1.13', '14.04', '1.8055', '9.2568', '12.3195', '15.96125', '0.412643229', '3.888119634', '8.191858407', '2046.7', '343.5005482', '289.8', '5.72', '820.5', '0.507503433', '3.62', '61.80741436', '4.257964988', '4.176107266');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12CB 210', '61.76', '12', '1.49', '14.49', '1.677', '7.221', '10.323', '17.88', '0.442774056', '4.320214669', '4.846308725', '1391.3', '278.691723', '231.9', '4.75', '852.9', '0.498492764', '3.72', '58.80314766', '4.430601891', '4.356990858');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 204.9', '60.27', '14', '1.09', '14', '1.7435', '9.2558', '12.2565', '15.26', '0.413323856', '4.014912532', '8.491559633', '1950.8', '329.2685691', '278.7', '5.69', '784.8', '0.508002463', '3.61', '55.61635692', '4.236924502', '4.154122027');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12CB 200', '58.82', '12', '1.245', '14.245', '1.677', '7.221', '10.323', '14.94', '0.376332027', '4.247167561', '5.8', '1356.1', '269.871723', '226', '4.8', '809.5', '0.499025024', '3.71', '52.34181592', '4.367122469', '4.299739779');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 197.1', '57.96', '14', '1.09', '13.31', '1.7465', '9.2558', '12.2535', '15.26', '0.434004082', '3.810478099', '8.491559633', '1862.2', '314.9116089', '266', '5.67', '676.6', '0.507211997', '3.42', '53.33108148', '4.024754396', '3.947664699');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 190', '55.91', '14', '1.09', '12.62', '1.75', '9.2558', '12.25', '15.26', '0.45681784', '3.605714286', '8.491559633', '1780.9', '300.571446', '254.4', '5.64', '578.7', '0.506502257', '3.22', '51.05370952', '3.81263823', '3.732684078');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12CB 190', '55.88', '12', '1', '14', '1.677', '7.221', '10.323', '12', '0.307564528', '4.174120453', '7.221', '1320.8', '261.051723', '220.1', '4.86', '767.8', '0.499445168', '3.71', '47.47130602', '4.303736752', '4.24328301');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14CB 190', '55.86', '14.38', '1.066', '12.671', '1.736', '9.583', '12.644', '15.32908', '0.464406277', '3.649481567', '8.989681051', '1891.5', '309.8376069', '263.1', '5.82', '589.8', '0.498995213', '3.25', '48.99586239', '3.816904721', '3.764603189');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14WF 190', '55.86', '14.38', '1.06', '12.67', '1.736', '9.583', '12.644', '15.2428', '0.461828806', '3.649193548', '9.040566038', '1892.5', '309.6371802', '263.2', '5.82', '589.7', '0.498961678', '3.25', '48.88496949', '3.817054419', '3.763568866');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 190', '55.62', '14', '1.09', '12.62', '1.75', '9.2558', '12.25', '15.26', '0.45681784', '3.605714286', '8.491559633', '1773.4', '300.571446', '253.3', '5.65', '578.6', '0.506589796', '3.23', '51.05370952', '3.81263823', '3.740456998');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 189.9', '55.87', '13.875', '1.06', '13.28', '1.684', '9.2568', '12.191', '14.7075', '0.438759551', '3.942992874', '8.732830189', '1774.7', '301.8737334', '255.8', '5.64', '647.5', '0.507592613', '3.4', '47.98147026', '4.006237774', '3.92802537');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 183', '53.78', '13.875', '1.05', '12.58', '1.6875', '9.2568', '12.1875', '14.56875', '0.457852676', '3.727407407', '8.816', '1695.4', '287.6533086', '244.4', '5.61', '552.4', '0.506816551', '3.2', '45.741261', '3.792227931', '3.711235815');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 183', '53.48', '13.875', '1.05', '12.58', '1.6875', '9.2568', '12.1875', '14.56875', '0.457852676', '3.727407407', '8.816', '1687.8', '287.6533086', '243.3', '5.62', '552.2', '0.507000113', '3.21', '45.741261', '3.792227931', '3.718942496');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 182.4', '53.66', '13.75', '1.02', '13.24', '1.6215', '9.2558', '12.1285', '14.025', '0.439753389', '4.082639531', '9.074313725', '1686.9', '288.5184839', '245.4', '5.61', '617.4', '0.50796412', '3.39', '42.82024629', '3.98537026', '3.906021072');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12CB 180', '52.94', '12', '1.492', '14.735', '1.312', '7.951', '10.688', '17.904', '0.613630025', '5.615472561', '5.329088472', '1218.1', '239.4140334', '203', '4.8', '702.4', '0.497987575', '3.64', '36.09571967', '4.384770777', '4.300089127');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14WF 176', '51.79', '14.12', '1.005', '12.615', '1.606', '9.583', '12.514', '14.1906', '0.475373266', '3.927459527', '9.535323383', '1712.5', '283.4246072', '242.6', '5.75', '538.4', '0.499023512', '3.22', '39.11758776', '3.781414248', '3.726406295');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 176', '51.79', '13.75', '1.02', '12.55', '1.625', '9.2558', '12.125', '14.025', '0.46293183', '3.861538462', '9.074313725', '1613.9', '275.3750398', '234.7', '5.58', '527.7', '0.507243164', '3.19', '41.01188571', '3.774102238', '3.69201008');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14CB 176', '51.75', '14.12', '1.008', '12.613', '1.606', '9.583', '12.514', '14.23296', '0.476867894', '3.926836862', '9.506944444', '1710.6', '283.4736506', '242.3', '5.75', '538.1', '0.499064284', '3.22', '39.15932147', '3.780550874', '3.727673501');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 176', '51.5', '13.75', '1.02', '12.55', '1.625', '9.2558', '12.125', '14.025', '0.46293183', '3.861538462', '9.074313725', '1606.3', '275.3750398', '233.6', '5.59', '527.6', '0.507339305', '3.2', '41.01188571', '3.774102238', '3.700341871');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 174.9', '51.46', '13.625', '0.98', '13.2', '1.559', '9.2568', '12.066', '13.3525', '0.440825704', '4.233483002', '9.445714286', '1601', '275.3359209', '235', '5.58', '587.7', '0.50842977', '3.38', '38.04100143', '3.964398178', '3.884280431');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12CB 170', '50', '12', '1.247', '14.49', '1.312', '8.051', '10.688', '14.964', '0.528097437', '5.522103659', '6.456295108', '1182.8', '230.5940334', '197.1', '4.86', '666.9', '0.498766215', '3.65', '29.9766105', '4.325511011', '4.252264505');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 169', '49.72', '14', '0.965', '12.575', '1.546', '9.583', '12.454', '13.51', '0.475676086', '4.06694696', '9.930569948', '1628.5', '270.8225932', '232.6', '5.72', '513.3', '0.499092404', '3.21', '34.84129137', '3.76154283', '3.706979717');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14CB 169', '49.69', '14', '0.969', '12.574', '1.546', '9.583', '12.454', '13.566', '0.477685787', '4.066623545', '9.889576883', '1626.9', '270.9223238', '232.4', '5.72', '513.2', '0.499070574', '3.21', '34.89675321', '3.76088751', '3.708213194');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 169', '49.68', '13.625', '0.98', '12.51', '1.5625', '9.2568', '12.0625', '13.3525', '0.464097918', '4.0032', '9.445714286', '1532', '262.7827227', '224.9', '5.55', '502', '0.507816715', '3.18', '36.4408734', '3.753561218', '3.669110541');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 169', '49.38', '13.625', '0.98', '12.51', '1.5625', '9.2568', '12.0625', '13.3525', '0.464097918', '4.0032', '9.445714286', '1524.4', '262.7827227', '223.8', '5.56', '502.1', '0.507715577', '3.19', '36.4408734', '3.753561218', '3.678482844');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 167.5', '49.27', '13.5', '0.94', '13.16', '1.4965', '9.2558', '12.0035', '12.69', '0.441783208', '4.396926161', '9.846595745', '1516.9', '262.3241089', '224.7', '5.55', '558.5', '0.508908806', '3.37', '33.6410733', '3.943427271', '3.862326671');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 162', '47.57', '13.5', '0.94', '12.47', '1.5', '9.2558', '12', '12.69', '0.465140444', '4.156666667', '9.846595745', '1451.9', '250.355821', '215.1', '5.52', '477', '0.508148905', '3.17', '32.23246913', '3.733027086', '3.647662173');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 162', '47.28', '13.5', '0.94', '12.47', '1.5', '9.2558', '12', '12.69', '0.465140444', '4.156666667', '9.846595745', '1444.3', '250.355821', '214', '5.53', '477', '0.508148905', '3.18', '32.23246913', '3.733027086', '3.65702499');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14WF 161', '47.38', '13.88', '0.905', '12.515', '1.486', '9.583', '12.394', '12.5614', '0.466337569', '4.210969044', '10.58895028', '1541.8', '257.4150472', '222.2', '5.7', '486.2', '0.499246663', '3.2', '30.58963622', '3.737376007', '3.682359607');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14CB 161', '47.33', '13.88', '0.908', '12.513', '1.486', '9.583', '12.394', '12.60304', '0.467958223', '4.210296097', '10.55396476', '1540', '257.4674506', '221.9', '5.7', '486', '0.499212703', '3.2', '30.62359494', '3.736490465', '3.684090003');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 161', '47.28', '13.5', '0.94', '12.47', '1.5', '9.2558', '12', '12.69', '0.465140444', '4.156666667', '9.846595745', '1444.3', '250.355821', '214', '5.53', '477', '0.508148905', '3.18', '32.23246913', '3.733027086', '3.65702499');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '13H 160.1', '47.09', '13.375', '0.9', '13.12', '1.434', '9.2568', '11.941', '12.0375', '0.442813042', '4.574616457', '10.28533333', '1434.6', '249.4831084', '214.5', '5.52', '529.8', '0.509398259', '3.35', '29.59314806', '3.922350371', '3.840145503');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12CB 160', '47.06', '12', '1.002', '14.245', '1.312', '7.951', '10.688', '12.024', '0.426278262', '5.428734756', '7.935129741', '1147.5', '221.7740334', '191.3', '4.94', '633', '0.499270884', '3.67', '25.94012406', '4.274053805', '4.205112265');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '13H 154.5', '45.48', '13.375', '0.9', '12.43', '1.4375', '9.2568', '11.9375', '12.0375', '0.466255973', '4.323478261', '10.28533333', '1373.5', '238.0942852', '205.4', '5.5', '452.3', '0.508643391', '3.15', '28.3602077', '3.712393381', '3.625390302');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '13H 154.5', '45.19', '13.375', '0.9', '12.43', '1.4375', '9.2568', '11.9375', '12.0375', '0.466255973', '4.323478261', '10.28533333', '1366', '238.0942852', '204.3', '5.5', '452.2', '0.508755872', '3.16', '28.3602077', '3.712393381', '3.634735311');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14CB 154', '45.27', '13.75', '0.876', '12.481', '1.421', '9.583', '12.329', '12.045', '0.473327931', '4.391625616', '10.93949772', '1455.5', '244.7185894', '211.7', '5.67', '461.1', '0.499304936', '3.19', '26.88186296', '3.717371012', '3.664258134');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 154', '45.27', '13.75', '0.87', '12.48', '1.421', '9.583', '12.329', '11.9625', '0.470123626', '4.391273751', '11.01494253', '1456.6', '244.5225932', '211.9', '5.67', '461.1', '0.49918493', '3.19', '26.80937141', '3.717645676', '3.662528486');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '13H 153.5', '45.19', '13.375', '0.9', '12.43', '1.4375', '9.2568', '11.9375', '12.0375', '0.466255973', '4.323478261', '10.28533333', '1366', '238.0942852', '204.3', '5.5', '452.2', '0.508755872', '3.16', '28.3602077', '3.712393381', '3.634735311');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '13H 152.7', '44.92', '13.25', '0.86', '13.08', '1.3715', '9.2558', '11.8785', '11.395', '0.44371985', '4.768501641', '10.76255814', '1354.2', '236.8109839', '204.4', '5.49', '501.5', '0.509996106', '3.34', '25.89163978', '3.901274877', '3.817339851');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12CB 150', '44.12', '12', '0.757', '14', '1.312', '7.951', '10.688', '9.084', '0.327684397', '5.335365854', '10.50330251', '1112.3', '212.9540334', '185.4', '5.02', '600.4', '0.499684655', '3.69', '22.98789729', '4.219042837', '4.160051448');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '13H 147.5', '43.4', '13.25', '0.86', '12.39', '1.375', '9.2558', '11.875', '11.395', '0.467238271', '4.505454545', '10.76255814', '1296.9', '225.9962898', '195.8', '5.47', '428.1', '0.509084815', '3.14', '24.81903904', '3.69176717', '3.603031687');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '13H 147.5', '43.1', '13.25', '0.86', '12.39', '1.375', '9.2558', '11.875', '11.395', '0.467238271', '4.505454545', '10.76255814', '1289.4', '225.9962898', '194.6', '5.47', '428', '0.50920376', '3.15', '24.81903904', '3.69176717', '3.613701516');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14WF 147', '43.24', '13.62', '0.84', '12.45', '1.356', '9.583', '12.264', '11.4408', '0.476817003', '4.590707965', '11.40833333', '1374.4', '232.0300382', '201.8', '5.64', '436.8', '0.49923367', '3.18', '23.4186071', '3.698813436', '3.643189881');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14CB 147', '43.21', '13.62', '0.844', '12.449', '1.356', '9.583', '12.264', '11.49528', '0.479126044', '4.590339233', '11.3542654', '1372.8', '232.1323927', '201.6', '5.64', '436.6', '0.499342019', '3.18', '23.46034367', '3.698101993', '3.644161998');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '13H 146.5', '43.1', '13.25', '0.86', '12.39', '1.375', '9.2558', '11.875', '11.395', '0.467238271', '4.505454545', '10.76255814', '1289.4', '225.9962898', '194.6', '5.47', '428', '0.50920376', '3.15', '24.81903904', '3.69176717', '3.613701516');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '13H 145.4', '42.76', '13.125', '0.82', '13.04', '1.309', '9.2568', '11.816', '10.7625', '0.444690135', '4.980901451', '11.28878049', '1275.6', '224.3077959', '194.4', '5.46', '473.7', '0.510608206', '3.33', '22.51217446', '3.880092421', '3.794231326');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '13H 140.5', '41.32', '13.125', '0.82', '12.35', '1.3125', '9.2568', '11.8125', '10.7625', '0.468283077', '4.704761905', '11.28878049', '1222.1', '214.0617852', '186.2', '5.44', '404.2', '0.509709384', '3.13', '21.58543767', '3.671040872', '3.580669436');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '13H 140.5', '41.03', '13.125', '0.82', '12.35', '1.3125', '9.2568', '11.8125', '10.7625', '0.468283077', '4.704761905', '11.28878049', '1214.5', '214.0617852', '185', '5.44', '404.1', '0.509835519', '3.14', '21.58543767', '3.671040872', '3.591819252');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14H 140', '41.2', '13.5', '0.8', '12.41', '1.296', '9.583', '12.204', '10.8', '0.476666567', '4.787808642', '11.97875', '1297.5', '220.0782182', '192.2', '5.61', '413.4', '0.499308119', '3.17', '20.41652164', '3.678852112', '3.622802395');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12CB 140', '41.18', '12', '1.376', '12.736', '1.075', '8.525', '10.925', '16.512', '0.85678392', '5.92372093', '6.195494186', '934.8', '182.9521', '155.8', '4.76', '372.4', '0.49695458', '3.01', '21.40041652', '3.695878537', '3.613406608');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '14CB 140', '41.15', '13.5', '0.802', '12.407', '1.296', '9.583', '12.204', '10.827', '0.477973779', '4.786651235', '11.94887781', '1295.5', '220.0902613', '191.9', '5.61', '413.1', '0.49930844', '3.17', '20.43175302', '3.677727301', '3.624317297');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '13H 139.5', '41.03', '13.125', '0.82', '12.35', '1.3125', '9.2568', '11.8125', '10.7625', '0.468283077', '4.704761905', '11.28878049', '1214.5', '214.0617852', '185', '5.44', '404.1', '0.509835519', '3.14', '21.58543767', '3.671040872', '3.591819252');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '13H 138.1', '40.61', '13', '0.78', '13', '1.2465', '9.2558', '11.7535', '10.14', '0.445525872', '5.214600882', '11.86641026', '1198.8', '211.9716089', '184.4', '5.43', '446.4', '0.511230679', '3.32', '19.44676522', '3.858912187', '3.771813778');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12H 134.5', '39.57', '12.25', '1.4', '14.31', '0.8685', '9.2558', '11.3815', '17.15', '1.042635579', '8.238341969', '6.611285714', '941.9', '180.1171629', '157', '4.88', '412.5', '0.514142524', '1.02', '17.84092046', '4.058772402', '3.866757208');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '13H 133.5', '39.26', '13', '0.78', '12.31', '1.25', '9.2558', '11.75', '10.14', '0.469181089', '4.924', '11.86641026', '1148.9', '202.288946', '176.8', '5.41', '380.8', '0.510276991', '3.11', '18.65195388', '3.650323343', '3.557224501');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '13H 133.5', '38.97', '13', '0.78', '12.31', '1.25', '9.2558', '11.75', '10.14', '0.469181089', '4.924', '11.86641026', '1141.3', '202.288946', '175.6', '5.41', '380.7', '0.510411028', '3.13', '18.65195388', '3.650323343', '3.568889636');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '13WF 133', '39.11', '13.38', '0.755', '12.365', '1.236', '9.583', '12.144', '10.1019', '0.473408279', '5.002022654', '12.69271523', '1221.2', '208.0567697', '182.5', '5.59', '389.9', '0.499420484', '3.16', '17.63585477', '3.657931911', '3.601729265');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '13CB 133', '39.1', '13.38', '0.76', '12.365', '1.236', '9.583', '12.144', '10.1688', '0.476543433', '5.002022654', '12.60921053', '1219.9', '208.2055003', '182.3', '5.59', '389.9', '0.499420484', '3.16', '17.67959163', '3.657364809', '3.603704439');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '13H 132.5', '38.97', '13', '0.78', '12.31', '1.25', '9.2558', '11.75', '10.14', '0.469181089', '4.924', '11.86641026', '1141.3', '202.288946', '175.6', '5.41', '380.7', '0.510411028', '3.13', '18.65195388', '3.650323343', '3.568889636');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12CB 130', '38.24', '12', '1.131', '12.491', '1.075', '8.525', '10.925', '13.572', '0.718044434', '5.809767442', '7.537577365', '899.5', '174.1321', '149.9', '4.85', '350.5', '0.498116377', '3.03', '16.63424738', '3.648488909', '3.573871389');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '13H 126.5', '37.21', '12.875', '0.74', '12.27', '1.1875', '9.2568', '11.6875', '9.5275', '0.470126161', '5.166315789', '12.50918919', '1077.4', '190.6777227', '167.4', '5.38', '357.7', '0.511054386', '3.1', '15.99750225', '3.629506084', '3.533682757');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '13H 126.5', '36.94', '12.875', '0.74', '12.27', '1.1875', '9.2568', '11.6875', '9.5275', '0.470126161', '5.166315789', '12.50918919', '1069.8', '190.6777227', '166.2', '5.38', '357.7', '0.511054386', '3.11', '15.99750225', '3.629506084', '3.54641679');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '13CB 126', '37.04', '13.25', '0.726', '12.331', '1.171', '9.583', '12.079', '9.6195', '0.481817884', '5.265157985', '13.19972452', '1142', '196.0116207', '172.4', '5.55', '366.3', '0.49949785', '3.14', '15.09671842', '3.637415608', '3.582204057');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '13H 126', '37.04', '13.25', '0.72', '12.33', '1.171', '9.583', '12.079', '9.54', '0.477874672', '5.264730999', '13.30972222', '1143.2', '195.8189995', '172.6', '5.56', '366.3', '0.499376338', '3.14', '15.04816217', '3.637836904', '3.580128018');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '13H 125.5', '36.91', '12.875', '0.74', '12.27', '1.1875', '9.2568', '11.6875', '9.5275', '0.470126161', '5.166315789', '12.50918919', '1069.8', '190.6777227', '166.2', '5.38', '357.7', '0.511054386', '3.11', '15.99750225', '3.629506084', '3.54641679');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '13WF 120', '35.31', '13.12', '0.71', '12.32', '1.106', '9.583', '12.014', '9.3152', '0.499337292', '5.569620253', '13.4971831', '1071.7', '184.8215452', '163.4', '5.51', '345.1', '0.499414382', '3.13', '12.9335119', '3.621922896', '3.561847076');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12CB 120', '35.28', '12', '0.885', '12.245', '1.075', '8.525', '10.925', '10.62', '0.573152782', '5.695348837', '9.632768362', '864.1', '165.2761', '144', '4.95', '329.6', '0.499018198', '3.06', '13.3226453', '3.60139933', '3.535966');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '13CB 120', '35.26', '13.12', '0.713', '12.318', '1.106', '9.583', '12.014', '9.35456', '0.501528585', '5.568716094', '13.44039271', '1069.9', '184.8842086', '163.1', '5.51', '344.9', '0.499460659', '3.13', '12.95429149', '3.620935404', '3.564088116');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '13H 119.5', '35.16', '12.75', '0.7', '12.23', '1.125', '9.2558', '11.625', '8.925', '0.470904697', '5.435555556', '13.22257143', '1007.5', '179.2262898', '158', '5.35', '335.1', '0.511771645', '3.09', '13.612708', '3.608699976', '3.511075379');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '13H 119.5', '34.87', '12.75', '0.7', '12.23', '1.125', '9.2558', '11.625', '8.925', '0.470904697', '5.435555556', '13.22257143', '1000', '179.2262898', '156.9', '5.36', '335', '0.511924412', '3.1', '13.612708', '3.608699976', '3.52283591');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '13H 118.6', '34.87', '12.75', '0.7', '12.23', '1.125', '9.2558', '11.625', '8.925', '0.470904697', '5.435555556', '13.22257143', '1000', '179.2262898', '156.9', '5.36', '335', '0.511924412', '3.1', '13.612708', '3.608699976', '3.52283591');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '13H 118.5', '34.87', '12.75', '0.7', '12.23', '1.125', '9.2558', '11.625', '8.925', '0.470904697', '5.435555556', '13.22257143', '1000', '179.2262898', '156.9', '5.36', '335', '0.511924412', '3.1', '13.612708', '3.608699976', '3.52283591');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '13H 113', '33.25', '12.625', '0.67', '12.2', '1.0625', '9.2568', '11.5625', '8.45875', '0.478461408', '5.741176471', '13.8161194', '941', '168.3330742', '149.1', '5.32', '313.7', '0.512522181', '3.07', '11.55296542', '3.589506536', '3.48762123');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '13H 113', '33.24', '13', '0.665', '12.275', '1.046', '9.583', '11.954', '8.645', '0.496329339', '5.867590822', '14.41052632', '1000.4', '173.2663432', '153.9', '5.49', '322.8', '0.499437807', '3.12', '10.90241812', '3.600795796', '3.540699593');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '13CB 113', '33.21', '13', '0.669', '12.274', '1.046', '9.583', '11.954', '8.697', '0.49935546', '5.867112811', '14.32436472', '998.8', '173.3728238', '153.7', '5.48', '322.7', '0.499470485', '3.12', '10.92810372', '3.599948529', '3.542453652');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '13H 113', '32.96', '12.625', '0.67', '12.2', '1.0625', '9.2568', '11.5625', '8.45875', '0.478461408', '5.741176471', '13.8161194', '933.4', '168.3330742', '147.9', '5.33', '313.6', '0.512685613', '3.08', '11.55296542', '3.589506536', '3.501183032');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '17H 112.1', '32.96', '16.625', '0.67', '12.2', '1.0625', '13.2568', '15.5625', '11.13875', '0.685211649', '5.741176471', '19.78626866', '933.4', '236.9330742', '147.9', '5.33', '313.6', '0.512685613', '3.08', '11.95398276', '3.498020814', '4.061894361');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '13H 112', '32.96', '12.625', '0.67', '12.2', '1.0625', '9.2568', '11.5625', '8.45875', '0.478461408', '5.741176471', '13.8161194', '933.4', '168.3330742', '147.9', '5.33', '313.6', '0.512685613', '3.08', '11.55296542', '3.589506536', '3.501183032');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12CB 110', '32.34', '12', '0.64', '12', '1.075', '8.525', '10.925', '7.68', '0.422945736', '5.581395349', '13.3203125', '828.8', '156.4561', '138.1', '5.06', '309.9', '0.499515973', '3.1', '11.206682', '3.555041071', '3.501141585');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '13H 106', '31.23', '12.5', '0.63', '12.16', '1', '9.2558', '11.5', '7.875', '0.479535691', '6.08', '14.69174603', '874.3', '157.191446', '139.9', '5.29', '291.8', '0.513492602', '3.06', '9.649211097', '3.568519414', '3.463121343');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '13WF 106', '31.19', '12.88', '0.62', '12.23', '0.986', '9.583', '11.894', '7.9856', '0.492708218', '6.201825558', '15.45645161', '930.7', '161.8697212', '144.5', '5.46', '300.9', '0.499519967', '3.11', '9.099480827', '3.579746534', '3.519055689');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '13CB 106', '31.15', '12.88', '0.623', '12.228', '0.986', '9.583', '11.894', '8.02424', '0.495173266', '6.200811359', '15.38202247', '929.9', '161.9355046', '144.3', '5.46', '300.7', '0.499607019', '3.11', '9.11543936', '3.578708091', '3.520323038');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '13H 106', '30.94', '12.5', '0.63', '12.16', '1', '9.2558', '11.5', '7.875', '0.479535691', '6.08', '14.69174603', '866.8', '157.191446', '138.6', '5.3', '291.7', '0.513668637', '3.07', '9.649211097', '3.568519414', '3.478728392');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '13H 105.2', '30.94', '12.5', '0.63', '12.16', '1', '9.2558', '11.5', '7.875', '0.479535691', '6.08', '14.69174603', '866.8', '157.191446', '138.6', '5.3', '291.7', '0.513668637', '3.07', '9.649211097', '3.568519414', '3.478728392');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '13H 105', '30.94', '12.5', '0.63', '12.16', '1', '9.2558', '11.5', '7.875', '0.479535691', '6.08', '14.69174603', '866.8', '157.191446', '138.6', '5.3', '291.7', '0.513668637', '3.07', '9.649211097', '3.568519414', '3.478728392');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12CB 102', '29.99', '12', '0.943', '12.49', '0.8', '9.175', '11.2', '11.316', '0.865895216', '7.80625', '9.729586426', '721.4', '137.40912', '120.2', '4.9', '260.6', '0.498450051', '2.95', '7.925969288', '3.563528396', '3.484407865');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12CB 100', '29.41', '12', '1.121', '10.613', '0.83', '9.115', '11.17', '13.452', '1.159968055', '6.393373494', '8.131132917', '659', '128.3572812', '109.8', '4.73', '167.5', '0.493624296', '2.39', '9.964266458', '2.988926865', '2.918890643');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12H 99.5', '29.21', '12.375', '0.59', '12.12', '0.9375', '9.2568', '11.4375', '7.30125', '0.480661122', '6.464', '15.68949153', '809.2', '146.2077617', '130.8', '5.26', '270.3', '0.514578746', '3.04', '7.968354816', '3.547425481', '3.437713713');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12H 99.5', '28.92', '12.375', '0.59', '12.12', '0.9375', '9.2568', '11.4375', '7.30125', '0.480661122', '6.464', '15.68949153', '801.7', '146.2077617', '129.6', '5.27', '270.1', '0.514959774', '3.06', '7.968354816', '3.547425481', '3.452314458');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '13CB 99', '29.09', '12.75', '0.586', '12.191', '0.921', '9.583', '11.829', '7.4715', '0.50014985', '6.61834962', '16.35324232', '857.3', '150.2461832', '134.5', '5.43', '278.3', '0.499669881', '3.09', '7.465673236', '3.557652586', '3.49827929');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '13WF 99', '29.09', '12.75', '0.58', '12.19', '0.921', '9.583', '11.829', '7.395', '0.495069471', '6.617806732', '16.52241379', '858.5', '150.056812', '134.7', '5.43', '278.2', '0.499726494', '3.09', '7.434951401', '3.558298298', '3.495053138');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12H 98.5', '28.92', '12.375', '0.59', '12.12', '0.9375', '9.2568', '11.4375', '7.30125', '0.480661122', '6.464', '15.68949153', '801.7', '146.2077617', '129.6', '5.27', '270.1', '0.514959774', '3.06', '7.968354816', '3.547425481', '3.452314458');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12H 98.3', '28.92', '12.375', '0.59', '12.12', '0.9375', '9.2568', '11.4375', '7.30125', '0.480661122', '6.464', '15.68949153', '801.7', '146.2077617', '129.6', '5.27', '270.1', '0.514959774', '3.06', '7.968354816', '3.547425481', '3.452314458');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12CB 95', '27.93', '12', '0.771', '12.318', '0.8', '9.175', '11.2', '9.252', '0.717844313', '7.69875', '11.9001297', '696.6', '131.21712', '116.1', '4.99', '249.7', '0.49901178', '2.99', '6.322743376', '3.541287987', '3.470461052');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12H 92.5', '27.21', '12.25', '0.55', '12.08', '0.875', '9.2558', '11.375', '6.7375', '0.48161684', '6.902857143', '16.82872727', '745.7', '135.380196', '121.7', '5.23', '249.2', '0.515797903', '3.03', '6.498345536', '3.526340434', '3.412631811');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12H 92.5', '26.92', '12.25', '0.55', '12.08', '0.875', '9.2558', '11.375', '6.7375', '0.48161684', '6.902857143', '16.82872727', '738.1', '135.380196', '120.5', '5.24', '249.2', '0.515797903', '3.04', '6.498345536', '3.526340434', '3.429582073');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '13WF 92', '27.06', '12.62', '0.545', '12.155', '0.856', '9.583', '11.764', '6.8779', '0.501960176', '7.099883178', '17.58348624', '788.9', '138.6122887', '125', '5.4', '256.4', '0.499619508', '3.08', '6.012805779', '3.537400956', '3.473493688');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '13CB 92', '27.04', '12.62', '0.549', '12.154', '0.856', '9.583', '11.764', '6.92838', '0.50568589', '7.099299065', '17.45537341', '787.4', '138.7212032', '124.8', '5.4', '256.3', '0.499691093', '3.08', '6.030010723', '3.536419726', '3.475597855');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12H 91.5', '26.92', '12.25', '0.55', '12.08', '0.875', '9.2558', '11.375', '6.7375', '0.48161684', '6.902857143', '16.82872727', '738.1', '135.380196', '120.5', '5.24', '249.2', '0.515797903', '3.04', '6.498345536', '3.526340434', '3.429582073');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12CB 91', '26.76', '12', '0.9', '10.392', '0.83', '9.115', '11.17', '10.8', '0.951090737', '6.260240964', '10.12777778', '627.2', '120.4012812', '104.5', '4.84', '155.9', '0.497906901', '2.41', '7.194749195', '2.957211783', '2.886532829');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12CB 88', '25.88', '12', '0.6', '12.147', '0.8', '9.275', '11.2', '7.2', '0.572672265', '7.591875', '15.45833333', '672', '125.06112', '112', '5.1', '239.2', '0.499522046', '3.04', '5.174668363', '3.51635202', '3.458323293');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12H 85.5', '25.21', '12.125', '0.51', '12.04', '0.8125', '9.2568', '11.3125', '6.18375', '0.482593202', '7.409230769', '18.15058824', '683.6', '124.7086992', '112.8', '5.21', '228.5', '0.517172448', '3.01', '5.222934595', '3.505151503', '3.384954619');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12H 85.5', '24.92', '12.125', '0.51', '12.04', '0.8125', '9.2568', '11.3125', '6.18375', '0.482593202', '7.409230769', '18.15058824', '676.1', '124.7086992', '111.5', '5.21', '228.5', '0.517172448', '3.03', '5.222934595', '3.505151503', '3.404630354');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '13CB 85', '24.98', '12.5', '0.501', '12.106', '0.796', '9.583', '11.704', '6.2625', '0.498224955', '7.604271357', '19.12774451', '722', '127.6869488', '115.5', '5.38', '235.5', '0.499738627', '3.07', '4.824497111', '3.51507131', '3.454272717');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '13WF 85', '24.98', '12.5', '0.495', '12.105', '0.796', '9.583', '11.704', '6.1875', '0.492298855', '7.603643216', '19.35959596', '723.3', '127.4991557', '115.7', '5.38', '235.5', '0.499614796', '3.07', '4.802117429', '3.515883753', '3.451285883');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12H 84.7', '24.92', '12.125', '0.51', '12.04', '0.8125', '9.2568', '11.3125', '6.18375', '0.482593202', '7.409230769', '18.15058824', '676.1', '124.7086992', '111.5', '5.21', '228.5', '0.517172448', '3.03', '5.222934595', '3.505151503', '3.404630354');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12H 84.5', '24.92', '12.125', '0.51', '12.04', '0.8125', '9.2568', '11.3125', '6.18375', '0.482593202', '7.409230769', '18.15058824', '676.1', '124.7086992', '111.5', '5.21', '228.5', '0.517172448', '3.03', '5.222934595', '3.505151503', '3.404630354');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12CB 83', '24.41', '12', '0.704', '10.196', '0.83', '9.115', '11.17', '8.448', '0.758265703', '6.142168675', '12.94744318', '598.9', '113.3452812', '99.8', '4.95', '147', '0.498734018', '2.45', '5.547189548', '2.929932795', '2.868170637');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12CB 82', '24.11', '12', '0.453', '12', '0.8', '9.175', '11.2', '5.436', '0.432945313', '7.5', '20.25386313', '650.8', '119.76912', '108.5', '5.2', '230.5', '0.49978308', '3.09', '4.617666701', '3.501900656', '3.449170073');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12H 79', '23.23', '12', '0.47', '12', '0.75', '9.2558', '11.25', '5.64', '0.483358444', '8', '19.69319149', '623.1', '114.191446', '103.9', '5.18', '208.2', '0.518731988', '2.99', '4.129271402', '3.483977764', '3.357328616');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12CB 79', '23.22', '12.38', '0.476', '12.081', '0.736', '9.583', '11.644', '5.89288', '0.513012258', '8.207201087', '20.13235294', '661.9', '117.6931279', '106.9', '5.34', '216.4', '0.499744433', '3.05', '3.874066138', '3.496202148', '3.433016385');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12WF 79', '23.22', '12.38', '0.47', '12.08', '0.736', '9.583', '11.644', '5.8186', '0.506587649', '8.206521739', '20.3893617', '663', '117.5060812', '107.1', '5.34', '216.4', '0.499620345', '3.05', '3.854125758', '3.497111693', '3.429809456');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12H 79', '22.94', '12', '0.47', '12', '0.75', '9.2558', '11.25', '5.64', '0.483358444', '8', '19.69319149', '615.6', '114.191446', '102.6', '5.18', '208.1', '0.518981259', '3.01', '4.129271402', '3.483977764', '3.377719827');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12H 78', '22.94', '12', '0.47', '12', '0.75', '9.2558', '11.25', '5.64', '0.483358444', '8', '19.69319149', '615.6', '114.191446', '102.6', '5.18', '208.1', '0.518981259', '3.01', '4.129271402', '3.483977764', '3.377719827');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12CB 76', '22.35', '12', '0.67', '12.27', '0.608', '9.559', '11.392', '8.04', '0.858497673', '10.09046053', '14.26716418', '560.2', '104.4654976', '93.4', '5.01', '187.5', '0.49917721', '2.9', '3.248371795', '3.464987735', '3.381521774');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12CB 75', '22.05', '12', '0.508', '10', '0.83', '9.115', '11.17', '6.096', '0.557881928', '6.024096386', '17.94291339', '570.7', '106.2892812', '95.1', '5.09', '138.5', '0.499398315', '2.51', '4.508376194', '2.903544407', '2.851978301');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12H 73.4', '21.6', '12', '0.47', '11.04', '0.755', '9.2558', '11.245', '5.64', '0.521910212', '7.311258278', '19.69319149', '572.8', '106.6491387', '95.5', '5.15', '163.7', '0.51715919', '2.75', '3.907310984', '3.199302028', '3.104469418');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12H 72.5', '21.25', '11.875', '0.43', '11.96', '0.6875', '9.2568', '11.1875', '5.10625', '0.484089267', '8.698181818', '21.52744186', '564.1', '103.8283867', '95', '5.15', '188.2', '0.520793286', '2.98', '3.202051862', '3.462707774', '3.32889068');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12H 72.5', '20.96', '11.875', '0.43', '11.96', '0.6875', '9.2568', '11.1875', '5.10625', '0.484089267', '8.698181818', '21.52744186', '556.6', '103.8283867', '93.7', '5.15', '188.2', '0.520793286', '3', '3.202051862', '3.462707774', '3.351903758');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12CB 72', '21.15', '12.25', '0.436', '12.041', '0.671', '9.583', '11.579', '5.341', '0.517133772', '8.97242921', '21.9793578', '596.2', '106.5219644', '97.3', '5.31', '195.3', '0.499835042', '3.04', '2.958624655', '3.474155169', '3.408907608');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12WF 72', '21.16', '12.25', '0.43', '12.04', '0.671', '9.583', '11.579', '5.2675', '0.510059613', '8.971684054', '22.28604651', '597.4', '106.3357182', '97.5', '5.31', '195.3', '0.499710519', '3.04', '2.94196152', '3.475191916', '3.405409498');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12H 71.5', '20.96', '11.875', '0.43', '11.96', '0.6875', '9.2568', '11.1875', '5.10625', '0.484089267', '8.698181818', '21.52744186', '556.6', '103.8283867', '93.7', '5.15', '188.2', '0.520793286', '3', '3.202051862', '3.462707774', '3.351903758');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12H 70', '20.59', '12', '0.47', '10.12', '0.7595', '9.2558', '11.2405', '5.64', '0.565983185', '6.662277814', '19.69319149', '538.8', '99.29602518', '89.8', '5.12', '127.3', '0.515299435', '2.49', '3.682155895', '2.926341676', '2.822629334');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12CB 70', '20.58', '12', '0.523', '12.123', '0.608', '9.559', '11.392', '6.276', '0.678266654', '9.969572368', '18.27724665', '539', '99.1734976', '89.8', '5.12', '180.7', '0.499567867', '2.96', '2.564328047', '3.456846636', '3.385524011');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12H 70', '20.3', '12', '0.47', '10.12', '0.7595', '9.2558', '11.2405', '5.64', '0.565983185', '6.662277814', '19.69319149', '531.3', '99.29602518', '88.5', '5.12', '127.3', '0.515299435', '2.5', '3.682155895', '2.926341676', '2.843284933');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12H 67.1', '19.74', '11.875', '0.43', '11', '0.692', '9.2568', '11.183', '5.10625', '0.522914346', '7.947976879', '21.52744186', '518', '96.94666516', '87.3', '5.12', '148', '0.51861036', '2.74', '3.029346449', '3.178667784', '3.078845531');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12CB 66', '19.41', '12.26', '0.448', '9.073', '0.795', '9.445', '11.465', '5.49248', '0.58662685', '5.706289308', '21.08258929', '525.7', '95.44852308', '85.8', '5.2', '99.1', '0.499303903', '2.26', '3.554988204', '2.622815922', '2.573150659');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12H 65.5', '19.29', '11.75', '0.39', '11.92', '0.625', '9.2558', '11.125', '4.5825', '0.484531812', '9.536', '23.73282051', '506.6', '93.61769603', '86.2', '5.12', '168.6', '0.523202689', '2.96', '2.427899074', '3.441466147', '3.298451968');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12H 65.5', '19', '11.75', '0.39', '11.92', '0.625', '9.2558', '11.125', '4.5825', '0.484531812', '9.536', '23.73282051', '499', '93.61769603', '84.9', '5.13', '168.6', '0.523202689', '2.98', '2.427899074', '3.441466147', '3.323609197');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12CB 65', '19.11', '12', '0.4', '12', '0.608', '9.559', '11.392', '4.8', '0.524067982', '9.868421053', '23.8975', '521.3', '94.7454976', '86.9', '5.22', '175.2', '0.499726027', '3.03', '2.191333128', '3.450814844', '3.388770462');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12WF 65', '19.11', '12.12', '0.39', '12', '0.606', '9.583', '11.514', '4.7268', '0.513939769', '9.900990099', '24.57179487', '533.4', '95.33079324', '88', '5.28', '174.6', '0.499793814', '3.02', '2.188426728', '3.453123763', '3.37970581');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12CB 65', '19.09', '12.12', '0.395', '12', '0.606', '9.583', '11.514', '4.7874', '0.52052874', '9.900990099', '24.26075949', '532', '95.47952382', '87.8', '5.28', '174.6', '0.499793814', '3.02', '2.199696536', '3.45188459', '3.383552944');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12H 64.5', '19', '11.75', '0.39', '11.92', '0.625', '9.2558', '11.125', '4.5825', '0.484531812', '9.536', '23.73282051', '499', '93.61769603', '84.9', '5.13', '168.6', '0.523202689', '2.98', '2.427899074', '3.441466147', '3.323609197');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12H 64', '18.85', '11.875', '0.43', '10.08', '0.697', '9.2568', '11.178', '5.10625', '0.566547107', '7.230989957', '21.52744186', '488.2', '90.33555539', '82.2', '5.09', '115.1', '0.516842008', '2.47', '2.863783694', '2.906562519', '2.797491708');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12H 64', '18.84', '12.31', '0.405', '10.065', '0.701', '9.583', '11.609', '4.98555', '0.550078555', '7.179029957', '23.6617284', '528.6', '93.95523106', '85.9', '5.3', '119.2', '0.499691376', '2.52', '2.76602617', '2.902658801', '2.838075558');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12WF 64', '18.83', '12.31', '0.405', '10.06', '0.701', '9.583', '11.609', '4.98555', '0.550351954', '7.175463623', '23.6617284', '528.3', '93.91454152', '85.8', '5.29', '119', '0.499785616', '2.51', '2.76487793', '2.901174453', '2.837345644');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12CB 64', '18.81', '12.31', '0.409', '10.06', '0.701', '9.583', '11.609', '5.03479', '0.555787529', '7.175463623', '23.43031785', '527.5', '94.03352598', '85.7', '5.3', '119', '0.499785616', '2.52', '2.774985504', '2.900332027', '2.839000555');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12H 64', '18.56', '11.875', '0.43', '10.08', '0.697', '9.2568', '11.178', '5.10625', '0.566547107', '7.230989957', '21.52744186', '480.6', '90.33555539', '80.9', '5.09', '115.1', '0.516842008', '2.49', '2.863783694', '2.906562519', '2.819878886');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12H 63.3', '18.61', '11.875', '0.44', '10.04', '0.697', '9.2568', '11.178', '5.225', '0.582032273', '7.202295552', '21.03818182', '480', '90.29857955', '80.8', '5.08', '113.8', '0.516547672', '2.47', '2.882232372', '2.89262534', '2.805643623');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12CB 60', '17.65', '12.118', '0.409', '9.034', '0.724', '9.445', '11.394', '4.956262', '0.590617917', '6.238950276', '23.09290954', '472', '86.16482873', '77.9', '5.17', '89', '0.499813028', '2.25', '2.70244469', '2.602880969', '2.551228655');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12H 58', '17.12', '11.75', '0.39', '10.04', '0.6345', '9.2558', '11.1155', '4.5825', '0.566647829', '7.911741529', '23.73282051', '438.8', '81.51290018', '74.7', '5.06', '103.2', '0.518527533', '2.45', '2.179048935', '2.886849589', '2.77095231');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12H 58', '17.08', '12.19', '0.36', '10.02', '0.641', '9.583', '11.549', '4.3884', '0.537128551', '7.815912637', '26.61944444', '476.5', '84.88574994', '78.2', '5.28', '107.5', '0.499886587', '2.51', '2.108390384', '2.884155993', '2.817461878');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12WF 58', '17.06', '12.19', '0.359', '10.014', '0.641', '9.583', '11.549', '4.37621', '0.53595746', '7.811232449', '26.69359331', '476.1', '84.81158637', '78.1', '5.28', '107.4', '0.499453733', '2.51', '2.105330788', '2.882611405', '2.817953462');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12CB 58', '17.04', '12.19', '0.363', '10.014', '0.641', '9.583', '11.549', '4.42497', '0.541929131', '7.811232449', '26.39944904', '475.3', '84.93057083', '78', '5.28', '107.4', '0.499453733', '2.51', '2.113407071', '2.881681404', '2.819759264');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12H 58', '16.83', '11.75', '0.39', '10.04', '0.6345', '9.2558', '11.1155', '4.5825', '0.566647829', '7.911741529', '23.73282051', '431.3', '81.51290018', '73.4', '5.06', '103.2', '0.518527533', '2.48', '2.179048935', '2.886849589', '2.795383017');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12H 57.4', '16.89', '11.75', '0.4', '10', '0.635', '9.2558', '11.115', '4.7', '0.58304252', '7.874015748', '23.1395', '430.8', '81.5559172', '73.3', '5.05', '102', '0.51879085', '2.46', '2.199082745', '2.872851617', '2.780915766');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12H 55.6', '15.75', '11.75', '0.4', '9.04', '0.6395', '9.2558', '11.1105', '4.7', '0.640420129', '7.068021892', '23.1395', '395.4', '75.18942376', '67.3', '5.01', '76.3', '0.51598854', '2.2', '2.059239597', '2.589479868', '2.509611761');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12H 55', '16.27', '11.875', '0.43', '8.12', '0.7065', '9.2568', '11.1685', '5.10625', '0.693842887', '5.746638358', '21.52744186', '406.9', '75.83367316', '68.5', '5', '61.5', '0.51253543', '1.94', '2.474984908', '2.326405615', '2.239106231');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12CB 55', '16.17', '12', '0.375', '9', '0.665', '9.445', '11.335', '4.5', '0.59179198', '6.766917293', '25.18666667', '428.4', '78.51330938', '71.4', '5.15', '80.9', '0.499366502', '2.24', '2.105144142', '2.586116406', '2.534083489');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12H 55', '15.98', '11.875', '0.43', '8.12', '0.7065', '9.2568', '11.1685', '5.10625', '0.693842887', '5.746638358', '21.52744186', '399.3', '75.83367316', '67.3', '5', '61.5', '0.51253543', '1.96', '2.474984908', '2.326405615', '2.258980345');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12WF 53', '15.59', '12.06', '0.345', '10', '0.576', '9.583', '11.484', '4.1607', '0.573981771', '8.680555556', '27.77681159', '426.2', '76.41025002', '70.7', '5.23', '96.1', '0.499479709', '2.48', '1.58666468', '2.864394712', '2.79372453');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12CB 53', '15.57', '12.06', '0.349', '10', '0.576', '9.583', '11.484', '4.20894', '0.580636632', '8.680555556', '27.45845272', '425.4', '76.52923448', '70.5', '5.23', '96.1', '0.499479709', '2.48', '1.59393621', '2.863358224', '2.797684453');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12H 53', '15.54', '12.06', '0.34', '10', '0.576', '9.583', '11.484', '4.1004', '0.565663194', '8.680555556', '28.18529412', '425.7', '76.26151944', '70.6', '5.23', '96.1', '0.499479709', '2.49', '1.577758419', '2.865691906', '2.795702388');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12H 52.5', '15.4', '11.625', '0.35', '10', '0.572', '9.2568', '11.053', '4.06875', '0.566412587', '8.741258741', '26.448', '390.7', '72.82774289', '67.2', '5.04', '91.5', '0.520947177', '2.44', '1.615481361', '2.867106281', '2.743159105');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12H 52.5', '15.11', '11.625', '0.35', '10', '0.572', '9.2568', '11.053', '4.06875', '0.566412587', '8.741258741', '26.448', '383.2', '72.82774289', '65.9', '5.04', '91.5', '0.520947177', '2.46', '1.615481361', '2.867106281', '2.770083924');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12H 50.5', '14.79', '11.75', '0.39', '8.08', '0.6445', '9.2558', '11.1055', '4.5825', '0.693177227', '6.268425136', '23.73282051', '366.1', '68.49842888', '62.3', '4.98', '55.1', '0.514190631', '1.93', '1.893483683', '2.308386294', '2.216082052');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12H 50.5', '14.49', '11.75', '0.39', '8.08', '0.6445', '9.2558', '11.1055', '4.5825', '0.693177227', '6.268425136', '23.73282051', '358.5', '68.49842888', '61', '4.97', '55.1', '0.514190631', '1.95', '1.893483683', '2.308386294', '2.239571552');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12WF 50', '14.71', '12.19', '0.371', '8.077', '0.641', '9.583', '11.549', '4.52249', '0.686700376', '6.300312012', '25.83018868', '394.5', '70.82910503', '64.7', '5.18', '56.4', '0.499054445', '1.96', '1.789874074', '2.306314375', '2.243595728');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12H 50', '14.7', '12.19', '0.37', '8.075', '0.641', '9.583', '11.549', '4.5103', '0.685019054', '6.29875195', '25.9', '394.3', '70.7845531', '64.7', '5.18', '56.3', '0.499569576', '1.96', '1.787420632', '2.305949504', '2.241605843');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12CB 50', '14.69', '12.258', '0.361', '8.071', '0.655', '9.823', '11.603', '4.425138', '0.670784006', '6.161068702', '27.21052632', '400.5', '72.15656555', '65.4', '5.22', '57.5', '0.499084694', '1.98', '1.796788885', '2.304220126', '2.258474526');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12CB 50', '14.69', '12.19', '0.375', '8.077', '0.641', '9.583', '11.549', '4.57125', '0.694104154', '6.300312012', '25.55466667', '393', '70.94808949', '64.5', '5.17', '56.4', '0.499054445', '1.96', '1.798372129', '2.305406748', '2.247071479');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12H 48.1', '14.16', '11.625', '0.36', '9', '0.577', '9.2568', '11.048', '4.185', '0.641719237', '7.798960139', '25.71333333', '351.6', '67.23470457', '60.5', '4.98', '67.6', '0.518531805', '2.19', '1.531831216', '2.570308817', '2.484405578');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12H 45.5', '13.31', '11.625', '0.35', '8.04', '0.5815', '9.2568', '11.0435', '4.06875', '0.69298392', '6.913155632', '26.448', '326.4', '61.20461066', '56.1', '4.95', '48.9', '0.515024347', '1.92', '1.40751386', '2.290160263', '2.193872422');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12H 45.5', '13.02', '11.625', '0.35', '8.04', '0.5815', '9.2568', '11.0435', '4.06875', '0.69298392', '6.913155632', '26.448', '318.8', '61.20461066', '54.8', '4.95', '48.8', '0.516079725', '1.94', '1.40751386', '2.290160263', '2.21747127');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12WF 45', '13.24', '12.06', '0.336', '8.042', '0.576', '9.583', '11.484', '4.05216', '0.695111083', '6.980902778', '28.52083333', '350.8', '63.1907879', '58.2', '5.15', '50', '0.499302154', '1.94', '1.321325188', '2.288514559', '2.221033474');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12H 45', '13.23', '12.06', '0.335', '8.04', '0.576', '9.583', '11.484', '4.0401', '0.693214699', '6.979166667', '28.60597015', '350.6', '63.14781222', '58.1', '5.15', '50', '0.498929725', '1.94', '1.319345289', '2.288178431', '2.22294404');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12H 45', '13.23', '11.625', '0.37', '8.04', '0.5815', '9.2568', '11.0435', '4.30125', '0.732583001', '6.913155632', '25.01837838', '320.8', '61.75188776', '55.2', '4.92', '48.9', '0.515024347', '1.92', '1.445803276', '2.285264748', '2.21168494');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12CB 45', '13.23', '12.13', '0.326', '8.036', '0.591', '9.823', '11.539', '3.95438', '0.674270773', '6.798646362', '30.13190184', '356.9', '64.57038014', '58.8', '5.19', '51.2', '0.499178714', '1.97', '1.330433621', '2.287149258', '2.241379556');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12CB 45', '13.21', '12.06', '0.34', '8.042', '0.576', '9.583', '11.484', '4.1004', '0.703386215', '6.980902778', '28.18529412', '349.3', '63.30977237', '57.9', '5.14', '50', '0.499302154', '1.95', '1.328305334', '2.287498354', '2.226780012');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12H 40.5', '11.85', '11.5', '0.31', '8', '0.5195', '9.2558', '10.9805', '3.565', '0.690398941', '7.699711261', '29.85741935', '287.7', '54.11217888', '50', '4.93', '42.8', '0.51788162', '1.9', '1.019562718', '2.272333553', '2.167868538');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12H 40.5', '11.55', '11.5', '0.31', '8', '0.5195', '9.2558', '10.9805', '3.565', '0.690398941', '7.699711261', '29.85741935', '280.1', '54.11217888', '48.7', '4.92', '42.8', '0.51788162', '1.92', '1.019562718', '2.272333553', '2.196612569');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12H 40', '11.78', '11.94', '0.295', '8', '0.516', '9.583', '11.424', '3.5223', '0.684831638', '7.751937984', '32.48474576', '310.2', '55.93337622', '52', '5.13', '44.1', '0.499229025', '1.93', '0.95757237', '2.271522979', '2.200957833');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12WF 40', '11.77', '11.94', '0.294', '8', '0.516', '9.583', '11.424', '3.51036', '0.682510174', '7.751937984', '32.5952381', '310.1', '55.9036301', '51.9', '5.13', '44.1', '0.499229025', '1.94', '0.956221666', '2.271809262', '2.203077196');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12CB 40', '11.76', '12', '0.29', '8', '0.526', '9.823', '11.474', '3.48', '0.676965304', '7.604562738', '33.87241379', '313.7', '56.97234804', '52.3', '5.17', '44.9', '0.499836674', '1.95', '0.947898747', '2.269758799', '2.21929355');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12H 40', '11.76', '11.5', '0.33', '8', '0.5195', '9.2558', '10.9805', '3.795', '0.734940808', '7.699711261', '28.04787879', '282.1', '54.65935136', '49.1', '4.9', '42.8', '0.51788162', '1.91', '1.050070948', '2.266813695', '2.187646766');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12CB 40', '11.75', '11.94', '0.298', '8', '0.516', '9.583', '11.424', '3.55812', '0.691796027', '7.751937984', '32.15771812', '308.6', '56.02261457', '51.7', '5.13', '44.1', '0.499229025', '1.94', '0.961666116', '2.270664778', '2.207334354');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '13H 175.8', '51.7', '13', '1.06', '12.32', '1.684', '8.4754', '11.316', '13.78', '0.433025303', '3.657957245', '7.995660377', '1417', '259.345411', '218', '5.24', '517.9', '0.506695507', '3.17', '44.20252758', '3.737036441', '3.666284648');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '13H 168.8', '49.65', '12.875', '1.02', '12.28', '1.6215', '8.4744', '11.2535', '13.1325', '0.434104024', '3.78661733', '8.308235294', '1345.4', '247.7256686', '209', '5.21', '493.4', '0.507144433', '3.15', '39.43949506', '3.716261388', '3.644645053');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '13H 161.9', '47.6', '12.75', '0.98', '12.24', '1.559', '8.4754', '11.191', '12.495', '0.435270011', '3.925593329', '8.648367347', '1275.5', '236.266661', '200.8', '5.18', '469.4', '0.507535047', '3.14', '35.02914058', '3.695379292', '3.616672121');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '13H 154.9', '45.57', '12.625', '0.94', '12.2', '1.4965', '8.4744', '11.1285', '11.8675', '0.436315118', '4.076177748', '9.015319149', '1207.2', '224.9666061', '191.2', '5.15', '445.8', '0.507966303', '3.13', '30.97020145', '3.674493667', '3.601881373');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '13H 148.1', '43.54', '12.5', '0.9', '12.16', '1.434', '8.4754', '11.066', '11.25', '0.437441505', '4.239888424', '9.417111111', '1140.5', '213.825411', '182.4', '5.12', '422.6', '0.50843933', '3.12', '27.2362162', '3.653499111', '3.580409201');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12H 141.2', '41.53', '12.375', '0.86', '12.12', '1.3715', '8.4744', '11.0035', '10.6425', '0.438438798', '4.418519869', '9.853953488', '1075.5', '202.8412936', '173.9', '5.09', '399.8', '0.508955293', '3.1', '23.82294823', '3.632500875', '3.556493587');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12H 134.4', '39.52', '12.25', '0.82', '12.08', '1.309', '8.4754', '10.941', '10.045', '0.439508699', '4.61420932', '10.33585366', '1011.9', '192.014161', '165.2', '5.06', '377.4', '0.509515391', '3.09', '20.70692337', '3.611392202', '3.535162955');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12H 127.6', '37.53', '12.125', '0.78', '12.04', '1.2465', '8.4744', '10.8785', '9.4575', '0.44043801', '4.829522663', '10.86461538', '949.9', '181.3422311', '156.7', '5.03', '355.4', '0.510120849', '3.08', '17.8814594', '3.590280198', '3.512317145');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12H 120.9', '35.54', '12', '0.74', '12', '1.184', '8.4754', '10.816', '8.88', '0.441427083', '5.067567568', '11.45324324', '889.4', '170.825411', '148.2', '5', '333.5', '0.511232384', '3.06', '15.32556643', '3.569056913', '3.488527564');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12H 115.5', '33.98', '12', '0.74', '11.31', '1.1875', '8.4754', '10.8125', '8.88', '0.466977226', '4.762105263', '11.45324324', '843.1', '162.3474373', '140.5', '4.98', '280.7', '0.51003241', '2.87', '14.64105191', '3.360130412', '3.286480854');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12H 109.1', '32.1', '11.875', '0.7', '11.27', '1.125', '8.4744', '10.75', '8.3125', '0.467875776', '5.008888889', '12.10628571', '787.2', '152.4987748', '132.5', '4.95', '262.8', '0.51064333', '2.86', '12.45329671', '3.339412041', '3.26508112');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12H 103.1', '30.33', '11.75', '0.67', '11.24', '1.0625', '8.4754', '10.6875', '7.8725', '0.475488214', '5.289411765', '12.64985075', '734', '143.1430623', '124.9', '4.92', '245.9', '0.511314487', '2.85', '10.56497257', '3.320439007', '3.24355384');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12H 96.8', '28.46', '11.625', '0.63', '11.2', '1', '8.4744', '10.625', '7.32375', '0.476685', '5.6', '13.45142857', '680.8', '133.5810014', '117.1', '4.89', '228.6', '0.512149315', '2.83', '8.819334537', '3.299536928', '3.220394951');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12H 90.5', '26.6', '11.5', '0.59', '11.16', '0.9375', '8.4754', '10.5625', '6.785', '0.477943704', '5.952', '14.36508475', '628.9', '124.1649373', '109.4', '4.86', '211.6', '0.513176725', '2.82', '7.278427797', '3.278523929', '3.196079208');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '11H 84.2', '24.75', '11.375', '0.55', '11.12', '0.875', '8.4744', '10.5', '6.25625', '0.479025694', '6.354285714', '15.408', '578.4', '114.8931889', '101.7', '4.83', '194.9', '0.514433604', '2.81', '5.931424726', '3.257513854', '3.171940958');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '11H 77.9', '22.91', '11.25', '0.51', '11.08', '0.8125', '8.4754', '10.4375', '5.7375', '0.480139295', '6.818461538', '16.61843137', '529.2', '105.7655623', '94.1', '4.81', '178.6', '0.515679599', '2.79', '4.763090877', '3.236394826', '3.147234925');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '11H 71.7', '21.08', '11.125', '0.47', '11.04', '0.741', '8.4744', '10.384', '5.22875', '0.48687731', '7.449392713', '18.0306383', '481.2', '95.86024732', '86.5', '4.78', '162.6', '0.511003225', '2.78', '3.65446125', '3.213042797', '3.124061385');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '11H 65.5', '19.26', '11', '0.43', '11', '0.6875', '8.4754', '10.3125', '4.73', '0.481907041', '8', '19.71023256', '434.6', '87.93743725', '79', '4.75', '147', '0.518742914', '2.76', '2.913206296', '3.194070491', '3.097505632');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '11H 61.3', '18.02', '11', '0.43', '11.03', '0.692', '8.4754', '10.308', '4.73', '0.477471059', '7.969653179', '19.71023256', '401.2', '88.6106008', '73', '4.72', '112.6', '0.687247225', '2.5', '2.966704722', '3.204168229', '2.819551116');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '11H 55.9', '16.44', '10.875', '0.4', '10', '0.63', '8.4744', '10.245', '4.35', '0.538057143', '7.936507937', '21.186', '360.5', '73.7809497', '66.3', '4.68', '101.2', '0.518774704', '2.47', '2.100557632', '2.8869355', '2.796240204');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '11H 52.1', '15.32', '10.875', '0.4', '9.04', '0.6345', '8.4744', '10.2405', '4.35', '0.590974707', '7.123719464', '21.186', '330.7', '67.96035306', '60.8', '4.65', '75.7', '0.516011989', '2.22', '1.964392238', '2.60290149', '2.524885761');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '11H 46.8', '13.76', '10.75', '0.36', '9', '0.572', '8.4754', '10.178', '3.87', '0.592685315', '7.867132867', '23.54277778', '293.5', '60.69579012', '54.6', '4.62', '67', '0.518641791', '2.21', '1.454628227', '2.583082884', '2.498948497');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '11H 43.3', '12.73', '10.75', '0.36', '8.04', '0.577', '8.4754', '10.173', '3.87', '0.657704545', '6.967071057', '23.54277778', '266.8', '55.47715364', '49.6', '4.58', '48.4', '0.516318102', '1.95', '1.354887092', '2.299967745', '2.227877805');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '11H 38.4', '11.3', '10.625', '0.32', '8', '0.5145', '8.4744', '10.1105', '3.4', '0.658845481', '7.774538387', '26.4825', '234.1', '48.97768072', '44.1', '4.55', '42.4', '0.517735849', '1.94', '0.974943252', '2.281080082', '2.20462614');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '13H 246', '72.3', '13', '1.22', '14.57', '2.1065', '7.693', '10.8935', '15.86', '0.305797935', '3.458343223', '6.305737705', '1916.1', '357.869877', '294.8', '5.15', '1071.6', '0.50667114', '3.85', '96.05304733', '4.537393412', '4.449603713');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '13H 238', '70.04', '12.875', '1.18', '14.53', '2.0465', '7.688', '10.8285', '15.1925', '0.305083007', '3.549963352', '6.515254237', '1835.8', '344.7241925', '285.1', '5.12', '1031.9', '0.506978723', '3.84', '87.90971396', '4.516156654', '4.426794383');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '13H 230', '67.77', '12.75', '1.15', '14.5', '1.9815', '7.693', '10.7685', '14.6625', '0.307915459', '3.65884431', '6.689565217', '1753.1', '331.5764395', '275', '5.09', '992.4', '0.507259374', '3.83', '79.95792176', '4.496148505', '4.407980242');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '13H 222', '65.38', '12.625', '1.11', '14.46', '1.9165', '7.698', '10.7085', '14.01375', '0.30833567', '3.772501957', '6.935135135', '1670.5', '318.1911368', '264.7', '5.05', '951.3', '0.507592223', '3.81', '72.27584604', '4.473398744', '4.386630969');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '13H 215', '63.27', '12.5', '1.08', '14.43', '1.8565', '7.693', '10.6435', '13.5', '0.3101403', '3.886345273', '7.123148148', '1597.2', '305.959252', '255.6', '5.02', '915.2', '0.507921608', '3.8', '65.78144056', '4.454535214', '4.365206723');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12H 208', '61.17', '12.375', '1.05', '14.4', '1.7965', '7.688', '10.5785', '12.99375', '0.312041933', '4.007792931', '7.321904762', '1525.5', '293.8868096', '246.4', '4.99', '879.6', '0.50821588', '3.79', '59.6898074', '4.435556323', '4.345295402');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12H 200', '58.8', '12.25', '1.01', '14.36', '1.7315', '7.693', '10.5185', '12.3725', '0.312492912', '4.146693618', '7.616831683', '1448.4', '281.011752', '236.5', '4.96', '840', '0.508657302', '3.78', '53.39907251', '4.412534216', '4.322012099');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12H 192', '56.45', '12.125', '0.97', '14.32', '1.6665', '7.698', '10.4585', '11.76125', '0.312896932', '4.296429643', '7.936082474', '1373.2', '268.3099649', '226.6', '4.93', '801.1', '0.509056977', '3.77', '47.57081084', '4.389434182', '4.299650109');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12H 185', '54.37', '12', '0.94', '14.29', '1.6065', '7.693', '10.3935', '11.28', '0.315000053', '4.4475568', '8.184042553', '1306.3', '256.727377', '217.7', '4.9', '766.8', '0.509464663', '3.76', '42.68684102', '4.37012388', '4.278364184');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12H 177', '52.18', '11.875', '0.9', '14.25', '1.5465', '7.688', '10.3285', '10.6875', '0.313972127', '4.607177498', '8.542222222', '1239.6', '244.9487237', '208.7', '4.87', '731.3', '0.509938378', '3.74', '38.01257229', '4.348267249', '4.253928552');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12H 170', '49.98', '11.75', '0.87', '14.22', '1.4815', '7.693', '10.2685', '10.2225', '0.317697453', '4.79919001', '8.842528736', '1170.9', '233.0995645', '199.3', '4.84', '695.5', '0.510413397', '3.73', '33.52132417', '4.327279597', '4.232855313');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12H 162', '47.78', '11.625', '0.84', '14.19', '1.4165', '7.698', '10.2085', '9.765', '0.321705302', '5.008824568', '9.164285714', '1103.9', '221.4053946', '190', '4.81', '660', '0.511020807', '3.72', '29.3998784', '4.306115452', '4.210766276');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12H 155.2', '45.64', '12', '1.02', '11.32', '1.6215', '7.693', '10.3785', '12.24', '0.427496462', '3.490595128', '7.542156863', '1053.6', '210.0468928', '175.6', '4.8', '387.2', '0.506220396', '2.91', '36.07696657', '3.446994118', '3.382655075');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12H 155', '45.62', '11.5', '0.8', '14.15', '1.3565', '7.693', '10.1435', '9.2', '0.320633932', '5.215628456', '9.61625', '1042', '210.121752', '181.2', '4.78', '626', '0.511603537', '3.7', '25.77965473', '4.283972754', '4.185882072');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12H 148.8', '43.75', '11.875', '0.98', '11.28', '1.5595', '7.692', '10.3155', '11.6375', '0.428519779', '3.616543764', '7.848979592', '997.6', '200.2360512', '168', '4.78', '368', '0.506854858', '2.9', '32.06355086', '3.426365552', '3.361239142');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '11H 148', '43.46', '11.375', '0.76', '14.11', '1.2965', '7.688', '10.0785', '8.645', '0.319394499', '5.441573467', '10.11578947', '981.5', '199.0059893', '172.5', '4.75', '592.6', '0.512165911', '3.69', '22.47308663', '4.261770697', '4.160727048');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12H 142.4', '41.87', '11.75', '0.94', '11.24', '1.4965', '7.693', '10.2535', '11.045', '0.429912976', '3.755429335', '8.184042553', '943', '190.4825178', '160.5', '4.75', '349.3', '0.506985832', '2.89', '28.3155758', '3.405430777', '3.340279779');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '11H 140', '41.29', '11.25', '0.73', '14.08', '1.2315', '7.693', '10.0185', '8.2125', '0.323878054', '5.716605765', '10.53835616', '919.2', '187.787377', '163.4', '4.72', '558.5', '0.51290621', '3.68', '19.33952022', '4.240169128', '4.137823064');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10CB 140', '41.17', '10', '1.777', '13.177', '1.016', '6.643', '8.984', '17.77', '0.881741794', '6.484744094', '3.738323016', '623.2', '148.4812816', '124.6', '3.89', '391.4', '0.49492715', '3.08', '27.36709635', '3.861082327', '3.756395082');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12H 136.5', '40.08', '11.75', '0.94', '10.55', '1.5', '7.693', '10.25', '11.045', '0.456961769', '3.516666667', '8.184042553', '893.3', '180.191057', '152.1', '4.72', '290', '0.506138524', '2.69', '26.87888992', '3.192987319', '3.125944959');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12H 136.5', '39.88', '11.75', '0.94', '10.55', '1.5', '7.693', '10.25', '11.045', '0.456961769', '3.516666667', '8.184042553', '889.7', '180.191057', '151.4', '4.72', '289.9', '0.506313114', '2.7', '26.87888992', '3.192987319', '3.132622803');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12WF 136', '40.03', '11.88', '0.915', '10.575', '1.498', '7.759', '10.382', '10.8702', '0.448161615', '3.529706275', '8.479781421', '917.2', '182.5190938', '154.4', '4.79', '295.9', '0.498915194', '2.72', '26.10478392', '3.199500549', '3.154091943');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12CB 136', '40.01', '11.88', '0.915', '10.575', '1.498', '7.659', '10.382', '10.8702', '0.442385592', '3.529706275', '8.370491803', '916.9', '182.5190938', '154.4', '4.79', '295.9', '0.498915194', '2.72', '26.29207733', '3.201948704', '3.154091943');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12H 136', '40', '11.625', '0.9', '11.2', '1.4345', '7.692', '10.1905', '10.4625', '0.43088682', '3.903799233', '8.546666667', '889.8', '180.9657387', '153.1', '4.72', '330.8', '0.50770083', '2.88', '24.9189471', '3.384684299', '3.31801163');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '11H 133', '39.02', '11.125', '0.69', '14.04', '1.1665', '7.698', '9.9585', '7.67625', '0.324321057', '6.018002572', '11.15652174', '857.4', '176.4113711', '154.2', '4.69', '523.7', '0.513715', '3.66', '16.43836251', '4.216253687', '4.112264741');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10CB 132', '38.81', '10', '1.541', '12.941', '1.016', '6.643', '8.984', '15.41', '0.778583769', '6.368602362', '4.310837119', '603.5', '142.5812816', '120.7', '3.94', '369.6', '0.496459712', '3.09', '21.40122731', '3.80853589', '3.708789801');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12H 130', '38.3', '11.625', '0.9', '10.51', '1.4375', '7.692', '10.1875', '10.4625', '0.458217019', '3.655652174', '8.546666667', '843', '171.1330509', '145', '4.69', '274.5', '0.506631754', '2.68', '23.64080936', '3.172639575', '3.105317325');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12H 130', '38.24', '11.75', '0.88', '10.54', '1.433', '7.759', '10.317', '10.34', '0.452065769', '3.677599442', '8.817045455', '864.4', '173.1897113', '147.1', '4.75', '280.2', '0.499020798', '2.71', '22.89497453', '3.180023829', '3.134652814');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12CB 130', '38.23', '11.75', '0.88', '10.54', '1.433', '7.659', '10.317', '10.34', '0.446239428', '3.677599442', '8.703409091', '864.2', '173.1897113', '147.1', '4.75', '280.2', '0.499020798', '2.71', '23.0647972', '3.182507227', '3.134652814');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12H 130', '38.09', '11.625', '0.9', '10.51', '1.4375', '7.692', '10.1875', '10.4625', '0.458217019', '3.655652174', '8.546666667', '839.4', '171.1330509', '144.4', '4.69', '274.5', '0.506631754', '2.68', '23.64080936', '3.172639575', '3.111762128');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12H 129.7', '38.14', '11.5', '0.86', '11.16', '1.3715', '7.693', '10.1285', '9.89', '0.432249179', '4.068538097', '8.945348837', '838', '171.5043928', '145.7', '4.69', '312.7', '0.508018197', '2.86', '21.76864075', '3.363625279', '3.296793408');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '11H 125', '36.89', '11', '0.65', '14', '1.1065', '7.693', '9.8935', '7.15', '0.322797108', '6.326253954', '11.83538462', '801.4', '165.787377', '145.7', '4.66', '491.7', '0.514581384', '3.65', '14.01318025', '4.193799459', '4.085830156');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12H 124', '36.52', '11.5', '0.86', '10.47', '1.375', '7.693', '10.125', '9.89', '0.459562733', '3.807272727', '8.945348837', '794', '162.2155883', '138.1', '4.66', '259.4', '0.506980815', '2.66', '20.67264849', '3.152186923', '3.083689661');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12WF 124', '36.46', '11.62', '0.845', '10.505', '1.368', '7.759', '10.252', '9.8189', '0.456226289', '3.839546784', '9.182248521', '813.1', '164.0028543', '139.9', '4.72', '264.8', '0.499085602', '2.69', '19.96178932', '3.160434785', '3.114866472');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10CB 124', '36.46', '10', '1.306', '12.706', '1.016', '6.643', '8.984', '13.06', '0.672055083', '6.252952756', '5.086523737', '583.9', '136.7062816', '116.8', '4', '349', '0.49763806', '3.09', '16.75204129', '3.756438956', '3.663626282');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12CB 124', '36.45', '11.62', '0.845', '10.505', '1.368', '7.659', '10.252', '9.8189', '0.450346326', '3.839546784', '9.063905325', '812.9', '164.0028543', '139.9', '4.72', '264.8', '0.499085602', '2.7', '20.11526444', '3.162955077', '3.114866472');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12H 124', '36.32', '11.5', '0.86', '10.47', '1.375', '7.693', '10.125', '9.89', '0.459562733', '3.807272727', '8.945348837', '790.4', '162.2155883', '137.5', '4.67', '259.3', '0.507176334', '2.67', '20.67264849', '3.152186923', '3.089814646');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12H 123.5', '36.32', '11.5', '0.86', '10.47', '1.375', '7.693', '10.125', '9.89', '0.459562733', '3.807272727', '8.945348837', '790.4', '162.2155883', '137.5', '4.67', '259.3', '0.507176334', '2.67', '20.67264849', '3.152186923', '3.089814646');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '11H 123.4', '36.29', '11.375', '0.82', '11.12', '1.3095', '7.692', '10.0655', '9.3275', '0.433154507', '4.24589538', '9.380487805', '787.4', '162.2779262', '138.4', '4.66', '295', '0.508647135', '2.85', '18.935292', '3.342758593', '3.275258947');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '11H 118', '34.76', '11.375', '0.82', '10.43', '1.3125', '7.692', '10.0625', '9.3275', '0.460754417', '3.973333333', '9.380487805', '746.3', '153.4371134', '131.2', '4.63', '244.5', '0.507565539', '2.65', '17.97082106', '3.131732719', '3.062037204');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12CB 118', '34.68', '11.5', '0.801', '10.461', '1.308', '7.659', '10.192', '9.2115', '0.448356675', '3.998853211', '9.561797753', '765.2', '155.2618363', '133.1', '4.7', '250', '0.499121291', '2.68', '17.51153642', '3.142147413', '3.093824585');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '12H 118', '34.69', '11.5', '0.8', '10.46', '1.308', '7.759', '10.192', '9.2', '0.453686974', '3.998470948', '9.69875', '765.3', '155.2287738', '133.1', '4.7', '249.9', '0.499177838', '2.68', '17.36425649', '3.139402031', '3.093205758');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '11H 118', '34.55', '11.375', '0.82', '10.43', '1.3125', '7.692', '10.0625', '9.3275', '0.460754417', '3.973333333', '9.380487805', '742.7', '153.4371134', '130.6', '4.64', '244.4', '0.507773217', '2.66', '17.97082106', '3.131732719', '3.068435235');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '11H 117.5', '34.55', '11.375', '0.82', '10.43', '1.3125', '7.692', '10.0625', '9.3275', '0.460754417', '3.973333333', '9.380487805', '742.7', '153.4371134', '130.6', '4.64', '244.4', '0.507773217', '2.66', '17.97082106', '3.131732719', '3.068435235');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '11H 117.1', '34.45', '11.25', '0.78', '11.08', '1.2465', '7.693', '10.0035', '8.775', '0.434468497', '4.444444444', '9.862820513', '738.2', '153.1050178', '131.2', '4.63', '277.6', '0.508991883', '2.84', '16.3287902', '3.321572614', '3.253147866');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10CB 116', '34.11', '10', '1.071', '12.471', '1.016', '6.643', '8.984', '10.71', '0.561511605', '6.13730315', '6.202614379', '564.3', '130.8312816', '112.9', '4.07', '329.4', '0.498531615', '3.11', '13.30536536', '3.704586724', '3.620217807');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '11H 113', '33.25', '11', '0.65', '12.26', '1.115', '7.693', '9.885', '7.15', '0.365800042', '5.497757848', '11.83538462', '710.8', '147.6122891', '129.2', '4.62', '334.3', '0.512187123', '3.17', '12.63018078', '3.666350663', '3.576105071');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '11H 112', '33', '11.25', '0.78', '10.39', '1.25', '7.693', '10', '8.775', '0.462024254', '4.156', '9.862820513', '699.9', '144.797307', '124.4', '4.6', '229.9', '0.50820208', '2.64', '15.51485099', '3.111172298', '3.039795009');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '11CB 112', '32.92', '11.38', '0.756', '10.416', '1.248', '7.659', '10.132', '8.60328', '0.445428815', '4.173076923', '10.13095238', '718.6', '146.6244814', '126.3', '4.67', '235.4', '0.499263474', '2.67', '15.1385104', '3.121133277', '3.072798957');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '11WF 112', '32.92', '11.38', '0.755', '10.415', '1.248', '7.759', '10.132', '8.5919', '0.450690957', '4.172676282', '10.27682119', '718.7', '146.5921053', '126.3', '4.67', '235.4', '0.499119691', '2.67', '15.00722511', '3.11839757', '3.072798957');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '11H 112', '32.8', '11.25', '0.78', '10.39', '1.25', '7.693', '10', '8.775', '0.462024254', '4.156', '9.862820513', '696.2', '144.797307', '123.8', '4.61', '229.9', '0.50820208', '2.65', '15.51485099', '3.111172298', '3.047152329');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '11H 111.5', '32.8', '11.25', '0.78', '10.39', '1.25', '7.693', '10', '8.775', '0.462024254', '4.156', '9.862820513', '696.2', '144.797307', '123.8', '4.61', '229.9', '0.50820208', '2.65', '15.51485099', '3.111172298', '3.047152329');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '11H 110.9', '32.62', '11.125', '0.74', '11.04', '1.1845', '7.692', '9.9405', '8.2325', '0.43527814', '4.660194175', '10.39459459', '690.3', '144.1651137', '124.1', '4.6', '260.5', '0.509862782', '2.83', '14.00578321', '3.300584509', '3.230033972');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10CB 108', '31.76', '10', '0.836', '12.236', '1.016', '6.643', '8.984', '8.36', '0.446722013', '6.021653543', '7.946172249', '544.8', '124.9562816', '109', '4.14', '310.7', '0.499217284', '3.13', '10.90204631', '3.652999544', '3.578304144');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '11H 107', '31.45', '10.875', '0.62', '12.23', '1.055', '7.688', '9.82', '6.7425', '0.369424886', '5.796208531', '12.4', '663.5', '138.5989142', '112', '4.59', '313.5', '0.512994891', '3.16', '10.7399741', '3.647126833', '3.707238335');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '11H 106.5', '31.26', '11.125', '0.74', '10.35', '1.1875', '7.692', '9.9375', '8.2325', '0.463123722', '4.357894737', '10.39459459', '654.7', '136.2946134', '117.7', '4.58', '215.7', '0.508654952', '2.63', '13.29890455', '3.090611041', '3.017591267');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '11H 106.5', '31.06', '11.125', '0.74', '10.35', '1.1875', '7.692', '9.9375', '8.2325', '0.463123722', '4.357894737', '10.39459459', '651', '136.2946134', '117', '4.58', '215.6', '0.508890877', '2.64', '13.29890455', '3.090611041', '3.025903129');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '11H 106', '31.17', '11.25', '0.72', '10.38', '1.183', '7.759', '10.067', '8.1', '0.454942123', '4.38715131', '10.77638889', '671.2', '137.8247113', '119.3', '4.64', '220.8', '0.499340153', '2.66', '12.81499918', '3.09860427', '3.052209566');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '11CB 106', '31.16', '11.25', '0.72', '10.38', '1.183', '7.659', '10.067', '8.1', '0.449078711', '4.38715131', '10.6375', '671', '137.8247113', '119.3', '4.64', '220.8', '0.499340153', '2.66', '12.92447082', '3.101156156', '3.052209566');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '11H 105.5', '31.06', '11.125', '0.74', '10.35', '1.1875', '7.692', '9.9375', '8.2325', '0.463123722', '4.357894737', '10.39459459', '651', '136.2946134', '117', '4.58', '215.6', '0.508890877', '2.64', '13.29890455', '3.090611041', '3.025903129');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '11H 104.7', '30.8', '11', '0.7', '11', '1.1205', '7.697', '9.8795', '7.7', '0.437134396', '4.908522981', '10.99571429', '643.6', '135.1870356', '117', '4.57', '243.7', '0.509979996', '2.81', '11.86065875', '3.278948054', '3.207652542');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '11H 100.5', '29.53', '11', '0.7', '10.31', '1.125', '7.693', '9.875', '7.7', '0.464282789', '4.582222222', '10.99', '610.6', '127.9287133', '111', '4.55', '201.7', '0.509379396', '2.61', '11.30480036', '3.069943115', '2.99533233');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '11H 100.5', '29.32', '11', '0.7', '10.31', '1.125', '7.693', '9.875', '7.7', '0.464282789', '4.582222222', '10.99', '607', '127.9287133', '110.4', '4.55', '201.7', '0.509379396', '2.62', '11.30480036', '3.069943115', '3.003460791');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '11H 100', '29.54', '10.75', '0.59', '12.2', '0.99', '7.693', '9.76', '6.3425', '0.375796489', '6.161616162', '13.03898305', '613.9', '129.2129141', '114.2', '4.56', '291.5', '0.513919245', '3.14', '8.931071425', '3.626260231', '3.529361457');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '11WF 100', '29.43', '11.12', '0.685', '10.345', '1.118', '7.759', '10.002', '7.6172', '0.459540746', '4.626565295', '11.3270073', '625', '129.1962158', '112.4', '4.61', '206.6', '0.499254198', '2.65', '10.84898541', '3.078677729', '3.031868984');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '11CB 100', '29.42', '11.12', '0.685', '10.345', '1.118', '7.659', '10.002', '7.6172', '0.453618066', '4.626565295', '11.1810219', '624.7', '129.1962158', '112.4', '4.61', '206.6', '0.499254198', '2.65', '10.94635429', '3.081269699', '3.031868984');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10CB 100', '29.4', '10', '0.6', '12', '1.016', '6.643', '8.984', '6', '0.326919291', '5.905511811', '11.07166667', '525.1', '119.0562816', '105', '4.23', '292.8', '0.499672131', '3.16', '9.338041828', '3.601482454', '3.539246086');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '11H 99.7', '29.32', '11', '0.7', '10.31', '1.125', '7.693', '9.875', '7.7', '0.464282789', '4.582222222', '10.99', '607', '127.9287133', '110.4', '4.55', '201.7', '0.509379396', '2.62', '11.30480036', '3.069943115', '3.003460791');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '11H 99.5', '29.32', '11', '0.7', '10.31', '1.125', '7.693', '9.875', '7.7', '0.464282789', '4.582222222', '10.99', '607', '127.9287133', '110.4', '4.55', '201.7', '0.509379396', '2.62', '11.30480036', '3.069943115', '3.003460791');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '11CB 95', '27.92', '11', '0.662', '10.322', '1.058', '7.659', '9.942', '7.282', '0.464280599', '4.878071834', '11.5694864', '584.2', '121.6355238', '106.2', '4.58', '194.2', '0.499282978', '2.64', '9.369649805', '3.064664471', '3.014978614');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '11H 95', '27.92', '11', '0.66', '10.32', '1.058', '7.759', '9.942', '7.26', '0.469012397', '4.877126654', '11.75606061', '584.2', '121.5750238', '106.2', '4.57', '194.1', '0.49924989', '2.64', '9.269158271', '3.061602087', '3.014202258');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '11H 95', '27.91', '10.875', '0.67', '10.28', '1.0625', '7.692', '9.8125', '7.28625', '0.471837034', '4.837647059', '11.48059701', '568.9', '119.993715', '104.6', '4.51', '188.6', '0.510017817', '2.6', '9.588955141', '3.051262643', '2.974266222');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '11H 95', '27.71', '10.875', '0.67', '10.28', '1.0625', '7.692', '9.8125', '7.28625', '0.471837034', '4.837647059', '11.48059701', '565.2', '119.993715', '103.9', '4.52', '188.6', '0.510017817', '2.61', '9.588955141', '3.051262643', '2.984268587');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '11H 94.2', '27.71', '10.875', '0.67', '10.28', '1.0625', '7.692', '9.8125', '7.28625', '0.471837034', '4.837647059', '11.48059701', '565.2', '119.993715', '103.9', '4.52', '188.6', '0.510017817', '2.61', '9.588955141', '3.051262643', '2.984268587');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '11H 94', '27.71', '10.875', '0.67', '10.28', '1.0625', '7.692', '9.8125', '7.28625', '0.471837034', '4.837647059', '11.48059701', '565.2', '119.993715', '103.9', '4.52', '188.6', '0.510017817', '2.61', '9.588955141', '3.051262643', '2.984268587');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '11H 94', '27.63', '10.625', '0.56', '12.17', '0.925', '7.698', '9.7', '5.95', '0.382942548', '6.578378378', '13.74642857', '565.7', '119.9623938', '106.5', '4.52', '269.7', '0.515170842', '3.12', '7.339089964', '3.605128409', '3.504584523');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10CB 92', '27.06', '10', '1.162', '10.647', '0.805', '7.265', '9.195', '11.62', '0.984960042', '6.613043478', '6.252151463', '423.2', '99.25773288', '84.6', '3.96', '163.1', '0.496412188', '2.46', '9.083905885', '3.052639993', '2.977163377');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '11H 89', '26.2', '10.75', '0.63', '10.24', '1', '7.693', '9.75', '6.7725', '0.473299805', '5.12', '12.21111111', '527.2', '111.8912133', '98.1', '4.49', '175.2', '0.510721948', '2.59', '7.998919401', '3.030405922', '2.950664674');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '11WF 89', '26.19', '10.88', '0.615', '10.275', '0.998', '7.759', '9.882', '6.6912', '0.465337975', '5.147795591', '12.61626016', '542.4', '113.4692638', '99.7', '4.55', '180.6', '0.499547789', '2.63', '7.74236894', '3.040475426', '2.99170468');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '11CB 89', '26.17', '10.88', '0.615', '10.275', '0.998', '7.659', '9.882', '6.6912', '0.459340579', '5.147795591', '12.45365854', '542.1', '113.4692638', '99.7', '4.55', '180.6', '0.499547789', '2.63', '7.819279771', '3.043126617', '2.99170468');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '11H 89', '25.99', '10.75', '0.63', '10.24', '1', '7.693', '9.75', '6.7725', '0.473299805', '5.12', '12.21111111', '523.5', '111.8912133', '97.4', '4.49', '175.1', '0.511013623', '2.6', '7.998919401', '3.030405922', '2.96040347');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '11H 88.5', '25.99', '10.75', '0.63', '10.24', '1', '7.693', '9.75', '6.7725', '0.473299805', '5.12', '12.21111111', '523.5', '111.8912133', '97.4', '4.49', '175.1', '0.511013623', '2.6', '7.998919401', '3.030405922', '2.96040347');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '11H 88.4', '25.99', '10.75', '0.63', '10.24', '1', '7.693', '9.75', '6.7725', '0.473299805', '5.12', '12.21111111', '523.5', '111.8912133', '97.4', '4.49', '175.1', '0.511013623', '2.6', '7.998919401', '3.030405922', '2.96040347');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '11H 88', '25.86', '10.5', '0.53', '12.14', '0.865', '7.693', '9.635', '5.565', '0.388272657', '7.01734104', '14.51509434', '522.1', '111.3560391', '99.4', '4.49', '249.8', '0.516295676', '3.11', '6.040291123', '3.585241075', '3.47947633');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10CB 84', '24.7', '10', '0.926', '10.411', '0.805', '7.265', '9.195', '9.26', '0.80270927', '6.466459627', '7.845572354', '403.6', '93.35773288', '80.7', '4.04', '152', '0.498021837', '2.48', '6.498558099', '3.010981556', '2.942699365');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '11H 83.5', '24.49', '10.625', '0.59', '10.2', '0.9375', '7.692', '9.6875', '6.26875', '0.474591373', '5.44', '13.03728814', '486.6', '103.9221525', '91.6', '4.46', '162', '0.511770833', '2.57', '6.598404295', '3.0095445', '2.926851111');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '11H 83.5', '24.29', '10.625', '0.59', '10.2', '0.9375', '7.692', '9.6875', '6.26875', '0.474591373', '5.44', '13.03728814', '483', '103.9221525', '90.9', '4.46', '162', '0.511770833', '2.58', '6.598404295', '3.0095445', '2.938099001');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '11H 83', '24.42', '10.75', '0.575', '10.235', '0.933', '7.759', '9.817', '6.18125', '0.467201368', '5.484994641', '13.49391304', '499.2', '105.0905706', '92.9', '4.52', '166.9', '0.499467923', '2.61', '6.331907199', '3.019246311', '2.969577808');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '11CB 83', '24.41', '10.75', '0.575', '10.235', '0.933', '7.659', '9.817', '6.18125', '0.461179956', '5.484994641', '13.32', '498.9', '105.0905706', '92.8', '4.52', '166.9', '0.499467923', '2.61', '6.398872525', '3.021922592', '2.971177365');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '11H 82.6', '24.29', '10.625', '0.59', '10.2', '0.9375', '7.692', '9.6875', '6.26875', '0.474591373', '5.44', '13.03728814', '483', '103.9221525', '90.9', '4.46', '162', '0.511770833', '2.58', '6.598404295', '3.0095445', '2.938099001');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '11H 82.5', '24.29', '10.625', '0.59', '10.2', '0.9375', '7.692', '9.6875', '6.26875', '0.474591373', '5.44', '13.03728814', '483', '103.9221525', '90.9', '4.46', '162', '0.511770833', '2.58', '6.598404295', '3.0095445', '2.938099001');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10H 82', '23.98', '10.375', '0.49', '12.1', '0.805', '7.688', '9.57', '5.08375', '0.386748114', '7.51552795', '15.68979592', '478.6', '102.6146564', '92.2', '4.47', '229.6', '0.517605475', '3.09', '4.871332256', '3.563548017', '3.451925804');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '11H 77.5', '22.8', '10.5', '0.55', '10.16', '0.875', '7.693', '9.625', '5.775', '0.475944882', '5.805714286', '13.98727273', '447.2', '96.08621327', '85.2', '4.43', '149.1', '0.512897152', '2.56', '5.37256873', '2.988567893', '2.902046692');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '11H 77.5', '22.59', '10.5', '0.55', '10.16', '0.875', '7.693', '9.625', '5.775', '0.475944882', '5.805714286', '13.98727273', '443.6', '96.08621327', '84.5', '4.43', '149.1', '0.512897152', '2.57', '5.37256873', '2.988567893', '2.914042212');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '11WF 77', '22.67', '10.62', '0.535', '10.195', '0.868', '7.759', '9.752', '5.6817', '0.469086116', '5.872695853', '14.50280374', '457.2', '96.85426326', '86.1', '4.49', '153.4', '0.49966026', '2.6', '5.105724728', '2.997938216', '2.947426287');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '11CB 77', '22.65', '10.62', '0.535', '10.195', '0.868', '7.659', '9.752', '5.6817', '0.463040412', '5.872695853', '14.31588785', '456.9', '96.85426326', '86.1', '4.49', '153.4', '0.49966026', '2.6', '5.163660024', '3.000639887', '2.947426287');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10CB 77', '22.65', '10', '0.721', '10.206', '0.805', '7.265', '9.195', '7.21', '0.637557617', '6.339130435', '10.07628294', '386.5', '88.23273288', '77.3', '4.13', '142.9', '0.499055789', '2.51', '5.002349476', '2.975380092', '2.915326742');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '11H 77', '22.59', '10.5', '0.55', '10.16', '0.875', '7.693', '9.625', '5.775', '0.475944882', '5.805714286', '13.98727273', '443.6', '96.08621327', '84.5', '4.43', '149.1', '0.512897152', '2.57', '5.37256873', '2.988567893', '2.914042212');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '11H 76.8', '22.59', '10.5', '0.55', '10.16', '0.875', '7.693', '9.625', '5.775', '0.475944882', '5.805714286', '13.98727273', '443.6', '96.08621327', '84.5', '4.43', '149.1', '0.512897152', '2.57', '5.37256873', '2.988567893', '2.914042212');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10H 75', '22', '10.25', '0.45', '12.06', '0.74', '7.693', '9.51', '4.6125', '0.387908431', '8.148648649', '17.09555556', '433.2', '93.51072657', '84.5', '4.44', '208.3', '0.519281831', '3.08', '3.798673126', '3.540222921', '3.423667192');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '11WF 72', '21.18', '10.5', '0.51', '10.17', '0.808', '7.759', '9.692', '5.355', '0.481552469', '6.293316832', '15.21372549', '420.7', '89.70564876', '80.1', '4.46', '141.8', '0.499478435', '2.59', '4.167186168', '2.980071019', '2.92896082');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '11CB 72', '21.17', '10.5', '0.51', '10.17', '0.808', '7.659', '9.692', '5.355', '0.475346097', '6.293316832', '15.01764706', '420.4', '89.70564876', '80.1', '4.46', '141.8', '0.499478435', '2.59', '4.218424676', '2.982857173', '2.92896082');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10H 72', '21.11', '10.375', '0.51', '10.12', '0.8125', '7.692', '9.5625', '5.29125', '0.477095774', '6.227692308', '15.08235294', '408.9', '88.38183996', '78.8', '4.4', '136.5', '0.514104032', '2.54', '4.311357094', '2.967589276', '2.877888364');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10H 72', '20.91', '10.375', '0.51', '10.12', '0.8125', '7.692', '9.5625', '5.29125', '0.477095774', '6.227692308', '15.08235294', '405.2', '88.38183996', '78.1', '4.4', '136.5', '0.514104032', '2.56', '4.311357094', '2.967589276', '2.890756661');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10H 71.1', '20.91', '10.375', '0.51', '10.12', '0.8125', '7.692', '9.5625', '5.29125', '0.477095774', '6.227692308', '15.08235294', '405.2', '88.38183996', '78.1', '4.4', '136.5', '0.514104032', '2.56', '4.311357094', '2.967589276', '2.890756661');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10H 71', '20.91', '10.375', '0.51', '10.12', '0.8125', '7.692', '9.5625', '5.29125', '0.477095774', '6.227692308', '15.08235294', '405.2', '88.38183996', '78.1', '4.4', '136.5', '0.514104032', '2.56', '4.311357094', '2.967589276', '2.890756661');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10CB 70', '20.59', '10', '0.515', '10', '0.805', '7.265', '9.195', '5.15', '0.464779503', '6.211180124', '14.10679612', '369.3', '83.08273288', '73.9', '4.24', '134.3', '0.499503599', '2.55', '4.062298156', '2.940213146', '2.890524509');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10H 68', '20.13', '10.125', '0.42', '12.03', '0.675', '7.698', '9.45', '4.2525', '0.398160155', '8.911111111', '18.32857143', '390', '84.80840945', '77.1', '4.4', '187.8', '0.521463387', '3.05', '2.92198961', '3.518026215', '3.392512928');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10H 66', '19.44', '10.38', '0.46', '10.12', '0.748', '7.759', '9.632', '4.7748', '0.471499757', '6.764705882', '16.8673913', '382.8', '81.98835576', '73.7', '4.44', '129.3', '0.499647092', '2.58', '3.278235191', '2.958219945', '2.906757205');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10H 66', '19.44', '10.25', '0.47', '10.08', '0.75', '7.693', '9.5', '4.8175', '0.478268519', '6.72', '16.36808511', '371.7', '80.80871327', '72.5', '4.37', '124.2', '0.515394783', '2.53', '3.401064721', '2.946497922', '2.852585035');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10CB 66', '19.43', '10.38', '0.46', '10.12', '0.748', '7.659', '9.632', '4.7748', '0.465422946', '6.764705882', '16.65', '382.5', '81.98835576', '73.7', '4.44', '129.3', '0.499647092', '2.58', '3.321683664', '2.960962904', '2.906757205');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10WF 66', '19.41', '10.38', '0.457', '10.117', '0.748', '7.759', '9.632', '4.74366', '0.468563661', '6.762700535', '16.97811816', '382.5', '81.90754746', '73.7', '4.44', '129.2', '0.499589254', '2.58', '3.269662137', '2.957789859', '2.905632952');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10H 66', '19.23', '10.25', '0.47', '10.08', '0.75', '7.693', '9.5', '4.8175', '0.478268519', '6.72', '16.36808511', '368', '80.80871327', '71.8', '4.37', '124.2', '0.515394783', '2.54', '3.401064721', '2.946497922', '2.866456666');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10H 65.5', '19.23', '10.25', '0.47', '10.08', '0.75', '7.693', '9.5', '4.8175', '0.478268519', '6.72', '16.36808511', '368', '80.80871327', '71.8', '4.37', '124.2', '0.515394783', '2.54', '3.401064721', '2.946497922', '2.866456666');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10H 65.4', '19.23', '10.25', '0.47', '10.08', '0.75', '7.693', '9.5', '4.8175', '0.478268519', '6.72', '16.36808511', '368', '80.80871327', '71.8', '4.37', '124.2', '0.515394783', '2.54', '3.401064721', '2.946497922', '2.866456666');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10CB 64', '18.81', '10', '0.791', '10.441', '0.558', '7.859', '9.442', '7.91', '1.067007513', '9.355734767', '9.935524652', '308.8', '70.6173374', '61.8', '4.05', '106.3', '0.497904413', '2.38', '2.960238515', '2.926781245', '2.849636041');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10CB 63', '18.53', '10', '0.787', '9.412', '0.61', '7.755', '9.39', '7.87', '1.063028189', '7.714754098', '9.853875476', '300.4', '69.0781375', '60.1', '4.03', '85.2', '0.497456087', '2.14', '3.172977123', '2.648413954', '2.579885073');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10H 62', '18.29', '10', '0.38', '11.99', '0.615', '7.693', '9.385', '3.8', '0.396446904', '9.74796748', '20.24473684', '350.1', '76.49728907', '70', '4.38', '168.7', '0.523644247', '3.04', '2.219594448', '3.496057353', '3.362874514');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10H 60.5', '17.77', '10.125', '0.43', '10.04', '0.6875', '7.692', '9.4375', '4.35375', '0.479182905', '7.301818182', '17.88837209', '335.5', '73.36527746', '66.3', '4.34', '112.2', '0.516772908', '2.51', '2.630932662', '2.925410994', '2.825876311');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10H 60.5', '17.57', '10.125', '0.43', '10.04', '0.6875', '7.692', '9.4375', '4.35375', '0.479182905', '7.301818182', '17.88837209', '331.9', '73.36527746', '65.6', '4.35', '112.2', '0.516772908', '2.53', '2.630932662', '2.925410994', '2.840913387');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10WF 60', '17.66', '10.25', '0.415', '10.075', '0.683', '7.759', '9.567', '4.25375', '0.467937758', '7.375549048', '18.69638554', '343.7', '74.02119563', '67.1', '4.41', '116.5', '0.499630218', '2.57', '2.493091423', '2.936064873', '2.881871365');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10CB 60', '17.65', '10.25', '0.415', '10.075', '0.683', '7.659', '9.567', '4.25375', '0.461906855', '7.375549048', '18.45542169', '343.5', '74.02119563', '67', '4.41', '116.5', '0.499630218', '2.57', '2.529604147', '2.938802789', '2.884021213');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10H 59.7', '17.57', '10.125', '0.43', '10.04', '0.6875', '7.692', '9.4375', '4.35375', '0.479182905', '7.301818182', '17.88837209', '331.9', '73.36527746', '65.6', '4.35', '112.2', '0.516772908', '2.53', '2.630932662', '2.925410994', '2.840913387');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10H 59.5', '17.57', '10.125', '0.43', '10.04', '0.6875', '7.692', '9.4375', '4.35375', '0.479182905', '7.301818182', '17.88837209', '331.9', '73.36527746', '65.6', '4.35', '112.2', '0.516772908', '2.53', '2.630932662', '2.925410994', '2.840913387');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10CB 59', '17.34', '10', '0.644', '10.294', '0.558', '7.859', '9.442', '6.44', '0.881119461', '9.224014337', '12.20341615', '296.5', '66.9423374', '59.3', '4.13', '101.7', '0.498751818', '2.42', '2.195017676', '2.913547201', '2.845444571');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10CB 56', '16.47', '10', '0.581', '9.206', '0.61', '7.755', '9.39', '5.81', '0.80233757', '7.545901639', '13.34767642', '283.2', '63.9281375', '56.6', '4.15', '79.5', '0.498878022', '2.2', '2.162367194', '2.625388367', '2.567988929');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10H 55', '16.12', '10', '0.39', '10', '0.625', '7.693', '9.375', '3.9', '0.4800432', '8', '19.72564103', '300.4', '66.05121327', '60.1', '4.32', '100.4', '0.5187583', '2.5', '1.98810986', '2.904219421', '2.798338585');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10H 55', '15.91', '10', '0.39', '10', '0.625', '7.693', '9.375', '3.9', '0.4800432', '8', '19.72564103', '296.8', '66.05121327', '59.4', '4.32', '100.4', '0.5187583', '2.51', '1.98810986', '2.904219421', '2.814778819');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10H 54.1', '15.91', '10', '0.39', '10', '0.625', '7.693', '9.375', '3.9', '0.4800432', '8', '19.72564103', '296.8', '66.05121327', '59.4', '4.32', '100.4', '0.5187583', '2.51', '1.98810986', '2.904219421', '2.814778819');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10H 54', '15.91', '10', '0.39', '10', '0.625', '7.693', '9.375', '3.9', '0.4800432', '8', '19.72564103', '296.8', '66.05121327', '59.4', '4.32', '100.4', '0.5187583', '2.51', '1.98810986', '2.904219421', '2.814778819');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10H 54', '15.9', '10.12', '0.37', '10.03', '0.618', '7.759', '9.502', '3.7444', '0.46314616', '8.114886731', '20.97027027', '305.9', '66.19913176', '60.4', '4.39', '104', '0.499662422', '2.56', '1.8462484', '2.914034938', '2.860162548');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10CB 54', '15.89', '10.12', '0.37', '10.03', '0.618', '7.659', '9.502', '3.7444', '0.457177013', '8.114886731', '20.7', '305.6', '66.19913176', '60.4', '4.39', '104', '0.499662422', '2.56', '1.876649223', '2.916760975', '2.860162548');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10WF 54', '15.88', '10.12', '0.368', '10.028', '0.618', '7.759', '9.502', '3.72416', '0.460734539', '8.113268608', '21.08423913', '305.7', '66.14792456', '60.4', '4.39', '103.9', '0.4998442', '2.56', '1.842569067', '2.913825242', '2.858787139');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10CB 54', '15.87', '10', '0.497', '10.147', '0.558', '7.859', '9.442', '4.97', '0.689845472', '9.092293907', '15.81287726', '284.3', '63.2673374', '56.9', '4.23', '97.3', '0.49929026', '2.48', '1.680950379', '2.901167184', '2.841301281');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10H 50.6', '14.88', '10', '0.4', '9.04', '0.63', '7.693', '9.37', '4', '0.540314651', '7.174603175', '19.2325', '272.5', '60.99745888', '54.5', '4.28', '75.1', '0.516445691', '2.25', '1.878350697', '2.617647613', '2.540835303');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10H 49.5', '14.57', '9.875', '0.36', '9.97', '0.5625', '7.692', '9.3125', '3.555', '0.493769308', '8.862222222', '21.36666667', '267.2', '59.10875402', '54.1', '4.28', '89.1', '0.521373618', '2.47', '1.478238846', '2.88388518', '2.76922577');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10H 49.5', '14.37', '9.875', '0.36', '9.97', '0.5625', '7.692', '9.3125', '3.555', '0.493769308', '8.862222222', '21.36666667', '263.5', '59.10875402', '53.4', '4.28', '89.1', '0.521373618', '2.49', '1.478238846', '2.88388518', '2.787317032');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10CB 49', '14.41', '10', '0.375', '9', '0.61', '7.755', '9.39', '3.75', '0.529713115', '7.37704918', '20.68', '266', '58.7781375', '53.2', '4.3', '74.2', '0.499427224', '2.27', '1.609735177', '2.603883979', '2.558962578');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10CB 49', '14.4', '10', '0.35', '10', '0.558', '7.859', '9.442', '3.5', '0.492948029', '8.960573477', '22.45428571', '272', '59.5923374', '54.4', '4.35', '93', '0.5', '2.54', '1.368661836', '2.889725216', '2.840920134');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10WF 49', '14.4', '10', '0.34', '10', '0.558', '7.759', '9.442', '3.4', '0.472770609', '8.960573477', '22.82058824', '272.9', '59.39502376', '54.6', '4.35', '93', '0.5', '2.54', '1.377226975', '2.894810624', '2.83571221');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10CB 49', '14.38', '10', '0.34', '10', '0.558', '7.659', '9.442', '3.4', '0.466677419', '8.960573477', '22.52647059', '272.7', '59.39502376', '54.5', '4.35', '93', '0.5', '2.54', '1.403164118', '2.897605698', '2.838312588');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10H 49', '14.37', '9.875', '0.36', '9.97', '0.5625', '7.692', '9.3125', '3.555', '0.493769308', '8.862222222', '21.36666667', '263.5', '59.10875402', '53.4', '4.28', '89.1', '0.521373618', '2.49', '1.478238846', '2.88388518', '2.787317032');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10H 47.5', '13.9', '10', '0.39', '8.11', '0.6345', '7.693', '9.3655', '3.9', '0.583052764', '6.390858944', '19.72564103', '251.3', '55.62158895', '50.3', '4.25', '54.8', '0.514674184', '1.99', '1.725512436', '2.343550631', '2.258690748');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10H 47.5', '13.7', '10', '0.39', '8.11', '0.6345', '7.693', '9.3655', '3.9', '0.583052764', '6.390858944', '19.72564103', '247.6', '55.62158895', '49.5', '4.25', '54.8', '0.514674184', '2', '1.725512436', '2.343550631', '2.276869639');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10H 45.4', '13.36', '9.875', '0.36', '9', '0.5675', '7.692', '9.3075', '3.555', '0.542167401', '7.929515419', '21.36666667', '241.4', '54.40749057', '48.9', '4.25', '66.4', '0.51921122', '2.23', '1.385214862', '2.597166706', '2.51380239');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10WF 45', '13.24', '10.12', '0.35', '8.022', '0.618', '7.759', '9.502', '3.542', '0.547775575', '6.490291262', '22.16857143', '248.6', '54.01305459', '49.1', '4.33', '53.2', '0.499739375', '2', '1.497926036', '2.320293084', '2.268859408');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10H 45', '13.24', '10.12', '0.35', '8.02', '0.618', '7.759', '9.502', '3.542', '0.547912177', '6.488673139', '22.16857143', '248.5', '54.00131012', '49.1', '4.33', '53.2', '0.499365692', '2', '1.497611331', '2.319698005', '2.268859408');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10CB 45', '13.22', '10.12', '0.35', '8.02', '0.618', '7.659', '9.502', '3.542', '0.540850544', '6.488673139', '21.88285714', '248.3', '54.00131012', '49.1', '4.33', '53.2', '0.499365692', '2.01', '1.52703556', '2.322243035', '2.268859408');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10H 42.5', '12.49', '9.875', '0.35', '8.07', '0.572', '7.692', '9.303', '3.45625', '0.583227182', '7.054195804', '21.97714286', '223', '49.60926267', '45.2', '4.23', '48.5', '0.516527738', '1.97', '1.273808976', '2.324175696', '2.234077139');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10H 42.5', '12.29', '9.875', '0.35', '8.07', '0.572', '7.692', '9.303', '3.45625', '0.583227182', '7.054195804', '21.97714286', '219.4', '49.60926267', '44.4', '4.23', '48.5', '0.516527738', '1.99', '1.273808976', '2.324175696', '2.254114107');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10CB 42', '12.35', '10', '0.644', '8.324', '0.381', '8.513', '9.619', '6.44', '1.728667446', '10.92388451', '13.2189441', '190.4', '44.24596352', '38.1', '3.93', '36.8', '0.497613467', '1.73', '1.203429644', '2.213046115', '2.155318149');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10H 42', '12.34', '9.875', '0.36', '8.04', '0.5725', '7.692', '9.3025', '3.555', '0.601603337', '7.021834061', '21.36666667', '219.2', '49.67384369', '44.4', '4.22', '48', '0.516560453', '1.97', '1.288058514', '2.313320086', '2.242404597');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10H 41', '12.07', '10', '0.33', '8', '0.558', '7.759', '9.442', '3.3', '0.573581989', '7.168458781', '23.51212121', '222.5', '48.66043812', '44.5', '4.29', '47.7', '0.499119497', '1.99', '1.131723358', '2.303474337', '2.249552765');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10WF 41', '12.06', '10', '0.328', '8', '0.558', '7.759', '9.442', '3.28', '0.570105735', '7.168458781', '23.6554878', '222.4', '48.62097539', '44.5', '4.29', '47.7', '0.499119497', '1.99', '1.129031596', '2.303897735', '2.249552765');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10CB 41', '12.06', '10', '0.33', '8', '0.558', '7.659', '9.442', '3.3', '0.566189516', '7.168458781', '23.20909091', '222.3', '48.66043812', '44.5', '4.29', '47.7', '0.499119497', '1.99', '1.157236409', '2.306144723', '2.249552765');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10WF 39', '11.48', '9.94', '0.318', '7.99', '0.528', '7.759', '9.412', '3.16092', '0.584860337', '7.566287879', '24.39937107', '209.7', '45.98116639', '42.2', '4.27', '44.9', '0.49985803', '1.98', '0.971697557', '2.295514423', '2.237653858');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10H 38', '11.09', '9.75', '0.31', '8.03', '0.5095', '7.693', '9.2405', '3.0225', '0.582904882', '7.880274779', '24.81612903', '195.6', '43.7095577', '40.1', '4.2', '42.4', '0.518493984', '1.96', '0.910160609', '2.30477708', '2.210260589');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10H 38', '10.89', '9.75', '0.31', '8.03', '0.5095', '7.693', '9.2405', '3.0225', '0.582904882', '7.880274779', '24.81612903', '192', '43.7095577', '39.4', '4.2', '42.4', '0.518493984', '1.97', '0.910160609', '2.30477708', '2.229808441');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10H 37.2', '10.95', '9.75', '0.32', '8', '0.5095', '7.693', '9.2405', '3.12', '0.603964671', '7.850834151', '24.040625', '192', '43.75891232', '39.4', '4.19', '41.9', '0.518822593', '1.96', '0.919641221', '2.293554091', '2.216621996');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10WF 37', '10.88', '9.88', '0.306', '7.978', '0.498', '7.759', '9.382', '3.02328', '0.597590663', '8.010040161', '25.35620915', '196.9', '43.31289619', '39.9', '4.25', '42.2', '0.499364588', '1.97', '0.827709827', '2.286778968', '2.227421945');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10H 37', '10.87', '9.88', '0.305', '7.975', '0.498', '7.759', '9.382', '3.0134', '0.595861817', '8.007028112', '25.43934426', '196.8', '43.27914812', '39.8', '4.26', '42.1', '0.499986267', '1.97', '0.826318424', '2.286129971', '2.227574452');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10CB 37', '10.85', '9.88', '0.305', '7.975', '0.498', '7.659', '9.382', '3.0134', '0.588182196', '8.007028112', '25.11147541', '196.6', '43.27914812', '39.8', '4.26', '42.1', '0.499986267', '1.97', '0.848090596', '2.288909965', '2.227574452');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10CB 36', '10.58', '10', '0.467', '8.147', '0.381', '8.513', '9.619', '4.67', '1.280786738', '10.69160105', '18.22912206', '175.6', '39.82096352', '35.1', '4.07', '34.4', '0.499089503', '1.8', '0.66291455', '2.219575232', '2.171079005');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10H 33.5', '9.8', '9.625', '0.28', '8', '0.447', '7.692', '9.178', '2.695', '0.602281879', '8.948545861', '27.47142857', '169.9', '38.15273923', '35.3', '4.16', '36.6', '0.521092896', '1.93', '0.634958147', '2.285761912', '2.181284026');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10H 33.5', '9.6', '9.625', '0.28', '8', '0.447', '7.692', '9.178', '2.695', '0.602281879', '8.948545861', '27.47142857', '166.2', '38.15273923', '34.5', '4.16', '36.6', '0.521092896', '1.95', '0.634958147', '2.285761912', '2.206429341');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10H 33', '9.73', '9.75', '0.295', '7.965', '0.433', '7.759', '9.317', '2.87625', '0.663672911', '9.197459584', '26.30169492', '171.1', '37.95364125', '35.1', '4.19', '36.5', '0.499540985', '1.94', '0.582818827', '2.266781615', '2.200979127');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10CB 33', '9.72', '9.75', '0.295', '7.965', '0.433', '7.659', '9.317', '2.87625', '0.655119323', '9.197459584', '25.96271186', '170.8', '37.95364125', '35', '4.19', '36.5', '0.499540985', '1.94', '0.601470791', '2.269870028', '2.20412114');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10WF 33', '9.71', '9.75', '0.292', '7.964', '0.433', '7.759', '9.317', '2.847', '0.657006181', '9.19630485', '26.57191781', '170.9', '37.89041289', '35', '4.2', '36.5', '0.499352858', '1.94', '0.579712138', '2.267308506', '2.20412114');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10CB 31', '9.11', '10', '0.32', '8', '0.381', '8.513', '9.619', '3.2', '0.893753281', '10.49868766', '26.603125', '163.4', '36.14596352', '32.7', '4.23', '32.5', '0.500184615', '1.89', '0.422900519', '2.228287982', '2.186340344');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '11H 135.6', '39.87', '11', '0.98', '10.31', '1.559', '6.9106', '9.441', '10.78', '0.42134423', '3.306606799', '7.051632653', '762.8', '166.9619123', '138.7', '4.38', '281.6', '0.505601338', '2.66', '29.03703879', '3.153806801', '3.095794296');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '11H 129.7', '38.15', '10.875', '0.94', '10.27', '1.4965', '6.9116', '9.3785', '10.2225', '0.422726316', '3.431339793', '7.352765957', '720', '158.7315499', '132.4', '4.34', '266.9', '0.506125516', '2.65', '25.65357559', '3.133096092', '3.074553028');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '11H 123.9', '36.44', '10.75', '0.9', '10.23', '1.434', '6.9106', '9.316', '9.675', '0.423968392', '3.566945607', '7.678444444', '678.3', '150.635506', '126', '4.32', '252.6', '0.50647902', '2.63', '22.55241174', '3.1123704', '3.055843738');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '11H 118.1', '34.73', '10.625', '0.86', '10.19', '1.3715', '6.9116', '9.2535', '9.1375', '0.425311427', '3.714910682', '8.036744186', '637.8', '142.6734249', '120.1', '4.29', '238.6', '0.506835094', '2.62', '19.71036822', '3.091528047', '3.031808267');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '11H 112.3', '33.04', '10.5', '0.82', '10.15', '1.309', '6.9106', '9.191', '8.61', '0.426504796', '3.877005348', '8.427560976', '598.4', '134.8437873', '114', '4.26', '224.8', '0.5074114', '2.61', '17.12461987', '3.070669737', '3.010316181');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10H 106.6', '31.35', '10.375', '0.78', '10.11', '1.2465', '6.9116', '9.1285', '8.0925', '0.427789145', '4.055354994', '8.861025641', '560.1', '127.1462374', '108', '4.23', '211.3', '0.508001514', '2.6', '14.77481246', '3.049692115', '2.988288909');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10H 100.9', '29.68', '10.25', '0.74', '10.07', '1.184', '6.9106', '9.066', '7.585', '0.428910129', '4.252533784', '9.338648649', '522.9', '119.579256', '102', '4.2', '198.1', '0.508597701', '2.58', '12.6558307', '3.028697996', '2.96711932');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10H 95.3', '28.02', '10.125', '0.7', '10.03', '1.1215', '6.9116', '9.0035', '7.0875', '0.430106915', '4.471689701', '9.873714286', '486.8', '112.1424874', '96.2', '4.17', '185.2', '0.50918998', '2.57', '10.74965596', '3.0075825', '2.943903987');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10H 90', '26.46', '10', '0.67', '10', '1.059', '6.9106', '8.941', '6.7', '0.437214542', '4.721435316', '10.31432836', '452.6', '105.0844123', '90.5', '4.14', '173.1', '0.509820913', '2.56', '9.108261506', '2.988570932', '2.924167823');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10H 85.3', '25.08', '10', '0.67', '9.32', '1.0625', '6.9106', '8.9375', '6.7', '0.467568998', '4.385882353', '10.31432836', '424.6', '98.88575495', '84.9', '4.11', '140.9', '0.508726589', '2.37', '8.620757992', '2.781819493', '2.723294952');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10H 80', '23.52', '9.875', '0.63', '9.28', '1', '6.9116', '8.875', '6.22125', '0.469214224', '4.64', '10.97079365', '392.6', '92.12212965', '79.5', '4.09', '130.7', '0.509550339', '2.36', '7.187312043', '2.761083296', '2.700992713');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10H 74.7', '21.97', '9.75', '0.59', '9.24', '0.9375', '6.9106', '8.8125', '5.7525', '0.470678672', '4.928', '11.71288136', '361.6', '85.48012995', '74.2', '4.06', '120.8', '0.510198303', '2.34', '5.925396203', '2.740335551', '2.678342308');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10H 69.5', '20.43', '9.625', '0.55', '9.2', '0.875', '6.9116', '8.75', '5.29375', '0.472221118', '5.257142857', '12.56654545', '331.6', '78.95931715', '68.9', '4.03', '111', '0.511525526', '2.33', '4.821171891', '2.719467328', '2.654855617');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10H 64.3', '18.9', '9.5', '0.51', '9.16', '0.8125', '6.9106', '8.6875', '4.845', '0.47355136', '5.636923077', '13.55019608', '302.4', '72.55825495', '63.7', '4', '101.6', '0.512194413', '2.32', '3.865792448', '2.698589247', '2.632143416');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9H 59.1', '17.38', '9.375', '0.47', '9.12', '0.75', '6.9116', '8.625', '4.40625', '0.474919883', '6.08', '14.70553191', '274.2', '66.27650465', '58.5', '3.97', '92.3', '0.513644724', '2.31', '3.046582582', '2.677591748', '2.608479762');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9H 54', '15.87', '9.25', '0.43', '9.08', '0.6875', '6.9106', '8.5625', '3.9775', '0.476020505', '6.603636364', '16.07116279', '246.8', '60.11262995', '53.4', '3.94', '83.3', '0.514877603', '2.29', '2.353967789', '2.656589356', '2.584265719');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9H 48.9', '14.37', '9.125', '0.39', '9.04', '0.625', '6.9116', '8.5', '3.55875', '0.477083894', '7.232', '17.72205128', '220.3', '54.06619215', '48.3', '3.91', '74.5', '0.516473199', '2.28', '1.776147089', '2.635473576', '2.560348223');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9CB 48', '14.11', '9.242', '0.398', '9.082', '0.591', '6.935', '8.651', '3.678316', '0.514233729', '7.68358714', '17.42462312', '221.1', '52.89779196', '47.8', '3.96', '73.8', '0.499912925', '2.29', '1.548907633', '2.638144867', '2.584237301');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9H 43.8', '12.88', '9', '0.35', '9', '0.5625', '6.9106', '8.4375', '3.15', '0.477769877', '8', '19.74457143', '194.7', '48.13575495', '43.3', '3.89', '65.9', '0.518541351', '2.26', '1.303082827', '2.614365421', '2.5339069');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9CB 43', '12.65', '9.122', '0.357', '9.041', '0.531', '6.935', '8.591', '3.256554', '0.515707789', '8.513182674', '19.42577031', '195.5', '47.04142496', '42.9', '3.93', '65.4', '0.500017189', '2.28', '1.13140376', '2.617069209', '2.558981167');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9H 40.6', '11.95', '9', '0.36', '8.04', '0.5675', '6.9106', '8.4325', '3.24', '0.545250838', '7.083700441', '19.19611111', '177', '44.03841344', '39.3', '3.85', '47.6', '0.51635194', '2', '1.222752737', '2.327791528', '2.259801946');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9CB 38', '11.17', '9', '0.316', '9', '0.47', '6.935', '8.53', '2.844', '0.51807565', '9.574468085', '21.94620253', '170.4', '41.2140244', '37.9', '3.91', '57.1', '0.500043783', '2.26', '0.793783555', '2.595649041', '2.53488328');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9H 36', '10.59', '8.875', '0.32', '8', '0.5045', '6.9116', '8.3705', '2.84', '0.547996036', '7.92864222', '21.59875', '154.6', '38.72945992', '34.8', '3.82', '41.5', '0.518682731', '1.98', '0.86817568', '2.30722706', '2.234061524');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9CB 35', '10.29', '9.192', '0.335', '6.556', '0.566', '6.935', '8.626', '3.07932', '0.626088745', '5.791519435', '20.70149254', '155.4', '37.4491652', '33.8', '3.89', '26.6', '0.499655167', '1.61', '0.994539991', '1.890930503', '1.842350248');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9H 32.9', '9.69', '8.875', '0.32', '7.04', '0.5095', '6.9116', '8.3655', '2.84', '0.616611651', '6.908734053', '21.59875', '138.6', '34.94086968', '31.2', '3.78', '28.7', '0.516177444', '1.72', '0.799669047', '2.023474494', '1.961528422');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9CB 32', '9.4', '9.096', '0.307', '6.528', '0.518', '6.935', '8.578', '2.792472', '0.62961481', '6.301158301', '22.58957655', '140.5', '33.99249761', '30.9', '3.87', '24', '0.500354384', '1.6', '0.770542119', '1.877226589', '1.825174549');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9CB 29', '8.53', '9', '0.279', '6.5', '0.47', '6.935', '8.53', '2.511', '0.633343699', '6.914893617', '24.85663082', '126', '30.5903611', '28', '3.84', '21.5', '0.500285853', '1.59', '0.583714333', '1.863475973', '1.809671438');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9H 28.8', '8.46', '8.75', '0.28', '7', '0.4475', '6.9106', '8.3025', '2.45', '0.617707263', '7.82122905', '24.68071429', '119.3', '30.32413916', '27.3', '3.76', '24.7', '0.517855938', '1.71', '0.549375704', '2.004224043', '1.938012605');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10H 117.1', '34.45', '10', '0.94', '9.31', '1.4965', '6.1302', '8.5035', '9.4', '0.413595776', '3.11059138', '6.521489362', '535.9', '130.0075274', '107.2', '3.94', '199.3', '0.504937028', '2.41', '23.0289427', '2.863631528', '2.811513135');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10H 111.8', '32.89', '9.875', '0.9', '9.27', '1.434', '6.1292', '8.441', '8.8875', '0.414970684', '3.232217573', '6.810222222', '503.9', '123.2498718', '102.1', '3.91', '188.3', '0.505541471', '2.39', '20.23907265', '2.843041645', '2.789936003');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10H 106.6', '31.35', '9.75', '0.86', '9.23', '1.3715', '6.1302', '8.3785', '8.385', '0.416462193', '3.36492891', '7.128139535', '472.9', '116.6142461', '97', '3.88', '177.7', '0.505745749', '2.38', '17.68247577', '2.822331284', '2.770294794');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10H 101.3', '29.81', '9.625', '0.82', '9.19', '1.309', '6.1292', '8.316', '7.8925', '0.417794278', '3.510313216', '7.474634146', '442.9', '110.0992468', '92', '3.85', '167.2', '0.506370809', '2.37', '15.35767066', '2.801597582', '2.748947625');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10H 96.1', '28.28', '9.5', '0.78', '9.15', '1.2465', '6.1302', '8.2535', '7.41', '0.419233394', '3.670276775', '7.859230769', '413.8', '103.7044024', '87.1', '3.83', '157', '0.506844417', '2.36', '13.24520936', '2.78073984', '2.727374833');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10H 91', '26.77', '9.5', '0.78', '8.47', '1.25', '6.1302', '8.25', '7.41', '0.451622763', '3.388', '7.859230769', '386.8', '96.89817355', '81.4', '3.8', '125.1', '0.505966413', '2.16', '12.42491801', '2.570902818', '2.51784174');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9H 91', '26.76', '9.375', '0.74', '9.11', '1.184', '6.1292', '8.191', '6.9375', '0.420499451', '3.847128378', '8.282702703', '385.6', '97.42830935', '82.3', '3.8', '147', '0.507467522', '2.34', '11.3412742', '2.759857412', '2.704657115');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10H 91', '26.64', '9.5', '0.78', '8.47', '1.25', '6.1302', '8.25', '7.41', '0.451622763', '3.388', '7.859230769', '385.3', '96.89817355', '81.1', '3.8', '125.1', '0.505966413', '2.17', '12.42491801', '2.570902818', '2.522494362');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10H 90.5', '26.64', '9.5', '0.78', '8.47', '1.25', '6.1302', '8.25', '7.41', '0.451622763', '3.388', '7.859230769', '385.3', '96.89817355', '81.1', '3.8', '125.1', '0.505966413', '2.17', '12.42491801', '2.570902818', '2.522494362');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '10CB 90', '26.47', '9.606', '0.81', '8.52', '1.203', '6.175', '8.403', '7.78086', '0.487996558', '3.541147132', '7.62345679', '391.2', '96.62465268', '81.4', '3.84', '124.4', '0.498405453', '2.17', '11.46801066', '2.573767401', '2.533962431');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9H 86', '25.33', '9.375', '0.74', '8.43', '1.1875', '6.1292', '8.1875', '6.9375', '0.453079403', '3.549473684', '8.282702703', '360.5', '91.02319269', '76.9', '3.77', '117.1', '0.506265346', '2.15', '10.64184902', '2.550625843', '2.496755046');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9H 86', '25.2', '9.375', '0.74', '8.43', '1.1875', '6.1292', '8.1875', '6.9375', '0.453079403', '3.549473684', '8.282702703', '359', '91.02319269', '76.6', '3.77', '117.1', '0.506265346', '2.16', '10.64184902', '2.550625843', '2.501639475');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9H 85.9', '25.25', '9.25', '0.7', '9.07', '1.1215', '6.1302', '8.1285', '6.475', '0.421857834', '4.043691485', '8.757428571', '358.2', '91.27049614', '77.5', '3.77', '137.3', '0.507889642', '2.33', '9.628796123', '2.7388478', '2.683333327');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9H 85.5', '25.2', '9.375', '0.74', '8.43', '1.1875', '6.1292', '8.1875', '6.9375', '0.453079403', '3.549473684', '8.282702703', '359', '91.02319269', '76.6', '3.77', '117.2', '0.505833379', '2.16', '10.64184902', '2.550625843', '2.502707411');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9CB 84', '24.71', '9.456', '0.759', '8.469', '1.128', '6.175', '8.328', '7.177104', '0.490611253', '3.753989362', '8.135704875', '358.6', '89.3942905', '75.8', '3.81', '114.5', '0.498676343', '2.15', '9.439192198', '2.548449741', '2.50797672');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9H 81.5', '23.91', '9.25', '0.7', '8.39', '1.124', '6.1342', '8.126', '6.475', '0.455331504', '3.732206406', '8.763142857', '335', '85.20749686', '72.4', '3.74', '109.2', '0.506580315', '2.14', '9.015356302', '2.529942098', '2.475514345');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9H 81.5', '23.78', '9.25', '0.7', '8.39', '1.125', '6.1302', '8.125', '6.475', '0.454630115', '3.728888889', '8.757428571', '333.5', '85.2611423', '72.1', '3.75', '109.2', '0.507031009', '2.14', '9.037768684', '2.53023396', '2.480506525');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9H 81.1', '23.84', '9.125', '0.67', '9.04', '1.059', '6.1292', '8.066', '6.11375', '0.42895744', '4.268177526', '9.148059701', '332.4', '85.43772341', '72.9', '3.73', '128.2', '0.508548035', '2.32', '8.155929062', '2.720076297', '2.663142218');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9H 81', '23.78', '9.25', '0.7', '8.39', '1.124', '6.1342', '8.126', '6.475', '0.455331504', '3.732206406', '8.763142857', '333.5', '85.20749686', '72.1', '3.75', '109.2', '0.506580315', '2.14', '9.015356302', '2.529942098', '2.480659167');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9CB 78', '22.93', '9.302', '0.708', '8.418', '1.051', '6.175', '8.251', '6.585816', '0.494149753', '4.004757374', '8.721751412', '326.5', '82.17490082', '70.2', '3.77', '104.7', '0.499001157', '2.14', '7.63277685', '2.522671397', '2.480521985');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9H 77', '22.59', '9.125', '0.67', '8.36', '1.0625', '6.1292', '8.0625', '6.11375', '0.462320743', '3.934117647', '9.148059701', '311', '79.81885675', '68.2', '3.71', '102', '0.507184944', '2.12', '7.661434001', '2.512098169', '2.45543117');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9H 77', '22.46', '9.125', '0.67', '8.36', '1.0625', '6.1292', '8.0625', '6.11375', '0.462320743', '3.934117647', '9.148059701', '309.5', '79.81885675', '67.8', '3.71', '101.9', '0.507682673', '2.13', '7.661434001', '2.512098169', '2.461456194');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9H 76.5', '22.46', '9.125', '0.67', '8.36', '1.0625', '6.1292', '8.0625', '6.11375', '0.462320743', '3.934117647', '9.148059701', '309.5', '79.81885675', '67.8', '3.71', '101.9', '0.507682673', '2.13', '7.661434001', '2.512098169', '2.461456194');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9H 76', '22.35', '9', '0.63', '9', '0.9965', '6.1302', '8.0035', '5.67', '0.430621174', '4.515805319', '9.73047619', '306.8', '79.50752739', '68.2', '3.7', '118.9', '0.50914529', '2.31', '6.79293648', '2.698841811', '2.641336403');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9H 72', '21.18', '9', '0.63', '8.32', '1', '6.1302', '8', '5.67', '0.464185817', '4.16', '9.73047619', '287.1', '74.27379855', '63.8', '3.68', '94.5', '0.507875104', '2.11', '6.383883792', '2.491507495', '2.434083994');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9CB 72', '21.17', '9.15', '0.656', '8.366', '0.975', '6.175', '8.175', '6.0024', '0.496613276', '4.29025641', '9.413109756', '295.9', '75.18400875', '64.7', '3.74', '95.3', '0.499210889', '2.12', '6.086453644', '2.496744197', '2.453709774');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9H 72', '21.05', '9', '0.63', '8.32', '1', '6.1302', '8', '5.67', '0.464185817', '4.16', '9.73047619', '285.6', '74.27379855', '63.5', '3.68', '94.4', '0.508413107', '2.12', '6.383883792', '2.491507495', '2.438535768');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9H 71.6', '21.05', '9', '0.63', '8.32', '1', '6.1302', '8', '5.67', '0.464185817', '4.16', '9.73047619', '285.6', '74.27379855', '63.5', '3.68', '94.4', '0.508413107', '2.12', '6.383883792', '2.491507495', '2.438535768');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9H 71.5', '21.05', '9', '0.63', '8.32', '1', '6.1302', '8', '5.67', '0.464185817', '4.16', '9.73047619', '285.6', '74.27379855', '63.5', '3.68', '94.4', '0.508413107', '2.12', '6.383883792', '2.491507495', '2.438535768');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9H 67.5', '19.79', '8.875', '0.59', '8.28', '0.9375', '6.1292', '7.9375', '5.23625', '0.46585868', '4.416', '10.38847458', '264', '68.83854425', '59.5', '3.65', '87.2', '0.508586181', '2.1', '5.259903282', '2.470897627', '2.411718589');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9H 67.5', '19.66', '8.875', '0.59', '8.28', '0.9375', '6.1292', '7.9375', '5.23625', '0.46585868', '4.416', '10.38847458', '262.5', '68.83854425', '59.2', '3.65', '87.1', '0.509170092', '2.11', '5.259903282', '2.470897627', '2.416434877');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9CB 67', '19.7', '9.062', '0.575', '8.285', '0.931', '6.175', '8.131', '5.21065', '0.460322934', '4.449516649', '10.73913043', '275.6', '70.16912689', '60.8', '3.74', '88.4', '0.499107054', '2.12', '5.080590429', '2.470813885', '2.431259556');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9WF 67', '19.7', '9', '0.575', '8.287', '0.933', '6.209', '8.067', '5.175', '0.461753847', '4.441050375', '10.79826087', '271.8', '69.68820283', '60.4', '3.71', '88.6', '0.499411677', '2.12', '5.049819553', '2.471104081', '2.432424798');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9H 67', '19.7', '9', '0.575', '8.285', '0.933', '6.209', '8.067', '5.175', '0.461865314', '4.439978564', '10.79826087', '271.7', '69.67314981', '60.4', '3.71', '88.6', '0.499050177', '2.12', '5.048736664', '2.470494698', '2.432424798');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9H 67', '19.66', '8.875', '0.59', '8.28', '0.9375', '6.1292', '7.9375', '5.23625', '0.46585868', '4.416', '10.38847458', '262.5', '68.83854425', '59.2', '3.65', '87.1', '0.509170092', '2.11', '5.259903282', '2.470897627', '2.416434877');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9H 66.8', '19.66', '8.875', '0.59', '8.28', '0.9375', '6.1292', '7.9375', '5.23625', '0.46585868', '4.416', '10.38847458', '262.5', '68.83854425', '59.2', '3.65', '87.1', '0.509170092', '2.11', '5.259903282', '2.470897627', '2.416434877');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9CB 66', '19.4', '8.994', '0.604', '8.314', '0.897', '6.175', '8.097', '5.432376', '0.500116793', '4.634336678', '10.22350993', '265.9', '68.21249683', '59.1', '3.7', '86.1', '0.498928263', '2.11', '4.741300479', '2.470324933', '2.428593941');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9H 62.5', '18.4', '8.75', '0.55', '8.24', '0.875', '6.1302', '7.875', '4.8125', '0.467629681', '4.708571429', '11.14581818', '241.7', '63.51254855', '55.2', '3.62', '80', '0.509939267', '2.09', '4.276654228', '2.450161572', '2.388832715');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9H 62.5', '18.27', '8.75', '0.55', '8.24', '0.875', '6.1302', '7.875', '4.8125', '0.467629681', '4.708571429', '11.14581818', '240.2', '63.51254855', '54.9', '3.63', '80', '0.509939267', '2.09', '4.276654228', '2.450161572', '2.395350688');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9H 62.1', '18.27', '8.75', '0.55', '8.24', '0.875', '6.1302', '7.875', '4.8125', '0.467629681', '4.708571429', '11.14581818', '240.2', '63.51254855', '54.9', '3.63', '80', '0.509939267', '2.09', '4.276654228', '2.450161572', '2.395350688');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9H 62', '18.27', '8.75', '0.55', '8.24', '0.875', '6.1302', '7.875', '4.8125', '0.467629681', '4.708571429', '11.14581818', '240.2', '63.51254855', '54.9', '3.63', '80', '0.509939267', '2.09', '4.276654228', '2.450161572', '2.395350688');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9CB 62', '18.22', '8.942', '0.52', '8.23', '0.871', '6.175', '8.071', '4.64984', '0.447942547', '4.72445465', '11.875', '252.2', '64.59479143', '56.4', '3.72', '81', '0.499518291', '2.11', '4.103185411', '2.447793877', '2.40741872');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9H 62', '18.22', '8.88', '0.52', '8.23', '0.873', '6.209', '8.007', '4.6176', '0.449377087', '4.713631157', '11.94038462', '248.6', '64.14482781', '56', '3.69', '81.2', '0.499432125', '2.11', '4.077592773', '2.447457049', '2.409372325');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9CB 60', '17.63', '8.838', '0.551', '8.261', '0.819', '6.175', '8.019', '4.869738', '0.502888885', '5.043345543', '11.20689655', '237.1', '61.39558142', '53.7', '3.67', '77.1', '0.499052395', '2.09', '3.609687746', '2.443578764', '2.399303321');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9WF 58', '17.06', '8.75', '0.51', '8.222', '0.808', '6.209', '7.942', '4.4625', '0.476653737', '5.087871287', '12.1745098', '227.3', '59.25067158', '52', '3.65', '74.9', '0.499667054', '2.1', '3.316897037', '2.43293382', '2.391603501');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9CB 58', '17.04', '8.81', '0.51', '8.22', '0.805', '6.175', '8.005', '4.4931', '0.47592601', '5.105590062', '12.10784314', '230.3', '59.5794855', '52.3', '3.68', '74.6', '0.499449128', '2.09', '3.329331087', '2.432616911', '2.389374583');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9H 58', '17.03', '8.625', '0.51', '8.2', '0.8125', '6.1292', '7.8125', '4.39875', '0.469177036', '5.046153846', '12.01803922', '220.1', '58.29448175', '51', '3.6', '73.1', '0.510700524', '2.07', '3.426500539', '2.429406871', '2.366211811');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9H 58', '16.9', '8.625', '0.51', '8.2', '0.8125', '6.1292', '7.8125', '4.39875', '0.469177036', '5.046153846', '12.01803922', '218.6', '58.29448175', '50.7', '3.6', '73.1', '0.510700524', '2.08', '3.426500539', '2.429406871', '2.373202112');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9H 57.5', '16.9', '8.625', '0.51', '8.2', '0.8125', '6.1292', '7.8125', '4.39875', '0.469177036', '5.046153846', '12.01803922', '218.6', '58.29448175', '50.7', '3.6', '73.1', '0.510700524', '2.08', '3.426500539', '2.429406871', '2.373202112');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9H 57.4', '16.9', '8.625', '0.51', '8.2', '0.8125', '6.1292', '7.8125', '4.39875', '0.469177036', '5.046153846', '12.01803922', '218.6', '58.29448175', '50.7', '3.6', '73.1', '0.510700524', '2.08', '3.426500539', '2.429406871', '2.373202112');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9CB 54', '15.87', '8.68', '0.498', '8.208', '0.74', '6.175', '7.94', '4.32264', '0.506287538', '5.545945946', '12.39959839', '209.2', '54.6810048', '48.2', '3.63', '68.3', '0.499277291', '2.07', '2.667604506', '2.416503814', '2.371821962');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9H 53', '15.66', '8.5', '0.47', '8.16', '0.75', '6.1302', '7.75', '3.995', '0.470783333', '5.44', '13.04297872', '199.3', '53.18379855', '46.9', '3.57', '66.4', '0.511425542', '2.06', '2.697795823', '2.408525468', '2.342251209');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9H 53', '15.6', '8.62', '0.465', '8.175', '0.743', '6.209', '7.877', '4.0083', '0.475333078', '5.501345895', '13.35268817', '204.7', '53.76151731', '47.5', '3.62', '67.7', '0.499668743', '2.08', '2.571289085', '2.41010764', '2.369261266');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9CB 53', '15.57', '8.678', '0.465', '8.175', '0.739', '6.275', '7.939', '4.03527', '0.482985934', '5.531123139', '13.49462366', '207.1', '53.98847918', '47.7', '3.65', '67.4', '0.499190808', '2.08', '2.538386202', '2.407517795', '2.368310617');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9H 53', '15.53', '8.5', '0.47', '8.16', '0.75', '6.1302', '7.75', '3.995', '0.470783333', '5.44', '13.04297872', '197.8', '53.18379855', '46.5', '3.57', '66.3', '0.512196923', '2.07', '2.697795823', '2.408525468', '2.350531855');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9H 52.8', '15.53', '8.5', '0.47', '8.16', '0.75', '6.1302', '7.75', '3.995', '0.470783333', '5.44', '13.04297872', '197.8', '53.18379855', '46.5', '3.57', '66.3', '0.512196923', '2.07', '2.697795823', '2.408525468', '2.350531855');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8H 48.5', '14.31', '8.375', '0.43', '8.12', '0.6875', '6.1292', '7.6875', '3.60125', '0.472110345', '5.905454545', '14.25395349', '179.2', '48.17916925', '42.8', '3.54', '59.8', '0.512930307', '2.04', '2.08215012', '2.38762875', '2.317428129');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8H 48.5', '14.18', '8.375', '0.43', '8.12', '0.6875', '6.1292', '7.6875', '3.60125', '0.472110345', '5.905454545', '14.25395349', '177.7', '48.17916925', '42.4', '3.54', '59.8', '0.512930307', '2.05', '2.08215012', '2.38762875', '2.328333733');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8H 48.2', '14.18', '8.375', '0.43', '8.12', '0.6875', '6.1292', '7.6875', '3.60125', '0.472110345', '5.905454545', '14.25395349', '177.7', '48.17916925', '42.4', '3.54', '59.8', '0.512930307', '2.05', '2.08215012', '2.38762875', '2.328333733');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8H 48', '14.18', '8.375', '0.43', '8.12', '0.6875', '6.1292', '7.6875', '3.60125', '0.472110345', '5.905454545', '14.25395349', '177.7', '48.17916925', '42.4', '3.54', '59.8', '0.512930307', '2.05', '2.08215012', '2.38762875', '2.328333733');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9WF 48', '14.11', '8.5', '0.405', '8.117', '0.683', '6.209', '7.817', '3.4425', '0.453586827', '5.942166911', '15.3308642', '183.7', '48.48976533', '43.2', '3.61', '60.9', '0.499814444', '2.08', '1.957503868', '2.387134598', '2.34731747');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9H 48', '14.11', '8.5', '0.405', '8.115', '0.683', '6.209', '7.817', '3.4425', '0.453698617', '5.940702782', '15.3308642', '183.7', '48.47908731', '43.2', '3.61', '60.9', '0.499445078', '2.08', '1.957079052', '2.386533028', '2.34731747');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9CB 48', '14.1', '8.562', '0.405', '8.115', '0.681', '6.175', '7.881', '3.46761', '0.45253935', '5.95814978', '15.24691358', '186.3', '48.80168852', '43.5', '3.63', '60.7', '0.499623373', '2.07', '1.971901594', '2.387074392', '2.344905704');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '9CB 48', '14.1', '8.52', '0.445', '8.155', '0.66', '6.175', '7.86', '3.7914', '0.510539175', '6.178030303', '13.87640449', '182.2', '48.072078', '42.8', '3.59', '59.7', '0.499643514', '2.06', '1.900541313', '2.389060451', '2.341324212');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8H 44', '12.96', '8.25', '0.39', '8.08', '0.625', '6.1302', '7.625', '3.2175', '0.473421386', '6.464', '15.71846154', '159.7', '43.28004855', '38.7', '3.51', '53.4', '0.514507366', '2.03', '1.568813925', '2.366609078', '2.293612634');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8H 44', '12.93', '8.38', '0.38', '8.09', '0.623', '6.209', '7.757', '3.1844', '0.468132387', '6.492776886', '16.33947368', '165.1', '43.93074881', '39.4', '3.57', '55', '0.499792432', '2.06', '1.505828116', '2.368866945', '2.326832557');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8CB 44', '12.92', '8.442', '0.38', '8.09', '0.621', '6.175', '7.821', '3.20796', '0.467068347', '6.513687601', '16.25', '167.5', '44.21664369', '39.7', '3.6', '54.8', '0.500006167', '2.06', '1.518749', '2.369516482', '2.323331448');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8H 44', '12.83', '8.25', '0.39', '8.08', '0.625', '6.1302', '7.625', '3.2175', '0.473421386', '6.464', '15.71846154', '158.3', '43.28004855', '38.4', '3.51', '53.4', '0.514507366', '2.04', '1.568813925', '2.366609078', '2.302554627');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8H 43.6', '12.83', '8.25', '0.39', '8.08', '0.625', '6.1302', '7.625', '3.2175', '0.473421386', '6.464', '15.71846154', '158.3', '43.28004855', '38.4', '3.51', '53.4', '0.514507366', '2.04', '1.568813925', '2.366609078', '2.302554627');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8H 43.5', '12.83', '8.25', '0.39', '8.08', '0.625', '6.1302', '7.625', '3.2175', '0.473421386', '6.464', '15.71846154', '158.3', '43.28004855', '38.4', '3.51', '53.4', '0.514507366', '2.04', '1.568813925', '2.366609078', '2.302554627');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8CB 42', '12.34', '8.36', '0.39', '8.1', '0.58', '6.175', '7.78', '3.2604', '0.51261175', '6.982758621', '15.83333333', '156.2', '41.60484', '37.4', '3.56', '51.4', '0.499733755', '2.04', '1.295284696', '2.361153951', '2.312174244');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8WF 40', '11.76', '8.25', '0.365', '8.077', '0.558', '6.209', '7.692', '3.01125', '0.502840492', '7.237455197', '17.0109589', '146.3', '39.31165596', '35.5', '3.53', '49', '0.500042735', '2.04', '1.119337302', '2.351373338', '2.304031983');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8H 40', '11.75', '8.25', '0.365', '8.075', '0.558', '6.209', '7.692', '3.01125', '0.502965034', '7.235663082', '17.0109589', '146.2', '39.30307169', '35.5', '3.53', '49', '0.49967137', '2.04', '1.119105648', '2.350776025', '2.304031983');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8CB 40', '11.74', '8.312', '0.365', '8.075', '0.556', '6.175', '7.756', '3.03388', '0.502010157', '7.261690647', '16.91780822', '148.3', '39.5525132', '35.7', '3.55', '48.8', '0.499920927', '2.04', '1.130741758', '2.351605393', '2.302394321');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8H 39.5', '11.63', '8.125', '0.35', '8.04', '0.5625', '6.1292', '7.5625', '2.84375', '0.474343836', '7.146666667', '17.512', '141', '38.48510675', '34.7', '3.48', '47.2', '0.516139894', '2.01', '1.148913659', '2.345583964', '2.267900297');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8H 39.5', '11.5', '8.125', '0.35', '8.04', '0.5625', '6.1292', '7.5625', '2.84375', '0.474343836', '7.146666667', '17.512', '139.5', '38.48510675', '34.3', '3.48', '47.2', '0.516139894', '2.03', '1.148913659', '2.345583964', '2.281085875');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8H 39.1', '11.5', '8.125', '0.35', '8.04', '0.5625', '6.1292', '7.5625', '2.84375', '0.474343836', '7.146666667', '17.512', '139.5', '38.48510675', '34.3', '3.48', '47.2', '0.516139894', '2.03', '1.148913659', '2.345583964', '2.281085875');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8H 39', '11.5', '8.125', '0.35', '8.04', '0.5625', '6.1292', '7.5625', '2.84375', '0.474343836', '7.146666667', '17.512', '139.5', '38.48510675', '34.3', '3.48', '47.2', '0.516139894', '2.03', '1.148913659', '2.345583964', '2.281085875');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8H 37.7', '11', '8', '0.5', '8.125', '0.459', '6.231664', '7.541', '4', '0.835483694', '8.850762527', '12.463328', '120.8', '34.36662983', '30.2', '3.31', '36.9', '0.5560005', '1.83', '0.967160764', '2.308544624', '2.146392708');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8CB 36', '10.58', '8.198', '0.336', '8.046', '0.499', '6.175', '7.699', '2.754528', '0.516768063', '8.062124248', '18.37797619', '131.3', '35.26569085', '32', '3.52', '43.4', '0.499079412', '2.02', '0.833342636', '2.333010048', '2.284925464');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8WF 35', '10.3', '8.12', '0.315', '8.027', '0.493', '6.209', '7.627', '2.5578', '0.494233332', '8.140973631', '19.71111111', '126.5', '34.19031003', '31.1', '3.5', '42.5', '0.499961465', '2.03', '0.768527473', '2.328208476', '2.282843533');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8H 35', '10.3', '8.12', '0.315', '8.025', '0.493', '6.209', '7.627', '2.5578', '0.494356505', '8.138945233', '19.71111111', '126.4', '34.18278981', '31.1', '3.5', '42.5', '0.499587848', '2.03', '0.768367708', '2.327613368', '2.282843533');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8H 35', '10.3', '8', '0.31', '8', '0.5', '6.1302', '7.5', '2.48', '0.4750905', '8', '19.77483871', '123', '33.79379855', '30.7', '3.46', '41.1', '0.519059205', '2', '0.812352736', '2.324450268', '2.240615609');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8CB 35', '10.28', '8.182', '0.315', '8.025', '0.491', '6.175', '7.691', '2.57733', '0.493652093', '8.17209776', '19.6031746', '128.2', '34.38705503', '31.3', '3.53', '42.3', '0.499913658', '2.03', '0.777522255', '2.328471666', '2.279682801');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8H 35', '10.17', '8', '0.31', '8', '0.5', '6.1302', '7.5', '2.48', '0.4750905', '8', '19.77483871', '121.5', '33.79379855', '30.4', '3.46', '41.1', '0.519059205', '2.01', '0.812352736', '2.324450268', '2.251644136');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8H 34.6', '10.17', '8', '0.31', '8', '0.5', '6.1302', '7.5', '2.48', '0.4750905', '8', '19.77483871', '121.5', '33.79379855', '30.4', '3.46', '41.1', '0.519059205', '2.01', '0.812352736', '2.324450268', '2.251644136');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8H 34.5', '10.17', '8', '0.31', '8', '0.5', '6.1302', '7.5', '2.48', '0.4750905', '8', '19.77483871', '121.5', '33.79379855', '30.4', '3.46', '41.1', '0.519059205', '2.01', '0.812352736', '2.324450268', '2.251644136');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8H 34.5', '10.1', '8.125', '0.35', '6.6', '0.5695', '6.1292', '7.5555', '2.84375', '0.570734562', '5.794556629', '17.512', '118.9', '32.66715781', '29.3', '3.43', '26.6', '0.512935376', '1.62', '0.999347615', '1.916676369', '1.851925942');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8H 34.5', '9.97', '8.125', '0.35', '6.6', '0.5695', '6.1292', '7.5555', '2.84375', '0.570734562', '5.794556629', '17.512', '117.4', '32.66715781', '28.9', '3.43', '26.6', '0.512935376', '1.63', '0.999347615', '1.916676369', '1.864697996');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8H 34.3', '10.09', '8', '0.375', '8', '0.456', '6.163', '7.544', '3', '0.633532072', '8.771929825', '16.43466667', '115.5', '32.230488', '28.9', '3.4', '35.1', '0.554301994', '1.87', '0.695874331', '2.298563271', '2.140378002');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8H 34.3', '10.07', '8', '0.375', '8', '0.459', '6.331', '7.541', '3', '0.646548203', '8.71459695', '16.88266667', '115.5', '32.39255738', '28.9', '3.4', '35.1', '0.557948718', '1.87', '0.682250128', '2.29315567', '2.139952381');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8H 34.3', '10', '8', '0.375', '8', '0.459', '6.231664', '7.541', '3', '0.636403595', '8.71459695', '16.61777067', '115.5', '32.36662983', '28.9', '3.4', '35.1', '0.557948718', '1.87', '0.751907115', '2.296915237', '2.139952381');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8H 34', '10', '8', '0.375', '8', '0.459', '6.231664', '7.541', '3', '0.636403595', '8.71459695', '16.61777067', '115.4', '32.36662983', '28.9', '3.4', '35', '0.559542857', '1.87', '0.751907115', '2.296915237', '2.136901842');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8WF 33', '9.7', '8.06', '0.3', '8.012', '0.463', '6.209', '7.597', '2.418', '0.502135566', '8.652267819', '20.69666667', '117.9', '31.99854363', '29.3', '3.49', '39.7', '0.499841211', '2.02', '0.642847358', '2.318381649', '2.268650047');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8CB 33', '9.7', '8.124', '0.3', '8.01', '0.462', '6.175', '7.662', '2.4372', '0.500591793', '8.668831169', '20.58333333', '119.8', '32.24215044', '29.5', '3.51', '39.6', '0.499646779', '2.02', '0.654649092', '2.318976003', '2.267736869');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8H 33', '9.69', '8.06', '0.3', '8.01', '0.463', '6.209', '7.597', '2.418', '0.502260943', '8.650107991', '20.69666667', '119.7', '31.99150881', '29.3', '3.49', '39.7', '0.499466985', '2.02', '0.642715021', '2.317787603', '2.268650047');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8WF 32.6', '9.59', '8', '0.313', '7.938', '0.456', '6.163', '7.544', '2.504', '0.532918219', '8.703947368', '19.69009585', '112.8', '31.238488', '28.2', '3.45', '34.2', '0.555764464', '1.9', '0.625298715', '2.292766037', '2.138820514');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8H 32.6', '9.5', '8', '0.313', '7.938', '0.459', '6.231664', '7.541', '2.504', '0.535333703', '8.647058824', '19.90946965', '112.8', '31.37462983', '28.2', '3.45', '34.2', '0.559420809', '1.9', '0.678987221', '2.291436622', '2.138395203');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8H 32', '9.3', '7.875', '0.31', '8', '0.4375', '6.1292', '7.4375', '2.44125', '0.542872', '9.142857143', '19.7716129', '107.2', '29.8249505', '27.2', '3.4', '35.8', '0.52141527', '1.96', '0.584978834', '2.306545488', '2.212358753');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8H 32', '9.17', '7.875', '0.31', '8', '0.4375', '6.1292', '7.4375', '2.44125', '0.542872', '9.142857143', '19.7716129', '105.7', '29.8249505', '26.9', '3.4', '35.8', '0.52141527', '1.98', '0.584978834', '2.306545488', '2.22466112');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8H 31.8', '9.35', '8', '0.32', '7.04', '0.5045', '6.1302', '7.4955', '2.56', '0.552320029', '6.977205154', '19.156875', '109.1', '30.52903008', '27.3', '3.42', '28.5', '0.514698665', '1.74', '0.75391542', '2.03775455', '1.978000572');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8H 31.5', '9.17', '7.875', '0.31', '8', '0.4375', '6.1292', '7.4375', '2.44125', '0.542872', '9.142857143', '19.7716129', '105.7', '29.8249505', '26.9', '3.4', '35.8', '0.52141527', '1.98', '0.584978834', '2.306545488', '2.22466112');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8H 31', '9.13', '8', '0.29', '8', '0.433', '6.209', '7.567', '2.32', '0.519806582', '9.237875289', '21.41034483', '109.7', '29.90189981', '27.4', '3.47', '37', '0.499315315', '2.01', '0.535992818', '2.308192849', '2.260333126');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8WF 31', '9.12', '8', '0.288', '8', '0.433', '6.209', '7.567', '2.304', '0.516221709', '9.237875289', '21.55902778', '109.7', '29.87645283', '27.4', '3.47', '37', '0.499315315', '2.01', '0.534406242', '2.308631646', '2.260333126');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8CB 31', '9.1', '8.06', '0.29', '8', '0.43', '6.175', '7.63', '2.3374', '0.52056686', '9.302325581', '21.29310345', '110.9', '30.0056', '27.5', '3.49', '36.7', '0.499909173', '2.01', '0.540878772', '2.308887592', '2.256388909');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8H 30.5', '8.95', '8', '0.31', '6.56', '0.507', '6.1302', '7.493', '2.48', '0.571379348', '6.469428008', '19.77483871', '103.8', '28.70144167', '26', '3.41', '23.2', '0.514103128', '1.61', '0.709382939', '1.897197863', '1.828395682');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8H 30.5', '8.82', '8', '0.31', '6.56', '0.507', '6.1302', '7.493', '2.48', '0.571379348', '6.469428008', '19.77483871', '102.3', '28.70144167', '25.6', '3.41', '23.2', '0.514103128', '1.62', '0.709382939', '1.897197863', '1.842624657');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8H 30', '8.83', '8.12', '0.31', '6.57', '0.493', '6.209', '7.627', '2.5172', '0.594252565', '6.663286004', '20.02903226', '105.4', '28.64821086', '26', '3.46', '23.3', '0.500041283', '1.63', '0.647411252', '1.895706195', '1.848643474');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8CB 30', '8.81', '8.196', '0.298', '6.559', '0.498', '6.175', '7.698', '2.442408', '0.563360317', '6.585341365', '20.72147651', '107.8', '29.00668864', '26.3', '3.5', '23.4', '0.500432068', '1.63', '0.668417478', '1.897233833', '1.850563577');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8WF 28', '8.23', '8.06', '0.285', '6.54', '0.463', '6.209', '7.597', '2.2971', '0.584396734', '7.062634989', '21.78596491', '97.8', '26.63006231', '24.3', '3.45', '21.6', '0.499665356', '1.62', '0.533003789', '1.884284601', '1.837510393');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8H 27.7', '8.15', '7.875', '0.28', '7', '0.4425', '6.1292', '7.4325', '2.205', '0.554051977', '7.90960452', '21.89', '93.6', '26.43986191', '23.8', '3.39', '24.4', '0.518365779', '1.73', '0.514315001', '2.017623535', '1.951905985');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8H 27', '7.95', '8.03', '0.275', '6.535', '0.448', '6.209', '7.582', '2.20825', '0.58321777', '7.293526786', '22.57818182', '94.2', '25.69662924', '23.5', '3.44', '20.9', '0.498525362', '1.62', '0.483850437', '1.881083605', '1.8361836');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8CB 27', '7.93', '8.098', '0.268', '6.529', '0.449', '6.175', '7.649', '2.170264', '0.564519238', '7.270601336', '23.04104478', '95.9', '25.89648413', '23.7', '3.48', '20.8', '0.500658698', '1.62', '0.494958175', '1.882433823', '1.832081659');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8WF 27', '7.93', '8.03', '0.273', '6.528', '0.448', '6.209', '7.582', '2.19219', '0.579597024', '7.285714286', '22.74358974', '94.1', '25.64740511', '23.4', '3.44', '20.8', '0.499314146', '1.62', '0.481955947', '1.879425726', '1.835695448');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8H 27', '7.89', '7.875', '0.28', '6.53', '0.4445', '6.1292', '7.4305', '2.205', '0.591257793', '7.345331834', '21.89', '89.7', '24.98188438', '22.8', '3.37', '20', '0.515703486', '1.59', '0.490809798', '1.878652639', '1.805267633');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8H 27', '7.76', '7.875', '0.28', '6.53', '0.4445', '6.1292', '7.4305', '2.205', '0.591257793', '7.345331834', '21.89', '88.2', '24.98188438', '22.4', '3.37', '20', '0.515703486', '1.6', '0.490809798', '1.878652639', '1.821314772');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8H 24', '7.09', '7.94', '0.24', '6.5', '0.403', '6.209', '7.537', '1.9056', '0.568871922', '8.064516129', '25.87083333', '83.4', '22.79680886', '21', '3.43', '18.5', '0.498530968', '1.61', '0.351127659', '1.866778001', '1.822050781');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8CB 24', '7.06', '8', '0.239', '6.5', '0.4', '6.175', '7.6', '1.912', '0.567625', '8.125', '25.83682008', '84.2', '22.85744', '21.1', '3.46', '18.3', '0.500227687', '1.61', '0.355725767', '1.867695011', '1.815415819');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8WF 24', '7.06', '7.93', '0.245', '6.5', '0.398', '6.209', '7.532', '1.94285', '0.588018941', '8.165829146', '25.34285714', '82.5', '22.60253881', '20.8', '3.42', '18.2', '0.50046131', '1.61', '0.343393622', '1.864248232', '1.815282347');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8H 23.5', '6.85', '7.75', '0.25', '6.5', '0.382', '6.1302', '7.368', '1.9375', '0.617217076', '8.507853403', '24.5208', '76.1', '21.34300417', '19.6', '3.33', '16.8', '0.520370784', '1.57', '0.323405571', '1.859351971', '1.77699586');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8H 23.5', '6.72', '7.75', '0.25', '6.5', '0.382', '6.1302', '7.368', '1.9375', '0.617217076', '8.507853403', '24.5208', '74.6', '21.34300417', '19.2', '3.33', '16.8', '0.520370784', '1.58', '0.323405571', '1.859351971', '1.795410816');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8H 27', '7.94', '8', '0.355', '6.61', '0.398', '6.2542', '7.602', '2.84', '0.843947803', '8.304020101', '17.61746479', '88.51', '24.59241784', '22.13', '3.34', '17.43', '0.549552031', '1.48', '0.476966359', '1.870443179', '1.730242285');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '8H 24', '7.06', '8', '0.245', '6.5', '0.398', '6.2542', '7.602', '1.96', '0.592299575', '8.165829146', '25.52734694', '83.81', '22.83241784', '20.95', '3.45', '16.52', '0.55135568', '1.53', '0.375567372', '1.863627509', '1.731258596');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '7H 88', '25.91', '7.23', '0.99', '10.42', '0.99', '4.525', '6.24', '7.1577', '0.434261036', '5.262626263', '4.570707071', '215', '71.19231075', '59.5', '2.88', '187.1', '0.498865325', '2.69', '8.928117253', '3.177918412', '3.132244879');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '7H 88', '25.89', '7.265', '0.99', '10.4', '0.9895', '4.5644', '6.2755', '7.19235', '0.439106386', '5.255179384', '4.610505051', '216.9', '71.48843281', '59.7', '2.89', '182', '0.509639619', '2.65', '9.11928007', '3.169479676', '3.092841738');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '7CB 88', '25.87', '6.842', '1.035', '10.046', '1.035', '3.747', '5.807', '7.08147', '0.372984272', '4.853140097', '3.620289855', '187.3', '66.27117213', '54.7', '2.69', '175.4', '0.498550362', '2.6', '10.05870975', '3.107916932', '3.051279888');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '7H 80', '23.53', '7.096', '0.905', '10.315', '0.905', '4.5654', '6.191', '6.42188', '0.442598158', '5.698895028', '5.044640884', '191.7', '64.10835177', '54', '2.85', '162', '0.510928367', '2.62', '6.938781212', '3.125824348', '3.04737592');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '7H 80', '23.53', '7.06', '0.905', '10.335', '0.905', '4.525', '6.155', '6.3893', '0.437832608', '5.709944751', '5', '189.9', '63.80480775', '53.8', '2.84', '166.9', '0.498818371', '2.66', '6.779436922', '3.134068238', '3.089840499');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '7CB 80', '23.52', '6.666', '0.948', '9.959', '0.947', '3.747', '5.719', '6.319368', '0.376639894', '5.258183738', '3.952531646', '164.9', '59.3338386', '49.5', '2.65', '156.3', '0.498720192', '2.58', '7.674091801', '3.062836455', '3.004844069');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '7H 73', '21.47', '6.946', '0.831', '10.214', '0.83', '4.5654', '6.116', '5.772126', '0.447513264', '6.153012048', '5.493862816', '170.6', '57.64712302', '49.1', '2.82', '145', '0.508295664', '2.6', '5.325319288', '3.078907904', '3.005121223');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '7H 73', '21.47', '6.91', '0.83', '10.26', '0.83', '4.525', '6.08', '5.7353', '0.441033138', '6.180722892', '5.451807229', '168.9', '57.49528275', '48.9', '2.8', '149.7', '0.499019054', '2.64', '5.203063672', '3.095124706', '3.05065617');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6CB 70', '20.58', '6.44', '0.835', '9.846', '0.836', '3.743', '5.604', '5.3774', '0.379699647', '5.888755981', '4.482634731', '138.7', '50.87364438', '43', '2.6', '133.3', '0.498855054', '2.54', '5.241601754', '3.004814378', '2.947235993');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '7H 67', '19.7', '6.818', '0.765', '10.175', '0.766', '4.5654', '6.052', '5.21577', '0.448102206', '6.641644909', '5.967843137', '153.3', '52.50653019', '45', '2.79', '130.9', '0.513701851', '2.58', '4.172965308', '3.053408206', '2.96686666');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '7H 67', '19.69', '6.78', '0.765', '10.195', '0.765', '4.525', '6.015', '5.1867', '0.443845022', '6.663398693', '5.91503268', '151.6', '52.18336575', '44.7', '2.77', '135.3', '0.4992799', '2.62', '4.056623633', '3.061174', '3.017157314');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '7H 60', '17.67', '6.63', '0.69', '10.12', '0.69', '4.525', '5.94', '4.5747', '0.447134387', '7.333333333', '6.557971014', '132.6', '46.23236325', '40', '2.74', '119.3', '0.499538469', '2.6', '2.963015371', '3.021759946', '2.976243438');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '7H 60', '17.65', '6.666', '0.689', '10.099', '0.69', '4.5654', '5.976', '4.592874', '0.451409395', '7.318115942', '6.626124819', '133.9', '46.44866602', '40.2', '2.75', '114.9', '0.515445714', '2.55', '3.040221911', '3.013587046', '2.92238402');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6CB 60', '17.63', '6.216', '0.722', '9.766', '0.722', '3.747', '5.494', '4.487952', '0.383678067', '6.763157895', '5.189750693', '113.9', '42.8488228', '36.7', '2.54', '111.1', '0.504419715', '2.51', '3.3756596', '2.955102467', '2.883721577');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '7H 53', '15.59', '6.512', '0.612', '10.022', '0.613', '4.5654', '5.899', '3.985344', '0.454794688', '8.174551387', '7.459803922', '115.2', '40.50858981', '35.4', '2.72', '99.3', '0.517837116', '2.52', '2.126799274', '2.972968629', '2.87638618');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6H 53', '15.53', '6.47', '0.61', '10.04', '0.61', '4.525', '5.86', '3.9467', '0.450697211', '8.229508197', '7.418032787', '113.4', '40.09226525', '35.1', '2.7', '103', '0.499473559', '2.58', '2.038370032', '2.979422112', '2.932235614');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6CB 50', '14.7', '5.986', '0.606', '9.617', '0.607', '3.747', '5.379', '3.627516', '0.388980661', '7.921746293', '6.183168317', '91', '34.84997028', '30.4', '2.49', '90.1', '0.499345916', '2.48', '1.996642441', '2.88363741', '2.823328278');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6H 46', '13.55', '6.32', '0.535', '9.965', '0.535', '4.525', '5.785', '3.3812', '0.454089313', '9.313084112', '8.457943925', '96.4', '34.52791025', '30.5', '2.67', '88.3', '0.499624517', '2.55', '1.370629615', '2.939439672', '2.893790696');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6H 46', '13.54', '6.356', '0.534', '9.944', '0.535', '4.5654', '5.821', '3.394104', '0.45825287', '9.293457944', '8.549438202', '97.4', '34.69125371', '30.6', '2.68', '84.1', '0.521266586', '2.49', '1.412648036', '2.93153017', '2.82827143');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '7B 41', '12.04', '6.75', '0.495', '6.245', '0.75', '4.525', '6', '3.34125', '0.478222578', '4.163333333', '9.141414141', '91.2', '31.51335938', '27', '2.75', '30.5', '0.499088435', '1.59', '2.020005879', '1.870211708', '1.840893503');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '7H 40.5', '11.91', '6.75', '0.475', '6.225', '0.75', '4.525', '6', '3.20625', '0.460374833', '4.15', '9.526315789', '90.7', '31.28554688', '26.9', '2.76', '30.2', '0.499219041', '1.59', '1.979440115', '1.865732693', '1.835219262');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '7H 40.5', '11.87', '6.75', '0.47', '6.22', '0.75', '4.5654', '6', '3.1725', '0.459965273', '4.146666667', '9.713617021', '90.5', '31.22698183', '26.8', '2.76', '29.6', '0.50811201', '1.58', '2.010211665', '1.86357066', '1.820283724');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '7H 40.5', '11.8', '6.75', '0.47', '6.22', '0.75', '4.5654', '6', '3.1725', '0.459965273', '4.146666667', '9.713617021', '90.1', '31.22698183', '26.7', '2.76', '29.6', '0.50811201', '1.58', '2.010211665', '1.86357066', '1.823689309');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6CB 40', '11.76', '5.75', '0.489', '9.5', '0.489', '3.747', '5.261', '2.81175', '0.394421053', '9.713701431', '7.662576687', '69.6', '27.22385054', '24.2', '2.43', '69.9', '0.499828773', '2.44', '1.050280673', '2.820395018', '2.756449612');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6H 40', '11.72', '6.18', '0.465', '9.895', '0.465', '4.525', '5.715', '2.8737', '0.457301668', '10.63978495', '9.731182796', '81.4', '29.49985575', '26.3', '2.64', '75.1', '0.499895429', '2.53', '0.898170647', '2.901857043', '2.856506481');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6H 40', '11.71', '6.216', '0.465', '9.875', '0.465', '4.5654', '5.751', '2.89044', '0.462318987', '10.61827957', '9.818064516', '82.3', '29.64917801', '26.5', '2.65', '71.1', '0.524823676', '2.46', '0.930255717', '2.894236771', '2.777592619');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '7H 37', '10.83', '6.625', '0.43', '6.18', '0.6875', '4.5664', '5.9375', '2.84875', '0.462148161', '4.494545455', '10.61953488', '80.9', '28.18836506', '24.4', '2.73', '26.6', '0.508364535', '1.57', '1.547610498', '1.842955237', '1.799006443');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '7H 37', '10.76', '6.625', '0.43', '6.18', '0.6875', '4.5664', '5.9375', '2.84875', '0.462148161', '4.494545455', '10.61953488', '80.4', '28.18836506', '24.3', '2.73', '26.6', '0.508364535', '1.57', '1.547610498', '1.842955237', '1.802704301');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '7H 33.5', '9.8', '6.5', '0.39', '6.14', '0.625', '4.5654', '5.875', '2.535', '0.463975505', '4.912', '11.70615385', '71.6', '25.23104433', '22', '2.7', '23.6', '0.510848217', '1.55', '1.163238153', '1.822300833', '1.77514404');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '7H 33.5', '9.72', '6.5', '0.39', '6.14', '0.625', '4.5654', '5.875', '2.535', '0.463975505', '4.912', '11.70615385', '71.2', '25.23104433', '21.9', '2.71', '23.6', '0.510848217', '1.56', '1.163238153', '1.822300833', '1.779192265');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6H 30', '8.81', '6.38', '0.35', '6.1', '0.565', '4.525', '5.815', '2.233', '0.459524155', '5.398230088', '12.92857143', '63.2', '22.45311625', '19.8', '2.68', '21.4', '0.499393555', '1.56', '0.838735606', '1.803145502', '1.772695545');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6H 30', '8.77', '6.375', '0.35', '6.1', '0.5625', '4.5664', '5.8125', '2.23125', '0.465789435', '5.422222222', '13.04685714', '62.8', '22.35430256', '19.7', '2.68', '20.8', '0.511525691', '1.54', '0.848834242', '1.801503249', '1.751721416');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6H 30', '8.7', '6.375', '0.35', '6.1', '0.5625', '4.5664', '5.8125', '2.23125', '0.465789435', '5.422222222', '13.04685714', '62.4', '22.35430256', '19.6', '2.68', '20.8', '0.511525691', '1.55', '0.848834242', '1.801503249', '1.756184408');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6WF 27.5', '8.11', '6.46', '0.352', '6.112', '0.5', '4.735', '5.96', '2.27392', '0.54539267', '6.112', '13.45170455', '59.7', '20.8371808', '18.5', '2.71', '19.1', '0.498087253', '1.53', '0.623077767', '1.786371575', '1.754037813');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6CB 27.5', '8.09', '6.46', '0.352', '6.112', '0.5', '4.835', '5.96', '2.27392', '0.556910995', '6.112', '13.73579545', '59.6', '20.8371808', '18.4', '2.71', '19', '0.500708765', '1.53', '0.611850977', '1.783243922', '1.754187536');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6WF 27.5', '8.09', '6.28', '0.335', '6.085', '0.514', '4.527', '5.766', '2.1038', '0.484877018', '5.9192607', '13.51343284', '56.6', '20.344379', '18', '2.65', '19.3', '0.500041802', '1.55', '0.64694182', '1.789189196', '1.758185618');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6H 27.5', '8.09', '6', '0.438', '6.063', '0.4805', '4.191664', '5.5195', '2.628', '0.630201762', '6.30905307', '9.570009132', '49.3', '18.84161063', '16.4', '2.47', '16', '0.557769636', '1.41', '0.712073791', '1.771951249', '1.640865328');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6H 27.5', '8.08', '6', '0.438', '6.063', '0.4805', '4.191664', '5.5195', '2.628', '0.630201762', '6.30905307', '9.570009132', '49.3', '18.84161063', '16.4', '2.47', '16', '0.557769636', '1.41', '0.712073791', '1.771951249', '1.640865328');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6H 27', '7.92', '6.25', '0.335', '6.085', '0.5', '4.525', '5.75', '2.09375', '0.498233361', '6.085', '13.50746269', '55', '19.80273438', '17.6', '2.63', '18.8', '0.499358741', '1.54', '0.603666593', '1.786021501', '1.752433373');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6H 26.7', '7.76', '6', '0.438', '6.125', '0.451', '4.267664', '5.549', '2.628', '0.676677436', '6.790465632', '9.743525114', '47.4', '18.1585825', '15.8', '2.47', '15.7', '0.550064886', '1.42', '0.625895572', '1.780167413', '1.660403527');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6H 26.5', '7.8', '6.25', '0.315', '6.065', '0.5', '4.525', '5.75', '1.96875', '0.470032976', '6.065', '14.36507937', '54.6', '19.60742188', '17.5', '2.65', '18.6', '0.499767752', '1.54', '0.586867548', '1.782620458', '1.748060149');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6H 26.5', '7.76', '6.25', '0.31', '6.06', '0.5', '4.5654', '5.75', '1.9375', '0.467087129', '6.06', '14.72709677', '54.4', '19.55698183', '17.4', '2.65', '18.1', '0.512304365', '1.53', '0.597701966', '1.780674847', '1.729352746');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6H 26.5', '7.69', '6.25', '0.31', '6.06', '0.5', '4.5654', '5.75', '1.9375', '0.467087129', '6.06', '14.72709677', '53.9', '19.55698183', '17.3', '2.65', '18.1', '0.512304365', '1.53', '0.597701966', '1.780674847', '1.734343673');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6WF 25', '7.37', '6.37', '0.32', '6.08', '0.456', '4.733', '5.914', '2.0384', '0.546283472', '6.666666667', '14.790625', '53.5', '18.77962784', '16.8', '2.69', '17.1', '0.499457138', '1.52', '0.472646049', '1.770657739', '1.734878547');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6CB 25', '7.35', '6.37', '0.32', '6.08', '0.456', '4.833', '5.914', '2.0384', '0.557825485', '6.666666667', '15.103125', '53.5', '18.77962784', '16.8', '2.69', '17.1', '0.499457138', '1.52', '0.463389659', '1.767508284', '1.734878547');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6WF 25', '7.35', '6.19', '0.3', '6.05', '0.471', '4.523', '5.719', '1.857', '0.47618045', '6.422505308', '15.07666667', '50.9', '18.36218925', '16.4', '2.63', '17.4', '0.499524204', '1.54', '0.493647324', '1.773494335', '1.741797852');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6CB 25', '7.35', '6', '0.313', '5.938', '0.481', '4.287', '5.519', '1.878', '0.469799501', '6.172557173', '13.69648562', '47', '17.74934438', '15.7', '2.53', '14.9', '0.563246033', '1.43', '0.52190294', '1.746509851', '1.618298037');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6H 25', '7.33', '6', '0.313', '5.938', '0.4805', '4.191664', '5.5195', '1.878', '0.459829908', '6.178980229', '13.39189776', '47', '17.71661063', '15.7', '2.53', '14.9', '0.562660538', '1.43', '0.576709782', '1.748974762', '1.618371341');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6H 24.1', '7.01', '6', '0.313', '6', '0.451', '4.267664', '5.549', '1.878', '0.493635932', '6.651884701', '13.63470927', '45.1', '17.0335825', '15', '2.54', '14.7', '0.552244898', '1.45', '0.495372327', '1.758776851', '1.648942085');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6H 23.8', '7', '6', '0.313', '6', '0.451', '4.267664', '5.549', '1.878', '0.493635932', '6.651884701', '13.63470927', '45.1', '17.0335825', '15', '2.54', '14.7', '0.552244898', '1.45', '0.495372327', '1.758776851', '1.648942085');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6H 23', '6.76', '6.12', '0.275', '6.025', '0.435', '4.525', '5.685', '1.683', '0.474793723', '6.925287356', '16.45454545', '46.3', '16.79459625', '15.1', '2.62', '15.9', '0.498634175', '1.53', '0.388663737', '1.760980725', '1.730056654');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6H 23', '6.76', '6.125', '0.27', '6.02', '0.4375', '4.5664', '5.6875', '1.65375', '0.468126436', '6.88', '16.91259259', '46.4', '16.83836506', '15.2', '2.62', '15.4', '0.516494337', '1.51', '0.402164111', '1.759716669', '1.697400295');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6H 23', '6.69', '6.125', '0.27', '6.02', '0.4375', '4.5664', '5.6875', '1.65375', '0.468126436', '6.88', '16.91259259', '45.9', '16.83836506', '15', '2.62', '15.4', '0.516494337', '1.52', '0.402164111', '1.759716669', '1.708678827');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6H 22.8', '6.63', '6', '0.25', '5.938', '0.451', '4.267664', '5.549', '1.5', '0.398394646', '6.583148559', '17.070656', '44', '16.46908234', '14.7', '2.58', '14.2', '0.554150247', '1.46', '0.451421972', '1.748447711', '1.63711003');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6WF 22.5', '6.63', '6.28', '0.29', '6.05', '0.411', '4.733', '5.869', '1.8212', '0.551997748', '7.360097324', '16.32068966', '47.4', '16.75331984', '15.1', '2.67', '15.2', '0.498979969', '1.51', '0.348177103', '1.754866486', '1.718701188');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6H 22.5', '6.62', '6', '0.375', '6.063', '0.3795', '4.393664', '5.6205', '2.25', '0.716075411', '7.988142292', '11.71643733', '41', '15.48861794', '13.7', '2.49', '12.2', '0.577741292', '1.36', '0.392859642', '1.745819047', '1.581947658');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6CB 22.5', '6.61', '6.28', '0.29', '6.05', '0.411', '4.833', '5.869', '1.8212', '0.563660493', '7.360097324', '16.66551724', '47.3', '16.75331984', '15', '2.67', '15.2', '0.498979969', '1.52', '0.340623412', '1.751668711', '1.724420676');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6H 22.5', '6.61', '6', '0.375', '6.063', '0.3795', '4.393664', '5.6205', '2.25', '0.716075411', '7.988142292', '11.71643733', '41', '15.48861794', '13.7', '2.49', '12.2', '0.577741292', '1.36', '0.392859642', '1.745819047', '1.581947658');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6WF 22.5', '6.61', '6.1', '0.27', '6.02', '0.425', '4.525', '5.675', '1.647', '0.477525894', '7.082352941', '16.75925926', '45', '16.37995625', '14.8', '2.61', '15.5', '0.498500341', '1.53', '0.363551811', '1.757798705', '1.723863707');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6WF 20', '5.9', '6.2', '0.258', '6.018', '0.367', '4.741', '5.833', '1.5996', '0.553823543', '8.198910082', '18.37596899', '41.7', '14.80987536', '13.4', '2.66', '13.3', '0.501175379', '1.5', '0.248671726', '1.738834078', '1.701392099');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6H 20', '5.89', '6', '0.25', '6', '0.375', '4.525', '5.625', '1.5', '0.502777778', '8', '18.1', '39.2', '14.37890625', '13.1', '2.58', '13.5', '0.5', '1.51', '0.256599285', '1.742239624', '1.702462294');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6H 20', '5.89', '6', '0.25', '6', '0.375', '4.5654', '5.625', '1.5', '0.507266667', '8', '18.2616', '39.1', '14.37729433', '13', '2.58', '13', '0.519230769', '1.49', '0.264545418', '1.741029963', '1.677050983');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6CB 20', '5.88', '6.2', '0.258', '6.018', '0.367', '4.841', '5.833', '1.5996', '0.56550512', '8.198910082', '18.76356589', '41.7', '14.80987536', '13.4', '2.66', '13.3', '0.501175379', '1.5', '0.242606109', '1.735613977', '1.701392099');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6H 20', '5.88', '6', '0.25', '5.938', '0.38', '4.489', '5.62', '1.5', '0.497354239', '7.813157895', '17.956', '38.8', '14.3972928', '12.9', '2.57', '11.4', '0.581591538', '1.39', '0.264714548', '1.726101585', '1.575834958');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6H 20', '5.86', '6', '0.25', '5.938', '0.3795', '4.393664', '5.6205', '1.5', '0.487432942', '7.82345191', '17.574656', '38.8', '14.36361794', '12.9', '2.57', '11.4', '0.580826286', '1.39', '0.300142812', '1.728688291', '1.575905056');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6H 20', '5.81', '6', '0.25', '6', '0.375', '4.5654', '5.625', '1.5', '0.507266667', '8', '18.2616', '38.7', '14.37729433', '12.9', '2.58', '13', '0.519230769', '1.5', '0.264545418', '1.741029963', '1.683538632');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6WF 18', '5.31', '6.11', '0.25', '6.01', '0.322', '4.741', '5.788', '1.5275', '0.612462666', '9.332298137', '18.964', '36.4', '13.06837561', '11.9', '2.62', '11.7', '0.497865669', '1.48', '0.179195847', '1.724469321', '1.686819891');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6WF 18', '5.3', '5.91', '0.245', '5.995', '0.328', '4.529', '5.582', '1.44795', '0.564293924', '9.138719512', '18.48571429', '34.1', '12.66699813', '11.5', '2.54', '11.8', '0.499089178', '1.49', '0.183507188', '1.728036853', '1.692279142');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6CB 18', '5.29', '6.11', '0.25', '6.01', '0.322', '4.741', '5.788', '1.5275', '0.612462666', '9.332298137', '18.964', '36.2', '13.06837561', '11.9', '2.62', '11.6', '0.502157614', '1.48', '0.179195847', '1.724469321', '1.67959579');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6CB 18', '5.28', '6.09', '0.265', '6.025', '0.314', '4.837', '5.776', '1.61385', '0.677540503', '9.593949045', '18.25283019', '35.5', '12.90379127', '11.7', '2.59', '11', '0.520267708', '1.44', '0.171051294', '1.719143403', '1.647790543');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6WF 15.5', '4.62', '6', '0.24', '6', '0.269', '4.737', '5.731', '1.44', '0.704386617', '11.15241636', '19.7375', '30.3', '11.03984064', '10.1', '2.56', '9.69', '0.499690402', '1.45', '0.116927562', '1.705170439', '1.658064451');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6CB 15.5', '4.59', '6', '0.24', '6', '0.269', '4.837', '5.731', '1.44', '0.719256506', '11.15241636', '20.15416667', '30.3', '11.03984064', '10.1', '2.56', '9.69', '0.499690402', '1.45', '0.112908972', '1.701090722', '1.658064451');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6CB 15.5', '4.59', '6', '0.24', '6', '0.269', '4.837', '5.731', '1.44', '0.719256506', '11.15241636', '20.15416667', '30.1', '11.03984064', '10', '2.56', '9.19', '0.52687704', '1.42', '0.112908972', '1.701090722', '1.622773706');");
    sql.add("INSERT INTO " + TABLE_SHAPES + "(start_year, end_year, edition, designation, ag , d, tw, bf, tf, h, ho, aweb, aw, bf_2tf, h_tw, Ix, Zx, Sx, rx, iy, iyc_over_iy, ry, J, rt, rts) VALUES('1873', '1955', 'Historic', '6WF 15.5', '4.57', '5.79', '0.24', '5.99', '0.27', '4.525', '5.52', '1.3896', '0.67148952', '11.09259259', '18.85416667', '28.1', '10.581246', '9.7', '2.48', '9.7', '0.498529946', '1.46', '0.116740427', '1.707891569', '1.661324773');");
    
    for(String insert : sql)
      db.execSQL(insert);
    
    ShapeTable.CREATED = true;
  }
}




Java Source Code List

com.shapes.shapes.About.java
com.shapes.shapes.AnalyzeBeam2.java
com.shapes.shapes.AnalyzeColumn.java
com.shapes.shapes.Analyze.java
com.shapes.shapes.BeamAnalysis.java
com.shapes.shapes.ColumnAnalysis.java
com.shapes.shapes.CustomArrayAdapter.java
com.shapes.shapes.FeetInchesType.java
com.shapes.shapes.MainActivity.java
com.shapes.shapes.OpenHelper.java
com.shapes.shapes.Options.java
com.shapes.shapes.ResultsList.java
com.shapes.shapes.ShapeTable.java
com.shapes.shapes.Shape.java