{
  "world": {
    "type": "SESceneWorld",
    "members": {
      "m_strPlayerCameraName": "GameCamera"
    }
  },
  "entities": [
    {
      "type": "SECameraSceneEntity",
      "name": "GameCamera",
      "members": {
        "m_Transform": "{1,0,0,0}{0,0.882948,0.469472,0}{0,-0.469472,0.882948,0}{0,8.5,-11,1}",
        "m_bFrustumCullable": "False",
        "m_strEntityName": "GameCamera",
        "m_strScriptFile": "",
        "m_strScriptClass": "MazaritaGame",
        "m_strScriptSource": "class MazaritaGame {\n  // --- audio: instrument indices resolved once, then triggered by index ---\n  SESynthSceneEntity@ sfx;\n  int fxBeep = -1; int fxZap = -1; int fxCoin = -1;\n  int fxBoom = -1; int fxLaser = -1; int fxThud = -1;\n  void InitAudio() {\n    SESceneEntity@ e = gWorld.FindEntityByName(\"Sfx\");\n    if (e is null) return;\n    @sfx = cast<SESynthSceneEntity>(e);\n    if (sfx is null) return;\n    fxBeep = sfx.FindInstrument(\"Beep\");\n    fxZap = sfx.FindInstrument(\"Zap\");\n    fxCoin = sfx.FindInstrument(\"Coin\");\n    fxBoom = sfx.FindInstrument(\"Explosion\");\n    fxLaser = sfx.FindInstrument(\"Laser\");\n    fxThud = sfx.FindInstrument(\"Thud\");\n  }\n  void Fx(int id, int note, float vel) { if (sfx !is null) sfx.PlayEffect(id, note, vel); }\n\n  SESceneEntity@ owner;\n  array<SESceneEntity@> roads(14);\n  array<SESceneEntity@> walks(14);\n  array<SESceneEntity@> waters(14);\n  array<SESceneEntity@> vehA(14);\n  array<SESceneEntity@> vehB(14);\n  array<SESceneEntity@> vehC(14);\n  array<SESceneEntity@> bikeA(14);\n  array<SESceneEntity@> bikeB(14);\n  array<SESceneEntity@> boatA(14);\n  array<SESceneEntity@> boatB(14);\n  array<SESceneEntity@> tram(14);\n  array<SESceneEntity@> wave(14);\n  array<SESceneEntity@> plA(14);\n  array<SESceneEntity@> plB(14);\n  SESceneEntity@ player;\n  SESceneEntity@ cam;\n  SESceneEntity@ seabed;\n  SESceneEntity@ fx;\n  SETextEntity@ title;\n  SETextEntity@ scoreText;\n  SETextEntity@ status;\n\n  // lane slot state ( slot = lane % 14 )\n  array<int> laneOfSlot(14);\n  array<int> laneType(14);       // 0 walk 1 road 2 bikes 3 tram 4 water 5 shore\n  array<int> plantColA(14);\n  array<int> plantColB(14);\n  // active movers: up to 3 per slot, referencing pool entities\n  array<SESceneEntity@> mvEnt(42);\n  array<float> mvSpeed(42);\n  array<float> mvHalf(42);\n  array<int> mvOn(42);\n\n  int seed = 20260723;\n  int playerLane = 0;\n  int maxLane = 0;\n  int best = 0;\n  float px = 0.0f;\n  float pz = 0.0f;\n  bool hopping = false;\n  float hopT = 0.0f;\n  float hopFromX = 0.0f;\n  float hopFromZ = 0.0f;\n  float hopToX = 0.0f;\n  float hopToZ = 0.0f;\n  int hopToLane = 0;\n  int rideIdx = -1;\n  float rideOffset = 0.0f;\n  float camZ = -2.0f;\n  float deadTimer = 0.0f;\n  float statusTimer = 0.0f;\n  bool prevL = false;\n  bool prevR = false;\n  bool prevU = false;\n  bool prevD = false;\n\n  MazaritaGame(SESceneEntity@ o) { @owner = o; }\n\n  int Rand(int n) {\n    seed = seed * 1103515245 + 12345;\n    int v = (seed >> 16) & 16383;\n    return v % n;\n  }\n\n  void OnInit() {\n    InitAudio();\n    @roads[0] = gWorld.FindEntityByName(\"Road0\");\n    @walks[0] = gWorld.FindEntityByName(\"Walk0\");\n    @waters[0] = gWorld.FindEntityByName(\"Wat0\");\n    @vehA[0] = gWorld.FindEntityByName(\"VehA0\");\n    @vehB[0] = gWorld.FindEntityByName(\"VehB0\");\n    @vehC[0] = gWorld.FindEntityByName(\"VehC0\");\n    @bikeA[0] = gWorld.FindEntityByName(\"BikeA0\");\n    @bikeB[0] = gWorld.FindEntityByName(\"BikeB0\");\n    @boatA[0] = gWorld.FindEntityByName(\"BoatA0\");\n    @boatB[0] = gWorld.FindEntityByName(\"BoatB0\");\n    @tram[0] = gWorld.FindEntityByName(\"Tram0\");\n    @wave[0] = gWorld.FindEntityByName(\"Wave0\");\n    @plA[0] = gWorld.FindEntityByName(\"PlantA0\");\n    @plB[0] = gWorld.FindEntityByName(\"PlantB0\");\n    @roads[1] = gWorld.FindEntityByName(\"Road1\");\n    @walks[1] = gWorld.FindEntityByName(\"Walk1\");\n    @waters[1] = gWorld.FindEntityByName(\"Wat1\");\n    @vehA[1] = gWorld.FindEntityByName(\"VehA1\");\n    @vehB[1] = gWorld.FindEntityByName(\"VehB1\");\n    @vehC[1] = gWorld.FindEntityByName(\"VehC1\");\n    @bikeA[1] = gWorld.FindEntityByName(\"BikeA1\");\n    @bikeB[1] = gWorld.FindEntityByName(\"BikeB1\");\n    @boatA[1] = gWorld.FindEntityByName(\"BoatA1\");\n    @boatB[1] = gWorld.FindEntityByName(\"BoatB1\");\n    @tram[1] = gWorld.FindEntityByName(\"Tram1\");\n    @wave[1] = gWorld.FindEntityByName(\"Wave1\");\n    @plA[1] = gWorld.FindEntityByName(\"PlantA1\");\n    @plB[1] = gWorld.FindEntityByName(\"PlantB1\");\n    @roads[2] = gWorld.FindEntityByName(\"Road2\");\n    @walks[2] = gWorld.FindEntityByName(\"Walk2\");\n    @waters[2] = gWorld.FindEntityByName(\"Wat2\");\n    @vehA[2] = gWorld.FindEntityByName(\"VehA2\");\n    @vehB[2] = gWorld.FindEntityByName(\"VehB2\");\n    @vehC[2] = gWorld.FindEntityByName(\"VehC2\");\n    @bikeA[2] = gWorld.FindEntityByName(\"BikeA2\");\n    @bikeB[2] = gWorld.FindEntityByName(\"BikeB2\");\n    @boatA[2] = gWorld.FindEntityByName(\"BoatA2\");\n    @boatB[2] = gWorld.FindEntityByName(\"BoatB2\");\n    @tram[2] = gWorld.FindEntityByName(\"Tram2\");\n    @wave[2] = gWorld.FindEntityByName(\"Wave2\");\n    @plA[2] = gWorld.FindEntityByName(\"PlantA2\");\n    @plB[2] = gWorld.FindEntityByName(\"PlantB2\");\n    @roads[3] = gWorld.FindEntityByName(\"Road3\");\n    @walks[3] = gWorld.FindEntityByName(\"Walk3\");\n    @waters[3] = gWorld.FindEntityByName(\"Wat3\");\n    @vehA[3] = gWorld.FindEntityByName(\"VehA3\");\n    @vehB[3] = gWorld.FindEntityByName(\"VehB3\");\n    @vehC[3] = gWorld.FindEntityByName(\"VehC3\");\n    @bikeA[3] = gWorld.FindEntityByName(\"BikeA3\");\n    @bikeB[3] = gWorld.FindEntityByName(\"BikeB3\");\n    @boatA[3] = gWorld.FindEntityByName(\"BoatA3\");\n    @boatB[3] = gWorld.FindEntityByName(\"BoatB3\");\n    @tram[3] = gWorld.FindEntityByName(\"Tram3\");\n    @wave[3] = gWorld.FindEntityByName(\"Wave3\");\n    @plA[3] = gWorld.FindEntityByName(\"PlantA3\");\n    @plB[3] = gWorld.FindEntityByName(\"PlantB3\");\n    @roads[4] = gWorld.FindEntityByName(\"Road4\");\n    @walks[4] = gWorld.FindEntityByName(\"Walk4\");\n    @waters[4] = gWorld.FindEntityByName(\"Wat4\");\n    @vehA[4] = gWorld.FindEntityByName(\"VehA4\");\n    @vehB[4] = gWorld.FindEntityByName(\"VehB4\");\n    @vehC[4] = gWorld.FindEntityByName(\"VehC4\");\n    @bikeA[4] = gWorld.FindEntityByName(\"BikeA4\");\n    @bikeB[4] = gWorld.FindEntityByName(\"BikeB4\");\n    @boatA[4] = gWorld.FindEntityByName(\"BoatA4\");\n    @boatB[4] = gWorld.FindEntityByName(\"BoatB4\");\n    @tram[4] = gWorld.FindEntityByName(\"Tram4\");\n    @wave[4] = gWorld.FindEntityByName(\"Wave4\");\n    @plA[4] = gWorld.FindEntityByName(\"PlantA4\");\n    @plB[4] = gWorld.FindEntityByName(\"PlantB4\");\n    @roads[5] = gWorld.FindEntityByName(\"Road5\");\n    @walks[5] = gWorld.FindEntityByName(\"Walk5\");\n    @waters[5] = gWorld.FindEntityByName(\"Wat5\");\n    @vehA[5] = gWorld.FindEntityByName(\"VehA5\");\n    @vehB[5] = gWorld.FindEntityByName(\"VehB5\");\n    @vehC[5] = gWorld.FindEntityByName(\"VehC5\");\n    @bikeA[5] = gWorld.FindEntityByName(\"BikeA5\");\n    @bikeB[5] = gWorld.FindEntityByName(\"BikeB5\");\n    @boatA[5] = gWorld.FindEntityByName(\"BoatA5\");\n    @boatB[5] = gWorld.FindEntityByName(\"BoatB5\");\n    @tram[5] = gWorld.FindEntityByName(\"Tram5\");\n    @wave[5] = gWorld.FindEntityByName(\"Wave5\");\n    @plA[5] = gWorld.FindEntityByName(\"PlantA5\");\n    @plB[5] = gWorld.FindEntityByName(\"PlantB5\");\n    @roads[6] = gWorld.FindEntityByName(\"Road6\");\n    @walks[6] = gWorld.FindEntityByName(\"Walk6\");\n    @waters[6] = gWorld.FindEntityByName(\"Wat6\");\n    @vehA[6] = gWorld.FindEntityByName(\"VehA6\");\n    @vehB[6] = gWorld.FindEntityByName(\"VehB6\");\n    @vehC[6] = gWorld.FindEntityByName(\"VehC6\");\n    @bikeA[6] = gWorld.FindEntityByName(\"BikeA6\");\n    @bikeB[6] = gWorld.FindEntityByName(\"BikeB6\");\n    @boatA[6] = gWorld.FindEntityByName(\"BoatA6\");\n    @boatB[6] = gWorld.FindEntityByName(\"BoatB6\");\n    @tram[6] = gWorld.FindEntityByName(\"Tram6\");\n    @wave[6] = gWorld.FindEntityByName(\"Wave6\");\n    @plA[6] = gWorld.FindEntityByName(\"PlantA6\");\n    @plB[6] = gWorld.FindEntityByName(\"PlantB6\");\n    @roads[7] = gWorld.FindEntityByName(\"Road7\");\n    @walks[7] = gWorld.FindEntityByName(\"Walk7\");\n    @waters[7] = gWorld.FindEntityByName(\"Wat7\");\n    @vehA[7] = gWorld.FindEntityByName(\"VehA7\");\n    @vehB[7] = gWorld.FindEntityByName(\"VehB7\");\n    @vehC[7] = gWorld.FindEntityByName(\"VehC7\");\n    @bikeA[7] = gWorld.FindEntityByName(\"BikeA7\");\n    @bikeB[7] = gWorld.FindEntityByName(\"BikeB7\");\n    @boatA[7] = gWorld.FindEntityByName(\"BoatA7\");\n    @boatB[7] = gWorld.FindEntityByName(\"BoatB7\");\n    @tram[7] = gWorld.FindEntityByName(\"Tram7\");\n    @wave[7] = gWorld.FindEntityByName(\"Wave7\");\n    @plA[7] = gWorld.FindEntityByName(\"PlantA7\");\n    @plB[7] = gWorld.FindEntityByName(\"PlantB7\");\n    @roads[8] = gWorld.FindEntityByName(\"Road8\");\n    @walks[8] = gWorld.FindEntityByName(\"Walk8\");\n    @waters[8] = gWorld.FindEntityByName(\"Wat8\");\n    @vehA[8] = gWorld.FindEntityByName(\"VehA8\");\n    @vehB[8] = gWorld.FindEntityByName(\"VehB8\");\n    @vehC[8] = gWorld.FindEntityByName(\"VehC8\");\n    @bikeA[8] = gWorld.FindEntityByName(\"BikeA8\");\n    @bikeB[8] = gWorld.FindEntityByName(\"BikeB8\");\n    @boatA[8] = gWorld.FindEntityByName(\"BoatA8\");\n    @boatB[8] = gWorld.FindEntityByName(\"BoatB8\");\n    @tram[8] = gWorld.FindEntityByName(\"Tram8\");\n    @wave[8] = gWorld.FindEntityByName(\"Wave8\");\n    @plA[8] = gWorld.FindEntityByName(\"PlantA8\");\n    @plB[8] = gWorld.FindEntityByName(\"PlantB8\");\n    @roads[9] = gWorld.FindEntityByName(\"Road9\");\n    @walks[9] = gWorld.FindEntityByName(\"Walk9\");\n    @waters[9] = gWorld.FindEntityByName(\"Wat9\");\n    @vehA[9] = gWorld.FindEntityByName(\"VehA9\");\n    @vehB[9] = gWorld.FindEntityByName(\"VehB9\");\n    @vehC[9] = gWorld.FindEntityByName(\"VehC9\");\n    @bikeA[9] = gWorld.FindEntityByName(\"BikeA9\");\n    @bikeB[9] = gWorld.FindEntityByName(\"BikeB9\");\n    @boatA[9] = gWorld.FindEntityByName(\"BoatA9\");\n    @boatB[9] = gWorld.FindEntityByName(\"BoatB9\");\n    @tram[9] = gWorld.FindEntityByName(\"Tram9\");\n    @wave[9] = gWorld.FindEntityByName(\"Wave9\");\n    @plA[9] = gWorld.FindEntityByName(\"PlantA9\");\n    @plB[9] = gWorld.FindEntityByName(\"PlantB9\");\n    @roads[10] = gWorld.FindEntityByName(\"Road10\");\n    @walks[10] = gWorld.FindEntityByName(\"Walk10\");\n    @waters[10] = gWorld.FindEntityByName(\"Wat10\");\n    @vehA[10] = gWorld.FindEntityByName(\"VehA10\");\n    @vehB[10] = gWorld.FindEntityByName(\"VehB10\");\n    @vehC[10] = gWorld.FindEntityByName(\"VehC10\");\n    @bikeA[10] = gWorld.FindEntityByName(\"BikeA10\");\n    @bikeB[10] = gWorld.FindEntityByName(\"BikeB10\");\n    @boatA[10] = gWorld.FindEntityByName(\"BoatA10\");\n    @boatB[10] = gWorld.FindEntityByName(\"BoatB10\");\n    @tram[10] = gWorld.FindEntityByName(\"Tram10\");\n    @wave[10] = gWorld.FindEntityByName(\"Wave10\");\n    @plA[10] = gWorld.FindEntityByName(\"PlantA10\");\n    @plB[10] = gWorld.FindEntityByName(\"PlantB10\");\n    @roads[11] = gWorld.FindEntityByName(\"Road11\");\n    @walks[11] = gWorld.FindEntityByName(\"Walk11\");\n    @waters[11] = gWorld.FindEntityByName(\"Wat11\");\n    @vehA[11] = gWorld.FindEntityByName(\"VehA11\");\n    @vehB[11] = gWorld.FindEntityByName(\"VehB11\");\n    @vehC[11] = gWorld.FindEntityByName(\"VehC11\");\n    @bikeA[11] = gWorld.FindEntityByName(\"BikeA11\");\n    @bikeB[11] = gWorld.FindEntityByName(\"BikeB11\");\n    @boatA[11] = gWorld.FindEntityByName(\"BoatA11\");\n    @boatB[11] = gWorld.FindEntityByName(\"BoatB11\");\n    @tram[11] = gWorld.FindEntityByName(\"Tram11\");\n    @wave[11] = gWorld.FindEntityByName(\"Wave11\");\n    @plA[11] = gWorld.FindEntityByName(\"PlantA11\");\n    @plB[11] = gWorld.FindEntityByName(\"PlantB11\");\n    @roads[12] = gWorld.FindEntityByName(\"Road12\");\n    @walks[12] = gWorld.FindEntityByName(\"Walk12\");\n    @waters[12] = gWorld.FindEntityByName(\"Wat12\");\n    @vehA[12] = gWorld.FindEntityByName(\"VehA12\");\n    @vehB[12] = gWorld.FindEntityByName(\"VehB12\");\n    @vehC[12] = gWorld.FindEntityByName(\"VehC12\");\n    @bikeA[12] = gWorld.FindEntityByName(\"BikeA12\");\n    @bikeB[12] = gWorld.FindEntityByName(\"BikeB12\");\n    @boatA[12] = gWorld.FindEntityByName(\"BoatA12\");\n    @boatB[12] = gWorld.FindEntityByName(\"BoatB12\");\n    @tram[12] = gWorld.FindEntityByName(\"Tram12\");\n    @wave[12] = gWorld.FindEntityByName(\"Wave12\");\n    @plA[12] = gWorld.FindEntityByName(\"PlantA12\");\n    @plB[12] = gWorld.FindEntityByName(\"PlantB12\");\n    @roads[13] = gWorld.FindEntityByName(\"Road13\");\n    @walks[13] = gWorld.FindEntityByName(\"Walk13\");\n    @waters[13] = gWorld.FindEntityByName(\"Wat13\");\n    @vehA[13] = gWorld.FindEntityByName(\"VehA13\");\n    @vehB[13] = gWorld.FindEntityByName(\"VehB13\");\n    @vehC[13] = gWorld.FindEntityByName(\"VehC13\");\n    @bikeA[13] = gWorld.FindEntityByName(\"BikeA13\");\n    @bikeB[13] = gWorld.FindEntityByName(\"BikeB13\");\n    @boatA[13] = gWorld.FindEntityByName(\"BoatA13\");\n    @boatB[13] = gWorld.FindEntityByName(\"BoatB13\");\n    @tram[13] = gWorld.FindEntityByName(\"Tram13\");\n    @wave[13] = gWorld.FindEntityByName(\"Wave13\");\n    @plA[13] = gWorld.FindEntityByName(\"PlantA13\");\n    @plB[13] = gWorld.FindEntityByName(\"PlantB13\");\n    @player = gWorld.FindEntityByName(\"player\");\n    @cam = gWorld.FindEntityByName(\"GameCamera\");\n    @seabed = gWorld.FindEntityByName(\"Seabed\");\n    @fx = gWorld.FindEntityByName(\"DeathFX\");\n    @title = cast<SETextEntity>(gWorld.FindEntityByName(\"TitleText\"));\n    @scoreText = cast<SETextEntity>(gWorld.FindEntityByName(\"ScoreText\"));\n    @status = cast<SETextEntity>(gWorld.FindEntityByName(\"StatusText\"));\n    ResetRun();\n  }\n\n  float SpeedMul() {\n    float m = 1.0f + float(maxLane) * 0.012f;\n    if (m > 2.2f) m = 2.2f;\n    return m;\n  }\n\n  void Park(SESceneEntity@ e) {\n    if (e !is null) e.SetPosition(SEVec3(0, -100, 0));\n  }\n\n  void Activate(int mover, SESceneEntity@ e, float x, float z, float half, float speed) {\n    @mvEnt[mover] = e;\n    mvOn[mover] = 1;\n    mvSpeed[mover] = speed;\n    mvHalf[mover] = half;\n    if (e !is null) {\n      e.SetPosition(SEVec3(x, 0, z));\n      // models face +x; flip to travel direction ( static movers keep 0 )\n      e.SetRotation(SEVec3(0, 1, 0), (speed < 0.0f) ? 180.0f : 0.0f);\n    }\n  }\n\n  void AssignLane(int slot, int lane) {\n    laneOfSlot[slot] = lane;\n    float z = float(lane) * 2.0f;\n    int t;\n    if (lane < 3) t = 0;\n    else {\n      int r = Rand(10);\n      if (r < 2) t = 0;\n      else if (r < 5) t = 1;\n      else if (r < 7) t = 2;\n      else if (r == 7) t = 3;\n      else if (r == 8) t = 4;\n      else t = 5;\n    }\n    laneType[slot] = t;\n    plantColA[slot] = 99;\n    plantColB[slot] = 99;\n\n    // strips: show the one this type needs, park the others\n    bool bWater = (t == 4);\n    bool bWalkTop = (t == 0 || t == 5);\n    if (roads[slot] !is null) roads[slot].SetPosition(SEVec3(0, (!bWater && !bWalkTop) ? 0.0f : -100.0f, z));\n    if (walks[slot] !is null) walks[slot].SetPosition(SEVec3(0, bWalkTop ? 0.0f : -100.0f, z));\n    if (waters[slot] !is null) waters[slot].SetPosition(SEVec3(0, bWater ? -0.12f : -100.0f, z));\n\n    int m0 = slot * 3;\n    mvOn[m0] = 0; mvOn[m0 + 1] = 0; mvOn[m0 + 2] = 0;\n    @mvEnt[m0] = null; @mvEnt[m0 + 1] = null; @mvEnt[m0 + 2] = null;\n    Park(vehA[slot]);\n    Park(vehB[slot]);\n    Park(vehC[slot]);\n    Park(bikeA[slot]);\n    Park(bikeB[slot]);\n    Park(boatA[slot]);\n    Park(boatB[slot]);\n    Park(tram[slot]);\n    Park(wave[slot]);\n    Park(plA[slot]);\n    Park(plB[slot]);\n    float dir = (Rand(2) == 0) ? 1.0f : -1.0f;\n\n    if (t == 0 && lane >= 3) {\n      // sidewalk planters: static, block movement ( grid step 2 )\n      if (Rand(3) > 0) {\n        int colA = Rand(7) - 3;\n        plantColA[slot] = colA;\n        if (plA[slot] !is null) plA[slot].SetPosition(SEVec3(float(colA) * 2.0f, 0, z));\n        if (Rand(2) == 0) {\n          int colB = Rand(7) - 3;\n          if (colB != colA) {\n            plantColB[slot] = colB;\n            if (plB[slot] !is null) plB[slot].SetPosition(SEVec3(float(colB) * 2.0f, 0, z));\n          }\n        }\n      }\n    } else if (t == 1) {\n      // slow traffic: tuktuk + microbus ( + second tuktuk late in the run )\n      float sp = (2.2f + float(Rand(100)) * 0.012f) * dir;\n      Activate(m0, vehA[slot], -8.0f, z, 0.95f, sp);\n      Activate(m0 + 1, vehB[slot], 1.0f, z, 1.5f, sp);\n      if (lane > 25) Activate(m0 + 2, vehC[slot], 9.0f, z, 0.95f, sp);\n    } else if (t == 2) {\n      // fast buggies, staggered\n      float sp = (5.0f + float(Rand(100)) * 0.02f) * dir;\n      Activate(m0, bikeA[slot], -9.0f, z, 1.05f, sp);\n      Activate(m0 + 1, bikeB[slot], 2.0f, z, 1.05f, sp);\n    } else if (t == 3) {\n      // the Raml tram: long and very fast\n      float sp = (8.0f + float(Rand(100)) * 0.02f) * dir;\n      Activate(m0, tram[slot], -11.0f * dir, z, 3.6f, sp);\n    } else if (t == 4) {\n      // feluccas to ride across the water\n      float sp = (1.6f + float(Rand(100)) * 0.008f) * dir;\n      Activate(m0, boatA[slot], -6.0f, z, 1.5f, sp);\n      Activate(m0 + 1, boatB[slot], 4.0f, z, 1.5f, sp);\n    } else {\n      // shore: a sweeping wave over wet sand\n      float sp = (6.0f + float(Rand(100)) * 0.02f) * dir;\n      Activate(m0, wave[slot], -12.0f * dir, z, 1.9f, sp);\n    }\n  }\n\n  void ResetRun() {\n    playerLane = 0;\n    maxLane = 0;\n    px = 0.0f;\n    pz = 0.0f;\n    hopping = false;\n    rideIdx = -1;\n    deadTimer = 0.0f;\n    camZ = -2.0f;\n    seed = seed * 48271 + 7919;\n    for (int s = 0; s < 14; s++) AssignLane(s, s);\n    if (player !is null) {\n      player.SetScale(SEVec3(1, 1, 1));\n      player.SetRotation(SEVec3(0, 1, 0), 0.0f);\n      player.SetPosition(SEVec3(0, 0, 0));\n    }\n    if (fx !is null) fx.SetPosition(SEVec3(0, -100, 0));\n    UpdateHud();\n  }\n\n  void Die(const string &in why) {\n    Fx(fxBoom,37,0.95f);\n    deadTimer = 1.4f;\n    rideIdx = -1;\n    hopping = false;\n    if (best < maxLane) best = maxLane;\n    if (status !is null) status.m_Text = why + \"\\nSCORE \" + maxLane;\n    statusTimer = 1.4f;\n    if (player !is null) player.SetScale(SEVec3(1.2f, 0.25f, 1.2f));\n    if (fx !is null) fx.SetPosition(SEVec3(px, 0.6f, pz));\n  }\n\n  void UpdateHud() {\n    if (scoreText !is null) scoreText.m_Text = \"SCORE \" + maxLane + \"   BEST \" + best;\n  }\n\n  bool Blocked(int lane, float x) {\n    int slot = lane % 14;\n    if (laneOfSlot[slot] != lane) return false;\n    if (laneType[slot] != 0) return false;\n    int col = int((x + (x < 0.0f ? -1.0f : 1.0f)) / 2.0f);\n    return (col == plantColA[slot] || col == plantColB[slot]);\n  }\n\n  void TryHop(float dx, int dLane, float faceYaw) {\n    int toLane = playerLane + dLane;\n    if (toLane < 0) return;\n    if (toLane < maxLane - 3) return; // the run only moves forward\n    float toX = px + dx;\n    if (dx != 0.0f) toX = float(int((px + (px < 0.0f ? -1.0f : 1.0f)) / 2.0f)) * 2.0f + dx;\n    if (toX > 7.9f || toX < -7.9f) return;\n    if (Blocked(toLane, toX)) return;\n    Fx(fxBeep,74,0.45f);\n    hopping = true;\n    hopT = 0.0f;\n    hopFromX = px;\n    hopFromZ = pz;\n    hopToX = toX;\n    hopToZ = float(toLane) * 2.0f;\n    hopToLane = toLane;\n    rideIdx = -1;\n    if (player !is null) player.SetRotation(SEVec3(0, 1, 0), faceYaw);\n  }\n\n  void Land() {\n    Fx(fxThud,55,0.40f);\n    playerLane = hopToLane;\n    px = hopToX;\n    pz = hopToZ;\n    if (playerLane > maxLane) { maxLane = playerLane; UpdateHud(); }\n    int slot = playerLane % 14;\n    int t = laneType[slot];\n    if (t == 4) {\n      // must land on a felucca\n      int m0 = slot * 3;\n      int found = -1;\n      for (int i = m0; i < m0 + 2; i++) {\n        if (mvOn[i] == 0 || mvEnt[i] is null) continue;\n        SEVec3 bp = mvEnt[i].GetPosition();\n        if (px > bp.x - mvHalf[i] - 0.35f && px < bp.x + mvHalf[i] + 0.35f) { found = i; break; }\n      }\n      if (found < 0) { Die(\"GLUB GLUB... the harbour got you\"); return; }\n      rideIdx = found;\n      rideOffset = px - mvEnt[found].GetPosition().x;\n    }\n  }\n\n  void OnUpdate(float dt) {\n    if (statusTimer > 0.0f) {\n      statusTimer -= dt;\n      if (statusTimer <= 0.0f && status !is null) status.m_Text = \"\";\n    }\n    if (deadTimer > 0.0f) {\n      deadTimer -= dt;\n      if (deadTimer <= 0.0f) ResetRun();\n      MoveHazards(dt);\n      UpdateCameraAndHud(dt);\n      return;\n    }\n\n    // edge-latched input ( matches the original Johnny mapping: right = +x )\n    bool l = gInput.IsLeftDown();\n    bool r = gInput.IsRightDown();\n    bool u = gInput.IsUpDown();\n    bool d = gInput.IsDownDown();\n    if (!hopping) {\n      if (u && !prevU) TryHop(0.0f, 1, 0.0f);\n      else if (d && !prevD) TryHop(0.0f, -1, 180.0f);\n      else if (l && !prevL) TryHop(-2.0f, 0, -90.0f);\n      else if (r && !prevR) TryHop(2.0f, 0, 90.0f);\n    }\n    prevL = l; prevR = r; prevU = u; prevD = d;\n\n    if (hopping) {\n      hopT += dt * 6.5f;\n      if (hopT >= 1.0f) {\n        hopping = false;\n        player.SetPosition(SEVec3(hopToX, 0, hopToZ));\n        Land();\n      } else {\n        float x = hopFromX + (hopToX - hopFromX) * hopT;\n        float z = hopFromZ + (hopToZ - hopFromZ) * hopT;\n        float y = 1.6f * hopT * (1.0f - hopT);\n        player.SetPosition(SEVec3(x, y, z));\n        px = x; pz = z;\n      }\n    }\n\n    MoveHazards(dt);\n\n    // riding a felucca\n    if (rideIdx >= 0 && !hopping) {\n      SEVec3 bp = mvEnt[rideIdx].GetPosition();\n      px = bp.x + rideOffset;\n      player.SetPosition(SEVec3(px, 0.35f, pz));\n      if (px > 8.5f || px < -8.5f) { Die(\"Swept out to sea!\"); return; }\n    }\n\n    // collisions on the player's lane\n    if (!hopping && deadTimer <= 0.0f) {\n      int slot = playerLane % 14;\n      int t = laneType[slot];\n      if ((t == 1 || t == 2 || t == 3 || t == 5) && laneOfSlot[slot] == playerLane) {\n        int m0 = slot * 3;\n        for (int i = m0; i < m0 + 3; i++) {\n          if (mvOn[i] == 0 || mvEnt[i] is null) continue;\n          SEVec3 hp = mvEnt[i].GetPosition();\n          if (px > hp.x - mvHalf[i] - 0.45f && px < hp.x + mvHalf[i] + 0.45f) {\n            if (t == 3) Die(\"CLANG! The Raml tram!\");\n            else if (t == 5) Die(\"SPLOOSH! Wave got you!\");\n            else Die(\"SPLAT! Mazarita traffic!\");\n            return;\n          }\n        }\n      }\n    }\n\n    // recycle lanes that fell behind the run\n    for (int s = 0; s < 14; s++) {\n      if (laneOfSlot[s] < maxLane - 4) AssignLane(s, laneOfSlot[s] + 14);\n    }\n\n    UpdateCameraAndHud(dt);\n  }\n\n  void MoveHazards(float dt) {\n    float mul = SpeedMul();\n    for (int n = 0; n < 42; n++) {\n      if (mvOn[n] == 0 || mvEnt[n] is null || mvSpeed[n] == 0.0f) continue;\n      SEVec3 p = mvEnt[n].GetPosition();\n      p.x += mvSpeed[n] * mul * dt;\n      float half = mvHalf[n];\n      if (p.x > 11.5f + half) p.x = -11.5f - half;\n      if (p.x < -11.5f - half) p.x = 11.5f + half;\n      mvEnt[n].SetPosition(p);\n    }\n  }\n\n  void UpdateCameraAndHud(float dt) {\n    float target = pz;\n    camZ += (target - camZ) * (dt * 5.0f);\n    if (cam !is null) cam.SetPosition(SEVec3(0, 8.5f, camZ - 11.0f));\n    if (seabed !is null) seabed.SetPosition(SEVec3(0, -0.55f, camZ + 20.0f));\n    if (title !is null) title.SetPosition(SEVec3(0, 7.2f, camZ + 9.0f));\n    if (scoreText !is null) scoreText.SetPosition(SEVec3(0, 6.2f, camZ + 8.0f));\n    if (status !is null) status.SetPosition(SEVec3(0, 4.2f, camZ + 4.0f));\n  }\n}\n",
        "m_bScriptEnabled": "True",
        "m_fFovAngle": "1.066680",
        "m_fNearClip": "0.100000",
        "m_fFarClip": "260.000000"
      }
    },
    {
      "type": "SESkyBoxEntity",
      "name": "Sky",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,0.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "False",
        "m_strEntityName": "Sky",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_SkyTextureName": "textures/sky/skybox_puresky.dds",
        "m_bProceduralSky": "True",
        "m_SunColor": "{ 1.000000 , 0.920000 , 0.760000 }",
        "m_SunAngles": "{ 130.000000 , 50.000000 }",
        "m_SunShininessStrength": "{ 256.000000 , 8.000000 }"
      }
    },
    {
      "type": "SELightEntity",
      "name": "Sun",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,0.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "False",
        "m_strEntityName": "Sun",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_LightType": "Directional",
        "m_Color": "{ 1.000000 , 0.930000 , 0.800000 }",
        "m_Intensity": "0.850000",
        "m_AnglesDegrees": "{ -130.000000 , -50.000000 }",
        "m_Radius": "20.000000",
        "m_InnerAngleDegrees": "0.000000",
        "m_OuterAngleDegrees": "45.000000",
        "m_bCastsShadow": "True"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "Seabed",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-0.550000,20.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "Seabed",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 80.000000 , 0.400000 , 120.000000 }",
              "m_Offset": "{ 0.000000 , 0.000000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.070000 , 0.200000 , 0.300000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.050000",
        "m_Roughness": "0.900000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "player",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,0.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "player",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.260000 , 0.550000 , 0.300000 }",
              "m_Offset": "{ -0.160000 , 0.280000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.200000 , 0.280000 , 0.520000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.260000 , 0.550000 , 0.300000 }",
              "m_Offset": "{ 0.160000 , 0.280000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.200000 , 0.280000 , 0.520000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.700000 , 0.700000 , 0.400000 }",
              "m_Offset": "{ 0.000000 , 0.950000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.950000 , 0.350000 , 0.550000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.160000 , 0.160000 , 0.420000 }",
              "m_Offset": "{ -0.180000 , 1.050000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.150000 , 0.700000 , 0.600000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.160000 , 0.160000 , 0.420000 }",
              "m_Offset": "{ 0.200000 , 0.850000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.150000 , 0.700000 , 0.600000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.180000 , 0.600000 , 0.180000 }",
              "m_Offset": "{ -0.500000 , 0.950000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 0.000000 , 1.000000 }",
              "m_RotationDegrees": "-20.000000",
              "m_Color": "{ 0.950000 , 0.350000 , 0.550000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.180000 , 0.600000 , 0.180000 }",
              "m_Offset": "{ 0.500000 , 0.950000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 0.000000 , 1.000000 }",
              "m_RotationDegrees": "20.000000",
              "m_Color": "{ 0.950000 , 0.350000 , 0.550000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.440000 , 0.440000 , 0.440000 }",
              "m_Offset": "{ 0.000000 , 1.550000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.900000 , 0.720000 , 0.550000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.480000 , 0.260000 , 0.480000 }",
              "m_Offset": "{ 0.000000 , 1.770000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.930000 , 0.780000 , 0.280000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.420000 , 0.140000 , 0.140000 }",
              "m_Offset": "{ 0.000000 , 1.700000 , 0.190000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.930000 , 0.780000 , 0.280000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.080000 , 0.060000 , 0.060000 }",
              "m_Offset": "{ -0.110000 , 1.580000 , 0.200000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.080000 , 0.060000 , 0.060000 }",
              "m_Offset": "{ 0.110000 , 1.580000 , 0.200000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.000000",
        "m_Roughness": "0.750000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "Road0",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "Road0",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 23.000000 , 0.300000 , 2.000000 }",
              "m_Offset": "{ 0.000000 , -0.150000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.160000 , 0.170000 , 0.200000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.050000",
        "m_Roughness": "0.850000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "Walk0",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "Walk0",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 23.000000 , 0.300000 , 2.000000 }",
              "m_Offset": "{ 0.000000 , -0.150000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.720000 , 0.660000 , 0.530000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.050000",
        "m_Roughness": "0.900000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "Wat0",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "Wat0",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 23.000000 , 0.250000 , 2.000000 }",
              "m_Offset": "{ 0.000000 , -0.125000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.360000 , 0.550000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.050000",
        "m_Roughness": "0.250000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "Road1",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,2.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "Road1",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 23.000000 , 0.300000 , 2.000000 }",
              "m_Offset": "{ 0.000000 , -0.150000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.160000 , 0.170000 , 0.200000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.050000",
        "m_Roughness": "0.850000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "Walk1",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,2.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "Walk1",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 23.000000 , 0.300000 , 2.000000 }",
              "m_Offset": "{ 0.000000 , -0.150000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.720000 , 0.660000 , 0.530000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.050000",
        "m_Roughness": "0.900000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "Wat1",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,2.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "Wat1",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 23.000000 , 0.250000 , 2.000000 }",
              "m_Offset": "{ 0.000000 , -0.125000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.360000 , 0.550000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.050000",
        "m_Roughness": "0.250000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "Road2",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,4.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "Road2",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 23.000000 , 0.300000 , 2.000000 }",
              "m_Offset": "{ 0.000000 , -0.150000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.160000 , 0.170000 , 0.200000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.050000",
        "m_Roughness": "0.850000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "Walk2",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,4.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "Walk2",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 23.000000 , 0.300000 , 2.000000 }",
              "m_Offset": "{ 0.000000 , -0.150000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.720000 , 0.660000 , 0.530000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.050000",
        "m_Roughness": "0.900000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "Wat2",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,4.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "Wat2",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 23.000000 , 0.250000 , 2.000000 }",
              "m_Offset": "{ 0.000000 , -0.125000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.360000 , 0.550000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.050000",
        "m_Roughness": "0.250000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "Road3",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,6.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "Road3",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 23.000000 , 0.300000 , 2.000000 }",
              "m_Offset": "{ 0.000000 , -0.150000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.160000 , 0.170000 , 0.200000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.050000",
        "m_Roughness": "0.850000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "Walk3",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,6.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "Walk3",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 23.000000 , 0.300000 , 2.000000 }",
              "m_Offset": "{ 0.000000 , -0.150000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.720000 , 0.660000 , 0.530000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.050000",
        "m_Roughness": "0.900000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "Wat3",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,6.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "Wat3",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 23.000000 , 0.250000 , 2.000000 }",
              "m_Offset": "{ 0.000000 , -0.125000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.360000 , 0.550000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.050000",
        "m_Roughness": "0.250000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "Road4",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,8.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "Road4",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 23.000000 , 0.300000 , 2.000000 }",
              "m_Offset": "{ 0.000000 , -0.150000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.160000 , 0.170000 , 0.200000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.050000",
        "m_Roughness": "0.850000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "Walk4",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,8.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "Walk4",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 23.000000 , 0.300000 , 2.000000 }",
              "m_Offset": "{ 0.000000 , -0.150000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.720000 , 0.660000 , 0.530000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.050000",
        "m_Roughness": "0.900000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "Wat4",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,8.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "Wat4",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 23.000000 , 0.250000 , 2.000000 }",
              "m_Offset": "{ 0.000000 , -0.125000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.360000 , 0.550000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.050000",
        "m_Roughness": "0.250000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "Road5",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,10.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "Road5",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 23.000000 , 0.300000 , 2.000000 }",
              "m_Offset": "{ 0.000000 , -0.150000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.160000 , 0.170000 , 0.200000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.050000",
        "m_Roughness": "0.850000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "Walk5",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,10.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "Walk5",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 23.000000 , 0.300000 , 2.000000 }",
              "m_Offset": "{ 0.000000 , -0.150000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.720000 , 0.660000 , 0.530000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.050000",
        "m_Roughness": "0.900000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "Wat5",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,10.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "Wat5",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 23.000000 , 0.250000 , 2.000000 }",
              "m_Offset": "{ 0.000000 , -0.125000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.360000 , 0.550000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.050000",
        "m_Roughness": "0.250000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "Road6",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,12.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "Road6",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 23.000000 , 0.300000 , 2.000000 }",
              "m_Offset": "{ 0.000000 , -0.150000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.160000 , 0.170000 , 0.200000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.050000",
        "m_Roughness": "0.850000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "Walk6",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,12.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "Walk6",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 23.000000 , 0.300000 , 2.000000 }",
              "m_Offset": "{ 0.000000 , -0.150000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.720000 , 0.660000 , 0.530000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.050000",
        "m_Roughness": "0.900000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "Wat6",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,12.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "Wat6",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 23.000000 , 0.250000 , 2.000000 }",
              "m_Offset": "{ 0.000000 , -0.125000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.360000 , 0.550000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.050000",
        "m_Roughness": "0.250000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "Road7",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,14.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "Road7",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 23.000000 , 0.300000 , 2.000000 }",
              "m_Offset": "{ 0.000000 , -0.150000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.160000 , 0.170000 , 0.200000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.050000",
        "m_Roughness": "0.850000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "Walk7",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,14.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "Walk7",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 23.000000 , 0.300000 , 2.000000 }",
              "m_Offset": "{ 0.000000 , -0.150000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.720000 , 0.660000 , 0.530000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.050000",
        "m_Roughness": "0.900000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "Wat7",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,14.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "Wat7",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 23.000000 , 0.250000 , 2.000000 }",
              "m_Offset": "{ 0.000000 , -0.125000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.360000 , 0.550000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.050000",
        "m_Roughness": "0.250000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "Road8",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,16.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "Road8",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 23.000000 , 0.300000 , 2.000000 }",
              "m_Offset": "{ 0.000000 , -0.150000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.160000 , 0.170000 , 0.200000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.050000",
        "m_Roughness": "0.850000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "Walk8",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,16.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "Walk8",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 23.000000 , 0.300000 , 2.000000 }",
              "m_Offset": "{ 0.000000 , -0.150000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.720000 , 0.660000 , 0.530000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.050000",
        "m_Roughness": "0.900000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "Wat8",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,16.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "Wat8",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 23.000000 , 0.250000 , 2.000000 }",
              "m_Offset": "{ 0.000000 , -0.125000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.360000 , 0.550000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.050000",
        "m_Roughness": "0.250000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "Road9",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,18.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "Road9",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 23.000000 , 0.300000 , 2.000000 }",
              "m_Offset": "{ 0.000000 , -0.150000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.160000 , 0.170000 , 0.200000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.050000",
        "m_Roughness": "0.850000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "Walk9",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,18.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "Walk9",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 23.000000 , 0.300000 , 2.000000 }",
              "m_Offset": "{ 0.000000 , -0.150000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.720000 , 0.660000 , 0.530000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.050000",
        "m_Roughness": "0.900000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "Wat9",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,18.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "Wat9",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 23.000000 , 0.250000 , 2.000000 }",
              "m_Offset": "{ 0.000000 , -0.125000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.360000 , 0.550000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.050000",
        "m_Roughness": "0.250000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "Road10",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,20.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "Road10",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 23.000000 , 0.300000 , 2.000000 }",
              "m_Offset": "{ 0.000000 , -0.150000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.160000 , 0.170000 , 0.200000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.050000",
        "m_Roughness": "0.850000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "Walk10",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,20.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "Walk10",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 23.000000 , 0.300000 , 2.000000 }",
              "m_Offset": "{ 0.000000 , -0.150000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.720000 , 0.660000 , 0.530000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.050000",
        "m_Roughness": "0.900000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "Wat10",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,20.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "Wat10",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 23.000000 , 0.250000 , 2.000000 }",
              "m_Offset": "{ 0.000000 , -0.125000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.360000 , 0.550000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.050000",
        "m_Roughness": "0.250000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "Road11",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,22.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "Road11",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 23.000000 , 0.300000 , 2.000000 }",
              "m_Offset": "{ 0.000000 , -0.150000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.160000 , 0.170000 , 0.200000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.050000",
        "m_Roughness": "0.850000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "Walk11",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,22.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "Walk11",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 23.000000 , 0.300000 , 2.000000 }",
              "m_Offset": "{ 0.000000 , -0.150000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.720000 , 0.660000 , 0.530000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.050000",
        "m_Roughness": "0.900000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "Wat11",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,22.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "Wat11",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 23.000000 , 0.250000 , 2.000000 }",
              "m_Offset": "{ 0.000000 , -0.125000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.360000 , 0.550000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.050000",
        "m_Roughness": "0.250000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "Road12",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,24.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "Road12",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 23.000000 , 0.300000 , 2.000000 }",
              "m_Offset": "{ 0.000000 , -0.150000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.160000 , 0.170000 , 0.200000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.050000",
        "m_Roughness": "0.850000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "Walk12",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,24.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "Walk12",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 23.000000 , 0.300000 , 2.000000 }",
              "m_Offset": "{ 0.000000 , -0.150000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.720000 , 0.660000 , 0.530000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.050000",
        "m_Roughness": "0.900000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "Wat12",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,24.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "Wat12",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 23.000000 , 0.250000 , 2.000000 }",
              "m_Offset": "{ 0.000000 , -0.125000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.360000 , 0.550000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.050000",
        "m_Roughness": "0.250000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "Road13",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,26.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "Road13",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 23.000000 , 0.300000 , 2.000000 }",
              "m_Offset": "{ 0.000000 , -0.150000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.160000 , 0.170000 , 0.200000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.050000",
        "m_Roughness": "0.850000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "Walk13",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,26.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "Walk13",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 23.000000 , 0.300000 , 2.000000 }",
              "m_Offset": "{ 0.000000 , -0.150000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.720000 , 0.660000 , 0.530000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.050000",
        "m_Roughness": "0.900000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "Wat13",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,26.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "Wat13",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 23.000000 , 0.250000 , 2.000000 }",
              "m_Offset": "{ 0.000000 , -0.125000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.360000 , 0.550000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.050000",
        "m_Roughness": "0.250000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "VehA0",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "VehA0",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 1.700000 , 0.450000 , 1.000000 }",
              "m_Offset": "{ 0.000000 , 0.500000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.120000 , 0.120000 , 0.140000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 1.300000 , 0.700000 , 1.000000 }",
              "m_Offset": "{ -0.100000 , 1.100000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.950000 , 0.750000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.100000 , 0.500000 , 0.800000 }",
              "m_Offset": "{ 0.780000 , 1.000000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.300000 , 0.450000 , 0.500000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.400000 , 0.160000 , 0.400000 }",
              "m_Offset": "{ 0.700000 , 0.200000 , 0.000000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.400000 , 0.160000 , 0.400000 }",
              "m_Offset": "{ -0.550000 , 0.200000 , 0.420000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.400000 , 0.160000 , 0.400000 }",
              "m_Offset": "{ -0.550000 , 0.200000 , -0.420000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.100000",
        "m_Roughness": "0.600000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "VehB0",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "VehB0",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.800000 , 1.100000 , 1.200000 }",
              "m_Offset": "{ 0.000000 , 0.950000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.920000 , 0.920000 , 0.900000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.820000 , 0.180000 , 1.220000 }",
              "m_Offset": "{ 0.000000 , 0.750000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.300000 , 0.700000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.400000 , 0.350000 , 1.240000 }",
              "m_Offset": "{ 0.100000 , 1.350000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.150000 , 0.200000 , 0.250000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.450000 , 0.180000 , 0.450000 }",
              "m_Offset": "{ 0.950000 , 0.250000 , 0.520000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.450000 , 0.180000 , 0.450000 }",
              "m_Offset": "{ 0.950000 , 0.250000 , -0.520000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.450000 , 0.180000 , 0.450000 }",
              "m_Offset": "{ -0.950000 , 0.250000 , 0.520000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.450000 , 0.180000 , 0.450000 }",
              "m_Offset": "{ -0.950000 , 0.250000 , -0.520000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.200000",
        "m_Roughness": "0.500000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "VehC0",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "VehC0",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 1.700000 , 0.450000 , 1.000000 }",
              "m_Offset": "{ 0.000000 , 0.500000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.120000 , 0.120000 , 0.140000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 1.300000 , 0.700000 , 1.000000 }",
              "m_Offset": "{ -0.100000 , 1.100000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.750000 , 0.300000 , 0.550000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.100000 , 0.500000 , 0.800000 }",
              "m_Offset": "{ 0.780000 , 1.000000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.300000 , 0.450000 , 0.500000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.400000 , 0.160000 , 0.400000 }",
              "m_Offset": "{ 0.700000 , 0.200000 , 0.000000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.400000 , 0.160000 , 0.400000 }",
              "m_Offset": "{ -0.550000 , 0.200000 , 0.420000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.400000 , 0.160000 , 0.400000 }",
              "m_Offset": "{ -0.550000 , 0.200000 , -0.420000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.100000",
        "m_Roughness": "0.600000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "BikeA0",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "BikeA0",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 1.900000 , 0.300000 , 1.100000 }",
              "m_Offset": "{ 0.000000 , 0.400000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.800000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.600000 , 0.300000 , 1.000000 }",
              "m_Offset": "{ 0.620000 , 0.620000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.800000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.500000 , 0.550000 , 1.000000 }",
              "m_Offset": "{ -0.550000 , 0.820000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.800000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.080000 , 0.750000 , 0.080000 }",
              "m_Offset": "{ -0.200000 , 1.050000 , 0.450000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.080000 , 0.750000 , 0.080000 }",
              "m_Offset": "{ -0.200000 , 1.050000 , -0.450000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.080000 , 0.080000 , 1.000000 }",
              "m_Offset": "{ -0.200000 , 1.450000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ 0.680000 , 0.280000 , 0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ 0.680000 , 0.280000 , -0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ -0.680000 , 0.280000 , 0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ -0.680000 , 0.280000 , -0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.400000 , 0.450000 , 0.350000 }",
              "m_Offset": "{ -0.450000 , 0.950000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.750000 , 0.080000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.320000 , 0.320000 , 0.320000 }",
              "m_Offset": "{ -0.450000 , 1.320000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.820000 , 0.600000 , 0.420000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.340000 , 0.160000 , 0.340000 }",
              "m_Offset": "{ -0.450000 , 1.470000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.080000 , 0.080000 , 0.080000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.300000",
        "m_Roughness": "0.400000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "BikeB0",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "BikeB0",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 1.900000 , 0.300000 , 1.100000 }",
              "m_Offset": "{ 0.000000 , 0.400000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.150000 , 0.350000 , 0.650000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.600000 , 0.300000 , 1.000000 }",
              "m_Offset": "{ 0.620000 , 0.620000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.150000 , 0.350000 , 0.650000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.500000 , 0.550000 , 1.000000 }",
              "m_Offset": "{ -0.550000 , 0.820000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.150000 , 0.350000 , 0.650000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.080000 , 0.750000 , 0.080000 }",
              "m_Offset": "{ -0.200000 , 1.050000 , 0.450000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.080000 , 0.750000 , 0.080000 }",
              "m_Offset": "{ -0.200000 , 1.050000 , -0.450000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.080000 , 0.080000 , 1.000000 }",
              "m_Offset": "{ -0.200000 , 1.450000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ 0.680000 , 0.280000 , 0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ 0.680000 , 0.280000 , -0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ -0.680000 , 0.280000 , 0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ -0.680000 , 0.280000 , -0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.400000 , 0.450000 , 0.350000 }",
              "m_Offset": "{ -0.450000 , 0.950000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.750000 , 0.080000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.320000 , 0.320000 , 0.320000 }",
              "m_Offset": "{ -0.450000 , 1.320000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.820000 , 0.600000 , 0.420000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.340000 , 0.160000 , 0.340000 }",
              "m_Offset": "{ -0.450000 , 1.470000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.080000 , 0.080000 , 0.080000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.300000",
        "m_Roughness": "0.400000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "BoatA0",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "BoatA0",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.600000 , 0.350000 , 1.200000 }",
              "m_Offset": "{ 0.000000 , 0.060000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.500000 , 0.330000 , 0.180000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.600000 , 0.320000 , 0.600000 }",
              "m_Offset": "{ 1.350000 , 0.060000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "45.000000",
              "m_Color": "{ 0.500000 , 0.330000 , 0.180000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.600000 , 0.320000 , 0.600000 }",
              "m_Offset": "{ -1.350000 , 0.060000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "45.000000",
              "m_Color": "{ 0.500000 , 0.330000 , 0.180000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.400000 , 0.060000 , 1.000000 }",
              "m_Offset": "{ 0.000000 , 0.260000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.620000 , 0.450000 , 0.280000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.080000 , 1.900000 , 0.080000 }",
              "m_Offset": "{ 0.300000 , 1.200000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.350000 , 0.240000 , 0.140000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cone",
              "m_Size": "{ 0.140000 , 1.600000 , 1.100000 }",
              "m_Offset": "{ -0.350000 , 1.100000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.950000 , 0.940000 , 0.880000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.000000",
        "m_Roughness": "0.700000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "BoatB0",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "BoatB0",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.600000 , 0.350000 , 1.200000 }",
              "m_Offset": "{ 0.000000 , 0.060000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.500000 , 0.330000 , 0.180000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.600000 , 0.320000 , 0.600000 }",
              "m_Offset": "{ 1.350000 , 0.060000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "45.000000",
              "m_Color": "{ 0.500000 , 0.330000 , 0.180000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.600000 , 0.320000 , 0.600000 }",
              "m_Offset": "{ -1.350000 , 0.060000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "45.000000",
              "m_Color": "{ 0.500000 , 0.330000 , 0.180000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.400000 , 0.060000 , 1.000000 }",
              "m_Offset": "{ 0.000000 , 0.260000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.620000 , 0.450000 , 0.280000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.080000 , 1.900000 , 0.080000 }",
              "m_Offset": "{ 0.300000 , 1.200000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.350000 , 0.240000 , 0.140000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cone",
              "m_Size": "{ 0.140000 , 1.600000 , 1.100000 }",
              "m_Offset": "{ -0.350000 , 1.100000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.950000 , 0.940000 , 0.880000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.000000",
        "m_Roughness": "0.700000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "Tram0",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "Tram0",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 7.000000 , 1.500000 , 1.300000 }",
              "m_Offset": "{ 0.000000 , 1.050000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.950000 , 0.780000 , 0.120000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 7.020000 , 0.500000 , 1.320000 }",
              "m_Offset": "{ 0.000000 , 0.450000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.120000 , 0.300000 , 0.600000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 6.400000 , 0.550000 , 1.340000 }",
              "m_Offset": "{ 0.000000 , 1.500000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.150000 , 0.200000 , 0.250000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 7.000000 , 0.150000 , 1.200000 }",
              "m_Offset": "{ 0.000000 , 1.900000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.820000 , 0.820000 , 0.780000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.100000 , 0.100000 , 1.340000 }",
              "m_Offset": "{ 0.000000 , 1.050000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.120000 , 0.300000 , 0.600000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.060000 , 1.000000 , 0.060000 }",
              "m_Offset": "{ 0.000000 , 2.350000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 0.000000 , 1.000000 }",
              "m_RotationDegrees": "22.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.420000 , 0.200000 , 0.420000 }",
              "m_Offset": "{ 2.500000 , 0.220000 , 0.500000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.420000 , 0.200000 , 0.420000 }",
              "m_Offset": "{ 2.500000 , 0.220000 , -0.500000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.420000 , 0.200000 , 0.420000 }",
              "m_Offset": "{ -2.500000 , 0.220000 , 0.500000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.420000 , 0.200000 , 0.420000 }",
              "m_Offset": "{ -2.500000 , 0.220000 , -0.500000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.250000",
        "m_Roughness": "0.450000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "Wave0",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "Wave0",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 3.600000 , 0.500000 , 1.800000 }",
              "m_Offset": "{ 0.000000 , 0.250000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.160000 , 0.450000 , 0.650000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 3.600000 , 0.300000 , 1.100000 }",
              "m_Offset": "{ 0.000000 , 0.600000 , 0.250000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.850000 , 0.930000 , 0.970000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.550000 , 0.400000 , 0.550000 }",
              "m_Offset": "{ -1.200000 , 0.780000 , 0.200000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.950000 , 0.980000 , 1.000000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.600000 , 0.450000 , 0.600000 }",
              "m_Offset": "{ 0.100000 , 0.820000 , 0.200000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.950000 , 0.980000 , 1.000000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.500000 , 0.380000 , 0.500000 }",
              "m_Offset": "{ 1.300000 , 0.750000 , 0.200000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.950000 , 0.980000 , 1.000000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.000000",
        "m_Roughness": "0.300000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "PlantA0",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "PlantA0",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.620000 , 0.500000 , 0.620000 }",
              "m_Offset": "{ 0.000000 , 0.250000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.650000 , 0.400000 , 0.250000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.850000 , 0.700000 , 0.850000 }",
              "m_Offset": "{ 0.000000 , 0.800000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.200000 , 0.500000 , 0.220000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.000000",
        "m_Roughness": "0.850000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "PlantB0",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "PlantB0",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.620000 , 0.500000 , 0.620000 }",
              "m_Offset": "{ 0.000000 , 0.250000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.650000 , 0.400000 , 0.250000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.850000 , 0.700000 , 0.850000 }",
              "m_Offset": "{ 0.000000 , 0.800000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.200000 , 0.500000 , 0.220000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.000000",
        "m_Roughness": "0.850000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "VehA1",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "VehA1",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 1.700000 , 0.450000 , 1.000000 }",
              "m_Offset": "{ 0.000000 , 0.500000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.120000 , 0.120000 , 0.140000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 1.300000 , 0.700000 , 1.000000 }",
              "m_Offset": "{ -0.100000 , 1.100000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.200000 , 0.620000 , 0.400000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.100000 , 0.500000 , 0.800000 }",
              "m_Offset": "{ 0.780000 , 1.000000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.300000 , 0.450000 , 0.500000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.400000 , 0.160000 , 0.400000 }",
              "m_Offset": "{ 0.700000 , 0.200000 , 0.000000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.400000 , 0.160000 , 0.400000 }",
              "m_Offset": "{ -0.550000 , 0.200000 , 0.420000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.400000 , 0.160000 , 0.400000 }",
              "m_Offset": "{ -0.550000 , 0.200000 , -0.420000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.100000",
        "m_Roughness": "0.600000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "VehB1",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "VehB1",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.800000 , 1.100000 , 1.200000 }",
              "m_Offset": "{ 0.000000 , 0.950000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.920000 , 0.920000 , 0.900000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.820000 , 0.180000 , 1.220000 }",
              "m_Offset": "{ 0.000000 , 0.750000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.300000 , 0.700000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.400000 , 0.350000 , 1.240000 }",
              "m_Offset": "{ 0.100000 , 1.350000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.150000 , 0.200000 , 0.250000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.450000 , 0.180000 , 0.450000 }",
              "m_Offset": "{ 0.950000 , 0.250000 , 0.520000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.450000 , 0.180000 , 0.450000 }",
              "m_Offset": "{ 0.950000 , 0.250000 , -0.520000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.450000 , 0.180000 , 0.450000 }",
              "m_Offset": "{ -0.950000 , 0.250000 , 0.520000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.450000 , 0.180000 , 0.450000 }",
              "m_Offset": "{ -0.950000 , 0.250000 , -0.520000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.200000",
        "m_Roughness": "0.500000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "VehC1",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "VehC1",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 1.700000 , 0.450000 , 1.000000 }",
              "m_Offset": "{ 0.000000 , 0.500000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.120000 , 0.120000 , 0.140000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 1.300000 , 0.700000 , 1.000000 }",
              "m_Offset": "{ -0.100000 , 1.100000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.250000 , 0.500000 , 0.800000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.100000 , 0.500000 , 0.800000 }",
              "m_Offset": "{ 0.780000 , 1.000000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.300000 , 0.450000 , 0.500000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.400000 , 0.160000 , 0.400000 }",
              "m_Offset": "{ 0.700000 , 0.200000 , 0.000000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.400000 , 0.160000 , 0.400000 }",
              "m_Offset": "{ -0.550000 , 0.200000 , 0.420000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.400000 , 0.160000 , 0.400000 }",
              "m_Offset": "{ -0.550000 , 0.200000 , -0.420000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.100000",
        "m_Roughness": "0.600000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "BikeA1",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "BikeA1",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 1.900000 , 0.300000 , 1.100000 }",
              "m_Offset": "{ 0.000000 , 0.400000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.150000 , 0.350000 , 0.650000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.600000 , 0.300000 , 1.000000 }",
              "m_Offset": "{ 0.620000 , 0.620000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.150000 , 0.350000 , 0.650000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.500000 , 0.550000 , 1.000000 }",
              "m_Offset": "{ -0.550000 , 0.820000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.150000 , 0.350000 , 0.650000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.080000 , 0.750000 , 0.080000 }",
              "m_Offset": "{ -0.200000 , 1.050000 , 0.450000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.080000 , 0.750000 , 0.080000 }",
              "m_Offset": "{ -0.200000 , 1.050000 , -0.450000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.080000 , 0.080000 , 1.000000 }",
              "m_Offset": "{ -0.200000 , 1.450000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ 0.680000 , 0.280000 , 0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ 0.680000 , 0.280000 , -0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ -0.680000 , 0.280000 , 0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ -0.680000 , 0.280000 , -0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.400000 , 0.450000 , 0.350000 }",
              "m_Offset": "{ -0.450000 , 0.950000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.750000 , 0.080000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.320000 , 0.320000 , 0.320000 }",
              "m_Offset": "{ -0.450000 , 1.320000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.820000 , 0.600000 , 0.420000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.340000 , 0.160000 , 0.340000 }",
              "m_Offset": "{ -0.450000 , 1.470000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.080000 , 0.080000 , 0.080000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.300000",
        "m_Roughness": "0.400000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "BikeB1",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "BikeB1",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 1.900000 , 0.300000 , 1.100000 }",
              "m_Offset": "{ 0.000000 , 0.400000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.850000 , 0.500000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.600000 , 0.300000 , 1.000000 }",
              "m_Offset": "{ 0.620000 , 0.620000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.850000 , 0.500000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.500000 , 0.550000 , 1.000000 }",
              "m_Offset": "{ -0.550000 , 0.820000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.850000 , 0.500000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.080000 , 0.750000 , 0.080000 }",
              "m_Offset": "{ -0.200000 , 1.050000 , 0.450000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.080000 , 0.750000 , 0.080000 }",
              "m_Offset": "{ -0.200000 , 1.050000 , -0.450000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.080000 , 0.080000 , 1.000000 }",
              "m_Offset": "{ -0.200000 , 1.450000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ 0.680000 , 0.280000 , 0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ 0.680000 , 0.280000 , -0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ -0.680000 , 0.280000 , 0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ -0.680000 , 0.280000 , -0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.400000 , 0.450000 , 0.350000 }",
              "m_Offset": "{ -0.450000 , 0.950000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.750000 , 0.080000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.320000 , 0.320000 , 0.320000 }",
              "m_Offset": "{ -0.450000 , 1.320000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.820000 , 0.600000 , 0.420000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.340000 , 0.160000 , 0.340000 }",
              "m_Offset": "{ -0.450000 , 1.470000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.080000 , 0.080000 , 0.080000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.300000",
        "m_Roughness": "0.400000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "BoatA1",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "BoatA1",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.600000 , 0.350000 , 1.200000 }",
              "m_Offset": "{ 0.000000 , 0.060000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.500000 , 0.330000 , 0.180000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.600000 , 0.320000 , 0.600000 }",
              "m_Offset": "{ 1.350000 , 0.060000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "45.000000",
              "m_Color": "{ 0.500000 , 0.330000 , 0.180000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.600000 , 0.320000 , 0.600000 }",
              "m_Offset": "{ -1.350000 , 0.060000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "45.000000",
              "m_Color": "{ 0.500000 , 0.330000 , 0.180000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.400000 , 0.060000 , 1.000000 }",
              "m_Offset": "{ 0.000000 , 0.260000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.620000 , 0.450000 , 0.280000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.080000 , 1.900000 , 0.080000 }",
              "m_Offset": "{ 0.300000 , 1.200000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.350000 , 0.240000 , 0.140000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cone",
              "m_Size": "{ 0.140000 , 1.600000 , 1.100000 }",
              "m_Offset": "{ -0.350000 , 1.100000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.950000 , 0.940000 , 0.880000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.000000",
        "m_Roughness": "0.700000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "BoatB1",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "BoatB1",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.600000 , 0.350000 , 1.200000 }",
              "m_Offset": "{ 0.000000 , 0.060000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.500000 , 0.330000 , 0.180000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.600000 , 0.320000 , 0.600000 }",
              "m_Offset": "{ 1.350000 , 0.060000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "45.000000",
              "m_Color": "{ 0.500000 , 0.330000 , 0.180000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.600000 , 0.320000 , 0.600000 }",
              "m_Offset": "{ -1.350000 , 0.060000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "45.000000",
              "m_Color": "{ 0.500000 , 0.330000 , 0.180000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.400000 , 0.060000 , 1.000000 }",
              "m_Offset": "{ 0.000000 , 0.260000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.620000 , 0.450000 , 0.280000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.080000 , 1.900000 , 0.080000 }",
              "m_Offset": "{ 0.300000 , 1.200000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.350000 , 0.240000 , 0.140000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cone",
              "m_Size": "{ 0.140000 , 1.600000 , 1.100000 }",
              "m_Offset": "{ -0.350000 , 1.100000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.950000 , 0.940000 , 0.880000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.000000",
        "m_Roughness": "0.700000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "Tram1",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "Tram1",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 7.000000 , 1.500000 , 1.300000 }",
              "m_Offset": "{ 0.000000 , 1.050000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.950000 , 0.780000 , 0.120000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 7.020000 , 0.500000 , 1.320000 }",
              "m_Offset": "{ 0.000000 , 0.450000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.120000 , 0.300000 , 0.600000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 6.400000 , 0.550000 , 1.340000 }",
              "m_Offset": "{ 0.000000 , 1.500000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.150000 , 0.200000 , 0.250000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 7.000000 , 0.150000 , 1.200000 }",
              "m_Offset": "{ 0.000000 , 1.900000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.820000 , 0.820000 , 0.780000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.100000 , 0.100000 , 1.340000 }",
              "m_Offset": "{ 0.000000 , 1.050000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.120000 , 0.300000 , 0.600000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.060000 , 1.000000 , 0.060000 }",
              "m_Offset": "{ 0.000000 , 2.350000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 0.000000 , 1.000000 }",
              "m_RotationDegrees": "22.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.420000 , 0.200000 , 0.420000 }",
              "m_Offset": "{ 2.500000 , 0.220000 , 0.500000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.420000 , 0.200000 , 0.420000 }",
              "m_Offset": "{ 2.500000 , 0.220000 , -0.500000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.420000 , 0.200000 , 0.420000 }",
              "m_Offset": "{ -2.500000 , 0.220000 , 0.500000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.420000 , 0.200000 , 0.420000 }",
              "m_Offset": "{ -2.500000 , 0.220000 , -0.500000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.250000",
        "m_Roughness": "0.450000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "Wave1",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "Wave1",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 3.600000 , 0.500000 , 1.800000 }",
              "m_Offset": "{ 0.000000 , 0.250000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.160000 , 0.450000 , 0.650000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 3.600000 , 0.300000 , 1.100000 }",
              "m_Offset": "{ 0.000000 , 0.600000 , 0.250000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.850000 , 0.930000 , 0.970000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.550000 , 0.400000 , 0.550000 }",
              "m_Offset": "{ -1.200000 , 0.780000 , 0.200000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.950000 , 0.980000 , 1.000000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.600000 , 0.450000 , 0.600000 }",
              "m_Offset": "{ 0.100000 , 0.820000 , 0.200000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.950000 , 0.980000 , 1.000000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.500000 , 0.380000 , 0.500000 }",
              "m_Offset": "{ 1.300000 , 0.750000 , 0.200000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.950000 , 0.980000 , 1.000000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.000000",
        "m_Roughness": "0.300000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "PlantA1",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "PlantA1",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.620000 , 0.500000 , 0.620000 }",
              "m_Offset": "{ 0.000000 , 0.250000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.650000 , 0.400000 , 0.250000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.850000 , 0.700000 , 0.850000 }",
              "m_Offset": "{ 0.000000 , 0.800000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.200000 , 0.500000 , 0.220000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.000000",
        "m_Roughness": "0.850000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "PlantB1",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "PlantB1",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.620000 , 0.500000 , 0.620000 }",
              "m_Offset": "{ 0.000000 , 0.250000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.650000 , 0.400000 , 0.250000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.850000 , 0.700000 , 0.850000 }",
              "m_Offset": "{ 0.000000 , 0.800000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.200000 , 0.500000 , 0.220000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.000000",
        "m_Roughness": "0.850000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "VehA2",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "VehA2",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 1.700000 , 0.450000 , 1.000000 }",
              "m_Offset": "{ 0.000000 , 0.500000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.120000 , 0.120000 , 0.140000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 1.300000 , 0.700000 , 1.000000 }",
              "m_Offset": "{ -0.100000 , 1.100000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.750000 , 0.300000 , 0.550000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.100000 , 0.500000 , 0.800000 }",
              "m_Offset": "{ 0.780000 , 1.000000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.300000 , 0.450000 , 0.500000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.400000 , 0.160000 , 0.400000 }",
              "m_Offset": "{ 0.700000 , 0.200000 , 0.000000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.400000 , 0.160000 , 0.400000 }",
              "m_Offset": "{ -0.550000 , 0.200000 , 0.420000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.400000 , 0.160000 , 0.400000 }",
              "m_Offset": "{ -0.550000 , 0.200000 , -0.420000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.100000",
        "m_Roughness": "0.600000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "VehB2",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "VehB2",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.800000 , 1.100000 , 1.200000 }",
              "m_Offset": "{ 0.000000 , 0.950000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.920000 , 0.920000 , 0.900000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.820000 , 0.180000 , 1.220000 }",
              "m_Offset": "{ 0.000000 , 0.750000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.300000 , 0.700000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.400000 , 0.350000 , 1.240000 }",
              "m_Offset": "{ 0.100000 , 1.350000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.150000 , 0.200000 , 0.250000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.450000 , 0.180000 , 0.450000 }",
              "m_Offset": "{ 0.950000 , 0.250000 , 0.520000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.450000 , 0.180000 , 0.450000 }",
              "m_Offset": "{ 0.950000 , 0.250000 , -0.520000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.450000 , 0.180000 , 0.450000 }",
              "m_Offset": "{ -0.950000 , 0.250000 , 0.520000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.450000 , 0.180000 , 0.450000 }",
              "m_Offset": "{ -0.950000 , 0.250000 , -0.520000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.200000",
        "m_Roughness": "0.500000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "VehC2",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "VehC2",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 1.700000 , 0.450000 , 1.000000 }",
              "m_Offset": "{ 0.000000 , 0.500000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.120000 , 0.120000 , 0.140000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 1.300000 , 0.700000 , 1.000000 }",
              "m_Offset": "{ -0.100000 , 1.100000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.950000 , 0.750000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.100000 , 0.500000 , 0.800000 }",
              "m_Offset": "{ 0.780000 , 1.000000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.300000 , 0.450000 , 0.500000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.400000 , 0.160000 , 0.400000 }",
              "m_Offset": "{ 0.700000 , 0.200000 , 0.000000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.400000 , 0.160000 , 0.400000 }",
              "m_Offset": "{ -0.550000 , 0.200000 , 0.420000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.400000 , 0.160000 , 0.400000 }",
              "m_Offset": "{ -0.550000 , 0.200000 , -0.420000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.100000",
        "m_Roughness": "0.600000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "BikeA2",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "BikeA2",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 1.900000 , 0.300000 , 1.100000 }",
              "m_Offset": "{ 0.000000 , 0.400000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.850000 , 0.500000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.600000 , 0.300000 , 1.000000 }",
              "m_Offset": "{ 0.620000 , 0.620000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.850000 , 0.500000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.500000 , 0.550000 , 1.000000 }",
              "m_Offset": "{ -0.550000 , 0.820000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.850000 , 0.500000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.080000 , 0.750000 , 0.080000 }",
              "m_Offset": "{ -0.200000 , 1.050000 , 0.450000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.080000 , 0.750000 , 0.080000 }",
              "m_Offset": "{ -0.200000 , 1.050000 , -0.450000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.080000 , 0.080000 , 1.000000 }",
              "m_Offset": "{ -0.200000 , 1.450000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ 0.680000 , 0.280000 , 0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ 0.680000 , 0.280000 , -0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ -0.680000 , 0.280000 , 0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ -0.680000 , 0.280000 , -0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.400000 , 0.450000 , 0.350000 }",
              "m_Offset": "{ -0.450000 , 0.950000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.750000 , 0.080000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.320000 , 0.320000 , 0.320000 }",
              "m_Offset": "{ -0.450000 , 1.320000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.820000 , 0.600000 , 0.420000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.340000 , 0.160000 , 0.340000 }",
              "m_Offset": "{ -0.450000 , 1.470000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.080000 , 0.080000 , 0.080000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.300000",
        "m_Roughness": "0.400000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "BikeB2",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "BikeB2",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 1.900000 , 0.300000 , 1.100000 }",
              "m_Offset": "{ 0.000000 , 0.400000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.800000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.600000 , 0.300000 , 1.000000 }",
              "m_Offset": "{ 0.620000 , 0.620000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.800000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.500000 , 0.550000 , 1.000000 }",
              "m_Offset": "{ -0.550000 , 0.820000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.800000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.080000 , 0.750000 , 0.080000 }",
              "m_Offset": "{ -0.200000 , 1.050000 , 0.450000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.080000 , 0.750000 , 0.080000 }",
              "m_Offset": "{ -0.200000 , 1.050000 , -0.450000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.080000 , 0.080000 , 1.000000 }",
              "m_Offset": "{ -0.200000 , 1.450000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ 0.680000 , 0.280000 , 0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ 0.680000 , 0.280000 , -0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ -0.680000 , 0.280000 , 0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ -0.680000 , 0.280000 , -0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.400000 , 0.450000 , 0.350000 }",
              "m_Offset": "{ -0.450000 , 0.950000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.750000 , 0.080000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.320000 , 0.320000 , 0.320000 }",
              "m_Offset": "{ -0.450000 , 1.320000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.820000 , 0.600000 , 0.420000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.340000 , 0.160000 , 0.340000 }",
              "m_Offset": "{ -0.450000 , 1.470000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.080000 , 0.080000 , 0.080000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.300000",
        "m_Roughness": "0.400000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "BoatA2",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "BoatA2",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.600000 , 0.350000 , 1.200000 }",
              "m_Offset": "{ 0.000000 , 0.060000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.500000 , 0.330000 , 0.180000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.600000 , 0.320000 , 0.600000 }",
              "m_Offset": "{ 1.350000 , 0.060000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "45.000000",
              "m_Color": "{ 0.500000 , 0.330000 , 0.180000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.600000 , 0.320000 , 0.600000 }",
              "m_Offset": "{ -1.350000 , 0.060000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "45.000000",
              "m_Color": "{ 0.500000 , 0.330000 , 0.180000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.400000 , 0.060000 , 1.000000 }",
              "m_Offset": "{ 0.000000 , 0.260000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.620000 , 0.450000 , 0.280000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.080000 , 1.900000 , 0.080000 }",
              "m_Offset": "{ 0.300000 , 1.200000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.350000 , 0.240000 , 0.140000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cone",
              "m_Size": "{ 0.140000 , 1.600000 , 1.100000 }",
              "m_Offset": "{ -0.350000 , 1.100000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.950000 , 0.940000 , 0.880000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.000000",
        "m_Roughness": "0.700000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "BoatB2",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "BoatB2",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.600000 , 0.350000 , 1.200000 }",
              "m_Offset": "{ 0.000000 , 0.060000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.500000 , 0.330000 , 0.180000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.600000 , 0.320000 , 0.600000 }",
              "m_Offset": "{ 1.350000 , 0.060000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "45.000000",
              "m_Color": "{ 0.500000 , 0.330000 , 0.180000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.600000 , 0.320000 , 0.600000 }",
              "m_Offset": "{ -1.350000 , 0.060000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "45.000000",
              "m_Color": "{ 0.500000 , 0.330000 , 0.180000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.400000 , 0.060000 , 1.000000 }",
              "m_Offset": "{ 0.000000 , 0.260000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.620000 , 0.450000 , 0.280000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.080000 , 1.900000 , 0.080000 }",
              "m_Offset": "{ 0.300000 , 1.200000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.350000 , 0.240000 , 0.140000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cone",
              "m_Size": "{ 0.140000 , 1.600000 , 1.100000 }",
              "m_Offset": "{ -0.350000 , 1.100000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.950000 , 0.940000 , 0.880000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.000000",
        "m_Roughness": "0.700000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "Tram2",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "Tram2",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 7.000000 , 1.500000 , 1.300000 }",
              "m_Offset": "{ 0.000000 , 1.050000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.950000 , 0.780000 , 0.120000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 7.020000 , 0.500000 , 1.320000 }",
              "m_Offset": "{ 0.000000 , 0.450000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.120000 , 0.300000 , 0.600000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 6.400000 , 0.550000 , 1.340000 }",
              "m_Offset": "{ 0.000000 , 1.500000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.150000 , 0.200000 , 0.250000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 7.000000 , 0.150000 , 1.200000 }",
              "m_Offset": "{ 0.000000 , 1.900000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.820000 , 0.820000 , 0.780000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.100000 , 0.100000 , 1.340000 }",
              "m_Offset": "{ 0.000000 , 1.050000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.120000 , 0.300000 , 0.600000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.060000 , 1.000000 , 0.060000 }",
              "m_Offset": "{ 0.000000 , 2.350000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 0.000000 , 1.000000 }",
              "m_RotationDegrees": "22.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.420000 , 0.200000 , 0.420000 }",
              "m_Offset": "{ 2.500000 , 0.220000 , 0.500000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.420000 , 0.200000 , 0.420000 }",
              "m_Offset": "{ 2.500000 , 0.220000 , -0.500000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.420000 , 0.200000 , 0.420000 }",
              "m_Offset": "{ -2.500000 , 0.220000 , 0.500000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.420000 , 0.200000 , 0.420000 }",
              "m_Offset": "{ -2.500000 , 0.220000 , -0.500000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.250000",
        "m_Roughness": "0.450000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "Wave2",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "Wave2",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 3.600000 , 0.500000 , 1.800000 }",
              "m_Offset": "{ 0.000000 , 0.250000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.160000 , 0.450000 , 0.650000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 3.600000 , 0.300000 , 1.100000 }",
              "m_Offset": "{ 0.000000 , 0.600000 , 0.250000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.850000 , 0.930000 , 0.970000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.550000 , 0.400000 , 0.550000 }",
              "m_Offset": "{ -1.200000 , 0.780000 , 0.200000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.950000 , 0.980000 , 1.000000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.600000 , 0.450000 , 0.600000 }",
              "m_Offset": "{ 0.100000 , 0.820000 , 0.200000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.950000 , 0.980000 , 1.000000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.500000 , 0.380000 , 0.500000 }",
              "m_Offset": "{ 1.300000 , 0.750000 , 0.200000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.950000 , 0.980000 , 1.000000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.000000",
        "m_Roughness": "0.300000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "PlantA2",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "PlantA2",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.620000 , 0.500000 , 0.620000 }",
              "m_Offset": "{ 0.000000 , 0.250000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.650000 , 0.400000 , 0.250000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.850000 , 0.700000 , 0.850000 }",
              "m_Offset": "{ 0.000000 , 0.800000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.200000 , 0.500000 , 0.220000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.000000",
        "m_Roughness": "0.850000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "PlantB2",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "PlantB2",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.620000 , 0.500000 , 0.620000 }",
              "m_Offset": "{ 0.000000 , 0.250000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.650000 , 0.400000 , 0.250000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.850000 , 0.700000 , 0.850000 }",
              "m_Offset": "{ 0.000000 , 0.800000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.200000 , 0.500000 , 0.220000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.000000",
        "m_Roughness": "0.850000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "VehA3",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "VehA3",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 1.700000 , 0.450000 , 1.000000 }",
              "m_Offset": "{ 0.000000 , 0.500000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.120000 , 0.120000 , 0.140000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 1.300000 , 0.700000 , 1.000000 }",
              "m_Offset": "{ -0.100000 , 1.100000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.250000 , 0.500000 , 0.800000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.100000 , 0.500000 , 0.800000 }",
              "m_Offset": "{ 0.780000 , 1.000000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.300000 , 0.450000 , 0.500000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.400000 , 0.160000 , 0.400000 }",
              "m_Offset": "{ 0.700000 , 0.200000 , 0.000000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.400000 , 0.160000 , 0.400000 }",
              "m_Offset": "{ -0.550000 , 0.200000 , 0.420000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.400000 , 0.160000 , 0.400000 }",
              "m_Offset": "{ -0.550000 , 0.200000 , -0.420000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.100000",
        "m_Roughness": "0.600000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "VehB3",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "VehB3",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.800000 , 1.100000 , 1.200000 }",
              "m_Offset": "{ 0.000000 , 0.950000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.920000 , 0.920000 , 0.900000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.820000 , 0.180000 , 1.220000 }",
              "m_Offset": "{ 0.000000 , 0.750000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.300000 , 0.700000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.400000 , 0.350000 , 1.240000 }",
              "m_Offset": "{ 0.100000 , 1.350000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.150000 , 0.200000 , 0.250000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.450000 , 0.180000 , 0.450000 }",
              "m_Offset": "{ 0.950000 , 0.250000 , 0.520000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.450000 , 0.180000 , 0.450000 }",
              "m_Offset": "{ 0.950000 , 0.250000 , -0.520000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.450000 , 0.180000 , 0.450000 }",
              "m_Offset": "{ -0.950000 , 0.250000 , 0.520000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.450000 , 0.180000 , 0.450000 }",
              "m_Offset": "{ -0.950000 , 0.250000 , -0.520000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.200000",
        "m_Roughness": "0.500000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "VehC3",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "VehC3",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 1.700000 , 0.450000 , 1.000000 }",
              "m_Offset": "{ 0.000000 , 0.500000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.120000 , 0.120000 , 0.140000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 1.300000 , 0.700000 , 1.000000 }",
              "m_Offset": "{ -0.100000 , 1.100000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.200000 , 0.620000 , 0.400000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.100000 , 0.500000 , 0.800000 }",
              "m_Offset": "{ 0.780000 , 1.000000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.300000 , 0.450000 , 0.500000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.400000 , 0.160000 , 0.400000 }",
              "m_Offset": "{ 0.700000 , 0.200000 , 0.000000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.400000 , 0.160000 , 0.400000 }",
              "m_Offset": "{ -0.550000 , 0.200000 , 0.420000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.400000 , 0.160000 , 0.400000 }",
              "m_Offset": "{ -0.550000 , 0.200000 , -0.420000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.100000",
        "m_Roughness": "0.600000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "BikeA3",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "BikeA3",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 1.900000 , 0.300000 , 1.100000 }",
              "m_Offset": "{ 0.000000 , 0.400000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.800000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.600000 , 0.300000 , 1.000000 }",
              "m_Offset": "{ 0.620000 , 0.620000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.800000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.500000 , 0.550000 , 1.000000 }",
              "m_Offset": "{ -0.550000 , 0.820000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.800000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.080000 , 0.750000 , 0.080000 }",
              "m_Offset": "{ -0.200000 , 1.050000 , 0.450000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.080000 , 0.750000 , 0.080000 }",
              "m_Offset": "{ -0.200000 , 1.050000 , -0.450000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.080000 , 0.080000 , 1.000000 }",
              "m_Offset": "{ -0.200000 , 1.450000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ 0.680000 , 0.280000 , 0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ 0.680000 , 0.280000 , -0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ -0.680000 , 0.280000 , 0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ -0.680000 , 0.280000 , -0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.400000 , 0.450000 , 0.350000 }",
              "m_Offset": "{ -0.450000 , 0.950000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.750000 , 0.080000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.320000 , 0.320000 , 0.320000 }",
              "m_Offset": "{ -0.450000 , 1.320000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.820000 , 0.600000 , 0.420000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.340000 , 0.160000 , 0.340000 }",
              "m_Offset": "{ -0.450000 , 1.470000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.080000 , 0.080000 , 0.080000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.300000",
        "m_Roughness": "0.400000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "BikeB3",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "BikeB3",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 1.900000 , 0.300000 , 1.100000 }",
              "m_Offset": "{ 0.000000 , 0.400000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.150000 , 0.350000 , 0.650000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.600000 , 0.300000 , 1.000000 }",
              "m_Offset": "{ 0.620000 , 0.620000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.150000 , 0.350000 , 0.650000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.500000 , 0.550000 , 1.000000 }",
              "m_Offset": "{ -0.550000 , 0.820000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.150000 , 0.350000 , 0.650000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.080000 , 0.750000 , 0.080000 }",
              "m_Offset": "{ -0.200000 , 1.050000 , 0.450000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.080000 , 0.750000 , 0.080000 }",
              "m_Offset": "{ -0.200000 , 1.050000 , -0.450000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.080000 , 0.080000 , 1.000000 }",
              "m_Offset": "{ -0.200000 , 1.450000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ 0.680000 , 0.280000 , 0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ 0.680000 , 0.280000 , -0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ -0.680000 , 0.280000 , 0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ -0.680000 , 0.280000 , -0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.400000 , 0.450000 , 0.350000 }",
              "m_Offset": "{ -0.450000 , 0.950000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.750000 , 0.080000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.320000 , 0.320000 , 0.320000 }",
              "m_Offset": "{ -0.450000 , 1.320000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.820000 , 0.600000 , 0.420000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.340000 , 0.160000 , 0.340000 }",
              "m_Offset": "{ -0.450000 , 1.470000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.080000 , 0.080000 , 0.080000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.300000",
        "m_Roughness": "0.400000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "BoatA3",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "BoatA3",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.600000 , 0.350000 , 1.200000 }",
              "m_Offset": "{ 0.000000 , 0.060000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.500000 , 0.330000 , 0.180000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.600000 , 0.320000 , 0.600000 }",
              "m_Offset": "{ 1.350000 , 0.060000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "45.000000",
              "m_Color": "{ 0.500000 , 0.330000 , 0.180000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.600000 , 0.320000 , 0.600000 }",
              "m_Offset": "{ -1.350000 , 0.060000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "45.000000",
              "m_Color": "{ 0.500000 , 0.330000 , 0.180000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.400000 , 0.060000 , 1.000000 }",
              "m_Offset": "{ 0.000000 , 0.260000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.620000 , 0.450000 , 0.280000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.080000 , 1.900000 , 0.080000 }",
              "m_Offset": "{ 0.300000 , 1.200000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.350000 , 0.240000 , 0.140000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cone",
              "m_Size": "{ 0.140000 , 1.600000 , 1.100000 }",
              "m_Offset": "{ -0.350000 , 1.100000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.950000 , 0.940000 , 0.880000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.000000",
        "m_Roughness": "0.700000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "BoatB3",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "BoatB3",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.600000 , 0.350000 , 1.200000 }",
              "m_Offset": "{ 0.000000 , 0.060000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.500000 , 0.330000 , 0.180000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.600000 , 0.320000 , 0.600000 }",
              "m_Offset": "{ 1.350000 , 0.060000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "45.000000",
              "m_Color": "{ 0.500000 , 0.330000 , 0.180000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.600000 , 0.320000 , 0.600000 }",
              "m_Offset": "{ -1.350000 , 0.060000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "45.000000",
              "m_Color": "{ 0.500000 , 0.330000 , 0.180000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.400000 , 0.060000 , 1.000000 }",
              "m_Offset": "{ 0.000000 , 0.260000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.620000 , 0.450000 , 0.280000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.080000 , 1.900000 , 0.080000 }",
              "m_Offset": "{ 0.300000 , 1.200000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.350000 , 0.240000 , 0.140000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cone",
              "m_Size": "{ 0.140000 , 1.600000 , 1.100000 }",
              "m_Offset": "{ -0.350000 , 1.100000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.950000 , 0.940000 , 0.880000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.000000",
        "m_Roughness": "0.700000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "Tram3",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "Tram3",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 7.000000 , 1.500000 , 1.300000 }",
              "m_Offset": "{ 0.000000 , 1.050000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.950000 , 0.780000 , 0.120000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 7.020000 , 0.500000 , 1.320000 }",
              "m_Offset": "{ 0.000000 , 0.450000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.120000 , 0.300000 , 0.600000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 6.400000 , 0.550000 , 1.340000 }",
              "m_Offset": "{ 0.000000 , 1.500000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.150000 , 0.200000 , 0.250000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 7.000000 , 0.150000 , 1.200000 }",
              "m_Offset": "{ 0.000000 , 1.900000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.820000 , 0.820000 , 0.780000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.100000 , 0.100000 , 1.340000 }",
              "m_Offset": "{ 0.000000 , 1.050000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.120000 , 0.300000 , 0.600000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.060000 , 1.000000 , 0.060000 }",
              "m_Offset": "{ 0.000000 , 2.350000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 0.000000 , 1.000000 }",
              "m_RotationDegrees": "22.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.420000 , 0.200000 , 0.420000 }",
              "m_Offset": "{ 2.500000 , 0.220000 , 0.500000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.420000 , 0.200000 , 0.420000 }",
              "m_Offset": "{ 2.500000 , 0.220000 , -0.500000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.420000 , 0.200000 , 0.420000 }",
              "m_Offset": "{ -2.500000 , 0.220000 , 0.500000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.420000 , 0.200000 , 0.420000 }",
              "m_Offset": "{ -2.500000 , 0.220000 , -0.500000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.250000",
        "m_Roughness": "0.450000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "Wave3",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "Wave3",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 3.600000 , 0.500000 , 1.800000 }",
              "m_Offset": "{ 0.000000 , 0.250000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.160000 , 0.450000 , 0.650000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 3.600000 , 0.300000 , 1.100000 }",
              "m_Offset": "{ 0.000000 , 0.600000 , 0.250000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.850000 , 0.930000 , 0.970000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.550000 , 0.400000 , 0.550000 }",
              "m_Offset": "{ -1.200000 , 0.780000 , 0.200000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.950000 , 0.980000 , 1.000000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.600000 , 0.450000 , 0.600000 }",
              "m_Offset": "{ 0.100000 , 0.820000 , 0.200000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.950000 , 0.980000 , 1.000000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.500000 , 0.380000 , 0.500000 }",
              "m_Offset": "{ 1.300000 , 0.750000 , 0.200000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.950000 , 0.980000 , 1.000000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.000000",
        "m_Roughness": "0.300000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "PlantA3",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "PlantA3",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.620000 , 0.500000 , 0.620000 }",
              "m_Offset": "{ 0.000000 , 0.250000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.650000 , 0.400000 , 0.250000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.850000 , 0.700000 , 0.850000 }",
              "m_Offset": "{ 0.000000 , 0.800000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.200000 , 0.500000 , 0.220000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.000000",
        "m_Roughness": "0.850000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "PlantB3",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "PlantB3",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.620000 , 0.500000 , 0.620000 }",
              "m_Offset": "{ 0.000000 , 0.250000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.650000 , 0.400000 , 0.250000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.850000 , 0.700000 , 0.850000 }",
              "m_Offset": "{ 0.000000 , 0.800000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.200000 , 0.500000 , 0.220000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.000000",
        "m_Roughness": "0.850000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "VehA4",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "VehA4",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 1.700000 , 0.450000 , 1.000000 }",
              "m_Offset": "{ 0.000000 , 0.500000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.120000 , 0.120000 , 0.140000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 1.300000 , 0.700000 , 1.000000 }",
              "m_Offset": "{ -0.100000 , 1.100000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.950000 , 0.750000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.100000 , 0.500000 , 0.800000 }",
              "m_Offset": "{ 0.780000 , 1.000000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.300000 , 0.450000 , 0.500000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.400000 , 0.160000 , 0.400000 }",
              "m_Offset": "{ 0.700000 , 0.200000 , 0.000000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.400000 , 0.160000 , 0.400000 }",
              "m_Offset": "{ -0.550000 , 0.200000 , 0.420000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.400000 , 0.160000 , 0.400000 }",
              "m_Offset": "{ -0.550000 , 0.200000 , -0.420000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.100000",
        "m_Roughness": "0.600000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "VehB4",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "VehB4",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.800000 , 1.100000 , 1.200000 }",
              "m_Offset": "{ 0.000000 , 0.950000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.920000 , 0.920000 , 0.900000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.820000 , 0.180000 , 1.220000 }",
              "m_Offset": "{ 0.000000 , 0.750000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.300000 , 0.700000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.400000 , 0.350000 , 1.240000 }",
              "m_Offset": "{ 0.100000 , 1.350000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.150000 , 0.200000 , 0.250000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.450000 , 0.180000 , 0.450000 }",
              "m_Offset": "{ 0.950000 , 0.250000 , 0.520000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.450000 , 0.180000 , 0.450000 }",
              "m_Offset": "{ 0.950000 , 0.250000 , -0.520000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.450000 , 0.180000 , 0.450000 }",
              "m_Offset": "{ -0.950000 , 0.250000 , 0.520000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.450000 , 0.180000 , 0.450000 }",
              "m_Offset": "{ -0.950000 , 0.250000 , -0.520000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.200000",
        "m_Roughness": "0.500000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "VehC4",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "VehC4",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 1.700000 , 0.450000 , 1.000000 }",
              "m_Offset": "{ 0.000000 , 0.500000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.120000 , 0.120000 , 0.140000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 1.300000 , 0.700000 , 1.000000 }",
              "m_Offset": "{ -0.100000 , 1.100000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.750000 , 0.300000 , 0.550000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.100000 , 0.500000 , 0.800000 }",
              "m_Offset": "{ 0.780000 , 1.000000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.300000 , 0.450000 , 0.500000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.400000 , 0.160000 , 0.400000 }",
              "m_Offset": "{ 0.700000 , 0.200000 , 0.000000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.400000 , 0.160000 , 0.400000 }",
              "m_Offset": "{ -0.550000 , 0.200000 , 0.420000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.400000 , 0.160000 , 0.400000 }",
              "m_Offset": "{ -0.550000 , 0.200000 , -0.420000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.100000",
        "m_Roughness": "0.600000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "BikeA4",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "BikeA4",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 1.900000 , 0.300000 , 1.100000 }",
              "m_Offset": "{ 0.000000 , 0.400000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.150000 , 0.350000 , 0.650000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.600000 , 0.300000 , 1.000000 }",
              "m_Offset": "{ 0.620000 , 0.620000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.150000 , 0.350000 , 0.650000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.500000 , 0.550000 , 1.000000 }",
              "m_Offset": "{ -0.550000 , 0.820000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.150000 , 0.350000 , 0.650000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.080000 , 0.750000 , 0.080000 }",
              "m_Offset": "{ -0.200000 , 1.050000 , 0.450000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.080000 , 0.750000 , 0.080000 }",
              "m_Offset": "{ -0.200000 , 1.050000 , -0.450000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.080000 , 0.080000 , 1.000000 }",
              "m_Offset": "{ -0.200000 , 1.450000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ 0.680000 , 0.280000 , 0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ 0.680000 , 0.280000 , -0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ -0.680000 , 0.280000 , 0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ -0.680000 , 0.280000 , -0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.400000 , 0.450000 , 0.350000 }",
              "m_Offset": "{ -0.450000 , 0.950000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.750000 , 0.080000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.320000 , 0.320000 , 0.320000 }",
              "m_Offset": "{ -0.450000 , 1.320000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.820000 , 0.600000 , 0.420000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.340000 , 0.160000 , 0.340000 }",
              "m_Offset": "{ -0.450000 , 1.470000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.080000 , 0.080000 , 0.080000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.300000",
        "m_Roughness": "0.400000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "BikeB4",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "BikeB4",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 1.900000 , 0.300000 , 1.100000 }",
              "m_Offset": "{ 0.000000 , 0.400000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.850000 , 0.500000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.600000 , 0.300000 , 1.000000 }",
              "m_Offset": "{ 0.620000 , 0.620000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.850000 , 0.500000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.500000 , 0.550000 , 1.000000 }",
              "m_Offset": "{ -0.550000 , 0.820000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.850000 , 0.500000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.080000 , 0.750000 , 0.080000 }",
              "m_Offset": "{ -0.200000 , 1.050000 , 0.450000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.080000 , 0.750000 , 0.080000 }",
              "m_Offset": "{ -0.200000 , 1.050000 , -0.450000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.080000 , 0.080000 , 1.000000 }",
              "m_Offset": "{ -0.200000 , 1.450000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ 0.680000 , 0.280000 , 0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ 0.680000 , 0.280000 , -0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ -0.680000 , 0.280000 , 0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ -0.680000 , 0.280000 , -0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.400000 , 0.450000 , 0.350000 }",
              "m_Offset": "{ -0.450000 , 0.950000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.750000 , 0.080000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.320000 , 0.320000 , 0.320000 }",
              "m_Offset": "{ -0.450000 , 1.320000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.820000 , 0.600000 , 0.420000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.340000 , 0.160000 , 0.340000 }",
              "m_Offset": "{ -0.450000 , 1.470000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.080000 , 0.080000 , 0.080000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.300000",
        "m_Roughness": "0.400000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "BoatA4",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "BoatA4",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.600000 , 0.350000 , 1.200000 }",
              "m_Offset": "{ 0.000000 , 0.060000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.500000 , 0.330000 , 0.180000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.600000 , 0.320000 , 0.600000 }",
              "m_Offset": "{ 1.350000 , 0.060000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "45.000000",
              "m_Color": "{ 0.500000 , 0.330000 , 0.180000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.600000 , 0.320000 , 0.600000 }",
              "m_Offset": "{ -1.350000 , 0.060000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "45.000000",
              "m_Color": "{ 0.500000 , 0.330000 , 0.180000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.400000 , 0.060000 , 1.000000 }",
              "m_Offset": "{ 0.000000 , 0.260000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.620000 , 0.450000 , 0.280000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.080000 , 1.900000 , 0.080000 }",
              "m_Offset": "{ 0.300000 , 1.200000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.350000 , 0.240000 , 0.140000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cone",
              "m_Size": "{ 0.140000 , 1.600000 , 1.100000 }",
              "m_Offset": "{ -0.350000 , 1.100000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.950000 , 0.940000 , 0.880000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.000000",
        "m_Roughness": "0.700000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "BoatB4",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "BoatB4",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.600000 , 0.350000 , 1.200000 }",
              "m_Offset": "{ 0.000000 , 0.060000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.500000 , 0.330000 , 0.180000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.600000 , 0.320000 , 0.600000 }",
              "m_Offset": "{ 1.350000 , 0.060000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "45.000000",
              "m_Color": "{ 0.500000 , 0.330000 , 0.180000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.600000 , 0.320000 , 0.600000 }",
              "m_Offset": "{ -1.350000 , 0.060000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "45.000000",
              "m_Color": "{ 0.500000 , 0.330000 , 0.180000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.400000 , 0.060000 , 1.000000 }",
              "m_Offset": "{ 0.000000 , 0.260000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.620000 , 0.450000 , 0.280000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.080000 , 1.900000 , 0.080000 }",
              "m_Offset": "{ 0.300000 , 1.200000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.350000 , 0.240000 , 0.140000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cone",
              "m_Size": "{ 0.140000 , 1.600000 , 1.100000 }",
              "m_Offset": "{ -0.350000 , 1.100000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.950000 , 0.940000 , 0.880000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.000000",
        "m_Roughness": "0.700000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "Tram4",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "Tram4",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 7.000000 , 1.500000 , 1.300000 }",
              "m_Offset": "{ 0.000000 , 1.050000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.950000 , 0.780000 , 0.120000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 7.020000 , 0.500000 , 1.320000 }",
              "m_Offset": "{ 0.000000 , 0.450000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.120000 , 0.300000 , 0.600000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 6.400000 , 0.550000 , 1.340000 }",
              "m_Offset": "{ 0.000000 , 1.500000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.150000 , 0.200000 , 0.250000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 7.000000 , 0.150000 , 1.200000 }",
              "m_Offset": "{ 0.000000 , 1.900000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.820000 , 0.820000 , 0.780000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.100000 , 0.100000 , 1.340000 }",
              "m_Offset": "{ 0.000000 , 1.050000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.120000 , 0.300000 , 0.600000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.060000 , 1.000000 , 0.060000 }",
              "m_Offset": "{ 0.000000 , 2.350000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 0.000000 , 1.000000 }",
              "m_RotationDegrees": "22.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.420000 , 0.200000 , 0.420000 }",
              "m_Offset": "{ 2.500000 , 0.220000 , 0.500000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.420000 , 0.200000 , 0.420000 }",
              "m_Offset": "{ 2.500000 , 0.220000 , -0.500000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.420000 , 0.200000 , 0.420000 }",
              "m_Offset": "{ -2.500000 , 0.220000 , 0.500000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.420000 , 0.200000 , 0.420000 }",
              "m_Offset": "{ -2.500000 , 0.220000 , -0.500000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.250000",
        "m_Roughness": "0.450000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "Wave4",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "Wave4",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 3.600000 , 0.500000 , 1.800000 }",
              "m_Offset": "{ 0.000000 , 0.250000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.160000 , 0.450000 , 0.650000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 3.600000 , 0.300000 , 1.100000 }",
              "m_Offset": "{ 0.000000 , 0.600000 , 0.250000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.850000 , 0.930000 , 0.970000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.550000 , 0.400000 , 0.550000 }",
              "m_Offset": "{ -1.200000 , 0.780000 , 0.200000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.950000 , 0.980000 , 1.000000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.600000 , 0.450000 , 0.600000 }",
              "m_Offset": "{ 0.100000 , 0.820000 , 0.200000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.950000 , 0.980000 , 1.000000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.500000 , 0.380000 , 0.500000 }",
              "m_Offset": "{ 1.300000 , 0.750000 , 0.200000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.950000 , 0.980000 , 1.000000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.000000",
        "m_Roughness": "0.300000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "PlantA4",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "PlantA4",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.620000 , 0.500000 , 0.620000 }",
              "m_Offset": "{ 0.000000 , 0.250000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.650000 , 0.400000 , 0.250000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.850000 , 0.700000 , 0.850000 }",
              "m_Offset": "{ 0.000000 , 0.800000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.200000 , 0.500000 , 0.220000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.000000",
        "m_Roughness": "0.850000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "PlantB4",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "PlantB4",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.620000 , 0.500000 , 0.620000 }",
              "m_Offset": "{ 0.000000 , 0.250000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.650000 , 0.400000 , 0.250000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.850000 , 0.700000 , 0.850000 }",
              "m_Offset": "{ 0.000000 , 0.800000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.200000 , 0.500000 , 0.220000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.000000",
        "m_Roughness": "0.850000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "VehA5",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "VehA5",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 1.700000 , 0.450000 , 1.000000 }",
              "m_Offset": "{ 0.000000 , 0.500000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.120000 , 0.120000 , 0.140000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 1.300000 , 0.700000 , 1.000000 }",
              "m_Offset": "{ -0.100000 , 1.100000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.200000 , 0.620000 , 0.400000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.100000 , 0.500000 , 0.800000 }",
              "m_Offset": "{ 0.780000 , 1.000000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.300000 , 0.450000 , 0.500000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.400000 , 0.160000 , 0.400000 }",
              "m_Offset": "{ 0.700000 , 0.200000 , 0.000000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.400000 , 0.160000 , 0.400000 }",
              "m_Offset": "{ -0.550000 , 0.200000 , 0.420000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.400000 , 0.160000 , 0.400000 }",
              "m_Offset": "{ -0.550000 , 0.200000 , -0.420000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.100000",
        "m_Roughness": "0.600000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "VehB5",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "VehB5",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.800000 , 1.100000 , 1.200000 }",
              "m_Offset": "{ 0.000000 , 0.950000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.920000 , 0.920000 , 0.900000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.820000 , 0.180000 , 1.220000 }",
              "m_Offset": "{ 0.000000 , 0.750000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.300000 , 0.700000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.400000 , 0.350000 , 1.240000 }",
              "m_Offset": "{ 0.100000 , 1.350000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.150000 , 0.200000 , 0.250000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.450000 , 0.180000 , 0.450000 }",
              "m_Offset": "{ 0.950000 , 0.250000 , 0.520000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.450000 , 0.180000 , 0.450000 }",
              "m_Offset": "{ 0.950000 , 0.250000 , -0.520000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.450000 , 0.180000 , 0.450000 }",
              "m_Offset": "{ -0.950000 , 0.250000 , 0.520000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.450000 , 0.180000 , 0.450000 }",
              "m_Offset": "{ -0.950000 , 0.250000 , -0.520000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.200000",
        "m_Roughness": "0.500000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "VehC5",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "VehC5",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 1.700000 , 0.450000 , 1.000000 }",
              "m_Offset": "{ 0.000000 , 0.500000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.120000 , 0.120000 , 0.140000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 1.300000 , 0.700000 , 1.000000 }",
              "m_Offset": "{ -0.100000 , 1.100000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.250000 , 0.500000 , 0.800000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.100000 , 0.500000 , 0.800000 }",
              "m_Offset": "{ 0.780000 , 1.000000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.300000 , 0.450000 , 0.500000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.400000 , 0.160000 , 0.400000 }",
              "m_Offset": "{ 0.700000 , 0.200000 , 0.000000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.400000 , 0.160000 , 0.400000 }",
              "m_Offset": "{ -0.550000 , 0.200000 , 0.420000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.400000 , 0.160000 , 0.400000 }",
              "m_Offset": "{ -0.550000 , 0.200000 , -0.420000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.100000",
        "m_Roughness": "0.600000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "BikeA5",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "BikeA5",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 1.900000 , 0.300000 , 1.100000 }",
              "m_Offset": "{ 0.000000 , 0.400000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.850000 , 0.500000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.600000 , 0.300000 , 1.000000 }",
              "m_Offset": "{ 0.620000 , 0.620000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.850000 , 0.500000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.500000 , 0.550000 , 1.000000 }",
              "m_Offset": "{ -0.550000 , 0.820000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.850000 , 0.500000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.080000 , 0.750000 , 0.080000 }",
              "m_Offset": "{ -0.200000 , 1.050000 , 0.450000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.080000 , 0.750000 , 0.080000 }",
              "m_Offset": "{ -0.200000 , 1.050000 , -0.450000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.080000 , 0.080000 , 1.000000 }",
              "m_Offset": "{ -0.200000 , 1.450000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ 0.680000 , 0.280000 , 0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ 0.680000 , 0.280000 , -0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ -0.680000 , 0.280000 , 0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ -0.680000 , 0.280000 , -0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.400000 , 0.450000 , 0.350000 }",
              "m_Offset": "{ -0.450000 , 0.950000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.750000 , 0.080000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.320000 , 0.320000 , 0.320000 }",
              "m_Offset": "{ -0.450000 , 1.320000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.820000 , 0.600000 , 0.420000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.340000 , 0.160000 , 0.340000 }",
              "m_Offset": "{ -0.450000 , 1.470000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.080000 , 0.080000 , 0.080000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.300000",
        "m_Roughness": "0.400000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "BikeB5",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "BikeB5",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 1.900000 , 0.300000 , 1.100000 }",
              "m_Offset": "{ 0.000000 , 0.400000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.800000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.600000 , 0.300000 , 1.000000 }",
              "m_Offset": "{ 0.620000 , 0.620000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.800000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.500000 , 0.550000 , 1.000000 }",
              "m_Offset": "{ -0.550000 , 0.820000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.800000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.080000 , 0.750000 , 0.080000 }",
              "m_Offset": "{ -0.200000 , 1.050000 , 0.450000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.080000 , 0.750000 , 0.080000 }",
              "m_Offset": "{ -0.200000 , 1.050000 , -0.450000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.080000 , 0.080000 , 1.000000 }",
              "m_Offset": "{ -0.200000 , 1.450000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ 0.680000 , 0.280000 , 0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ 0.680000 , 0.280000 , -0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ -0.680000 , 0.280000 , 0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ -0.680000 , 0.280000 , -0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.400000 , 0.450000 , 0.350000 }",
              "m_Offset": "{ -0.450000 , 0.950000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.750000 , 0.080000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.320000 , 0.320000 , 0.320000 }",
              "m_Offset": "{ -0.450000 , 1.320000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.820000 , 0.600000 , 0.420000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.340000 , 0.160000 , 0.340000 }",
              "m_Offset": "{ -0.450000 , 1.470000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.080000 , 0.080000 , 0.080000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.300000",
        "m_Roughness": "0.400000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "BoatA5",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "BoatA5",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.600000 , 0.350000 , 1.200000 }",
              "m_Offset": "{ 0.000000 , 0.060000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.500000 , 0.330000 , 0.180000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.600000 , 0.320000 , 0.600000 }",
              "m_Offset": "{ 1.350000 , 0.060000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "45.000000",
              "m_Color": "{ 0.500000 , 0.330000 , 0.180000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.600000 , 0.320000 , 0.600000 }",
              "m_Offset": "{ -1.350000 , 0.060000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "45.000000",
              "m_Color": "{ 0.500000 , 0.330000 , 0.180000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.400000 , 0.060000 , 1.000000 }",
              "m_Offset": "{ 0.000000 , 0.260000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.620000 , 0.450000 , 0.280000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.080000 , 1.900000 , 0.080000 }",
              "m_Offset": "{ 0.300000 , 1.200000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.350000 , 0.240000 , 0.140000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cone",
              "m_Size": "{ 0.140000 , 1.600000 , 1.100000 }",
              "m_Offset": "{ -0.350000 , 1.100000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.950000 , 0.940000 , 0.880000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.000000",
        "m_Roughness": "0.700000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "BoatB5",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "BoatB5",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.600000 , 0.350000 , 1.200000 }",
              "m_Offset": "{ 0.000000 , 0.060000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.500000 , 0.330000 , 0.180000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.600000 , 0.320000 , 0.600000 }",
              "m_Offset": "{ 1.350000 , 0.060000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "45.000000",
              "m_Color": "{ 0.500000 , 0.330000 , 0.180000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.600000 , 0.320000 , 0.600000 }",
              "m_Offset": "{ -1.350000 , 0.060000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "45.000000",
              "m_Color": "{ 0.500000 , 0.330000 , 0.180000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.400000 , 0.060000 , 1.000000 }",
              "m_Offset": "{ 0.000000 , 0.260000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.620000 , 0.450000 , 0.280000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.080000 , 1.900000 , 0.080000 }",
              "m_Offset": "{ 0.300000 , 1.200000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.350000 , 0.240000 , 0.140000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cone",
              "m_Size": "{ 0.140000 , 1.600000 , 1.100000 }",
              "m_Offset": "{ -0.350000 , 1.100000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.950000 , 0.940000 , 0.880000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.000000",
        "m_Roughness": "0.700000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "Tram5",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "Tram5",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 7.000000 , 1.500000 , 1.300000 }",
              "m_Offset": "{ 0.000000 , 1.050000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.950000 , 0.780000 , 0.120000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 7.020000 , 0.500000 , 1.320000 }",
              "m_Offset": "{ 0.000000 , 0.450000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.120000 , 0.300000 , 0.600000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 6.400000 , 0.550000 , 1.340000 }",
              "m_Offset": "{ 0.000000 , 1.500000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.150000 , 0.200000 , 0.250000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 7.000000 , 0.150000 , 1.200000 }",
              "m_Offset": "{ 0.000000 , 1.900000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.820000 , 0.820000 , 0.780000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.100000 , 0.100000 , 1.340000 }",
              "m_Offset": "{ 0.000000 , 1.050000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.120000 , 0.300000 , 0.600000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.060000 , 1.000000 , 0.060000 }",
              "m_Offset": "{ 0.000000 , 2.350000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 0.000000 , 1.000000 }",
              "m_RotationDegrees": "22.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.420000 , 0.200000 , 0.420000 }",
              "m_Offset": "{ 2.500000 , 0.220000 , 0.500000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.420000 , 0.200000 , 0.420000 }",
              "m_Offset": "{ 2.500000 , 0.220000 , -0.500000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.420000 , 0.200000 , 0.420000 }",
              "m_Offset": "{ -2.500000 , 0.220000 , 0.500000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.420000 , 0.200000 , 0.420000 }",
              "m_Offset": "{ -2.500000 , 0.220000 , -0.500000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.250000",
        "m_Roughness": "0.450000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "Wave5",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "Wave5",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 3.600000 , 0.500000 , 1.800000 }",
              "m_Offset": "{ 0.000000 , 0.250000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.160000 , 0.450000 , 0.650000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 3.600000 , 0.300000 , 1.100000 }",
              "m_Offset": "{ 0.000000 , 0.600000 , 0.250000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.850000 , 0.930000 , 0.970000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.550000 , 0.400000 , 0.550000 }",
              "m_Offset": "{ -1.200000 , 0.780000 , 0.200000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.950000 , 0.980000 , 1.000000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.600000 , 0.450000 , 0.600000 }",
              "m_Offset": "{ 0.100000 , 0.820000 , 0.200000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.950000 , 0.980000 , 1.000000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.500000 , 0.380000 , 0.500000 }",
              "m_Offset": "{ 1.300000 , 0.750000 , 0.200000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.950000 , 0.980000 , 1.000000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.000000",
        "m_Roughness": "0.300000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "PlantA5",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "PlantA5",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.620000 , 0.500000 , 0.620000 }",
              "m_Offset": "{ 0.000000 , 0.250000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.650000 , 0.400000 , 0.250000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.850000 , 0.700000 , 0.850000 }",
              "m_Offset": "{ 0.000000 , 0.800000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.200000 , 0.500000 , 0.220000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.000000",
        "m_Roughness": "0.850000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "PlantB5",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "PlantB5",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.620000 , 0.500000 , 0.620000 }",
              "m_Offset": "{ 0.000000 , 0.250000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.650000 , 0.400000 , 0.250000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.850000 , 0.700000 , 0.850000 }",
              "m_Offset": "{ 0.000000 , 0.800000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.200000 , 0.500000 , 0.220000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.000000",
        "m_Roughness": "0.850000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "VehA6",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "VehA6",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 1.700000 , 0.450000 , 1.000000 }",
              "m_Offset": "{ 0.000000 , 0.500000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.120000 , 0.120000 , 0.140000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 1.300000 , 0.700000 , 1.000000 }",
              "m_Offset": "{ -0.100000 , 1.100000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.750000 , 0.300000 , 0.550000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.100000 , 0.500000 , 0.800000 }",
              "m_Offset": "{ 0.780000 , 1.000000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.300000 , 0.450000 , 0.500000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.400000 , 0.160000 , 0.400000 }",
              "m_Offset": "{ 0.700000 , 0.200000 , 0.000000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.400000 , 0.160000 , 0.400000 }",
              "m_Offset": "{ -0.550000 , 0.200000 , 0.420000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.400000 , 0.160000 , 0.400000 }",
              "m_Offset": "{ -0.550000 , 0.200000 , -0.420000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.100000",
        "m_Roughness": "0.600000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "VehB6",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "VehB6",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.800000 , 1.100000 , 1.200000 }",
              "m_Offset": "{ 0.000000 , 0.950000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.920000 , 0.920000 , 0.900000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.820000 , 0.180000 , 1.220000 }",
              "m_Offset": "{ 0.000000 , 0.750000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.300000 , 0.700000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.400000 , 0.350000 , 1.240000 }",
              "m_Offset": "{ 0.100000 , 1.350000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.150000 , 0.200000 , 0.250000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.450000 , 0.180000 , 0.450000 }",
              "m_Offset": "{ 0.950000 , 0.250000 , 0.520000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.450000 , 0.180000 , 0.450000 }",
              "m_Offset": "{ 0.950000 , 0.250000 , -0.520000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.450000 , 0.180000 , 0.450000 }",
              "m_Offset": "{ -0.950000 , 0.250000 , 0.520000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.450000 , 0.180000 , 0.450000 }",
              "m_Offset": "{ -0.950000 , 0.250000 , -0.520000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.200000",
        "m_Roughness": "0.500000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "VehC6",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "VehC6",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 1.700000 , 0.450000 , 1.000000 }",
              "m_Offset": "{ 0.000000 , 0.500000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.120000 , 0.120000 , 0.140000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 1.300000 , 0.700000 , 1.000000 }",
              "m_Offset": "{ -0.100000 , 1.100000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.950000 , 0.750000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.100000 , 0.500000 , 0.800000 }",
              "m_Offset": "{ 0.780000 , 1.000000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.300000 , 0.450000 , 0.500000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.400000 , 0.160000 , 0.400000 }",
              "m_Offset": "{ 0.700000 , 0.200000 , 0.000000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.400000 , 0.160000 , 0.400000 }",
              "m_Offset": "{ -0.550000 , 0.200000 , 0.420000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.400000 , 0.160000 , 0.400000 }",
              "m_Offset": "{ -0.550000 , 0.200000 , -0.420000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.100000",
        "m_Roughness": "0.600000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "BikeA6",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "BikeA6",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 1.900000 , 0.300000 , 1.100000 }",
              "m_Offset": "{ 0.000000 , 0.400000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.800000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.600000 , 0.300000 , 1.000000 }",
              "m_Offset": "{ 0.620000 , 0.620000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.800000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.500000 , 0.550000 , 1.000000 }",
              "m_Offset": "{ -0.550000 , 0.820000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.800000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.080000 , 0.750000 , 0.080000 }",
              "m_Offset": "{ -0.200000 , 1.050000 , 0.450000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.080000 , 0.750000 , 0.080000 }",
              "m_Offset": "{ -0.200000 , 1.050000 , -0.450000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.080000 , 0.080000 , 1.000000 }",
              "m_Offset": "{ -0.200000 , 1.450000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ 0.680000 , 0.280000 , 0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ 0.680000 , 0.280000 , -0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ -0.680000 , 0.280000 , 0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ -0.680000 , 0.280000 , -0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.400000 , 0.450000 , 0.350000 }",
              "m_Offset": "{ -0.450000 , 0.950000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.750000 , 0.080000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.320000 , 0.320000 , 0.320000 }",
              "m_Offset": "{ -0.450000 , 1.320000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.820000 , 0.600000 , 0.420000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.340000 , 0.160000 , 0.340000 }",
              "m_Offset": "{ -0.450000 , 1.470000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.080000 , 0.080000 , 0.080000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.300000",
        "m_Roughness": "0.400000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "BikeB6",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "BikeB6",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 1.900000 , 0.300000 , 1.100000 }",
              "m_Offset": "{ 0.000000 , 0.400000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.150000 , 0.350000 , 0.650000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.600000 , 0.300000 , 1.000000 }",
              "m_Offset": "{ 0.620000 , 0.620000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.150000 , 0.350000 , 0.650000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.500000 , 0.550000 , 1.000000 }",
              "m_Offset": "{ -0.550000 , 0.820000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.150000 , 0.350000 , 0.650000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.080000 , 0.750000 , 0.080000 }",
              "m_Offset": "{ -0.200000 , 1.050000 , 0.450000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.080000 , 0.750000 , 0.080000 }",
              "m_Offset": "{ -0.200000 , 1.050000 , -0.450000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.080000 , 0.080000 , 1.000000 }",
              "m_Offset": "{ -0.200000 , 1.450000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ 0.680000 , 0.280000 , 0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ 0.680000 , 0.280000 , -0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ -0.680000 , 0.280000 , 0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ -0.680000 , 0.280000 , -0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.400000 , 0.450000 , 0.350000 }",
              "m_Offset": "{ -0.450000 , 0.950000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.750000 , 0.080000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.320000 , 0.320000 , 0.320000 }",
              "m_Offset": "{ -0.450000 , 1.320000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.820000 , 0.600000 , 0.420000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.340000 , 0.160000 , 0.340000 }",
              "m_Offset": "{ -0.450000 , 1.470000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.080000 , 0.080000 , 0.080000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.300000",
        "m_Roughness": "0.400000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "BoatA6",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "BoatA6",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.600000 , 0.350000 , 1.200000 }",
              "m_Offset": "{ 0.000000 , 0.060000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.500000 , 0.330000 , 0.180000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.600000 , 0.320000 , 0.600000 }",
              "m_Offset": "{ 1.350000 , 0.060000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "45.000000",
              "m_Color": "{ 0.500000 , 0.330000 , 0.180000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.600000 , 0.320000 , 0.600000 }",
              "m_Offset": "{ -1.350000 , 0.060000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "45.000000",
              "m_Color": "{ 0.500000 , 0.330000 , 0.180000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.400000 , 0.060000 , 1.000000 }",
              "m_Offset": "{ 0.000000 , 0.260000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.620000 , 0.450000 , 0.280000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.080000 , 1.900000 , 0.080000 }",
              "m_Offset": "{ 0.300000 , 1.200000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.350000 , 0.240000 , 0.140000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cone",
              "m_Size": "{ 0.140000 , 1.600000 , 1.100000 }",
              "m_Offset": "{ -0.350000 , 1.100000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.950000 , 0.940000 , 0.880000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.000000",
        "m_Roughness": "0.700000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "BoatB6",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "BoatB6",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.600000 , 0.350000 , 1.200000 }",
              "m_Offset": "{ 0.000000 , 0.060000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.500000 , 0.330000 , 0.180000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.600000 , 0.320000 , 0.600000 }",
              "m_Offset": "{ 1.350000 , 0.060000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "45.000000",
              "m_Color": "{ 0.500000 , 0.330000 , 0.180000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.600000 , 0.320000 , 0.600000 }",
              "m_Offset": "{ -1.350000 , 0.060000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "45.000000",
              "m_Color": "{ 0.500000 , 0.330000 , 0.180000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.400000 , 0.060000 , 1.000000 }",
              "m_Offset": "{ 0.000000 , 0.260000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.620000 , 0.450000 , 0.280000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.080000 , 1.900000 , 0.080000 }",
              "m_Offset": "{ 0.300000 , 1.200000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.350000 , 0.240000 , 0.140000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cone",
              "m_Size": "{ 0.140000 , 1.600000 , 1.100000 }",
              "m_Offset": "{ -0.350000 , 1.100000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.950000 , 0.940000 , 0.880000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.000000",
        "m_Roughness": "0.700000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "Tram6",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "Tram6",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 7.000000 , 1.500000 , 1.300000 }",
              "m_Offset": "{ 0.000000 , 1.050000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.950000 , 0.780000 , 0.120000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 7.020000 , 0.500000 , 1.320000 }",
              "m_Offset": "{ 0.000000 , 0.450000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.120000 , 0.300000 , 0.600000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 6.400000 , 0.550000 , 1.340000 }",
              "m_Offset": "{ 0.000000 , 1.500000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.150000 , 0.200000 , 0.250000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 7.000000 , 0.150000 , 1.200000 }",
              "m_Offset": "{ 0.000000 , 1.900000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.820000 , 0.820000 , 0.780000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.100000 , 0.100000 , 1.340000 }",
              "m_Offset": "{ 0.000000 , 1.050000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.120000 , 0.300000 , 0.600000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.060000 , 1.000000 , 0.060000 }",
              "m_Offset": "{ 0.000000 , 2.350000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 0.000000 , 1.000000 }",
              "m_RotationDegrees": "22.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.420000 , 0.200000 , 0.420000 }",
              "m_Offset": "{ 2.500000 , 0.220000 , 0.500000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.420000 , 0.200000 , 0.420000 }",
              "m_Offset": "{ 2.500000 , 0.220000 , -0.500000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.420000 , 0.200000 , 0.420000 }",
              "m_Offset": "{ -2.500000 , 0.220000 , 0.500000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.420000 , 0.200000 , 0.420000 }",
              "m_Offset": "{ -2.500000 , 0.220000 , -0.500000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.250000",
        "m_Roughness": "0.450000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "Wave6",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "Wave6",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 3.600000 , 0.500000 , 1.800000 }",
              "m_Offset": "{ 0.000000 , 0.250000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.160000 , 0.450000 , 0.650000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 3.600000 , 0.300000 , 1.100000 }",
              "m_Offset": "{ 0.000000 , 0.600000 , 0.250000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.850000 , 0.930000 , 0.970000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.550000 , 0.400000 , 0.550000 }",
              "m_Offset": "{ -1.200000 , 0.780000 , 0.200000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.950000 , 0.980000 , 1.000000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.600000 , 0.450000 , 0.600000 }",
              "m_Offset": "{ 0.100000 , 0.820000 , 0.200000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.950000 , 0.980000 , 1.000000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.500000 , 0.380000 , 0.500000 }",
              "m_Offset": "{ 1.300000 , 0.750000 , 0.200000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.950000 , 0.980000 , 1.000000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.000000",
        "m_Roughness": "0.300000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "PlantA6",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "PlantA6",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.620000 , 0.500000 , 0.620000 }",
              "m_Offset": "{ 0.000000 , 0.250000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.650000 , 0.400000 , 0.250000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.850000 , 0.700000 , 0.850000 }",
              "m_Offset": "{ 0.000000 , 0.800000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.200000 , 0.500000 , 0.220000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.000000",
        "m_Roughness": "0.850000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "PlantB6",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "PlantB6",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.620000 , 0.500000 , 0.620000 }",
              "m_Offset": "{ 0.000000 , 0.250000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.650000 , 0.400000 , 0.250000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.850000 , 0.700000 , 0.850000 }",
              "m_Offset": "{ 0.000000 , 0.800000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.200000 , 0.500000 , 0.220000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.000000",
        "m_Roughness": "0.850000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "VehA7",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "VehA7",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 1.700000 , 0.450000 , 1.000000 }",
              "m_Offset": "{ 0.000000 , 0.500000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.120000 , 0.120000 , 0.140000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 1.300000 , 0.700000 , 1.000000 }",
              "m_Offset": "{ -0.100000 , 1.100000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.250000 , 0.500000 , 0.800000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.100000 , 0.500000 , 0.800000 }",
              "m_Offset": "{ 0.780000 , 1.000000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.300000 , 0.450000 , 0.500000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.400000 , 0.160000 , 0.400000 }",
              "m_Offset": "{ 0.700000 , 0.200000 , 0.000000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.400000 , 0.160000 , 0.400000 }",
              "m_Offset": "{ -0.550000 , 0.200000 , 0.420000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.400000 , 0.160000 , 0.400000 }",
              "m_Offset": "{ -0.550000 , 0.200000 , -0.420000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.100000",
        "m_Roughness": "0.600000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "VehB7",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "VehB7",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.800000 , 1.100000 , 1.200000 }",
              "m_Offset": "{ 0.000000 , 0.950000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.920000 , 0.920000 , 0.900000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.820000 , 0.180000 , 1.220000 }",
              "m_Offset": "{ 0.000000 , 0.750000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.300000 , 0.700000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.400000 , 0.350000 , 1.240000 }",
              "m_Offset": "{ 0.100000 , 1.350000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.150000 , 0.200000 , 0.250000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.450000 , 0.180000 , 0.450000 }",
              "m_Offset": "{ 0.950000 , 0.250000 , 0.520000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.450000 , 0.180000 , 0.450000 }",
              "m_Offset": "{ 0.950000 , 0.250000 , -0.520000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.450000 , 0.180000 , 0.450000 }",
              "m_Offset": "{ -0.950000 , 0.250000 , 0.520000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.450000 , 0.180000 , 0.450000 }",
              "m_Offset": "{ -0.950000 , 0.250000 , -0.520000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.200000",
        "m_Roughness": "0.500000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "VehC7",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "VehC7",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 1.700000 , 0.450000 , 1.000000 }",
              "m_Offset": "{ 0.000000 , 0.500000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.120000 , 0.120000 , 0.140000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 1.300000 , 0.700000 , 1.000000 }",
              "m_Offset": "{ -0.100000 , 1.100000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.200000 , 0.620000 , 0.400000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.100000 , 0.500000 , 0.800000 }",
              "m_Offset": "{ 0.780000 , 1.000000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.300000 , 0.450000 , 0.500000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.400000 , 0.160000 , 0.400000 }",
              "m_Offset": "{ 0.700000 , 0.200000 , 0.000000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.400000 , 0.160000 , 0.400000 }",
              "m_Offset": "{ -0.550000 , 0.200000 , 0.420000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.400000 , 0.160000 , 0.400000 }",
              "m_Offset": "{ -0.550000 , 0.200000 , -0.420000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.100000",
        "m_Roughness": "0.600000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "BikeA7",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "BikeA7",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 1.900000 , 0.300000 , 1.100000 }",
              "m_Offset": "{ 0.000000 , 0.400000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.150000 , 0.350000 , 0.650000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.600000 , 0.300000 , 1.000000 }",
              "m_Offset": "{ 0.620000 , 0.620000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.150000 , 0.350000 , 0.650000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.500000 , 0.550000 , 1.000000 }",
              "m_Offset": "{ -0.550000 , 0.820000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.150000 , 0.350000 , 0.650000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.080000 , 0.750000 , 0.080000 }",
              "m_Offset": "{ -0.200000 , 1.050000 , 0.450000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.080000 , 0.750000 , 0.080000 }",
              "m_Offset": "{ -0.200000 , 1.050000 , -0.450000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.080000 , 0.080000 , 1.000000 }",
              "m_Offset": "{ -0.200000 , 1.450000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ 0.680000 , 0.280000 , 0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ 0.680000 , 0.280000 , -0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ -0.680000 , 0.280000 , 0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ -0.680000 , 0.280000 , -0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.400000 , 0.450000 , 0.350000 }",
              "m_Offset": "{ -0.450000 , 0.950000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.750000 , 0.080000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.320000 , 0.320000 , 0.320000 }",
              "m_Offset": "{ -0.450000 , 1.320000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.820000 , 0.600000 , 0.420000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.340000 , 0.160000 , 0.340000 }",
              "m_Offset": "{ -0.450000 , 1.470000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.080000 , 0.080000 , 0.080000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.300000",
        "m_Roughness": "0.400000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "BikeB7",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "BikeB7",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 1.900000 , 0.300000 , 1.100000 }",
              "m_Offset": "{ 0.000000 , 0.400000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.850000 , 0.500000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.600000 , 0.300000 , 1.000000 }",
              "m_Offset": "{ 0.620000 , 0.620000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.850000 , 0.500000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.500000 , 0.550000 , 1.000000 }",
              "m_Offset": "{ -0.550000 , 0.820000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.850000 , 0.500000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.080000 , 0.750000 , 0.080000 }",
              "m_Offset": "{ -0.200000 , 1.050000 , 0.450000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.080000 , 0.750000 , 0.080000 }",
              "m_Offset": "{ -0.200000 , 1.050000 , -0.450000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.080000 , 0.080000 , 1.000000 }",
              "m_Offset": "{ -0.200000 , 1.450000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ 0.680000 , 0.280000 , 0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ 0.680000 , 0.280000 , -0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ -0.680000 , 0.280000 , 0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ -0.680000 , 0.280000 , -0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.400000 , 0.450000 , 0.350000 }",
              "m_Offset": "{ -0.450000 , 0.950000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.750000 , 0.080000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.320000 , 0.320000 , 0.320000 }",
              "m_Offset": "{ -0.450000 , 1.320000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.820000 , 0.600000 , 0.420000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.340000 , 0.160000 , 0.340000 }",
              "m_Offset": "{ -0.450000 , 1.470000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.080000 , 0.080000 , 0.080000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.300000",
        "m_Roughness": "0.400000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "BoatA7",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "BoatA7",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.600000 , 0.350000 , 1.200000 }",
              "m_Offset": "{ 0.000000 , 0.060000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.500000 , 0.330000 , 0.180000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.600000 , 0.320000 , 0.600000 }",
              "m_Offset": "{ 1.350000 , 0.060000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "45.000000",
              "m_Color": "{ 0.500000 , 0.330000 , 0.180000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.600000 , 0.320000 , 0.600000 }",
              "m_Offset": "{ -1.350000 , 0.060000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "45.000000",
              "m_Color": "{ 0.500000 , 0.330000 , 0.180000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.400000 , 0.060000 , 1.000000 }",
              "m_Offset": "{ 0.000000 , 0.260000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.620000 , 0.450000 , 0.280000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.080000 , 1.900000 , 0.080000 }",
              "m_Offset": "{ 0.300000 , 1.200000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.350000 , 0.240000 , 0.140000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cone",
              "m_Size": "{ 0.140000 , 1.600000 , 1.100000 }",
              "m_Offset": "{ -0.350000 , 1.100000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.950000 , 0.940000 , 0.880000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.000000",
        "m_Roughness": "0.700000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "BoatB7",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "BoatB7",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.600000 , 0.350000 , 1.200000 }",
              "m_Offset": "{ 0.000000 , 0.060000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.500000 , 0.330000 , 0.180000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.600000 , 0.320000 , 0.600000 }",
              "m_Offset": "{ 1.350000 , 0.060000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "45.000000",
              "m_Color": "{ 0.500000 , 0.330000 , 0.180000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.600000 , 0.320000 , 0.600000 }",
              "m_Offset": "{ -1.350000 , 0.060000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "45.000000",
              "m_Color": "{ 0.500000 , 0.330000 , 0.180000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.400000 , 0.060000 , 1.000000 }",
              "m_Offset": "{ 0.000000 , 0.260000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.620000 , 0.450000 , 0.280000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.080000 , 1.900000 , 0.080000 }",
              "m_Offset": "{ 0.300000 , 1.200000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.350000 , 0.240000 , 0.140000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cone",
              "m_Size": "{ 0.140000 , 1.600000 , 1.100000 }",
              "m_Offset": "{ -0.350000 , 1.100000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.950000 , 0.940000 , 0.880000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.000000",
        "m_Roughness": "0.700000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "Tram7",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "Tram7",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 7.000000 , 1.500000 , 1.300000 }",
              "m_Offset": "{ 0.000000 , 1.050000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.950000 , 0.780000 , 0.120000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 7.020000 , 0.500000 , 1.320000 }",
              "m_Offset": "{ 0.000000 , 0.450000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.120000 , 0.300000 , 0.600000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 6.400000 , 0.550000 , 1.340000 }",
              "m_Offset": "{ 0.000000 , 1.500000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.150000 , 0.200000 , 0.250000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 7.000000 , 0.150000 , 1.200000 }",
              "m_Offset": "{ 0.000000 , 1.900000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.820000 , 0.820000 , 0.780000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.100000 , 0.100000 , 1.340000 }",
              "m_Offset": "{ 0.000000 , 1.050000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.120000 , 0.300000 , 0.600000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.060000 , 1.000000 , 0.060000 }",
              "m_Offset": "{ 0.000000 , 2.350000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 0.000000 , 1.000000 }",
              "m_RotationDegrees": "22.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.420000 , 0.200000 , 0.420000 }",
              "m_Offset": "{ 2.500000 , 0.220000 , 0.500000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.420000 , 0.200000 , 0.420000 }",
              "m_Offset": "{ 2.500000 , 0.220000 , -0.500000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.420000 , 0.200000 , 0.420000 }",
              "m_Offset": "{ -2.500000 , 0.220000 , 0.500000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.420000 , 0.200000 , 0.420000 }",
              "m_Offset": "{ -2.500000 , 0.220000 , -0.500000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.250000",
        "m_Roughness": "0.450000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "Wave7",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "Wave7",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 3.600000 , 0.500000 , 1.800000 }",
              "m_Offset": "{ 0.000000 , 0.250000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.160000 , 0.450000 , 0.650000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 3.600000 , 0.300000 , 1.100000 }",
              "m_Offset": "{ 0.000000 , 0.600000 , 0.250000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.850000 , 0.930000 , 0.970000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.550000 , 0.400000 , 0.550000 }",
              "m_Offset": "{ -1.200000 , 0.780000 , 0.200000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.950000 , 0.980000 , 1.000000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.600000 , 0.450000 , 0.600000 }",
              "m_Offset": "{ 0.100000 , 0.820000 , 0.200000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.950000 , 0.980000 , 1.000000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.500000 , 0.380000 , 0.500000 }",
              "m_Offset": "{ 1.300000 , 0.750000 , 0.200000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.950000 , 0.980000 , 1.000000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.000000",
        "m_Roughness": "0.300000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "PlantA7",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "PlantA7",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.620000 , 0.500000 , 0.620000 }",
              "m_Offset": "{ 0.000000 , 0.250000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.650000 , 0.400000 , 0.250000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.850000 , 0.700000 , 0.850000 }",
              "m_Offset": "{ 0.000000 , 0.800000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.200000 , 0.500000 , 0.220000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.000000",
        "m_Roughness": "0.850000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "PlantB7",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "PlantB7",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.620000 , 0.500000 , 0.620000 }",
              "m_Offset": "{ 0.000000 , 0.250000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.650000 , 0.400000 , 0.250000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.850000 , 0.700000 , 0.850000 }",
              "m_Offset": "{ 0.000000 , 0.800000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.200000 , 0.500000 , 0.220000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.000000",
        "m_Roughness": "0.850000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "VehA8",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "VehA8",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 1.700000 , 0.450000 , 1.000000 }",
              "m_Offset": "{ 0.000000 , 0.500000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.120000 , 0.120000 , 0.140000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 1.300000 , 0.700000 , 1.000000 }",
              "m_Offset": "{ -0.100000 , 1.100000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.950000 , 0.750000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.100000 , 0.500000 , 0.800000 }",
              "m_Offset": "{ 0.780000 , 1.000000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.300000 , 0.450000 , 0.500000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.400000 , 0.160000 , 0.400000 }",
              "m_Offset": "{ 0.700000 , 0.200000 , 0.000000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.400000 , 0.160000 , 0.400000 }",
              "m_Offset": "{ -0.550000 , 0.200000 , 0.420000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.400000 , 0.160000 , 0.400000 }",
              "m_Offset": "{ -0.550000 , 0.200000 , -0.420000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.100000",
        "m_Roughness": "0.600000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "VehB8",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "VehB8",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.800000 , 1.100000 , 1.200000 }",
              "m_Offset": "{ 0.000000 , 0.950000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.920000 , 0.920000 , 0.900000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.820000 , 0.180000 , 1.220000 }",
              "m_Offset": "{ 0.000000 , 0.750000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.300000 , 0.700000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.400000 , 0.350000 , 1.240000 }",
              "m_Offset": "{ 0.100000 , 1.350000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.150000 , 0.200000 , 0.250000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.450000 , 0.180000 , 0.450000 }",
              "m_Offset": "{ 0.950000 , 0.250000 , 0.520000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.450000 , 0.180000 , 0.450000 }",
              "m_Offset": "{ 0.950000 , 0.250000 , -0.520000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.450000 , 0.180000 , 0.450000 }",
              "m_Offset": "{ -0.950000 , 0.250000 , 0.520000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.450000 , 0.180000 , 0.450000 }",
              "m_Offset": "{ -0.950000 , 0.250000 , -0.520000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.200000",
        "m_Roughness": "0.500000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "VehC8",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "VehC8",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 1.700000 , 0.450000 , 1.000000 }",
              "m_Offset": "{ 0.000000 , 0.500000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.120000 , 0.120000 , 0.140000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 1.300000 , 0.700000 , 1.000000 }",
              "m_Offset": "{ -0.100000 , 1.100000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.750000 , 0.300000 , 0.550000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.100000 , 0.500000 , 0.800000 }",
              "m_Offset": "{ 0.780000 , 1.000000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.300000 , 0.450000 , 0.500000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.400000 , 0.160000 , 0.400000 }",
              "m_Offset": "{ 0.700000 , 0.200000 , 0.000000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.400000 , 0.160000 , 0.400000 }",
              "m_Offset": "{ -0.550000 , 0.200000 , 0.420000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.400000 , 0.160000 , 0.400000 }",
              "m_Offset": "{ -0.550000 , 0.200000 , -0.420000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.100000",
        "m_Roughness": "0.600000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "BikeA8",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "BikeA8",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 1.900000 , 0.300000 , 1.100000 }",
              "m_Offset": "{ 0.000000 , 0.400000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.850000 , 0.500000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.600000 , 0.300000 , 1.000000 }",
              "m_Offset": "{ 0.620000 , 0.620000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.850000 , 0.500000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.500000 , 0.550000 , 1.000000 }",
              "m_Offset": "{ -0.550000 , 0.820000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.850000 , 0.500000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.080000 , 0.750000 , 0.080000 }",
              "m_Offset": "{ -0.200000 , 1.050000 , 0.450000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.080000 , 0.750000 , 0.080000 }",
              "m_Offset": "{ -0.200000 , 1.050000 , -0.450000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.080000 , 0.080000 , 1.000000 }",
              "m_Offset": "{ -0.200000 , 1.450000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ 0.680000 , 0.280000 , 0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ 0.680000 , 0.280000 , -0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ -0.680000 , 0.280000 , 0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ -0.680000 , 0.280000 , -0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.400000 , 0.450000 , 0.350000 }",
              "m_Offset": "{ -0.450000 , 0.950000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.750000 , 0.080000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.320000 , 0.320000 , 0.320000 }",
              "m_Offset": "{ -0.450000 , 1.320000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.820000 , 0.600000 , 0.420000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.340000 , 0.160000 , 0.340000 }",
              "m_Offset": "{ -0.450000 , 1.470000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.080000 , 0.080000 , 0.080000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.300000",
        "m_Roughness": "0.400000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "BikeB8",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "BikeB8",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 1.900000 , 0.300000 , 1.100000 }",
              "m_Offset": "{ 0.000000 , 0.400000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.800000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.600000 , 0.300000 , 1.000000 }",
              "m_Offset": "{ 0.620000 , 0.620000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.800000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.500000 , 0.550000 , 1.000000 }",
              "m_Offset": "{ -0.550000 , 0.820000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.800000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.080000 , 0.750000 , 0.080000 }",
              "m_Offset": "{ -0.200000 , 1.050000 , 0.450000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.080000 , 0.750000 , 0.080000 }",
              "m_Offset": "{ -0.200000 , 1.050000 , -0.450000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.080000 , 0.080000 , 1.000000 }",
              "m_Offset": "{ -0.200000 , 1.450000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ 0.680000 , 0.280000 , 0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ 0.680000 , 0.280000 , -0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ -0.680000 , 0.280000 , 0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ -0.680000 , 0.280000 , -0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.400000 , 0.450000 , 0.350000 }",
              "m_Offset": "{ -0.450000 , 0.950000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.750000 , 0.080000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.320000 , 0.320000 , 0.320000 }",
              "m_Offset": "{ -0.450000 , 1.320000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.820000 , 0.600000 , 0.420000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.340000 , 0.160000 , 0.340000 }",
              "m_Offset": "{ -0.450000 , 1.470000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.080000 , 0.080000 , 0.080000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.300000",
        "m_Roughness": "0.400000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "BoatA8",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "BoatA8",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.600000 , 0.350000 , 1.200000 }",
              "m_Offset": "{ 0.000000 , 0.060000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.500000 , 0.330000 , 0.180000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.600000 , 0.320000 , 0.600000 }",
              "m_Offset": "{ 1.350000 , 0.060000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "45.000000",
              "m_Color": "{ 0.500000 , 0.330000 , 0.180000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.600000 , 0.320000 , 0.600000 }",
              "m_Offset": "{ -1.350000 , 0.060000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "45.000000",
              "m_Color": "{ 0.500000 , 0.330000 , 0.180000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.400000 , 0.060000 , 1.000000 }",
              "m_Offset": "{ 0.000000 , 0.260000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.620000 , 0.450000 , 0.280000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.080000 , 1.900000 , 0.080000 }",
              "m_Offset": "{ 0.300000 , 1.200000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.350000 , 0.240000 , 0.140000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cone",
              "m_Size": "{ 0.140000 , 1.600000 , 1.100000 }",
              "m_Offset": "{ -0.350000 , 1.100000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.950000 , 0.940000 , 0.880000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.000000",
        "m_Roughness": "0.700000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "BoatB8",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "BoatB8",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.600000 , 0.350000 , 1.200000 }",
              "m_Offset": "{ 0.000000 , 0.060000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.500000 , 0.330000 , 0.180000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.600000 , 0.320000 , 0.600000 }",
              "m_Offset": "{ 1.350000 , 0.060000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "45.000000",
              "m_Color": "{ 0.500000 , 0.330000 , 0.180000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.600000 , 0.320000 , 0.600000 }",
              "m_Offset": "{ -1.350000 , 0.060000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "45.000000",
              "m_Color": "{ 0.500000 , 0.330000 , 0.180000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.400000 , 0.060000 , 1.000000 }",
              "m_Offset": "{ 0.000000 , 0.260000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.620000 , 0.450000 , 0.280000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.080000 , 1.900000 , 0.080000 }",
              "m_Offset": "{ 0.300000 , 1.200000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.350000 , 0.240000 , 0.140000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cone",
              "m_Size": "{ 0.140000 , 1.600000 , 1.100000 }",
              "m_Offset": "{ -0.350000 , 1.100000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.950000 , 0.940000 , 0.880000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.000000",
        "m_Roughness": "0.700000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "Tram8",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "Tram8",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 7.000000 , 1.500000 , 1.300000 }",
              "m_Offset": "{ 0.000000 , 1.050000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.950000 , 0.780000 , 0.120000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 7.020000 , 0.500000 , 1.320000 }",
              "m_Offset": "{ 0.000000 , 0.450000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.120000 , 0.300000 , 0.600000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 6.400000 , 0.550000 , 1.340000 }",
              "m_Offset": "{ 0.000000 , 1.500000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.150000 , 0.200000 , 0.250000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 7.000000 , 0.150000 , 1.200000 }",
              "m_Offset": "{ 0.000000 , 1.900000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.820000 , 0.820000 , 0.780000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.100000 , 0.100000 , 1.340000 }",
              "m_Offset": "{ 0.000000 , 1.050000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.120000 , 0.300000 , 0.600000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.060000 , 1.000000 , 0.060000 }",
              "m_Offset": "{ 0.000000 , 2.350000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 0.000000 , 1.000000 }",
              "m_RotationDegrees": "22.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.420000 , 0.200000 , 0.420000 }",
              "m_Offset": "{ 2.500000 , 0.220000 , 0.500000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.420000 , 0.200000 , 0.420000 }",
              "m_Offset": "{ 2.500000 , 0.220000 , -0.500000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.420000 , 0.200000 , 0.420000 }",
              "m_Offset": "{ -2.500000 , 0.220000 , 0.500000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.420000 , 0.200000 , 0.420000 }",
              "m_Offset": "{ -2.500000 , 0.220000 , -0.500000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.250000",
        "m_Roughness": "0.450000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "Wave8",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "Wave8",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 3.600000 , 0.500000 , 1.800000 }",
              "m_Offset": "{ 0.000000 , 0.250000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.160000 , 0.450000 , 0.650000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 3.600000 , 0.300000 , 1.100000 }",
              "m_Offset": "{ 0.000000 , 0.600000 , 0.250000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.850000 , 0.930000 , 0.970000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.550000 , 0.400000 , 0.550000 }",
              "m_Offset": "{ -1.200000 , 0.780000 , 0.200000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.950000 , 0.980000 , 1.000000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.600000 , 0.450000 , 0.600000 }",
              "m_Offset": "{ 0.100000 , 0.820000 , 0.200000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.950000 , 0.980000 , 1.000000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.500000 , 0.380000 , 0.500000 }",
              "m_Offset": "{ 1.300000 , 0.750000 , 0.200000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.950000 , 0.980000 , 1.000000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.000000",
        "m_Roughness": "0.300000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "PlantA8",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "PlantA8",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.620000 , 0.500000 , 0.620000 }",
              "m_Offset": "{ 0.000000 , 0.250000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.650000 , 0.400000 , 0.250000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.850000 , 0.700000 , 0.850000 }",
              "m_Offset": "{ 0.000000 , 0.800000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.200000 , 0.500000 , 0.220000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.000000",
        "m_Roughness": "0.850000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "PlantB8",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "PlantB8",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.620000 , 0.500000 , 0.620000 }",
              "m_Offset": "{ 0.000000 , 0.250000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.650000 , 0.400000 , 0.250000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.850000 , 0.700000 , 0.850000 }",
              "m_Offset": "{ 0.000000 , 0.800000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.200000 , 0.500000 , 0.220000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.000000",
        "m_Roughness": "0.850000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "VehA9",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "VehA9",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 1.700000 , 0.450000 , 1.000000 }",
              "m_Offset": "{ 0.000000 , 0.500000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.120000 , 0.120000 , 0.140000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 1.300000 , 0.700000 , 1.000000 }",
              "m_Offset": "{ -0.100000 , 1.100000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.200000 , 0.620000 , 0.400000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.100000 , 0.500000 , 0.800000 }",
              "m_Offset": "{ 0.780000 , 1.000000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.300000 , 0.450000 , 0.500000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.400000 , 0.160000 , 0.400000 }",
              "m_Offset": "{ 0.700000 , 0.200000 , 0.000000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.400000 , 0.160000 , 0.400000 }",
              "m_Offset": "{ -0.550000 , 0.200000 , 0.420000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.400000 , 0.160000 , 0.400000 }",
              "m_Offset": "{ -0.550000 , 0.200000 , -0.420000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.100000",
        "m_Roughness": "0.600000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "VehB9",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "VehB9",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.800000 , 1.100000 , 1.200000 }",
              "m_Offset": "{ 0.000000 , 0.950000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.920000 , 0.920000 , 0.900000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.820000 , 0.180000 , 1.220000 }",
              "m_Offset": "{ 0.000000 , 0.750000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.300000 , 0.700000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.400000 , 0.350000 , 1.240000 }",
              "m_Offset": "{ 0.100000 , 1.350000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.150000 , 0.200000 , 0.250000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.450000 , 0.180000 , 0.450000 }",
              "m_Offset": "{ 0.950000 , 0.250000 , 0.520000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.450000 , 0.180000 , 0.450000 }",
              "m_Offset": "{ 0.950000 , 0.250000 , -0.520000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.450000 , 0.180000 , 0.450000 }",
              "m_Offset": "{ -0.950000 , 0.250000 , 0.520000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.450000 , 0.180000 , 0.450000 }",
              "m_Offset": "{ -0.950000 , 0.250000 , -0.520000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.200000",
        "m_Roughness": "0.500000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "VehC9",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "VehC9",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 1.700000 , 0.450000 , 1.000000 }",
              "m_Offset": "{ 0.000000 , 0.500000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.120000 , 0.120000 , 0.140000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 1.300000 , 0.700000 , 1.000000 }",
              "m_Offset": "{ -0.100000 , 1.100000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.250000 , 0.500000 , 0.800000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.100000 , 0.500000 , 0.800000 }",
              "m_Offset": "{ 0.780000 , 1.000000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.300000 , 0.450000 , 0.500000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.400000 , 0.160000 , 0.400000 }",
              "m_Offset": "{ 0.700000 , 0.200000 , 0.000000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.400000 , 0.160000 , 0.400000 }",
              "m_Offset": "{ -0.550000 , 0.200000 , 0.420000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.400000 , 0.160000 , 0.400000 }",
              "m_Offset": "{ -0.550000 , 0.200000 , -0.420000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.100000",
        "m_Roughness": "0.600000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "BikeA9",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "BikeA9",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 1.900000 , 0.300000 , 1.100000 }",
              "m_Offset": "{ 0.000000 , 0.400000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.800000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.600000 , 0.300000 , 1.000000 }",
              "m_Offset": "{ 0.620000 , 0.620000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.800000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.500000 , 0.550000 , 1.000000 }",
              "m_Offset": "{ -0.550000 , 0.820000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.800000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.080000 , 0.750000 , 0.080000 }",
              "m_Offset": "{ -0.200000 , 1.050000 , 0.450000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.080000 , 0.750000 , 0.080000 }",
              "m_Offset": "{ -0.200000 , 1.050000 , -0.450000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.080000 , 0.080000 , 1.000000 }",
              "m_Offset": "{ -0.200000 , 1.450000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ 0.680000 , 0.280000 , 0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ 0.680000 , 0.280000 , -0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ -0.680000 , 0.280000 , 0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ -0.680000 , 0.280000 , -0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.400000 , 0.450000 , 0.350000 }",
              "m_Offset": "{ -0.450000 , 0.950000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.750000 , 0.080000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.320000 , 0.320000 , 0.320000 }",
              "m_Offset": "{ -0.450000 , 1.320000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.820000 , 0.600000 , 0.420000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.340000 , 0.160000 , 0.340000 }",
              "m_Offset": "{ -0.450000 , 1.470000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.080000 , 0.080000 , 0.080000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.300000",
        "m_Roughness": "0.400000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "BikeB9",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "BikeB9",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 1.900000 , 0.300000 , 1.100000 }",
              "m_Offset": "{ 0.000000 , 0.400000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.150000 , 0.350000 , 0.650000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.600000 , 0.300000 , 1.000000 }",
              "m_Offset": "{ 0.620000 , 0.620000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.150000 , 0.350000 , 0.650000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.500000 , 0.550000 , 1.000000 }",
              "m_Offset": "{ -0.550000 , 0.820000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.150000 , 0.350000 , 0.650000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.080000 , 0.750000 , 0.080000 }",
              "m_Offset": "{ -0.200000 , 1.050000 , 0.450000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.080000 , 0.750000 , 0.080000 }",
              "m_Offset": "{ -0.200000 , 1.050000 , -0.450000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.080000 , 0.080000 , 1.000000 }",
              "m_Offset": "{ -0.200000 , 1.450000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ 0.680000 , 0.280000 , 0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ 0.680000 , 0.280000 , -0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ -0.680000 , 0.280000 , 0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ -0.680000 , 0.280000 , -0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.400000 , 0.450000 , 0.350000 }",
              "m_Offset": "{ -0.450000 , 0.950000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.750000 , 0.080000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.320000 , 0.320000 , 0.320000 }",
              "m_Offset": "{ -0.450000 , 1.320000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.820000 , 0.600000 , 0.420000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.340000 , 0.160000 , 0.340000 }",
              "m_Offset": "{ -0.450000 , 1.470000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.080000 , 0.080000 , 0.080000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.300000",
        "m_Roughness": "0.400000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "BoatA9",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "BoatA9",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.600000 , 0.350000 , 1.200000 }",
              "m_Offset": "{ 0.000000 , 0.060000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.500000 , 0.330000 , 0.180000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.600000 , 0.320000 , 0.600000 }",
              "m_Offset": "{ 1.350000 , 0.060000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "45.000000",
              "m_Color": "{ 0.500000 , 0.330000 , 0.180000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.600000 , 0.320000 , 0.600000 }",
              "m_Offset": "{ -1.350000 , 0.060000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "45.000000",
              "m_Color": "{ 0.500000 , 0.330000 , 0.180000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.400000 , 0.060000 , 1.000000 }",
              "m_Offset": "{ 0.000000 , 0.260000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.620000 , 0.450000 , 0.280000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.080000 , 1.900000 , 0.080000 }",
              "m_Offset": "{ 0.300000 , 1.200000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.350000 , 0.240000 , 0.140000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cone",
              "m_Size": "{ 0.140000 , 1.600000 , 1.100000 }",
              "m_Offset": "{ -0.350000 , 1.100000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.950000 , 0.940000 , 0.880000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.000000",
        "m_Roughness": "0.700000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "BoatB9",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "BoatB9",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.600000 , 0.350000 , 1.200000 }",
              "m_Offset": "{ 0.000000 , 0.060000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.500000 , 0.330000 , 0.180000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.600000 , 0.320000 , 0.600000 }",
              "m_Offset": "{ 1.350000 , 0.060000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "45.000000",
              "m_Color": "{ 0.500000 , 0.330000 , 0.180000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.600000 , 0.320000 , 0.600000 }",
              "m_Offset": "{ -1.350000 , 0.060000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "45.000000",
              "m_Color": "{ 0.500000 , 0.330000 , 0.180000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.400000 , 0.060000 , 1.000000 }",
              "m_Offset": "{ 0.000000 , 0.260000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.620000 , 0.450000 , 0.280000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.080000 , 1.900000 , 0.080000 }",
              "m_Offset": "{ 0.300000 , 1.200000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.350000 , 0.240000 , 0.140000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cone",
              "m_Size": "{ 0.140000 , 1.600000 , 1.100000 }",
              "m_Offset": "{ -0.350000 , 1.100000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.950000 , 0.940000 , 0.880000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.000000",
        "m_Roughness": "0.700000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "Tram9",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "Tram9",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 7.000000 , 1.500000 , 1.300000 }",
              "m_Offset": "{ 0.000000 , 1.050000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.950000 , 0.780000 , 0.120000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 7.020000 , 0.500000 , 1.320000 }",
              "m_Offset": "{ 0.000000 , 0.450000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.120000 , 0.300000 , 0.600000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 6.400000 , 0.550000 , 1.340000 }",
              "m_Offset": "{ 0.000000 , 1.500000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.150000 , 0.200000 , 0.250000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 7.000000 , 0.150000 , 1.200000 }",
              "m_Offset": "{ 0.000000 , 1.900000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.820000 , 0.820000 , 0.780000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.100000 , 0.100000 , 1.340000 }",
              "m_Offset": "{ 0.000000 , 1.050000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.120000 , 0.300000 , 0.600000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.060000 , 1.000000 , 0.060000 }",
              "m_Offset": "{ 0.000000 , 2.350000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 0.000000 , 1.000000 }",
              "m_RotationDegrees": "22.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.420000 , 0.200000 , 0.420000 }",
              "m_Offset": "{ 2.500000 , 0.220000 , 0.500000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.420000 , 0.200000 , 0.420000 }",
              "m_Offset": "{ 2.500000 , 0.220000 , -0.500000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.420000 , 0.200000 , 0.420000 }",
              "m_Offset": "{ -2.500000 , 0.220000 , 0.500000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.420000 , 0.200000 , 0.420000 }",
              "m_Offset": "{ -2.500000 , 0.220000 , -0.500000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.250000",
        "m_Roughness": "0.450000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "Wave9",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "Wave9",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 3.600000 , 0.500000 , 1.800000 }",
              "m_Offset": "{ 0.000000 , 0.250000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.160000 , 0.450000 , 0.650000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 3.600000 , 0.300000 , 1.100000 }",
              "m_Offset": "{ 0.000000 , 0.600000 , 0.250000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.850000 , 0.930000 , 0.970000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.550000 , 0.400000 , 0.550000 }",
              "m_Offset": "{ -1.200000 , 0.780000 , 0.200000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.950000 , 0.980000 , 1.000000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.600000 , 0.450000 , 0.600000 }",
              "m_Offset": "{ 0.100000 , 0.820000 , 0.200000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.950000 , 0.980000 , 1.000000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.500000 , 0.380000 , 0.500000 }",
              "m_Offset": "{ 1.300000 , 0.750000 , 0.200000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.950000 , 0.980000 , 1.000000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.000000",
        "m_Roughness": "0.300000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "PlantA9",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "PlantA9",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.620000 , 0.500000 , 0.620000 }",
              "m_Offset": "{ 0.000000 , 0.250000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.650000 , 0.400000 , 0.250000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.850000 , 0.700000 , 0.850000 }",
              "m_Offset": "{ 0.000000 , 0.800000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.200000 , 0.500000 , 0.220000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.000000",
        "m_Roughness": "0.850000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "PlantB9",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "PlantB9",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.620000 , 0.500000 , 0.620000 }",
              "m_Offset": "{ 0.000000 , 0.250000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.650000 , 0.400000 , 0.250000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.850000 , 0.700000 , 0.850000 }",
              "m_Offset": "{ 0.000000 , 0.800000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.200000 , 0.500000 , 0.220000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.000000",
        "m_Roughness": "0.850000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "VehA10",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "VehA10",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 1.700000 , 0.450000 , 1.000000 }",
              "m_Offset": "{ 0.000000 , 0.500000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.120000 , 0.120000 , 0.140000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 1.300000 , 0.700000 , 1.000000 }",
              "m_Offset": "{ -0.100000 , 1.100000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.750000 , 0.300000 , 0.550000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.100000 , 0.500000 , 0.800000 }",
              "m_Offset": "{ 0.780000 , 1.000000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.300000 , 0.450000 , 0.500000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.400000 , 0.160000 , 0.400000 }",
              "m_Offset": "{ 0.700000 , 0.200000 , 0.000000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.400000 , 0.160000 , 0.400000 }",
              "m_Offset": "{ -0.550000 , 0.200000 , 0.420000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.400000 , 0.160000 , 0.400000 }",
              "m_Offset": "{ -0.550000 , 0.200000 , -0.420000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.100000",
        "m_Roughness": "0.600000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "VehB10",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "VehB10",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.800000 , 1.100000 , 1.200000 }",
              "m_Offset": "{ 0.000000 , 0.950000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.920000 , 0.920000 , 0.900000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.820000 , 0.180000 , 1.220000 }",
              "m_Offset": "{ 0.000000 , 0.750000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.300000 , 0.700000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.400000 , 0.350000 , 1.240000 }",
              "m_Offset": "{ 0.100000 , 1.350000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.150000 , 0.200000 , 0.250000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.450000 , 0.180000 , 0.450000 }",
              "m_Offset": "{ 0.950000 , 0.250000 , 0.520000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.450000 , 0.180000 , 0.450000 }",
              "m_Offset": "{ 0.950000 , 0.250000 , -0.520000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.450000 , 0.180000 , 0.450000 }",
              "m_Offset": "{ -0.950000 , 0.250000 , 0.520000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.450000 , 0.180000 , 0.450000 }",
              "m_Offset": "{ -0.950000 , 0.250000 , -0.520000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.200000",
        "m_Roughness": "0.500000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "VehC10",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "VehC10",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 1.700000 , 0.450000 , 1.000000 }",
              "m_Offset": "{ 0.000000 , 0.500000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.120000 , 0.120000 , 0.140000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 1.300000 , 0.700000 , 1.000000 }",
              "m_Offset": "{ -0.100000 , 1.100000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.950000 , 0.750000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.100000 , 0.500000 , 0.800000 }",
              "m_Offset": "{ 0.780000 , 1.000000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.300000 , 0.450000 , 0.500000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.400000 , 0.160000 , 0.400000 }",
              "m_Offset": "{ 0.700000 , 0.200000 , 0.000000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.400000 , 0.160000 , 0.400000 }",
              "m_Offset": "{ -0.550000 , 0.200000 , 0.420000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.400000 , 0.160000 , 0.400000 }",
              "m_Offset": "{ -0.550000 , 0.200000 , -0.420000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.100000",
        "m_Roughness": "0.600000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "BikeA10",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "BikeA10",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 1.900000 , 0.300000 , 1.100000 }",
              "m_Offset": "{ 0.000000 , 0.400000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.150000 , 0.350000 , 0.650000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.600000 , 0.300000 , 1.000000 }",
              "m_Offset": "{ 0.620000 , 0.620000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.150000 , 0.350000 , 0.650000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.500000 , 0.550000 , 1.000000 }",
              "m_Offset": "{ -0.550000 , 0.820000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.150000 , 0.350000 , 0.650000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.080000 , 0.750000 , 0.080000 }",
              "m_Offset": "{ -0.200000 , 1.050000 , 0.450000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.080000 , 0.750000 , 0.080000 }",
              "m_Offset": "{ -0.200000 , 1.050000 , -0.450000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.080000 , 0.080000 , 1.000000 }",
              "m_Offset": "{ -0.200000 , 1.450000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ 0.680000 , 0.280000 , 0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ 0.680000 , 0.280000 , -0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ -0.680000 , 0.280000 , 0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ -0.680000 , 0.280000 , -0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.400000 , 0.450000 , 0.350000 }",
              "m_Offset": "{ -0.450000 , 0.950000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.750000 , 0.080000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.320000 , 0.320000 , 0.320000 }",
              "m_Offset": "{ -0.450000 , 1.320000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.820000 , 0.600000 , 0.420000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.340000 , 0.160000 , 0.340000 }",
              "m_Offset": "{ -0.450000 , 1.470000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.080000 , 0.080000 , 0.080000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.300000",
        "m_Roughness": "0.400000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "BikeB10",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "BikeB10",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 1.900000 , 0.300000 , 1.100000 }",
              "m_Offset": "{ 0.000000 , 0.400000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.850000 , 0.500000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.600000 , 0.300000 , 1.000000 }",
              "m_Offset": "{ 0.620000 , 0.620000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.850000 , 0.500000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.500000 , 0.550000 , 1.000000 }",
              "m_Offset": "{ -0.550000 , 0.820000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.850000 , 0.500000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.080000 , 0.750000 , 0.080000 }",
              "m_Offset": "{ -0.200000 , 1.050000 , 0.450000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.080000 , 0.750000 , 0.080000 }",
              "m_Offset": "{ -0.200000 , 1.050000 , -0.450000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.080000 , 0.080000 , 1.000000 }",
              "m_Offset": "{ -0.200000 , 1.450000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ 0.680000 , 0.280000 , 0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ 0.680000 , 0.280000 , -0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ -0.680000 , 0.280000 , 0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ -0.680000 , 0.280000 , -0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.400000 , 0.450000 , 0.350000 }",
              "m_Offset": "{ -0.450000 , 0.950000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.750000 , 0.080000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.320000 , 0.320000 , 0.320000 }",
              "m_Offset": "{ -0.450000 , 1.320000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.820000 , 0.600000 , 0.420000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.340000 , 0.160000 , 0.340000 }",
              "m_Offset": "{ -0.450000 , 1.470000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.080000 , 0.080000 , 0.080000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.300000",
        "m_Roughness": "0.400000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "BoatA10",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "BoatA10",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.600000 , 0.350000 , 1.200000 }",
              "m_Offset": "{ 0.000000 , 0.060000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.500000 , 0.330000 , 0.180000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.600000 , 0.320000 , 0.600000 }",
              "m_Offset": "{ 1.350000 , 0.060000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "45.000000",
              "m_Color": "{ 0.500000 , 0.330000 , 0.180000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.600000 , 0.320000 , 0.600000 }",
              "m_Offset": "{ -1.350000 , 0.060000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "45.000000",
              "m_Color": "{ 0.500000 , 0.330000 , 0.180000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.400000 , 0.060000 , 1.000000 }",
              "m_Offset": "{ 0.000000 , 0.260000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.620000 , 0.450000 , 0.280000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.080000 , 1.900000 , 0.080000 }",
              "m_Offset": "{ 0.300000 , 1.200000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.350000 , 0.240000 , 0.140000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cone",
              "m_Size": "{ 0.140000 , 1.600000 , 1.100000 }",
              "m_Offset": "{ -0.350000 , 1.100000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.950000 , 0.940000 , 0.880000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.000000",
        "m_Roughness": "0.700000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "BoatB10",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "BoatB10",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.600000 , 0.350000 , 1.200000 }",
              "m_Offset": "{ 0.000000 , 0.060000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.500000 , 0.330000 , 0.180000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.600000 , 0.320000 , 0.600000 }",
              "m_Offset": "{ 1.350000 , 0.060000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "45.000000",
              "m_Color": "{ 0.500000 , 0.330000 , 0.180000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.600000 , 0.320000 , 0.600000 }",
              "m_Offset": "{ -1.350000 , 0.060000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "45.000000",
              "m_Color": "{ 0.500000 , 0.330000 , 0.180000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.400000 , 0.060000 , 1.000000 }",
              "m_Offset": "{ 0.000000 , 0.260000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.620000 , 0.450000 , 0.280000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.080000 , 1.900000 , 0.080000 }",
              "m_Offset": "{ 0.300000 , 1.200000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.350000 , 0.240000 , 0.140000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cone",
              "m_Size": "{ 0.140000 , 1.600000 , 1.100000 }",
              "m_Offset": "{ -0.350000 , 1.100000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.950000 , 0.940000 , 0.880000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.000000",
        "m_Roughness": "0.700000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "Tram10",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "Tram10",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 7.000000 , 1.500000 , 1.300000 }",
              "m_Offset": "{ 0.000000 , 1.050000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.950000 , 0.780000 , 0.120000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 7.020000 , 0.500000 , 1.320000 }",
              "m_Offset": "{ 0.000000 , 0.450000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.120000 , 0.300000 , 0.600000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 6.400000 , 0.550000 , 1.340000 }",
              "m_Offset": "{ 0.000000 , 1.500000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.150000 , 0.200000 , 0.250000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 7.000000 , 0.150000 , 1.200000 }",
              "m_Offset": "{ 0.000000 , 1.900000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.820000 , 0.820000 , 0.780000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.100000 , 0.100000 , 1.340000 }",
              "m_Offset": "{ 0.000000 , 1.050000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.120000 , 0.300000 , 0.600000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.060000 , 1.000000 , 0.060000 }",
              "m_Offset": "{ 0.000000 , 2.350000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 0.000000 , 1.000000 }",
              "m_RotationDegrees": "22.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.420000 , 0.200000 , 0.420000 }",
              "m_Offset": "{ 2.500000 , 0.220000 , 0.500000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.420000 , 0.200000 , 0.420000 }",
              "m_Offset": "{ 2.500000 , 0.220000 , -0.500000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.420000 , 0.200000 , 0.420000 }",
              "m_Offset": "{ -2.500000 , 0.220000 , 0.500000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.420000 , 0.200000 , 0.420000 }",
              "m_Offset": "{ -2.500000 , 0.220000 , -0.500000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.250000",
        "m_Roughness": "0.450000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "Wave10",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "Wave10",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 3.600000 , 0.500000 , 1.800000 }",
              "m_Offset": "{ 0.000000 , 0.250000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.160000 , 0.450000 , 0.650000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 3.600000 , 0.300000 , 1.100000 }",
              "m_Offset": "{ 0.000000 , 0.600000 , 0.250000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.850000 , 0.930000 , 0.970000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.550000 , 0.400000 , 0.550000 }",
              "m_Offset": "{ -1.200000 , 0.780000 , 0.200000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.950000 , 0.980000 , 1.000000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.600000 , 0.450000 , 0.600000 }",
              "m_Offset": "{ 0.100000 , 0.820000 , 0.200000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.950000 , 0.980000 , 1.000000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.500000 , 0.380000 , 0.500000 }",
              "m_Offset": "{ 1.300000 , 0.750000 , 0.200000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.950000 , 0.980000 , 1.000000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.000000",
        "m_Roughness": "0.300000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "PlantA10",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "PlantA10",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.620000 , 0.500000 , 0.620000 }",
              "m_Offset": "{ 0.000000 , 0.250000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.650000 , 0.400000 , 0.250000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.850000 , 0.700000 , 0.850000 }",
              "m_Offset": "{ 0.000000 , 0.800000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.200000 , 0.500000 , 0.220000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.000000",
        "m_Roughness": "0.850000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "PlantB10",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "PlantB10",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.620000 , 0.500000 , 0.620000 }",
              "m_Offset": "{ 0.000000 , 0.250000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.650000 , 0.400000 , 0.250000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.850000 , 0.700000 , 0.850000 }",
              "m_Offset": "{ 0.000000 , 0.800000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.200000 , 0.500000 , 0.220000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.000000",
        "m_Roughness": "0.850000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "VehA11",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "VehA11",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 1.700000 , 0.450000 , 1.000000 }",
              "m_Offset": "{ 0.000000 , 0.500000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.120000 , 0.120000 , 0.140000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 1.300000 , 0.700000 , 1.000000 }",
              "m_Offset": "{ -0.100000 , 1.100000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.250000 , 0.500000 , 0.800000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.100000 , 0.500000 , 0.800000 }",
              "m_Offset": "{ 0.780000 , 1.000000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.300000 , 0.450000 , 0.500000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.400000 , 0.160000 , 0.400000 }",
              "m_Offset": "{ 0.700000 , 0.200000 , 0.000000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.400000 , 0.160000 , 0.400000 }",
              "m_Offset": "{ -0.550000 , 0.200000 , 0.420000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.400000 , 0.160000 , 0.400000 }",
              "m_Offset": "{ -0.550000 , 0.200000 , -0.420000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.100000",
        "m_Roughness": "0.600000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "VehB11",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "VehB11",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.800000 , 1.100000 , 1.200000 }",
              "m_Offset": "{ 0.000000 , 0.950000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.920000 , 0.920000 , 0.900000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.820000 , 0.180000 , 1.220000 }",
              "m_Offset": "{ 0.000000 , 0.750000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.300000 , 0.700000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.400000 , 0.350000 , 1.240000 }",
              "m_Offset": "{ 0.100000 , 1.350000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.150000 , 0.200000 , 0.250000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.450000 , 0.180000 , 0.450000 }",
              "m_Offset": "{ 0.950000 , 0.250000 , 0.520000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.450000 , 0.180000 , 0.450000 }",
              "m_Offset": "{ 0.950000 , 0.250000 , -0.520000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.450000 , 0.180000 , 0.450000 }",
              "m_Offset": "{ -0.950000 , 0.250000 , 0.520000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.450000 , 0.180000 , 0.450000 }",
              "m_Offset": "{ -0.950000 , 0.250000 , -0.520000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.200000",
        "m_Roughness": "0.500000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "VehC11",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "VehC11",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 1.700000 , 0.450000 , 1.000000 }",
              "m_Offset": "{ 0.000000 , 0.500000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.120000 , 0.120000 , 0.140000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 1.300000 , 0.700000 , 1.000000 }",
              "m_Offset": "{ -0.100000 , 1.100000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.200000 , 0.620000 , 0.400000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.100000 , 0.500000 , 0.800000 }",
              "m_Offset": "{ 0.780000 , 1.000000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.300000 , 0.450000 , 0.500000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.400000 , 0.160000 , 0.400000 }",
              "m_Offset": "{ 0.700000 , 0.200000 , 0.000000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.400000 , 0.160000 , 0.400000 }",
              "m_Offset": "{ -0.550000 , 0.200000 , 0.420000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.400000 , 0.160000 , 0.400000 }",
              "m_Offset": "{ -0.550000 , 0.200000 , -0.420000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.100000",
        "m_Roughness": "0.600000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "BikeA11",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "BikeA11",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 1.900000 , 0.300000 , 1.100000 }",
              "m_Offset": "{ 0.000000 , 0.400000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.850000 , 0.500000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.600000 , 0.300000 , 1.000000 }",
              "m_Offset": "{ 0.620000 , 0.620000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.850000 , 0.500000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.500000 , 0.550000 , 1.000000 }",
              "m_Offset": "{ -0.550000 , 0.820000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.850000 , 0.500000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.080000 , 0.750000 , 0.080000 }",
              "m_Offset": "{ -0.200000 , 1.050000 , 0.450000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.080000 , 0.750000 , 0.080000 }",
              "m_Offset": "{ -0.200000 , 1.050000 , -0.450000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.080000 , 0.080000 , 1.000000 }",
              "m_Offset": "{ -0.200000 , 1.450000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ 0.680000 , 0.280000 , 0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ 0.680000 , 0.280000 , -0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ -0.680000 , 0.280000 , 0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ -0.680000 , 0.280000 , -0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.400000 , 0.450000 , 0.350000 }",
              "m_Offset": "{ -0.450000 , 0.950000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.750000 , 0.080000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.320000 , 0.320000 , 0.320000 }",
              "m_Offset": "{ -0.450000 , 1.320000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.820000 , 0.600000 , 0.420000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.340000 , 0.160000 , 0.340000 }",
              "m_Offset": "{ -0.450000 , 1.470000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.080000 , 0.080000 , 0.080000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.300000",
        "m_Roughness": "0.400000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "BikeB11",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "BikeB11",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 1.900000 , 0.300000 , 1.100000 }",
              "m_Offset": "{ 0.000000 , 0.400000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.800000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.600000 , 0.300000 , 1.000000 }",
              "m_Offset": "{ 0.620000 , 0.620000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.800000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.500000 , 0.550000 , 1.000000 }",
              "m_Offset": "{ -0.550000 , 0.820000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.800000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.080000 , 0.750000 , 0.080000 }",
              "m_Offset": "{ -0.200000 , 1.050000 , 0.450000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.080000 , 0.750000 , 0.080000 }",
              "m_Offset": "{ -0.200000 , 1.050000 , -0.450000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.080000 , 0.080000 , 1.000000 }",
              "m_Offset": "{ -0.200000 , 1.450000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ 0.680000 , 0.280000 , 0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ 0.680000 , 0.280000 , -0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ -0.680000 , 0.280000 , 0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ -0.680000 , 0.280000 , -0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.400000 , 0.450000 , 0.350000 }",
              "m_Offset": "{ -0.450000 , 0.950000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.750000 , 0.080000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.320000 , 0.320000 , 0.320000 }",
              "m_Offset": "{ -0.450000 , 1.320000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.820000 , 0.600000 , 0.420000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.340000 , 0.160000 , 0.340000 }",
              "m_Offset": "{ -0.450000 , 1.470000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.080000 , 0.080000 , 0.080000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.300000",
        "m_Roughness": "0.400000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "BoatA11",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "BoatA11",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.600000 , 0.350000 , 1.200000 }",
              "m_Offset": "{ 0.000000 , 0.060000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.500000 , 0.330000 , 0.180000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.600000 , 0.320000 , 0.600000 }",
              "m_Offset": "{ 1.350000 , 0.060000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "45.000000",
              "m_Color": "{ 0.500000 , 0.330000 , 0.180000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.600000 , 0.320000 , 0.600000 }",
              "m_Offset": "{ -1.350000 , 0.060000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "45.000000",
              "m_Color": "{ 0.500000 , 0.330000 , 0.180000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.400000 , 0.060000 , 1.000000 }",
              "m_Offset": "{ 0.000000 , 0.260000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.620000 , 0.450000 , 0.280000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.080000 , 1.900000 , 0.080000 }",
              "m_Offset": "{ 0.300000 , 1.200000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.350000 , 0.240000 , 0.140000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cone",
              "m_Size": "{ 0.140000 , 1.600000 , 1.100000 }",
              "m_Offset": "{ -0.350000 , 1.100000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.950000 , 0.940000 , 0.880000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.000000",
        "m_Roughness": "0.700000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "BoatB11",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "BoatB11",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.600000 , 0.350000 , 1.200000 }",
              "m_Offset": "{ 0.000000 , 0.060000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.500000 , 0.330000 , 0.180000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.600000 , 0.320000 , 0.600000 }",
              "m_Offset": "{ 1.350000 , 0.060000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "45.000000",
              "m_Color": "{ 0.500000 , 0.330000 , 0.180000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.600000 , 0.320000 , 0.600000 }",
              "m_Offset": "{ -1.350000 , 0.060000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "45.000000",
              "m_Color": "{ 0.500000 , 0.330000 , 0.180000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.400000 , 0.060000 , 1.000000 }",
              "m_Offset": "{ 0.000000 , 0.260000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.620000 , 0.450000 , 0.280000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.080000 , 1.900000 , 0.080000 }",
              "m_Offset": "{ 0.300000 , 1.200000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.350000 , 0.240000 , 0.140000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cone",
              "m_Size": "{ 0.140000 , 1.600000 , 1.100000 }",
              "m_Offset": "{ -0.350000 , 1.100000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.950000 , 0.940000 , 0.880000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.000000",
        "m_Roughness": "0.700000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "Tram11",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "Tram11",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 7.000000 , 1.500000 , 1.300000 }",
              "m_Offset": "{ 0.000000 , 1.050000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.950000 , 0.780000 , 0.120000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 7.020000 , 0.500000 , 1.320000 }",
              "m_Offset": "{ 0.000000 , 0.450000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.120000 , 0.300000 , 0.600000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 6.400000 , 0.550000 , 1.340000 }",
              "m_Offset": "{ 0.000000 , 1.500000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.150000 , 0.200000 , 0.250000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 7.000000 , 0.150000 , 1.200000 }",
              "m_Offset": "{ 0.000000 , 1.900000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.820000 , 0.820000 , 0.780000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.100000 , 0.100000 , 1.340000 }",
              "m_Offset": "{ 0.000000 , 1.050000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.120000 , 0.300000 , 0.600000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.060000 , 1.000000 , 0.060000 }",
              "m_Offset": "{ 0.000000 , 2.350000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 0.000000 , 1.000000 }",
              "m_RotationDegrees": "22.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.420000 , 0.200000 , 0.420000 }",
              "m_Offset": "{ 2.500000 , 0.220000 , 0.500000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.420000 , 0.200000 , 0.420000 }",
              "m_Offset": "{ 2.500000 , 0.220000 , -0.500000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.420000 , 0.200000 , 0.420000 }",
              "m_Offset": "{ -2.500000 , 0.220000 , 0.500000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.420000 , 0.200000 , 0.420000 }",
              "m_Offset": "{ -2.500000 , 0.220000 , -0.500000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.250000",
        "m_Roughness": "0.450000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "Wave11",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "Wave11",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 3.600000 , 0.500000 , 1.800000 }",
              "m_Offset": "{ 0.000000 , 0.250000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.160000 , 0.450000 , 0.650000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 3.600000 , 0.300000 , 1.100000 }",
              "m_Offset": "{ 0.000000 , 0.600000 , 0.250000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.850000 , 0.930000 , 0.970000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.550000 , 0.400000 , 0.550000 }",
              "m_Offset": "{ -1.200000 , 0.780000 , 0.200000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.950000 , 0.980000 , 1.000000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.600000 , 0.450000 , 0.600000 }",
              "m_Offset": "{ 0.100000 , 0.820000 , 0.200000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.950000 , 0.980000 , 1.000000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.500000 , 0.380000 , 0.500000 }",
              "m_Offset": "{ 1.300000 , 0.750000 , 0.200000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.950000 , 0.980000 , 1.000000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.000000",
        "m_Roughness": "0.300000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "PlantA11",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "PlantA11",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.620000 , 0.500000 , 0.620000 }",
              "m_Offset": "{ 0.000000 , 0.250000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.650000 , 0.400000 , 0.250000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.850000 , 0.700000 , 0.850000 }",
              "m_Offset": "{ 0.000000 , 0.800000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.200000 , 0.500000 , 0.220000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.000000",
        "m_Roughness": "0.850000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "PlantB11",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "PlantB11",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.620000 , 0.500000 , 0.620000 }",
              "m_Offset": "{ 0.000000 , 0.250000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.650000 , 0.400000 , 0.250000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.850000 , 0.700000 , 0.850000 }",
              "m_Offset": "{ 0.000000 , 0.800000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.200000 , 0.500000 , 0.220000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.000000",
        "m_Roughness": "0.850000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "VehA12",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "VehA12",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 1.700000 , 0.450000 , 1.000000 }",
              "m_Offset": "{ 0.000000 , 0.500000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.120000 , 0.120000 , 0.140000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 1.300000 , 0.700000 , 1.000000 }",
              "m_Offset": "{ -0.100000 , 1.100000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.950000 , 0.750000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.100000 , 0.500000 , 0.800000 }",
              "m_Offset": "{ 0.780000 , 1.000000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.300000 , 0.450000 , 0.500000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.400000 , 0.160000 , 0.400000 }",
              "m_Offset": "{ 0.700000 , 0.200000 , 0.000000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.400000 , 0.160000 , 0.400000 }",
              "m_Offset": "{ -0.550000 , 0.200000 , 0.420000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.400000 , 0.160000 , 0.400000 }",
              "m_Offset": "{ -0.550000 , 0.200000 , -0.420000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.100000",
        "m_Roughness": "0.600000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "VehB12",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "VehB12",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.800000 , 1.100000 , 1.200000 }",
              "m_Offset": "{ 0.000000 , 0.950000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.920000 , 0.920000 , 0.900000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.820000 , 0.180000 , 1.220000 }",
              "m_Offset": "{ 0.000000 , 0.750000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.300000 , 0.700000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.400000 , 0.350000 , 1.240000 }",
              "m_Offset": "{ 0.100000 , 1.350000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.150000 , 0.200000 , 0.250000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.450000 , 0.180000 , 0.450000 }",
              "m_Offset": "{ 0.950000 , 0.250000 , 0.520000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.450000 , 0.180000 , 0.450000 }",
              "m_Offset": "{ 0.950000 , 0.250000 , -0.520000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.450000 , 0.180000 , 0.450000 }",
              "m_Offset": "{ -0.950000 , 0.250000 , 0.520000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.450000 , 0.180000 , 0.450000 }",
              "m_Offset": "{ -0.950000 , 0.250000 , -0.520000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.200000",
        "m_Roughness": "0.500000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "VehC12",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "VehC12",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 1.700000 , 0.450000 , 1.000000 }",
              "m_Offset": "{ 0.000000 , 0.500000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.120000 , 0.120000 , 0.140000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 1.300000 , 0.700000 , 1.000000 }",
              "m_Offset": "{ -0.100000 , 1.100000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.750000 , 0.300000 , 0.550000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.100000 , 0.500000 , 0.800000 }",
              "m_Offset": "{ 0.780000 , 1.000000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.300000 , 0.450000 , 0.500000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.400000 , 0.160000 , 0.400000 }",
              "m_Offset": "{ 0.700000 , 0.200000 , 0.000000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.400000 , 0.160000 , 0.400000 }",
              "m_Offset": "{ -0.550000 , 0.200000 , 0.420000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.400000 , 0.160000 , 0.400000 }",
              "m_Offset": "{ -0.550000 , 0.200000 , -0.420000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.100000",
        "m_Roughness": "0.600000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "BikeA12",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "BikeA12",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 1.900000 , 0.300000 , 1.100000 }",
              "m_Offset": "{ 0.000000 , 0.400000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.800000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.600000 , 0.300000 , 1.000000 }",
              "m_Offset": "{ 0.620000 , 0.620000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.800000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.500000 , 0.550000 , 1.000000 }",
              "m_Offset": "{ -0.550000 , 0.820000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.800000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.080000 , 0.750000 , 0.080000 }",
              "m_Offset": "{ -0.200000 , 1.050000 , 0.450000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.080000 , 0.750000 , 0.080000 }",
              "m_Offset": "{ -0.200000 , 1.050000 , -0.450000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.080000 , 0.080000 , 1.000000 }",
              "m_Offset": "{ -0.200000 , 1.450000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ 0.680000 , 0.280000 , 0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ 0.680000 , 0.280000 , -0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ -0.680000 , 0.280000 , 0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ -0.680000 , 0.280000 , -0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.400000 , 0.450000 , 0.350000 }",
              "m_Offset": "{ -0.450000 , 0.950000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.750000 , 0.080000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.320000 , 0.320000 , 0.320000 }",
              "m_Offset": "{ -0.450000 , 1.320000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.820000 , 0.600000 , 0.420000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.340000 , 0.160000 , 0.340000 }",
              "m_Offset": "{ -0.450000 , 1.470000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.080000 , 0.080000 , 0.080000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.300000",
        "m_Roughness": "0.400000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "BikeB12",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "BikeB12",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 1.900000 , 0.300000 , 1.100000 }",
              "m_Offset": "{ 0.000000 , 0.400000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.150000 , 0.350000 , 0.650000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.600000 , 0.300000 , 1.000000 }",
              "m_Offset": "{ 0.620000 , 0.620000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.150000 , 0.350000 , 0.650000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.500000 , 0.550000 , 1.000000 }",
              "m_Offset": "{ -0.550000 , 0.820000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.150000 , 0.350000 , 0.650000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.080000 , 0.750000 , 0.080000 }",
              "m_Offset": "{ -0.200000 , 1.050000 , 0.450000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.080000 , 0.750000 , 0.080000 }",
              "m_Offset": "{ -0.200000 , 1.050000 , -0.450000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.080000 , 0.080000 , 1.000000 }",
              "m_Offset": "{ -0.200000 , 1.450000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ 0.680000 , 0.280000 , 0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ 0.680000 , 0.280000 , -0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ -0.680000 , 0.280000 , 0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ -0.680000 , 0.280000 , -0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.400000 , 0.450000 , 0.350000 }",
              "m_Offset": "{ -0.450000 , 0.950000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.750000 , 0.080000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.320000 , 0.320000 , 0.320000 }",
              "m_Offset": "{ -0.450000 , 1.320000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.820000 , 0.600000 , 0.420000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.340000 , 0.160000 , 0.340000 }",
              "m_Offset": "{ -0.450000 , 1.470000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.080000 , 0.080000 , 0.080000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.300000",
        "m_Roughness": "0.400000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "BoatA12",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "BoatA12",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.600000 , 0.350000 , 1.200000 }",
              "m_Offset": "{ 0.000000 , 0.060000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.500000 , 0.330000 , 0.180000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.600000 , 0.320000 , 0.600000 }",
              "m_Offset": "{ 1.350000 , 0.060000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "45.000000",
              "m_Color": "{ 0.500000 , 0.330000 , 0.180000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.600000 , 0.320000 , 0.600000 }",
              "m_Offset": "{ -1.350000 , 0.060000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "45.000000",
              "m_Color": "{ 0.500000 , 0.330000 , 0.180000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.400000 , 0.060000 , 1.000000 }",
              "m_Offset": "{ 0.000000 , 0.260000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.620000 , 0.450000 , 0.280000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.080000 , 1.900000 , 0.080000 }",
              "m_Offset": "{ 0.300000 , 1.200000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.350000 , 0.240000 , 0.140000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cone",
              "m_Size": "{ 0.140000 , 1.600000 , 1.100000 }",
              "m_Offset": "{ -0.350000 , 1.100000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.950000 , 0.940000 , 0.880000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.000000",
        "m_Roughness": "0.700000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "BoatB12",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "BoatB12",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.600000 , 0.350000 , 1.200000 }",
              "m_Offset": "{ 0.000000 , 0.060000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.500000 , 0.330000 , 0.180000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.600000 , 0.320000 , 0.600000 }",
              "m_Offset": "{ 1.350000 , 0.060000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "45.000000",
              "m_Color": "{ 0.500000 , 0.330000 , 0.180000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.600000 , 0.320000 , 0.600000 }",
              "m_Offset": "{ -1.350000 , 0.060000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "45.000000",
              "m_Color": "{ 0.500000 , 0.330000 , 0.180000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.400000 , 0.060000 , 1.000000 }",
              "m_Offset": "{ 0.000000 , 0.260000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.620000 , 0.450000 , 0.280000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.080000 , 1.900000 , 0.080000 }",
              "m_Offset": "{ 0.300000 , 1.200000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.350000 , 0.240000 , 0.140000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cone",
              "m_Size": "{ 0.140000 , 1.600000 , 1.100000 }",
              "m_Offset": "{ -0.350000 , 1.100000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.950000 , 0.940000 , 0.880000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.000000",
        "m_Roughness": "0.700000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "Tram12",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "Tram12",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 7.000000 , 1.500000 , 1.300000 }",
              "m_Offset": "{ 0.000000 , 1.050000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.950000 , 0.780000 , 0.120000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 7.020000 , 0.500000 , 1.320000 }",
              "m_Offset": "{ 0.000000 , 0.450000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.120000 , 0.300000 , 0.600000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 6.400000 , 0.550000 , 1.340000 }",
              "m_Offset": "{ 0.000000 , 1.500000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.150000 , 0.200000 , 0.250000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 7.000000 , 0.150000 , 1.200000 }",
              "m_Offset": "{ 0.000000 , 1.900000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.820000 , 0.820000 , 0.780000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.100000 , 0.100000 , 1.340000 }",
              "m_Offset": "{ 0.000000 , 1.050000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.120000 , 0.300000 , 0.600000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.060000 , 1.000000 , 0.060000 }",
              "m_Offset": "{ 0.000000 , 2.350000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 0.000000 , 1.000000 }",
              "m_RotationDegrees": "22.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.420000 , 0.200000 , 0.420000 }",
              "m_Offset": "{ 2.500000 , 0.220000 , 0.500000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.420000 , 0.200000 , 0.420000 }",
              "m_Offset": "{ 2.500000 , 0.220000 , -0.500000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.420000 , 0.200000 , 0.420000 }",
              "m_Offset": "{ -2.500000 , 0.220000 , 0.500000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.420000 , 0.200000 , 0.420000 }",
              "m_Offset": "{ -2.500000 , 0.220000 , -0.500000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.250000",
        "m_Roughness": "0.450000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "Wave12",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "Wave12",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 3.600000 , 0.500000 , 1.800000 }",
              "m_Offset": "{ 0.000000 , 0.250000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.160000 , 0.450000 , 0.650000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 3.600000 , 0.300000 , 1.100000 }",
              "m_Offset": "{ 0.000000 , 0.600000 , 0.250000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.850000 , 0.930000 , 0.970000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.550000 , 0.400000 , 0.550000 }",
              "m_Offset": "{ -1.200000 , 0.780000 , 0.200000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.950000 , 0.980000 , 1.000000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.600000 , 0.450000 , 0.600000 }",
              "m_Offset": "{ 0.100000 , 0.820000 , 0.200000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.950000 , 0.980000 , 1.000000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.500000 , 0.380000 , 0.500000 }",
              "m_Offset": "{ 1.300000 , 0.750000 , 0.200000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.950000 , 0.980000 , 1.000000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.000000",
        "m_Roughness": "0.300000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "PlantA12",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "PlantA12",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.620000 , 0.500000 , 0.620000 }",
              "m_Offset": "{ 0.000000 , 0.250000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.650000 , 0.400000 , 0.250000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.850000 , 0.700000 , 0.850000 }",
              "m_Offset": "{ 0.000000 , 0.800000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.200000 , 0.500000 , 0.220000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.000000",
        "m_Roughness": "0.850000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "PlantB12",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "PlantB12",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.620000 , 0.500000 , 0.620000 }",
              "m_Offset": "{ 0.000000 , 0.250000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.650000 , 0.400000 , 0.250000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.850000 , 0.700000 , 0.850000 }",
              "m_Offset": "{ 0.000000 , 0.800000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.200000 , 0.500000 , 0.220000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.000000",
        "m_Roughness": "0.850000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "VehA13",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "VehA13",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 1.700000 , 0.450000 , 1.000000 }",
              "m_Offset": "{ 0.000000 , 0.500000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.120000 , 0.120000 , 0.140000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 1.300000 , 0.700000 , 1.000000 }",
              "m_Offset": "{ -0.100000 , 1.100000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.200000 , 0.620000 , 0.400000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.100000 , 0.500000 , 0.800000 }",
              "m_Offset": "{ 0.780000 , 1.000000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.300000 , 0.450000 , 0.500000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.400000 , 0.160000 , 0.400000 }",
              "m_Offset": "{ 0.700000 , 0.200000 , 0.000000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.400000 , 0.160000 , 0.400000 }",
              "m_Offset": "{ -0.550000 , 0.200000 , 0.420000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.400000 , 0.160000 , 0.400000 }",
              "m_Offset": "{ -0.550000 , 0.200000 , -0.420000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.100000",
        "m_Roughness": "0.600000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "VehB13",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "VehB13",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.800000 , 1.100000 , 1.200000 }",
              "m_Offset": "{ 0.000000 , 0.950000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.920000 , 0.920000 , 0.900000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.820000 , 0.180000 , 1.220000 }",
              "m_Offset": "{ 0.000000 , 0.750000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.300000 , 0.700000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.400000 , 0.350000 , 1.240000 }",
              "m_Offset": "{ 0.100000 , 1.350000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.150000 , 0.200000 , 0.250000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.450000 , 0.180000 , 0.450000 }",
              "m_Offset": "{ 0.950000 , 0.250000 , 0.520000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.450000 , 0.180000 , 0.450000 }",
              "m_Offset": "{ 0.950000 , 0.250000 , -0.520000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.450000 , 0.180000 , 0.450000 }",
              "m_Offset": "{ -0.950000 , 0.250000 , 0.520000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.450000 , 0.180000 , 0.450000 }",
              "m_Offset": "{ -0.950000 , 0.250000 , -0.520000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.200000",
        "m_Roughness": "0.500000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "VehC13",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "VehC13",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 1.700000 , 0.450000 , 1.000000 }",
              "m_Offset": "{ 0.000000 , 0.500000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.120000 , 0.120000 , 0.140000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 1.300000 , 0.700000 , 1.000000 }",
              "m_Offset": "{ -0.100000 , 1.100000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.250000 , 0.500000 , 0.800000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.100000 , 0.500000 , 0.800000 }",
              "m_Offset": "{ 0.780000 , 1.000000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.300000 , 0.450000 , 0.500000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.400000 , 0.160000 , 0.400000 }",
              "m_Offset": "{ 0.700000 , 0.200000 , 0.000000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.400000 , 0.160000 , 0.400000 }",
              "m_Offset": "{ -0.550000 , 0.200000 , 0.420000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.400000 , 0.160000 , 0.400000 }",
              "m_Offset": "{ -0.550000 , 0.200000 , -0.420000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.100000",
        "m_Roughness": "0.600000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "BikeA13",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "BikeA13",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 1.900000 , 0.300000 , 1.100000 }",
              "m_Offset": "{ 0.000000 , 0.400000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.150000 , 0.350000 , 0.650000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.600000 , 0.300000 , 1.000000 }",
              "m_Offset": "{ 0.620000 , 0.620000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.150000 , 0.350000 , 0.650000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.500000 , 0.550000 , 1.000000 }",
              "m_Offset": "{ -0.550000 , 0.820000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.150000 , 0.350000 , 0.650000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.080000 , 0.750000 , 0.080000 }",
              "m_Offset": "{ -0.200000 , 1.050000 , 0.450000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.080000 , 0.750000 , 0.080000 }",
              "m_Offset": "{ -0.200000 , 1.050000 , -0.450000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.080000 , 0.080000 , 1.000000 }",
              "m_Offset": "{ -0.200000 , 1.450000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ 0.680000 , 0.280000 , 0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ 0.680000 , 0.280000 , -0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ -0.680000 , 0.280000 , 0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ -0.680000 , 0.280000 , -0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.400000 , 0.450000 , 0.350000 }",
              "m_Offset": "{ -0.450000 , 0.950000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.750000 , 0.080000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.320000 , 0.320000 , 0.320000 }",
              "m_Offset": "{ -0.450000 , 1.320000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.820000 , 0.600000 , 0.420000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.340000 , 0.160000 , 0.340000 }",
              "m_Offset": "{ -0.450000 , 1.470000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.080000 , 0.080000 , 0.080000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.300000",
        "m_Roughness": "0.400000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "BikeB13",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "BikeB13",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 1.900000 , 0.300000 , 1.100000 }",
              "m_Offset": "{ 0.000000 , 0.400000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.850000 , 0.500000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.600000 , 0.300000 , 1.000000 }",
              "m_Offset": "{ 0.620000 , 0.620000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.850000 , 0.500000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.500000 , 0.550000 , 1.000000 }",
              "m_Offset": "{ -0.550000 , 0.820000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.850000 , 0.500000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.080000 , 0.750000 , 0.080000 }",
              "m_Offset": "{ -0.200000 , 1.050000 , 0.450000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.080000 , 0.750000 , 0.080000 }",
              "m_Offset": "{ -0.200000 , 1.050000 , -0.450000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.080000 , 0.080000 , 1.000000 }",
              "m_Offset": "{ -0.200000 , 1.450000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ 0.680000 , 0.280000 , 0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ 0.680000 , 0.280000 , -0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ -0.680000 , 0.280000 , 0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.550000 , 0.220000 , 0.550000 }",
              "m_Offset": "{ -0.680000 , 0.280000 , -0.580000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.400000 , 0.450000 , 0.350000 }",
              "m_Offset": "{ -0.450000 , 0.950000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.750000 , 0.080000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.320000 , 0.320000 , 0.320000 }",
              "m_Offset": "{ -0.450000 , 1.320000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.820000 , 0.600000 , 0.420000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.340000 , 0.160000 , 0.340000 }",
              "m_Offset": "{ -0.450000 , 1.470000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.080000 , 0.080000 , 0.080000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.300000",
        "m_Roughness": "0.400000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "BoatA13",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "BoatA13",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.600000 , 0.350000 , 1.200000 }",
              "m_Offset": "{ 0.000000 , 0.060000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.500000 , 0.330000 , 0.180000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.600000 , 0.320000 , 0.600000 }",
              "m_Offset": "{ 1.350000 , 0.060000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "45.000000",
              "m_Color": "{ 0.500000 , 0.330000 , 0.180000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.600000 , 0.320000 , 0.600000 }",
              "m_Offset": "{ -1.350000 , 0.060000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "45.000000",
              "m_Color": "{ 0.500000 , 0.330000 , 0.180000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.400000 , 0.060000 , 1.000000 }",
              "m_Offset": "{ 0.000000 , 0.260000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.620000 , 0.450000 , 0.280000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.080000 , 1.900000 , 0.080000 }",
              "m_Offset": "{ 0.300000 , 1.200000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.350000 , 0.240000 , 0.140000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cone",
              "m_Size": "{ 0.140000 , 1.600000 , 1.100000 }",
              "m_Offset": "{ -0.350000 , 1.100000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.950000 , 0.940000 , 0.880000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.000000",
        "m_Roughness": "0.700000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "BoatB13",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "BoatB13",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.600000 , 0.350000 , 1.200000 }",
              "m_Offset": "{ 0.000000 , 0.060000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.500000 , 0.330000 , 0.180000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.600000 , 0.320000 , 0.600000 }",
              "m_Offset": "{ 1.350000 , 0.060000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "45.000000",
              "m_Color": "{ 0.500000 , 0.330000 , 0.180000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.600000 , 0.320000 , 0.600000 }",
              "m_Offset": "{ -1.350000 , 0.060000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "45.000000",
              "m_Color": "{ 0.500000 , 0.330000 , 0.180000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 2.400000 , 0.060000 , 1.000000 }",
              "m_Offset": "{ 0.000000 , 0.260000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.620000 , 0.450000 , 0.280000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.080000 , 1.900000 , 0.080000 }",
              "m_Offset": "{ 0.300000 , 1.200000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.350000 , 0.240000 , 0.140000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cone",
              "m_Size": "{ 0.140000 , 1.600000 , 1.100000 }",
              "m_Offset": "{ -0.350000 , 1.100000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.950000 , 0.940000 , 0.880000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.000000",
        "m_Roughness": "0.700000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "Tram13",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "Tram13",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 7.000000 , 1.500000 , 1.300000 }",
              "m_Offset": "{ 0.000000 , 1.050000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.950000 , 0.780000 , 0.120000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 7.020000 , 0.500000 , 1.320000 }",
              "m_Offset": "{ 0.000000 , 0.450000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.120000 , 0.300000 , 0.600000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 6.400000 , 0.550000 , 1.340000 }",
              "m_Offset": "{ 0.000000 , 1.500000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.150000 , 0.200000 , 0.250000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 7.000000 , 0.150000 , 1.200000 }",
              "m_Offset": "{ 0.000000 , 1.900000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.820000 , 0.820000 , 0.780000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 0.100000 , 0.100000 , 1.340000 }",
              "m_Offset": "{ 0.000000 , 1.050000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.120000 , 0.300000 , 0.600000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.060000 , 1.000000 , 0.060000 }",
              "m_Offset": "{ 0.000000 , 2.350000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 0.000000 , 1.000000 }",
              "m_RotationDegrees": "22.000000",
              "m_Color": "{ 0.100000 , 0.100000 , 0.100000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.420000 , 0.200000 , 0.420000 }",
              "m_Offset": "{ 2.500000 , 0.220000 , 0.500000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.420000 , 0.200000 , 0.420000 }",
              "m_Offset": "{ 2.500000 , 0.220000 , -0.500000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.420000 , 0.200000 , 0.420000 }",
              "m_Offset": "{ -2.500000 , 0.220000 , 0.500000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.420000 , 0.200000 , 0.420000 }",
              "m_Offset": "{ -2.500000 , 0.220000 , -0.500000 }",
              "m_RotationAxis": "{ 1.000000 , 0.000000 , 0.000000 }",
              "m_RotationDegrees": "90.000000",
              "m_Color": "{ 0.050000 , 0.050000 , 0.050000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.250000",
        "m_Roughness": "0.450000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "Wave13",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "Wave13",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 3.600000 , 0.500000 , 1.800000 }",
              "m_Offset": "{ 0.000000 , 0.250000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.160000 , 0.450000 , 0.650000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Box",
              "m_Size": "{ 3.600000 , 0.300000 , 1.100000 }",
              "m_Offset": "{ 0.000000 , 0.600000 , 0.250000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.850000 , 0.930000 , 0.970000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.550000 , 0.400000 , 0.550000 }",
              "m_Offset": "{ -1.200000 , 0.780000 , 0.200000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.950000 , 0.980000 , 1.000000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.600000 , 0.450000 , 0.600000 }",
              "m_Offset": "{ 0.100000 , 0.820000 , 0.200000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.950000 , 0.980000 , 1.000000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.500000 , 0.380000 , 0.500000 }",
              "m_Offset": "{ 1.300000 , 0.750000 , 0.200000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.950000 , 0.980000 , 1.000000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.000000",
        "m_Roughness": "0.300000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "PlantA13",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "PlantA13",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.620000 , 0.500000 , 0.620000 }",
              "m_Offset": "{ 0.000000 , 0.250000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.650000 , 0.400000 , 0.250000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.850000 , 0.700000 , 0.850000 }",
              "m_Offset": "{ 0.000000 , 0.800000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.200000 , 0.500000 , 0.220000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.000000",
        "m_Roughness": "0.850000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEProceduralMeshEntity",
      "name": "PlantB13",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "True",
        "m_strEntityName": "PlantB13",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_ModelName": "",
        "m_pPhysicsModel": {
          "$ref": null
        },
        "m_aParts": [
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Cylinder",
              "m_Size": "{ 0.620000 , 0.500000 , 0.620000 }",
              "m_Offset": "{ 0.000000 , 0.250000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.650000 , 0.400000 , 0.250000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          },
          {
            "type": "SEProceduralShapePart",
            "members": {
              "m_ShapeType": "Sphere",
              "m_Size": "{ 0.850000 , 0.700000 , 0.850000 }",
              "m_Offset": "{ 0.000000 , 0.800000 , 0.000000 }",
              "m_RotationAxis": "{ 0.000000 , 1.000000 , 0.000000 }",
              "m_RotationDegrees": "0.000000",
              "m_Color": "{ 0.200000 , 0.500000 , 0.220000 }",
              "m_uiRadialSegments": "16",
              "m_uiRings": "12",
              "m_UVScale": "{ 1.000000 , 1.000000 }",
              "m_UVOffset": "{ 0.000000 , 0.000000 }",
              "m_bTileWorld": "False",
              "m_Outline": ""
            }
          }
        ],
        "m_AlbedoTexture": "",
        "m_NormalTexture": "",
        "m_MetallicRoughnessTexture": "",
        "m_BaseColor": "{ 1.000000 , 1.000000 , 1.000000 }",
        "m_Metallic": "0.000000",
        "m_Roughness": "0.850000",
        "m_bDoubleSided": "False",
        "m_bAlphaTest": "False"
      }
    },
    {
      "type": "SEParticleSceneEntity",
      "name": "DeathFX",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,-100.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "False",
        "m_strEntityName": "DeathFX",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_strSystemName": "Particles/KenneyMagic.sef",
        "m_iInstanceSeed": "13",
        "m_fScaleStartDistance": "0.000000",
        "m_fScaleEndDistance": "0.000000"
      }
    },
    {
      "type": "SETextEntity",
      "name": "TitleText",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,7.200000,9.000000,1.000000}",
        "m_bFrustumCullable": "False",
        "m_strEntityName": "TitleText",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_Text": "MAZARITA CROSSING",
        "m_Color": "{ 0.980000 , 0.820000 , 0.250000 , 1.000000 }",
        "m_strFontFile": "",
        "m_fScale": "0.026000",
        "m_HorizontalAlign": "Center",
        "m_VerticalAlign": "Middle",
        "m_bBillboarded": "True"
      }
    },
    {
      "type": "SETextEntity",
      "name": "ScoreText",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,6.200000,8.000000,1.000000}",
        "m_bFrustumCullable": "False",
        "m_strEntityName": "ScoreText",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_Text": "SCORE 0   BEST 0",
        "m_Color": "{ 0.850000 , 0.930000 , 1.000000 , 1.000000 }",
        "m_strFontFile": "",
        "m_fScale": "0.016000",
        "m_HorizontalAlign": "Center",
        "m_VerticalAlign": "Middle",
        "m_bBillboarded": "True"
      }
    },
    {
      "type": "SETextEntity",
      "name": "StatusText",
      "members": {
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,4.200000,4.000000,1.000000}",
        "m_bFrustumCullable": "False",
        "m_strEntityName": "StatusText",
        "m_strScriptFile": "",
        "m_strScriptClass": "",
        "m_strScriptSource": "",
        "m_bScriptEnabled": "True",
        "m_Text": "",
        "m_Color": "{ 1.000000 , 0.450000 , 0.350000 , 1.000000 }",
        "m_strFontFile": "",
        "m_fScale": "0.020000",
        "m_HorizontalAlign": "Center",
        "m_VerticalAlign": "Middle",
        "m_bBillboarded": "True"
      }
    },
    {
      "type": "SESynthSceneEntity",
      "name": "Sfx",
      "members": {
        "m_strEntityName": "Sfx",
        "m_Transform": "{1.000000,0.000000,0.000000,0.000000}{0.000000,1.000000,0.000000,0.000000}{0.000000,0.000000,1.000000,0.000000}{0.000000,0.000000,0.000000,1.000000}",
        "m_bFrustumCullable": "False",
        "m_strInstrument": "Beep",
        "m_strSongFile": "",
        "m_bGenerateSong": "False",
        "m_bAutoPlay": "False",
        "m_fVolume": "0.700000",
        "m_fPan": "0.500000"
      }
    }
  ]
}
