diff --git a/docs/FUNCTIONAL.md b/docs/FUNCTIONAL.md index 3998dac..0cfb69e 100644 --- a/docs/FUNCTIONAL.md +++ b/docs/FUNCTIONAL.md @@ -732,6 +732,14 @@ The current report wire carries a `battle: [{ id, planet, shots }]` summary per battle so the map markers know where to anchor without fetching every full `BattleReport`. +For DEV / e2e the legacy-report CLI +(`tools/local-dev/legacy-report/cmd/legacy-report-to-json`) emits an +envelope `{version: 1, report, battles}` where `battles` carries the +full `BattleReport`-s parsed out of legacy `Battle at (#N)` blocks. +The synthetic-report loader on the lobby unwraps the envelope and +hands every battle to `registerSyntheticBattle`, so the Battle Viewer +resolves any UUID without a network fetch. + ### 6.6 Side effects A successful turn generation publishes a runtime snapshot into the diff --git a/docs/FUNCTIONAL_ru.md b/docs/FUNCTIONAL_ru.md index 02bee0d..f0706c1 100644 --- a/docs/FUNCTIONAL_ru.md +++ b/docs/FUNCTIONAL_ru.md @@ -750,6 +750,14 @@ wiped), клик скроллит соответствующую строку в на каждую битву, чтобы map-маркеры могли расположиться без дополнительного запроса полного `BattleReport`. +Для DEV / e2e легаси-CLI +(`tools/local-dev/legacy-report/cmd/legacy-report-to-json`) выдаёт +envelope `{version: 1, report, battles}`, где `battles` несёт полные +`BattleReport`-ы, распарсенные из `Battle at (#N)`-блоков. Synthetic- +загрузчик в лобби разбирает envelope и регистрирует каждую битву +через `registerSyntheticBattle`, так что Battle Viewer открывает +любой UUID без сетевого запроса. + ### 6.6 Побочные эффекты Успешная генерация хода публикует runtime-snapshot в lobby-модуль, diff --git a/tools/local-dev/legacy-report/README.md b/tools/local-dev/legacy-report/README.md index dd915f2..69f2406 100644 --- a/tools/local-dev/legacy-report/README.md +++ b/tools/local-dev/legacy-report/README.md @@ -1,8 +1,25 @@ # legacy-report-to-json Converts legacy text-format Galaxy turn reports (the *dg* and *gplus* -engines that lived under `tools/local-dev/reports/`) into the JSON -shape of [`pkg/model/report.Report`](../../../pkg/model/report). +engines that lived under `tools/local-dev/reports/`) into a JSON +envelope around [`pkg/model/report.Report`](../../../pkg/model/report) +plus full `BattleReport`s (Phase 27). + +## Output envelope + +```jsonc +{ + "version": 1, + "report": { /* report.Report */ }, + "battles": { "": { /* report.BattleReport */ }, ... } +} +``` + +`version: 1` lets the UI distinguish a current-format envelope from a +bare `Report` JSON. The synthetic-report loader accepts both — pre- +envelope synthetic JSON files still load, just without battle +fixtures. `battles` is omitted when the legacy file has no combat +events. The output is consumed by the **DEV-only synthetic-report loader** on the UI client's lobby (`import.meta.env.DEV`). With it, the map view, @@ -17,8 +34,8 @@ The tool is part of the synthetic-report parity rule documented in ```sh # from the repo root, with the Go workspace active go run ./tools/local-dev/legacy-report/cmd/legacy-report-to-json \ - --in tools/local-dev/reports/dg/KNNTS039.REP \ - --out tools/local-dev/reports/dg/KNNTS039.json + --in tools/local-dev/reports/dg/KNNTS041.REP \ + --out tools/local-dev/reports/dg/KNNTS041.json ``` `--in` reads `-` as stdin; `--out` defaults to stdout when empty or @@ -68,6 +85,21 @@ already decodes from server responses | `LocalGroup[]` | `Your Groups` (Phase 19) | | `LocalFleet[]` | `Your Fleets` (Phase 19) | | `IncomingGroup[]` | `Incoming Groups` (Phase 19) | +| `Battle[]` (summary) | `Battle at (#N) Name` headers + `Battle Protocol` (Phase 27 follow-up) | + +The envelope's `battles` map carries the full `BattleReport`-s parsed +out of the same blocks: every roster row turns into a +`BattleReportGroup` (`Number`/`Tech`/`LoadType`/`LoadQuantity`/ +`NumberLeft`/`InBattle`), every `... fires on ... : Destroyed|Shields` +line turns into a `BattleActionReport`. UUIDs are synthesised +deterministically — `syntheticBattleID(idx)` for the battle +identifier (per-report 0-based index, SHA1 namespace +`be01a000-0000-0000-0000-000000000002`) and +`syntheticBattleRaceID(name)` for `BattleReport.Races` entries (SHA1 +namespace `be01a000-0000-0000-0000-000000000003`). Re-running the +converter on the same input file yields byte-identical JSON, so +synthetic-mode UI URLs (`/games/synthetic-…/battle/?turn=N`) +stay stable across regenerations. Players whose name in the legacy file ends with `_RIP` are emitted with the suffix stripped and `Extinct: true`. @@ -103,15 +135,9 @@ These exist in legacy reports but cannot be derived from the legacy text format at all. Each could become in-scope if a strong enough reason arises (see "Adding a new field" below). -- Battles (`Battle at (#N) Name`, `Battle Protocol`) — the wire schema - carries battle UUIDs (`Report.Battle: []uuid.UUID`); the legacy text - carries per-battle rosters with stripped columns (no origin / range / - destination) and no stable identifier. Synthesising UUIDs from the - text would invent data that future Phase 27 work would have to drop; - the synthetic JSON therefore emits `battle: []`. - `OtherGroup[]` — no top-level legacy section. Foreign groups appear - only inside battle rosters (see above), with stripped columns; the - synthetic JSON emits `otherGroup: []`. + only inside battle rosters; the synthetic JSON emits + `otherGroup: []`. - `UnidentifiedGroup[]` — no legacy section at all; synthetic JSON emits `unidentifiedGroup: []`. - Cargo routes — no dedicated section in the legacy text format; the diff --git a/tools/local-dev/legacy-report/cmd/legacy-report-to-json/main.go b/tools/local-dev/legacy-report/cmd/legacy-report-to-json/main.go index 84fdb01..a06b873 100644 --- a/tools/local-dev/legacy-report/cmd/legacy-report-to-json/main.go +++ b/tools/local-dev/legacy-report/cmd/legacy-report-to-json/main.go @@ -1,7 +1,18 @@ // Command legacy-report-to-json converts a legacy text-format Galaxy -// turn report (the "dg" / "gplus" engines) into the JSON shape of -// pkg/model/report.Report. The resulting file is what the UI client's -// DEV-only synthetic-report loader on the lobby consumes. +// turn report (the "dg" / "gplus" engines) into a JSON envelope +// readable by the UI client's DEV-only synthetic-report loader: +// +// { +// "version": 1, +// "report": , +// "battles": { "": , ... } +// } +// +// Carrying the per-turn report and the full BattleReports in one +// payload lets the synthetic loader register the battles up-front +// so the Battle Viewer can render any battle without a network +// fetch. The bare Report shape (no envelope) the lobby loader +// historically accepted remains backward-compatible on the UI side. package main import ( @@ -12,8 +23,18 @@ import ( "os" legacyreport "galaxy/legacy-report" + "galaxy/model/report" ) +// envelope is the on-disk shape emitted by this CLI. `Version` lets +// the UI loader distinguish a v1 envelope from a bare Report; future +// versions can bump it without breaking older synthetic JSON files. +type envelope struct { + Version int `json:"version"` + Report report.Report `json:"report"` + Battles map[string]report.BattleReport `json:"battles,omitempty"` +} + func main() { in := flag.String("in", "", "path to legacy .REP file (use - for stdin)") out := flag.String("out", "", "path to write JSON to (use - or empty for stdout)") @@ -31,7 +52,7 @@ func main() { } defer closeIn() - rep, err := legacyreport.Parse(r) + rep, battles, err := legacyreport.Parse(r) if err != nil { fmt.Fprintf(os.Stderr, "parse: %v\n", err) os.Exit(1) @@ -44,9 +65,17 @@ func main() { } defer closeOut() + env := envelope{Version: 1, Report: rep} + if len(battles) > 0 { + env.Battles = make(map[string]report.BattleReport, len(battles)) + for i := range battles { + env.Battles[battles[i].ID.String()] = battles[i] + } + } + enc := json.NewEncoder(w) enc.SetIndent("", " ") - if err := enc.Encode(rep); err != nil { + if err := enc.Encode(env); err != nil { fmt.Fprintf(os.Stderr, "encode: %v\n", err) os.Exit(1) } diff --git a/tools/local-dev/legacy-report/parser.go b/tools/local-dev/legacy-report/parser.go index 1863439..29e9404 100644 --- a/tools/local-dev/legacy-report/parser.go +++ b/tools/local-dev/legacy-report/parser.go @@ -26,22 +26,29 @@ import ( ) // Parse reads a legacy text report and returns a [report.Report] -// carrying the in-scope subset of fields. The Width and Height of the -// returned report are both set to the legacy "Size" value (galaxies -// are square in the legacy engines). -func Parse(r io.Reader) (report.Report, error) { +// carrying the in-scope subset of fields, plus the per-battle +// [report.BattleReport] payloads parsed out of the "Battle at (#N)" +// blocks. The Width and Height of the returned report are both set +// to the legacy "Size" value (galaxies are square in the legacy +// engines). The battle slice is empty when the legacy file carries +// no combat events. +func Parse(r io.Reader) (report.Report, []report.BattleReport, error) { p := newParser() sc := bufio.NewScanner(r) sc.Buffer(make([]byte, 1024*1024), 4*1024*1024) for sc.Scan() { if err := p.handle(sc.Text()); err != nil { - return report.Report{}, err + return report.Report{}, nil, err } } if err := sc.Err(); err != nil { - return report.Report{}, fmt.Errorf("legacyreport: scan: %w", err) + return report.Report{}, nil, fmt.Errorf("legacyreport: scan: %w", err) } - return p.finish() + battles, err := p.finish() + if err != nil { + return report.Report{}, nil, err + } + return p.rep, battles, nil } type section int @@ -63,6 +70,8 @@ const ( sectionOtherShipTypes sectionBombings sectionShipsInProduction + sectionBattle + sectionBattleProtocol ) type parser struct { @@ -85,6 +94,40 @@ type parser struct { pendingFleets []pendingFleet pendingIncomings []pendingIncoming pendingShipProducts []pendingShipProduction + + // Battle accumulator. `battles` collects every parsed BattleReport; + // `pendingBattle` carries the in-flight battle until its block + // ends (next "Battle at " header, a top-level section header, or + // end-of-file). `battleIndex` is the per-report 0-based index used + // to derive a stable synthetic UUID through `syntheticBattleID`. + // `pendingBattleRace` holds the race name currently being + // rostered, set by the " Groups" sub-header that opens each + // race's roster table inside the battle block. + battles []report.BattleReport + pendingBattle *pendingBattle + battleIndex uint + pendingBattleRace string +} + +type pendingBattle struct { + id uuid.UUID + planet uint + planetName string + // Race name → race index used in Protocol.{a,d}. Indices are + // 0-based and assigned in first-seen order across the battle. + raceIndex map[string]int + // (race name, class name) → ship-group index used in + // Protocol.{sa,sd}. Indices are 0-based and assigned in + // first-seen order across the battle, across all races. + shipIndex map[shipKey]int + races map[int]uuid.UUID + ships map[int]report.BattleReportGroup + protocol []report.BattleActionReport +} + +type shipKey struct { + race string + class string } type pendingGroup struct { @@ -155,10 +198,62 @@ func (p *parser) handle(line string) error { return nil } + // Inside a battle block, " Groups" lines open a per-race + // roster sub-table. The line matches singleTokenPrefix(_, " Groups") + // and would otherwise be treated as a top-level section transition + // by classifySection. Trap it here so the battle state stays open. + if (p.sec == sectionBattle || p.sec == sectionBattleProtocol) && p.pendingBattle != nil { + if race, ok := singleTokenPrefix(trimmed, " Groups"); ok { + // New roster — the protocol block, if it had started, + // cannot reopen; but the engine never emits " Groups" + // after "Battle Protocol" inside the same battle. + p.sec = sectionBattle + p.pendingBattleRace = race + p.skipHeader = true + return nil + } + } + if newSec, owner, isHeader := classifySection(trimmed); isHeader { + // Flush the previous battle on any header transition that + // moves us out of the battle block. Sub-transitions + // (sectionBattle → sectionBattleProtocol or vice-versa) + // inside the same battle do not flush. + switch { + case newSec == sectionBattle: + p.flushPendingBattle() + planet, planetName, ok := parseBattleHeader(trimmed) + if ok { + p.pendingBattle = &pendingBattle{ + id: syntheticBattleID(p.battleIndex), + planet: planet, + planetName: planetName, + raceIndex: make(map[string]int), + shipIndex: make(map[shipKey]int), + races: make(map[int]uuid.UUID), + ships: make(map[int]report.BattleReportGroup), + } + p.battleIndex++ + } + p.pendingBattleRace = "" + case newSec == sectionBattleProtocol: + // Stay in the same battle; the protocol header itself + // has no column header to skip — `Battle Protocol` is + // followed by the shot lines directly. Reset + // pendingBattleRace because the roster phase ended. + p.pendingBattleRace = "" + default: + // Any other section transition closes the battle. + p.flushPendingBattle() + } p.sec = newSec p.otherOwner = owner - p.skipHeader = newSec != sectionNone + // `Battle Protocol` has no column header to skip; ditto for + // the per-race ` Groups` sub-header trapped above (we + // handle that branch separately). For sectionBattle the + // header line is "Battle at (#N) Name" with no following + // column row, so skipHeader stays false there as well. + p.skipHeader = newSec != sectionNone && newSec != sectionBattle && newSec != sectionBattleProtocol return nil } @@ -205,16 +300,21 @@ func (p *parser) handle(line string) error { p.parseBombing(fields) case sectionShipsInProduction: p.parseShipProductionRow(fields) + case sectionBattle: + p.parseBattleRosterRow(fields) + case sectionBattleProtocol: + p.parseBattleProtocolLine(fields) } return nil } -func (p *parser) finish() (report.Report, error) { +func (p *parser) finish() ([]report.BattleReport, error) { if !p.sawHeader { - return report.Report{}, errors.New("legacyreport: missing report header line") + return nil, errors.New("legacyreport: missing report header line") } + p.flushPendingBattle() p.resolvePending() - return p.rep, nil + return p.battles, nil } // parseHeader extracts (race, turn) from @@ -294,15 +394,16 @@ func classifySection(line string) (sec section, owner string, isHeader bool) { case "Ships In Production": return sectionShipsInProduction, "", true case "Approaching Groups", - "Broadcast Message", - "Battle Protocol": + "Broadcast Message": return sectionNone, "", true + case "Battle Protocol": + return sectionBattleProtocol, "", true } if strings.HasPrefix(line, "Status of Players") { return sectionStatusOfPlayers, "", true } if strings.HasPrefix(line, "Battle at ") { - return sectionNone, "", true + return sectionBattle, "", true } if strings.HasPrefix(line, "=== ATTENTION") { return sectionNone, "", true @@ -637,6 +738,203 @@ func (p *parser) parseBombing(fields []string) { }) } +// parseBattleHeader extracts (planet, planetName) from a +// "Battle at (#N) " line. The planet number is the +// integer between "(#" and ")"; the planet name is the rest of the +// line after the closing parenthesis (trimmed). +func parseBattleHeader(line string) (uint, string, bool) { + const prefix = "Battle at " + if !strings.HasPrefix(line, prefix) { + return 0, "", false + } + rest := strings.TrimSpace(line[len(prefix):]) + if !strings.HasPrefix(rest, "(#") { + return 0, "", false + } + closing := strings.IndexByte(rest, ')') + if closing < 0 { + return 0, "", false + } + num, err := strconv.ParseUint(rest[2:closing], 10, 32) + if err != nil { + return 0, "", false + } + name := strings.TrimSpace(rest[closing+1:]) + return uint(num), name, true +} + +// parseBattleRosterRow consumes one ship-group line from a battle +// roster sub-table. Columns (10 tokens; the last is the per-group +// state word): +// +// # T D W S C T Q L state +// 1 Pistolet 1.6 1.00 1.00 0 - 0 1 In_Battle +// +// where column "L" carries the number of ships remaining after the +// battle (confirmed against KNNTS fixtures). Rows are appended to +// `pendingBattle.ships` under the race name currently held in +// `pendingBattleRace`. +func (p *parser) parseBattleRosterRow(fields []string) { + if p.pendingBattle == nil || p.pendingBattleRace == "" { + return + } + if len(fields) < 10 { + return + } + number, err := strconv.ParseUint(fields[0], 10, 32) + if err != nil { + return + } + className := fields[1] + drive, _ := parseFloat(fields[2]) + weapons, _ := parseFloat(fields[3]) + shields, _ := parseFloat(fields[4]) + cargo, _ := parseFloat(fields[5]) + loadQuantity, _ := parseFloat(fields[7]) + numLeft, err := strconv.ParseUint(fields[8], 10, 32) + if err != nil { + return + } + state := fields[9] + tech := make(map[string]report.Float, 4) + if drive != 0 { + tech["DRIVE"] = report.F(drive) + } + if weapons != 0 { + tech["WEAPONS"] = report.F(weapons) + } + if shields != 0 { + tech["SHIELDS"] = report.F(shields) + } + if cargo != 0 { + tech["CARGO"] = report.F(cargo) + } + + p.assignRaceIndex(p.pendingBattleRace) + key := shipKey{race: p.pendingBattleRace, class: className} + idx := p.assignShipIndex(key) + + p.pendingBattle.ships[idx] = report.BattleReportGroup{ + Race: p.pendingBattleRace, + ClassName: className, + Tech: tech, + Number: uint(number), + NumberLeft: uint(numLeft), + LoadType: dashOrEmpty(fields[6]), + LoadQuantity: report.F(loadQuantity), + InBattle: state == "In_Battle", + } +} + +// parseBattleProtocolLine consumes one shot line of the +// "Battle Protocol" sub-block. Required shape (8 tokens): +// +// fires on : +// +// Anything else (including the empty line separating the protocol +// from the preceding rosters) is silently skipped — the engine never +// emits other text inside this block. +func (p *parser) parseBattleProtocolLine(fields []string) { + if p.pendingBattle == nil { + return + } + if len(fields) != 8 { + return + } + if fields[2] != "fires" || fields[3] != "on" || fields[6] != ":" { + return + } + atkRace, atkClass := fields[0], fields[1] + defRace, defClass := fields[4], fields[5] + destroyed := fields[7] == "Destroyed" + + aRace := p.assignRaceIndex(atkRace) + dRace := p.assignRaceIndex(defRace) + sa := p.assignShipIndex(shipKey{race: atkRace, class: atkClass}) + sd := p.assignShipIndex(shipKey{race: defRace, class: defClass}) + + // Synthesise a minimal BattleReportGroup entry when the shot + // references a (race, class) pair that the roster did not + // declare. This happens when the legacy emitter trims a roster + // row but the engine logged a shot for that group. + if _, ok := p.pendingBattle.ships[sa]; !ok { + p.pendingBattle.ships[sa] = report.BattleReportGroup{ + Race: atkRace, ClassName: atkClass, InBattle: true, + Tech: map[string]report.Float{}, + } + } + if _, ok := p.pendingBattle.ships[sd]; !ok { + p.pendingBattle.ships[sd] = report.BattleReportGroup{ + Race: defRace, ClassName: defClass, InBattle: true, + Tech: map[string]report.Float{}, + } + } + + p.pendingBattle.protocol = append(p.pendingBattle.protocol, report.BattleActionReport{ + Attacker: aRace, + AttackerShipClass: sa, + Defender: dRace, + DefenderShipClass: sd, + Destroyed: destroyed, + }) +} + +// assignRaceIndex returns the in-battle race index for raceName, +// creating a new entry on first sight. Race indices are 0-based and +// monotonically increasing in first-seen order. The synthetic race +// UUID is derived from the race name through +// `syntheticBattleRaceNamespace`. +func (p *parser) assignRaceIndex(raceName string) int { + if idx, ok := p.pendingBattle.raceIndex[raceName]; ok { + return idx + } + idx := len(p.pendingBattle.raceIndex) + p.pendingBattle.raceIndex[raceName] = idx + p.pendingBattle.races[idx] = syntheticBattleRaceID(raceName) + return idx +} + +// assignShipIndex returns the in-battle ship-group index for +// (race, class), creating a new entry on first sight. Indices are +// 0-based and monotonically increasing in first-seen order across +// all races. +func (p *parser) assignShipIndex(key shipKey) int { + if idx, ok := p.pendingBattle.shipIndex[key]; ok { + return idx + } + idx := len(p.pendingBattle.shipIndex) + p.pendingBattle.shipIndex[key] = idx + return idx +} + +// flushPendingBattle finalises the in-flight battle: appends the +// BattleReport to `p.battles` and a matching BattleSummary +// (id/planet/shots) to `p.rep.Battle`. No-op when no battle is +// pending. Idempotent — clears `pendingBattle` on completion. +func (p *parser) flushPendingBattle() { + if p.pendingBattle == nil { + return + } + pb := p.pendingBattle + p.pendingBattle = nil + p.pendingBattleRace = "" + + br := report.BattleReport{ + ID: pb.id, + Planet: pb.planet, + PlanetName: pb.planetName, + Races: pb.races, + Ships: pb.ships, + Protocol: pb.protocol, + } + p.battles = append(p.battles, br) + p.rep.Battle = append(p.rep.Battle, report.BattleSummary{ + ID: pb.id, + Planet: pb.planet, + Shots: uint(len(pb.protocol)), + }) +} + // parseShipProductionRow buffers a "Ships In Production" row for // post-processing in [parser.finish]. Columns: // @@ -957,6 +1255,31 @@ func syntheticGroupID(g uint) uuid.UUID { return uuid.NewSHA1(syntheticGroupNamespace, fmt.Appendf(nil, "legacy-local-group-%d", g)) } +// syntheticBattleNamespace seeds [uuid.NewSHA1] for the per-report +// battle-index → UUID derivation used by `Report.Battle[i].ID` and +// `BattleReport.ID`. Distinct from `syntheticGroupNamespace` so a +// per-report battle index can never collide with a ship-group id. +// Mirrors the rationale in `syntheticGroupNamespace`: arbitrary +// value, stable across releases. +var syntheticBattleNamespace = uuid.MustParse("be01a000-0000-0000-0000-000000000002") + +// syntheticBattleRaceNamespace seeds [uuid.NewSHA1] for the +// per-battle race name → race UUID derivation that fills +// `BattleReport.Races`. Engine-side reports carry the real race +// UUID; the legacy text only carries the race name, so we derive a +// stable identifier from the name. The constant is independent of +// `syntheticBattleNamespace` so race UUIDs can never collide with +// battle UUIDs. +var syntheticBattleRaceNamespace = uuid.MustParse("be01a000-0000-0000-0000-000000000003") + +func syntheticBattleID(idx uint) uuid.UUID { + return uuid.NewSHA1(syntheticBattleNamespace, fmt.Appendf(nil, "legacy-battle-%d", idx)) +} + +func syntheticBattleRaceID(name string) uuid.UUID { + return uuid.NewSHA1(syntheticBattleRaceNamespace, fmt.Appendf(nil, "legacy-battle-race-%s", name)) +} + func dashOrEmpty(s string) string { if s == "-" { return "" diff --git a/tools/local-dev/legacy-report/parser_test.go b/tools/local-dev/legacy-report/parser_test.go index 155975a..b4d14b3 100644 --- a/tools/local-dev/legacy-report/parser_test.go +++ b/tools/local-dev/legacy-report/parser_test.go @@ -18,7 +18,7 @@ func TestParseHeaderAndSize(t *testing.T) { "", }, "\n") - rep, err := Parse(strings.NewReader(in)) + rep, _, err := Parse(strings.NewReader(in)) if err != nil { t.Fatalf("Parse: %v", err) } @@ -54,7 +54,7 @@ func TestParseStatusOfPlayers(t *testing.T) { "", }, "\n") - rep, err := Parse(strings.NewReader(in)) + rep, _, err := Parse(strings.NewReader(in)) if err != nil { t.Fatalf("Parse: %v", err) } @@ -87,7 +87,7 @@ func TestParseYourVote(t *testing.T) { "KnightErrants 16.02", "", }, "\n") - rep, err := Parse(strings.NewReader(in)) + rep, _, err := Parse(strings.NewReader(in)) if err != nil { t.Fatalf("Parse: %v", err) } @@ -115,7 +115,7 @@ func TestParseLocalAndOtherPlanets(t *testing.T) { " 12 303.84 579.23 Skarabei 500.00 500.00 500.00 10.00 Capital 0.00 70.99 20.03 341.78", "", }, "\n") - rep, err := Parse(strings.NewReader(in)) + rep, _, err := Parse(strings.NewReader(in)) if err != nil { t.Fatalf("Parse: %v", err) } @@ -160,7 +160,7 @@ func TestParseUninhabitedAndUnidentified(t *testing.T) { " 1 579.12 489.37", "", }, "\n") - rep, err := Parse(strings.NewReader(in)) + rep, _, err := Parse(strings.NewReader(in)) if err != nil { t.Fatalf("Parse: %v", err) } @@ -196,7 +196,7 @@ func TestParseShipClasses(t *testing.T) { "Dragon 16.70 1 1.10 1.00 1 19.80", "", }, "\n") - rep, err := Parse(strings.NewReader(in)) + rep, _, err := Parse(strings.NewReader(in)) if err != nil { t.Fatalf("Parse: %v", err) } @@ -241,7 +241,7 @@ func TestParseSciences(t *testing.T) { "_Drift 1 0 0 0", "", }, "\n") - rep, err := Parse(strings.NewReader(in)) + rep, _, err := Parse(strings.NewReader(in)) if err != nil { t.Fatalf("Parse: %v", err) } @@ -280,7 +280,7 @@ func TestParseBombings(t *testing.T) { "Knights Ricksha 332 PEHKE 500.00 258.64 Dron 184.39 0.00 6.42 331.93 Damaged", "", }, "\n") - rep, err := Parse(strings.NewReader(in)) + rep, _, err := Parse(strings.NewReader(in)) if err != nil { t.Fatalf("Parse: %v", err) } @@ -339,7 +339,7 @@ func TestParseShipsInProduction(t *testing.T) { " 17 Castle CombatFlame 990.10 0.07 1000.00", "", }, "\n") - rep, err := Parse(strings.NewReader(in)) + rep, _, err := Parse(strings.NewReader(in)) if err != nil { t.Fatalf("Parse: %v", err) } @@ -381,7 +381,7 @@ func TestParseShipsInProductionDropsUnknownPlanet(t *testing.T) { " 99 Lost Frigate 100.00 0.05 500.00", "", }, "\n") - rep, err := Parse(strings.NewReader(in)) + rep, _, err := Parse(strings.NewReader(in)) if err != nil { t.Fatalf("Parse: %v", err) } @@ -391,23 +391,57 @@ func TestParseShipsInProductionDropsUnknownPlanet(t *testing.T) { } } -// TestParseSkipsBattles covers the only remaining legacy section the -// parser ignores: "Battle at ..." headers and the following "Battle -// Protocol" block. Bombings, Ships In Production, and the per-race -// Sciences / Ship Types blocks now flow through real parsers; the -// dedicated section tests below cover them. -func TestParseSkipsBattles(t *testing.T) { +// TestParseBattles exercises the battle-block parser end-to-end: +// two battles with two races each, full rosters, and protocols. The +// inline fixture mirrors the KNNTS-style layout (race-named roster +// sub-headers, 10-column roster rows, 8-token shot lines) so any +// drift from the real engine format breaks this test before a smoke +// regression. Asserts: +// - report.Battle carries one BattleSummary per "Battle at" +// - BattleReport slice mirrors that with full Races/Ships/Protocol +// - Battle Protocol "Foo fires on Bar : " lines +// map to BattleActionReport entries with the correct destroyed flag +// - Roster column 8 (the "L" column) populates NumberLeft +// - Top-level sections after a battle (Your Planets) still parse +// — battle state must close cleanly without leaking rows. +func TestParseBattles(t *testing.T) { in := strings.Join([]string{ "Race Report for Galaxy PLUS Turn 1", "", "Battle at (#7) B-007", "", - "# T D W S C T Q L", - "1 PeaceShip 4 0 0 0 - 0 1 Out_Battle", + "Foo Groups", + "", + "# T D W S C T Q L", + "1 PeaceShip 4.0 0 0 0 - 0 1 In_Battle", + "2 Drone 0.0 1 1 0 - 0 0 In_Battle", + "", + "Bar Groups", + "", + "# T D W S C T Q L", + "1 Pistolet 1.0 1.0 0 0 - 0 1 In_Battle", "", "Battle Protocol", "", - "Foo fires on Bar : Destroyed", + "Foo PeaceShip fires on Bar Pistolet : Shields", + "Bar Pistolet fires on Foo Drone : Destroyed", + "Bar Pistolet fires on Foo Drone : Destroyed", + "", + "Battle at (#11) X-011", + "", + "Foo Groups", + "", + "# T D W S C T Q L", + "1 Scout 1.0 0 0 0 - 0 1 In_Battle", + "", + "Bar Groups", + "", + "# T D W S C T Q L", + "1 Sniper 2.0 1 0 0 - 0 0 In_Battle", + "", + "Battle Protocol", + "", + "Foo Scout fires on Bar Sniper : Destroyed", "", "Your Planets", "", @@ -415,15 +449,87 @@ func TestParseSkipsBattles(t *testing.T) { " 17 171.05 700.24 Castle 1000.00 1000.00 1000.00 10.00 Capital 0.00 0.68 88.78 1000.00", "", }, "\n") - rep, err := Parse(strings.NewReader(in)) + rep, battles, err := Parse(strings.NewReader(in)) if err != nil { t.Fatalf("Parse: %v", err) } + + // The trailing Your Planets section must still parse — battle + // state must close before the next top-level header. if got, want := len(rep.LocalPlanet), 1; got != want { - t.Fatalf("len(LocalPlanet) = %d, want %d (battle rows must not leak in)", got, want) + t.Fatalf("len(LocalPlanet) = %d, want %d (battle state did not close)", got, want) } - if got, want := len(rep.Battle), 0; got != want { - t.Errorf("len(Battle) = %d, want %d (legacy parser does not synthesise battle UUIDs)", got, want) + + if got, want := len(rep.Battle), 2; got != want { + t.Fatalf("len(rep.Battle) = %d, want %d", got, want) + } + if got, want := len(battles), 2; got != want { + t.Fatalf("len(battles) = %d, want %d", got, want) + } + + // First battle: planet 7, 3 shots; protocol shape with one + // shielded shot and two destroyed shots. + b0 := battles[0] + if b0.Planet != 7 || b0.PlanetName != "B-007" { + t.Errorf("battle[0] = (planet=%d, name=%q), want (7, %q)", + b0.Planet, b0.PlanetName, "B-007") + } + if got, want := len(b0.Protocol), 3; got != want { + t.Fatalf("battle[0].Protocol = %d shots, want %d", got, want) + } + if b0.Protocol[0].Destroyed { + t.Errorf("battle[0].Protocol[0].Destroyed = true (Shields hit), want false") + } + if !b0.Protocol[1].Destroyed || !b0.Protocol[2].Destroyed { + t.Errorf("battle[0].Protocol[1..2].Destroyed must be true (Destroyed hits)") + } + + // First battle: roster size and NumberLeft mapping. + if got, want := len(b0.Ships), 3; got != want { + t.Fatalf("battle[0].Ships = %d groups, want %d", got, want) + } + // 'Drone' has NumberLeft=0 in the roster (column 8 = 0). The + // protocol corroborates: Pistolet destroyed Drone twice. + dronePresent := false + for _, ship := range b0.Ships { + if ship.ClassName == "Drone" { + dronePresent = true + if ship.NumberLeft != 0 { + t.Errorf("Drone.NumberLeft = %d, want 0", ship.NumberLeft) + } + if ship.Number != 2 { + t.Errorf("Drone.Number = %d, want 2", ship.Number) + } + } + } + if !dronePresent { + t.Errorf("Drone roster row not parsed into battle[0].Ships") + } + + // Summary mirrors the BattleReport ID and shot count. + if rep.Battle[0].ID != b0.ID { + t.Errorf("rep.Battle[0].ID = %s, want %s", rep.Battle[0].ID, b0.ID) + } + if rep.Battle[0].Shots != 3 { + t.Errorf("rep.Battle[0].Shots = %d, want 3", rep.Battle[0].Shots) + } + if rep.Battle[0].Planet != 7 { + t.Errorf("rep.Battle[0].Planet = %d, want 7", rep.Battle[0].Planet) + } + + // Second battle: planet 11, 1 shot. + if rep.Battle[1].Planet != 11 || rep.Battle[1].Shots != 1 { + t.Errorf("rep.Battle[1] = (planet=%d, shots=%d), want (11, 1)", + rep.Battle[1].Planet, rep.Battle[1].Shots) + } + + // Battle IDs are stable across re-parses. + rep2, battles2, err := Parse(strings.NewReader(in)) + if err != nil { + t.Fatalf("Parse (second pass): %v", err) + } + if rep.Battle[0].ID != rep2.Battle[0].ID || battles[0].ID != battles2[0].ID { + t.Errorf("battle id must be deterministic across re-parses") } } @@ -451,7 +557,7 @@ func TestParseYourGroups(t *testing.T) { " 2 1 Tormoz 11.19 0.00 0.00 1.0 CAP 4 North Castle 7.5 60.66 49.50 - In_Space", "", }, "\n") - rep, err := Parse(strings.NewReader(in)) + rep, _, err := Parse(strings.NewReader(in)) if err != nil { t.Fatalf("Parse: %v", err) } @@ -515,7 +621,7 @@ func TestParseYourFleets(t *testing.T) { " 1 Far 2 North Castle 4.50 20 In_Space", "", }, "\n") - rep, err := Parse(strings.NewReader(in)) + rep, _, err := Parse(strings.NewReader(in)) if err != nil { t.Fatalf("Parse: %v", err) } @@ -564,7 +670,7 @@ func TestParseIncomingGroups(t *testing.T) { " 87 169.59 694.49 North 500.00 500.00 500.00 10.00 Capital 0.00 0.52 35.76 500.00", "", }, "\n") - rep, err := Parse(strings.NewReader(in)) + rep, _, err := Parse(strings.NewReader(in)) if err != nil { t.Fatalf("Parse: %v", err) } @@ -597,11 +703,12 @@ type smokeWant struct { localGroups, localFleets, incomingGroups int localScience, otherScience, otherShipClass int bombings, shipProductions int + battles int } func runSmoke(t *testing.T, path string, want smokeWant) { t.Helper() - rep, err := parseFile(t, path) + rep, battles, err := parseFile(t, path) if err != nil { if os.IsNotExist(err) { t.Skipf("legacy report fixture missing: %s", path) @@ -647,12 +754,31 @@ func runSmoke(t *testing.T, path string, want smokeWant) { {"OtherShipClass", len(rep.OtherShipClass), want.otherShipClass}, {"Bombing", len(rep.Bombing), want.bombings}, {"ShipProduction", len(rep.ShipProduction), want.shipProductions}, + {"Battle (summary)", len(rep.Battle), want.battles}, + {"BattleReport", len(battles), want.battles}, } for _, c := range checks { if c.got != c.want { t.Errorf("%s = %d, want %d", c.name, c.got, c.want) } } + for i, summary := range rep.Battle { + if i >= len(battles) { + break + } + if summary.ID != battles[i].ID { + t.Errorf("battle[%d].ID summary=%s vs report=%s", + i, summary.ID, battles[i].ID) + } + if summary.Shots != uint(len(battles[i].Protocol)) { + t.Errorf("battle[%d].Shots = %d, want %d (len(Protocol))", + i, summary.Shots, len(battles[i].Protocol)) + } + if summary.Planet != battles[i].Planet { + t.Errorf("battle[%d].Planet summary=%d vs report=%d", + i, summary.Planet, battles[i].Planet) + } + } } // TestParseDgKNNTS039 is a smoke test: the parser must produce @@ -676,6 +802,7 @@ func TestParseDgKNNTS039(t *testing.T) { otherShipClass: 170, bombings: 16, shipProductions: 6, + battles: 28, }) } @@ -694,6 +821,7 @@ func TestParseDgKNNTS040(t *testing.T) { otherShipClass: 160, bombings: 24, shipProductions: 16, + battles: 79, }) } @@ -715,6 +843,7 @@ func TestParseDgKNNTS041(t *testing.T) { otherShipClass: 218, bombings: 12, shipProductions: 22, + battles: 56, }) } @@ -736,6 +865,7 @@ func TestParseGplus40(t *testing.T) { otherShipClass: 183, bombings: 4, shipProductions: 8, + battles: 30, }) } @@ -757,6 +887,7 @@ func TestParseDgKiller031(t *testing.T) { otherShipClass: 161, bombings: 18, shipProductions: 0, + battles: 83, }) } @@ -779,18 +910,19 @@ func TestParseDgTancordia037(t *testing.T) { otherShipClass: 123, bombings: 22, shipProductions: 20, + battles: 57, }) } -func parseFile(t *testing.T, rel string) (report.Report, error) { +func parseFile(t *testing.T, rel string) (report.Report, []report.BattleReport, error) { t.Helper() abs, err := filepath.Abs(rel) if err != nil { - return report.Report{}, err + return report.Report{}, nil, err } f, err := os.Open(abs) if err != nil { - return report.Report{}, err + return report.Report{}, nil, err } defer func() { _ = f.Close() }() return Parse(f) diff --git a/tools/local-dev/reports/dg/KNNTS041.json b/tools/local-dev/reports/dg/KNNTS041.json index b13e5b4..a5abc4e 100644 --- a/tools/local-dev/reports/dg/KNNTS041.json +++ b/tools/local-dev/reports/dg/KNNTS041.json @@ -1,11883 +1,48979 @@ { - "version": 0, - "turn": 41, - "mapWidth": 800, - "mapHeight": 800, - "mapPlanets": 700, - "race": "KnightErrants", - "votes": 17.1, - "voteFor": "KnightErrants", - "player": [ - { - "name": "3JO6HbIE", - "drive": 4.51, - "weapons": 2.24, - "shields": 1.8, - "cargo": 1, - "population": 2749.34, - "industry": 191.58, - "planets": 7, - "relation": "War", - "votes": 2.75, - "extinct": false - }, - { - "name": "6PATBA", - "drive": 9.03, - "weapons": 5.62, - "shields": 4.27, - "cargo": 1.53, - "population": 18229.17, - "industry": 12684.71, - "planets": 31, - "relation": "War", - "votes": 18.23, - "extinct": false - }, - { - "name": "AbubaGerbographerPot", - "drive": 6.95, - "weapons": 3.26, - "shields": 4.18, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "Peace", - "votes": 0, - "extinct": false - }, - { - "name": "Acreators", - "drive": 11.19, - "weapons": 4.01, - "shields": 4.69, - "cargo": 1, - "population": 11959.84, - "industry": 9725.58, - "planets": 19, - "relation": "War", - "votes": 11.96, - "extinct": false - }, - { - "name": "Alike", - "drive": 5.26, - "weapons": 1, - "shields": 1, - "cargo": 1, - "population": 3586.02, - "industry": 3530.06, - "planets": 5, - "relation": "War", - "votes": 3.59, - "extinct": false - }, - { - "name": "Argon", - "drive": 8.64, - "weapons": 3.38, - "shields": 3.22, - "cargo": 1, - "population": 7751.72, - "industry": 4533.3, - "planets": 22, - "relation": "War", - "votes": 7.75, - "extinct": false - }, - { - "name": "AT-2560TX", - "drive": 16.29, - "weapons": 9.49, - "shields": 9.54, - "cargo": 1, - "population": 12738.06, - "industry": 12731.45, - "planets": 19, - "relation": "War", - "votes": 12.74, - "extinct": false - }, - { - "name": "Barcarols", - "drive": 10.01, - "weapons": 5.39, - "shields": 5.66, - "cargo": 1, - "population": 16795.48, - "industry": 13948.94, - "planets": 24, - "relation": "War", - "votes": 16.8, - "extinct": false - }, - { - "name": "Basilius_I", - "drive": 5.85, - "weapons": 2.54, - "shields": 2.2, - "cargo": 1.3, - "population": 994.64, - "industry": 751.59, - "planets": 6, - "relation": "War", - "votes": 0.99, - "extinct": false - }, - { - "name": "BlackCrows", - "drive": 8.4, - "weapons": 3.65, - "shields": 3.46, - "cargo": 1, - "population": 9526.4, - "industry": 7679.51, - "planets": 15, - "relation": "War", - "votes": 9.53, - "extinct": false - }, - { - "name": "Bumbastik", - "drive": 5.16, - "weapons": 3.63, - "shields": 2.82, - "cargo": 1, - "population": 1760.37, - "industry": 38, - "planets": 3, - "relation": "War", - "votes": 1.76, - "extinct": false - }, - { - "name": "Bupyc", - "drive": 4.98, - "weapons": 3.79, - "shields": 1.8, - "cargo": 1, - "population": 3186.32, - "industry": 2970.8, - "planets": 4, - "relation": "Peace", - "votes": 3.19, - "extinct": false - }, - { - "name": "Cidonia", - "drive": 5.22, - "weapons": 2.39, - "shields": 2.39, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": false - }, - { - "name": "Civilians", - "drive": 10.03, - "weapons": 5.91, - "shields": 5.91, - "cargo": 1, - "population": 20336.2, - "industry": 14359.3, - "planets": 37, - "relation": "War", - "votes": 20.34, - "extinct": false - }, - { - "name": "CosmicMonkeys", - "drive": 9.39, - "weapons": 3.31, - "shields": 3.18, - "cargo": 1, - "population": 15493.63, - "industry": 12399.07, - "planets": 22, - "relation": "War", - "votes": 15.49, - "extinct": false - }, - { - "name": "Enoxes", - "drive": 11.91, - "weapons": 6.69, - "shields": 5.64, - "cargo": 1, - "population": 11532.37, - "industry": 10105.96, - "planets": 15, - "relation": "War", - "votes": 11.53, - "extinct": false - }, - { - "name": "Flagist", - "drive": 8.49, - "weapons": 6.69, - "shields": 7, - "cargo": 1.2, - "population": 14675.72, - "industry": 8966.36, - "planets": 42, - "relation": "Peace", - "votes": 14.68, - "extinct": false - }, - { - "name": "Folland", - "drive": 6.32, - "weapons": 1.9, - "shields": 1.98, - "cargo": 1.12, - "population": 6933.71, - "industry": 5463.58, - "planets": 11, - "relation": "War", - "votes": 8.2, - "extinct": false - }, - { - "name": "Frightners", - "drive": 8.36, - "weapons": 5.41, - "shields": 5.75, - "cargo": 1, - "population": 11009.69, - "industry": 10105.18, - "planets": 18, - "relation": "War", - "votes": 11.01, - "extinct": false - }, - { - "name": "Glaurung", - "drive": 10.47, - "weapons": 4.77, - "shields": 4.25, - "cargo": 1, - "population": 9661.72, - "industry": 7468.84, - "planets": 12, - "relation": "War", - "votes": 9.66, - "extinct": false - }, - { - "name": "HAEMHuKu-2000", - "drive": 8.86, - "weapons": 5.61, - "shields": 7.03, - "cargo": 1, - "population": 13252.34, - "industry": 11387.7, - "planets": 17, - "relation": "Peace", - "votes": 13.25, - "extinct": false - }, - { - "name": "kenguri", - "drive": 5.77, - "weapons": 2.81, - "shields": 1.95, - "cargo": 1, - "population": 2796.91, - "industry": 1983.67, - "planets": 6, - "relation": "War", - "votes": 2.8, - "extinct": false - }, - { - "name": "KnightErrants", - "drive": 13.25, - "weapons": 6.11, - "shields": 7.09, - "cargo": 1, - "population": 17095.55, - "industry": 14757.14, - "planets": 29, - "relation": "-", - "votes": 17.1, - "extinct": false - }, - { - "name": "Koreans", - "drive": 9.87, - "weapons": 5.96, - "shields": 4.86, - "cargo": 1, - "population": 15654.53, - "industry": 9090.1, - "planets": 39, - "relation": "Peace", - "votes": 15.65, - "extinct": false - }, - { - "name": "Manya", - "drive": 10.74, - "weapons": 7.9, - "shields": 6.34, - "cargo": 1, - "population": 12811.18, - "industry": 8723.31, - "planets": 21, - "relation": "War", - "votes": 12.81, - "extinct": false - }, - { - "name": "Meeps", - "drive": 14.83, - "weapons": 7.08, - "shields": 7.08, - "cargo": 1, - "population": 16694.05, - "industry": 12526.04, - "planets": 32, - "relation": "War", - "votes": 16.69, - "extinct": false - }, - { - "name": "Minbari", - "drive": 6.18, - "weapons": 2.6, - "shields": 3, - "cargo": 1, - "population": 1837.63, - "industry": 1107.06, - "planets": 12, - "relation": "War", - "votes": 1.84, - "extinct": false - }, - { - "name": "Monstrai", - "drive": 5.46, - "weapons": 2, - "shields": 3.08, - "cargo": 1, - "population": 760.07, - "industry": 525.58, - "planets": 5, - "relation": "Peace", - "votes": 0.76, - "extinct": false - }, - { - "name": "Nails", - "drive": 4.98, - "weapons": 3.97, - "shields": 3.19, - "cargo": 1, - "population": 5624.33, - "industry": 942.95, - "planets": 16, - "relation": "Peace", - "votes": 5.62, - "extinct": false - }, - { - "name": "Onix", - "drive": 8.32, - "weapons": 8.1, - "shields": 5.93, - "cargo": 1, - "population": 12822.63, - "industry": 12809.56, - "planets": 14, - "relation": "War", - "votes": 12.82, - "extinct": false - }, - { - "name": "Orla", - "drive": 8.13, - "weapons": 3.7, - "shields": 3.7, - "cargo": 2, - "population": 3179.79, - "industry": 2844.24, - "planets": 6, - "relation": "War", - "votes": 3.18, - "extinct": false - }, - { - "name": "Oselots", - "drive": 10.34, - "weapons": 5.71, - "shields": 6.13, - "cargo": 1, - "population": 14777.79, - "industry": 14253.97, - "planets": 24, - "relation": "War", - "votes": 14.78, - "extinct": false - }, - { - "name": "Ricksha", - "drive": 7.63, - "weapons": 3.55, - "shields": 3.95, - "cargo": 1, - "population": 1493.3, - "industry": 382.05, - "planets": 7, - "relation": "War", - "votes": 1.49, - "extinct": false - }, - { - "name": "Shuriki", - "drive": 7.98, - "weapons": 3.39, - "shields": 3.41, - "cargo": 1.42, - "population": 2030.1, - "industry": 1811.78, - "planets": 5, - "relation": "War", - "votes": 2.03, - "extinct": false - }, - { - "name": "sidiki", - "drive": 8.5, - "weapons": 4.64, - "shields": 4.54, - "cargo": 1.1, - "population": 8196.29, - "industry": 7105.85, - "planets": 11, - "relation": "War", - "votes": 6.93, - "extinct": false - }, - { - "name": "Slimes", - "drive": 6.33, - "weapons": 4.25, - "shields": 3.02, - "cargo": 1.73, - "population": 9232.1, - "industry": 6707.54, - "planets": 14, - "relation": "Peace", - "votes": 9.23, - "extinct": false - }, - { - "name": "SSSan", - "drive": 14.1, - "weapons": 8.23, - "shields": 6.37, - "cargo": 1.1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "Peace", - "votes": 0, - "extinct": false - }, - { - "name": "TwelvePointedCross", - "drive": 8.75, - "weapons": 5.86, - "shields": 4.2, - "cargo": 1, - "population": 17158.92, - "industry": 13880.69, - "planets": 24, - "relation": "Peace", - "votes": 17.16, - "extinct": false - }, - { - "name": "Umbra", - "drive": 11.37, - "weapons": 5.01, - "shields": 3.53, - "cargo": 1, - "population": 7272.35, - "industry": 6974.03, - "planets": 10, - "relation": "War", - "votes": 7.27, - "extinct": false - }, - { - "name": "Zerg", - "drive": 5.22, - "weapons": 3.77, - "shields": 1.91, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": false - }, - { - "name": "Zodiac", - "drive": 10.14, - "weapons": 6.09, - "shields": 6.26, - "cargo": 1, - "population": 18644.88, - "industry": 11128.92, - "planets": 25, - "relation": "Peace", - "votes": 18.64, - "extinct": false - }, - { - "name": "argo", - "drive": 5, - "weapons": 1, - "shields": 1, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - }, - { - "name": "Arkoid", - "drive": 4.02, - "weapons": 1.12, - "shields": 1, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - }, - { - "name": "Atoms", - "drive": 3.2, - "weapons": 3.67, - "shields": 1, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - }, - { - "name": "Baravykai", - "drive": 5, - "weapons": 1, - "shields": 1, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - }, - { - "name": "Baton", - "drive": 6.8, - "weapons": 3.31, - "shields": 1.91, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - }, - { - "name": "Believes", - "drive": 3.9, - "weapons": 1, - "shields": 1, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - }, - { - "name": "Boroda", - "drive": 5.6, - "weapons": 1.2, - "shields": 1.2, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - }, - { - "name": "BrainLess", - "drive": 6.29, - "weapons": 4.13, - "shields": 1.45, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "Peace", - "votes": 0, - "extinct": true - }, - { - "name": "Cezar", - "drive": 3.2, - "weapons": 2.68, - "shields": 1, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - }, - { - "name": "DevilMasters", - "drive": 5, - "weapons": 1, - "shields": 1, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - }, - { - "name": "diminoid", - "drive": 5, - "weapons": 1, - "shields": 1, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - }, - { - "name": "Fanatics", - "drive": 3.19, - "weapons": 1, - "shields": 1, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - }, - { - "name": "FIREBART", - "drive": 3.9, - "weapons": 1.3, - "shields": 1.2, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - }, - { - "name": "Fomi4", - "drive": 4.84, - "weapons": 1, - "shields": 1, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - }, - { - "name": "FOX", - "drive": 3.92, - "weapons": 3.17, - "shields": 2.87, - "cargo": 3.37, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - }, - { - "name": "Fredoids", - "drive": 2, - "weapons": 1, - "shields": 1.57, - "cargo": 1.4, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - }, - { - "name": "garbage", - "drive": 1.4, - "weapons": 1, - "shields": 1, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - }, - { - "name": "Ghost", - "drive": 3.8, - "weapons": 1, - "shields": 1, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - }, - { - "name": "goodee", - "drive": 4.99, - "weapons": 1, - "shields": 1, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - }, - { - "name": "Greedy", - "drive": 6.4, - "weapons": 2.45, - "shields": 3.05, - "cargo": 1.1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - }, - { - "name": "Guardhogs", - "drive": 7.79, - "weapons": 1.3, - "shields": 1, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - }, - { - "name": "Half-griffons", - "drive": 5, - "weapons": 1, - "shields": 1, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - }, - { - "name": "Jedi", - "drive": 4.34, - "weapons": 1.52, - "shields": 1.6, - "cargo": 1.1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - }, - { - "name": "Kellerants", - "drive": 4.25, - "weapons": 2.52, - "shields": 2.16, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "Peace", - "votes": 0, - "extinct": true - }, - { - "name": "killer", - "drive": 6.55, - "weapons": 3.65, - "shields": 1.35, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - }, - { - "name": "KOBA", - "drive": 5, - "weapons": 1, - "shields": 1, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - }, - { - "name": "KOPEW", - "drive": 4.2, - "weapons": 1.8, - "shields": 1.93, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - }, - { - "name": "KRUTIE", - "drive": 2.9, - "weapons": 2.43, - "shields": 1, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - }, - { - "name": "Lawyers", - "drive": 4.2, - "weapons": 1, - "shields": 7, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - }, - { - "name": "Lox", - "drive": 5.6, - "weapons": 1, - "shields": 1, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - }, - { - "name": "MiniDisc", - "drive": 5, - "weapons": 1, - "shields": 1, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - }, - { - "name": "Morpheus", - "drive": 4.08, - "weapons": 1, - "shields": 1.68, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "Peace", - "votes": 0, - "extinct": true - }, - { - "name": "Nova", - "drive": 6.22, - "weapons": 3.82, - "shields": 3.82, - "cargo": 1.03, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - }, - { - "name": "OldRelikt", - "drive": 5, - "weapons": 1, - "shields": 1, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - }, - { - "name": "Orda", - "drive": 6.62, - "weapons": 2.4, - "shields": 1.56, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - }, - { - "name": "Paradox", - "drive": 5, - "weapons": 1, - "shields": 1, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - }, - { - "name": "People", - "drive": 5, - "weapons": 1, - "shields": 1, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - }, - { - "name": "Piligrims", - "drive": 7.1, - "weapons": 1, - "shields": 2.3, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - }, - { - "name": "Protoss", - "drive": 3.3, - "weapons": 2.48, - "shields": 1, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - }, - { - "name": "Relikt", - "drive": 4.99, - "weapons": 1, - "shields": 1, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - }, - { - "name": "S-Lord", - "drive": 5, - "weapons": 1, - "shields": 1, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - }, - { - "name": "Ser_Arthur_Empire", - "drive": 1.6, - "weapons": 1.01, - "shields": 1.61, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - }, - { - "name": "ShivanDragon", - "drive": 7.01, - "weapons": 1.4, - "shields": 1, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - }, - { - "name": "Smile", - "drive": 5, - "weapons": 1, - "shields": 1, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - }, - { - "name": "Spag", - "drive": 4.6, - "weapons": 1, - "shields": 1, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - }, - { - "name": "SystemError", - "drive": 5.6, - "weapons": 1, - "shields": 1, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - }, - { - "name": "UkrFerry", - "drive": 4.46, - "weapons": 1.44, - "shields": 1.44, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - }, - { - "name": "Untochebal", - "drive": 4.88, - "weapons": 1, - "shields": 1, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - }, - { - "name": "VlaSvr", - "drive": 1.6, - "weapons": 1, - "shields": 1, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - }, - { - "name": "WinDemons", - "drive": 5, - "weapons": 1, - "shields": 1, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - } - ], - "localShipClass": [ - { - "name": "Frontier", - "drive": 11.37, - "armament": 0, - "weapons": 0, - "shields": 0, - "cargo": 1, - "mass": 12.37 - }, - { - "name": "Furgon5", - "drive": 8.22, - "armament": 0, - "weapons": 0, - "shields": 0, - "cargo": 4.15, - "mass": 12.37 - }, - { - "name": "Furgon10", - "drive": 17.14, - "armament": 0, - "weapons": 0, - "shields": 0, - "cargo": 7.61, - "mass": 24.75 - }, - { - "name": "Nonstop", - "drive": 0, - "armament": 1, - "weapons": 1, - "shields": 0, - "cargo": 0, - "mass": 1 - }, - { - "name": "Drone", - "drive": 2.5, - "armament": 1, - "weapons": 2.08, - "shields": 2.49, - "cargo": 0, - "mass": 7.07 - }, - { - "name": "PeaceShip", - "drive": 1, - "armament": 0, - "weapons": 0, - "shields": 0, - "cargo": 0, - "mass": 1 - }, - { - "name": "Bow105", - "drive": 74.77, - "armament": 105, - "weapons": 1, - "shields": 19.72, - "cargo": 1, - "mass": 148.49 - }, - { - "name": "CrossBow52x2", - "drive": 74.77, - "armament": 52, - "weapons": 2, - "shields": 19.72, - "cargo": 1, - "mass": 148.49 - }, - { - "name": "Catapult5x25", - "drive": 99.53, - "armament": 5, - "weapons": 25.3, - "shields": 21.57, - "cargo": 1, - "mass": 198 - }, - { - "name": "Tormoz49", - "drive": 26.63, - "armament": 0, - "weapons": 0, - "shields": 0, - "cargo": 22.87, - "mass": 49.5 - }, - { - "name": "Catapult8x7", - "drive": 49.5, - "armament": 8, - "weapons": 7, - "shields": 18, - "cargo": 0, - "mass": 99 - }, - { - "name": "Invalid", - "drive": 25, - "armament": 1, - "weapons": 17, - "shields": 7.99, - "cargo": 0, - "mass": 49.99 - }, - { - "name": "Furgon10b", - "drive": 17.42, - "armament": 0, - "weapons": 0, - "shields": 0, - "cargo": 7.33, - "mass": 24.75 - }, - { - "name": "Stop", - "drive": 0, - "armament": 1, - "weapons": 1, - "shields": 1.26, - "cargo": 0, - "mass": 2.26 - }, - { - "name": "Buckler100", - "drive": 1, - "armament": 0, - "weapons": 0, - "shields": 1, - "cargo": 0, - "mass": 2 - }, - { - "name": "Furgon20", - "drive": 35.94, - "armament": 1, - "weapons": 1, - "shields": 0, - "cargo": 12.36, - "mass": 49.3 - }, - { - "name": "Furgon100", - "drive": 63, - "armament": 0, - "weapons": 0, - "shields": 0, - "cargo": 35.83, - "mass": 98.83 - }, - { - "name": "Bow55", - "drive": 49.17, - "armament": 55, - "weapons": 1, - "shields": 20.17, - "cargo": 1, - "mass": 98.34 - }, - { - "name": "Sword1x24", - "drive": 45.16, - "armament": 1, - "weapons": 24.67, - "shields": 19.47, - "cargo": 1, - "mass": 90.3 - }, - { - "name": "Catapult17x2.5", - "drive": 42.9, - "armament": 17, - "weapons": 2.53, - "shields": 19.13, - "cargo": 1, - "mass": 85.8 - }, - { - "name": "Bow49", - "drive": 45.51, - "armament": 49, - "weapons": 1, - "shields": 19.49, - "cargo": 1, - "mass": 91 - }, - { - "name": "SpetsNaz", - "drive": 3.3, - "armament": 1, - "weapons": 1, - "shields": 1.8, - "cargo": 1, - "mass": 7.1 - }, - { - "name": "Furgon12", - "drive": 16.28, - "armament": 0, - "weapons": 0, - "shields": 0, - "cargo": 8.44, - "mass": 24.72 - }, - { - "name": "Furgon10c", - "drive": 9.18, - "armament": 0, - "weapons": 0, - "shields": 0, - "cargo": 7.32, - "mass": 16.5 - }, - { - "name": "Paravozik20", - "drive": 34.24, - "armament": 1, - "weapons": 1, - "shields": 1.89, - "cargo": 12.37, - "mass": 49.5 - }, - { - "name": "Titanik100", - "drive": 81.93, - "armament": 1, - "weapons": 3, - "shields": 5.4, - "cargo": 35.83, - "mass": 126.16 - }, - { - "name": "FireWay100x1", - "drive": 78.5, - "armament": 100, - "weapons": 1, - "shields": 26.96, - "cargo": 1, - "mass": 156.96 - }, - { - "name": "FireStorm20x5", - "drive": 82.38, - "armament": 20, - "weapons": 5, - "shields": 28.84, - "cargo": 1, - "mass": 164.72 - }, - { - "name": "CombatFlame1x30", - "drive": 49.51, - "armament": 1, - "weapons": 29.7, - "shields": 18.8, - "cargo": 1, - "mass": 99.01 - }, - { - "name": "FireSnow57x1", - "drive": 49.79, - "armament": 57, - "weapons": 1, - "shields": 19.76, - "cargo": 1, - "mass": 99.55 - }, - { - "name": "IceWall103", - "drive": 1.03, - "armament": 0, - "weapons": 0, - "shields": 1.03, - "cargo": 0, - "mass": 2.06 - }, - { - "name": "ArrowsOfFire", - "drive": 46.52, - "armament": 6, - "weapons": 7.71, - "shields": 18.52, - "cargo": 1, - "mass": 93.03 - }, - { - "name": "IceWall100", - "drive": 1, - "armament": 0, - "weapons": 0, - "shields": 1, - "cargo": 0, - "mass": 2 - }, - { - "name": "IceWall101", - "drive": 1.01, - "armament": 0, - "weapons": 0, - "shields": 1.01, - "cargo": 0, - "mass": 2.02 - }, - { - "name": "KtoTronet-Zakopayu", - "drive": 50.56, - "armament": 0, - "weapons": 0, - "shields": 0, - "cargo": 35.83, - "mass": 86.39 - }, - { - "name": "IceWall102", - "drive": 1.02, - "armament": 0, - "weapons": 0, - "shields": 1.02, - "cargo": 0, - "mass": 2.04 - } - ], - "incomingGroup": [ - { - "origin": 98, - "destination": 223, - "distance": 136.16, - "speed": 190, - "mass": 1 - }, - { - "origin": 98, - "destination": 447, - "distance": 128.03, - "speed": 190, - "mass": 1 - }, - { - "origin": 98, - "destination": 495, - "distance": 133.16, - "speed": 190, - "mass": 1 - }, - { - "origin": 673, - "destination": 558, - "distance": 42.12, - "speed": 99.4, - "mass": 1 - }, - { - "origin": 571, - "destination": 176, - "distance": 69.38, - "speed": 99.6, - "mass": 1 - }, - { - "origin": 571, - "destination": 338, - "distance": 53.92, - "speed": 99.6, - "mass": 1 - }, - { - "origin": 571, - "destination": 282, - "distance": 58.44, - "speed": 99.6, - "mass": 1 - }, - { - "origin": 571, - "destination": 38, - "distance": 53.03, - "speed": 99.6, - "mass": 1 - }, - { - "origin": 571, - "destination": 87, - "distance": 54.45, - "speed": 99.6, - "mass": 1 - }, - { - "origin": 571, - "destination": 17, - "distance": 49.8, - "speed": 99.6, - "mass": 1 - }, - { - "origin": 571, - "destination": 679, - "distance": 27.74, - "speed": 99.6, - "mass": 1 - }, - { - "origin": 571, - "destination": 114, - "distance": 25.76, - "speed": 99.6, - "mass": 1 - } - ], - "localPlanet": [ - { - "x": 171.05, - "y": 700.24, - "number": 17, - "size": 1000, - "name": "Castle", - "resources": 10, - "capital": 0, - "material": 0, - "industry": 1000, - "population": 1000, - "colonists": 107.73, - "production": "CombatFlame1x30", - "freeIndustry": 1000 - }, - { - "x": 169.59, - "y": 694.49, - "number": 87, - "size": 500, - "name": "NorthFortress", - "resources": 10, - "capital": 0, - "material": 0, - "industry": 500, - "population": 500, - "colonists": 25.74, - "production": "IceWall103", - "freeIndustry": 500 - }, - { - "x": 163.99, - "y": 703.07, - "number": 338, - "size": 500, - "name": "WestFortress", - "resources": 10, - "capital": 15.8, - "material": 0, - "industry": 500, - "population": 500, - "colonists": 78.97, - "production": "IceWall103", - "freeIndustry": 500 - }, - { - "x": 161.5, - "y": 698.7, - "number": 282, - "size": 977.87, - "name": "DayBreak", - "resources": 6.62, - "capital": 0, - "material": 0, - "industry": 933.28, - "population": 977.87, - "colonists": 86.14, - "production": "ArrowsOfFire", - "freeIndustry": 944.43 - }, - { - "x": 163.56, - "y": 705.31, - "number": 38, - "size": 956.94, - "name": "Afterglow", - "resources": 1.18, - "capital": 0, - "material": 0, - "industry": 930.56, - "population": 956.94, - "colonists": 121.48, - "production": "KtoTronet-Zakopayu", - "freeIndustry": 937.15 - }, - { - "x": 179.07, - "y": 704, - "number": 296, - "size": 928.74, - "name": "PochtiHom", - "resources": 4.78, - "capital": 18.78, - "material": 0, - "industry": 928.74, - "population": 928.74, - "colonists": 84.38, - "production": "IceWall101", - "freeIndustry": 928.74 - }, - { - "x": 188.8, - "y": 716.7, - "number": 114, - "size": 1879.68, - "name": "HighWay", - "resources": 0.53, - "capital": 0, - "material": 0, - "industry": 1856.44, - "population": 1879.68, - "colonists": 94.88, - "production": "FireWay100x1", - "freeIndustry": 1862.25 - }, - { - "x": 129.66, - "y": 702.65, - "number": 223, - "size": 9.76, - "name": "SuperGig", - "resources": 0.18, - "capital": 0, - "material": 0, - "industry": 0, - "population": 9.76, - "colonists": 0.16, - "production": "PeaceShip", - "freeIndustry": 2.44 - }, - { - "x": 127.81, - "y": 705.42, - "number": 495, - "size": 1405.32, - "name": "Asteroid", - "resources": 1.09, - "capital": 0, - "material": 0, - "industry": 1368.3, - "population": 1405.32, - "colonists": 72.51, - "production": "IceWall100", - "freeIndustry": 1377.56 - }, - { - "x": 114.94, - "y": 694.43, - "number": 447, - "size": 7.9, - "name": "DbIPKA_OT_6Y6JIUKA", - "resources": 0.14, - "capital": 0, - "material": 0, - "industry": 0, - "population": 7.9, - "colonists": 2.62, - "production": "PeaceShip", - "freeIndustry": 1.98 - }, - { - "x": 152.03, - "y": 693.16, - "number": 176, - "size": 6.95, - "name": "Monstr", - "resources": 0.42, - "capital": 0, - "material": 0, - "industry": 0, - "population": 6.39, - "colonists": 0, - "production": "PeaceShip", - "freeIndustry": 1.6 - }, - { - "x": 177.32, - "y": 731.91, - "number": 679, - "size": 1668.72, - "name": "SteelPower", - "resources": 7.79, - "capital": 0, - "material": 0, - "industry": 1668.67, - "population": 1668.72, - "colonists": 181.43, - "production": "FireStorm20x5", - "freeIndustry": 1668.69 - }, - { - "x": 189.12, - "y": 654.88, - "number": 523, - "size": 500, - "name": "NorthAlpha", - "resources": 10, - "capital": 0, - "material": 0, - "industry": 500, - "population": 500, - "colonists": 14.53, - "production": "IceWall103", - "freeIndustry": 500 - }, - { - "x": 197.71, - "y": 655, - "number": 572, - "size": 1000, - "name": "NorthPrime", - "resources": 10, - "capital": 0, - "material": 0, - "industry": 1000, - "population": 1000, - "colonists": 10, - "production": "FireSnow57x1", - "freeIndustry": 1000 - }, - { - "x": 195.98, - "y": 651.58, - "number": 177, - "size": 500, - "name": "NorthBeta", - "resources": 10, - "capital": 0, - "material": 270.06, - "industry": 344.35, - "population": 500, - "colonists": 5.2, - "production": "Capital", - "freeIndustry": 383.26 - }, - { - "x": 192.54, - "y": 656.4, - "number": 622, - "size": 764.66, - "name": "NorthS", - "resources": 1.59, - "capital": 21.74, - "material": 0, - "industry": 764.66, - "population": 764.66, - "colonists": 19.65, - "production": "IceWall102", - "freeIndustry": 764.66 - }, - { - "x": 204.46, - "y": 655.59, - "number": 558, - "size": 998.5, - "name": "NorthE", - "resources": 9.19, - "capital": 0, - "material": 0, - "industry": 704.33, - "population": 998.5, - "colonists": 9.99, - "production": "Capital", - "freeIndustry": 777.87 - }, - { - "x": 198.71, - "y": 648.74, - "number": 458, - "size": 935.27, - "name": "NorthN", - "resources": 3.87, - "capital": 0, - "material": 0, - "industry": 305.32, - "population": 935.27, - "colonists": 16.07, - "production": "Capital", - "freeIndustry": 462.81 - }, - { - "x": 149.59, - "y": 659.18, - "number": 461, - "size": 1023.35, - "name": "AGdeDW?", - "resources": 8.46, - "capital": 11.53, - "material": 0, - "industry": 1023.35, - "population": 1023.35, - "colonists": 30.67, - "production": "IceWall101", - "freeIndustry": 1023.35 - }, - { - "x": 273.89, - "y": 582.17, - "number": 685, - "size": 1980.42, - "name": "Trofei", - "resources": 2.98, - "capital": 39.69, - "material": 42.37, - "industry": 103.33, - "population": 103.33, - "colonists": 0, - "production": "Capital", - "freeIndustry": 103.33 - }, - { - "x": 267.37, - "y": 597.19, - "number": 79, - "size": 1899.01, - "name": "PriceOfVictory", - "resources": 2.19, - "capital": 0, - "material": 143.42, - "industry": 302.88, - "population": 1058.11, - "colonists": 0, - "production": "Capital", - "freeIndustry": 491.68 - }, - { - "x": 307.83, - "y": 564.19, - "number": 636, - "size": 950.07, - "name": "Vedma", - "resources": 5.69, - "capital": 0, - "material": 182.19, - "industry": 0, - "population": 20.57, - "colonists": 0, - "production": "PeaceShip", - "freeIndustry": 5.14 - }, - { - "x": 151.54, - "y": 578.44, - "number": 532, - "size": 500, - "name": "Golo", - "resources": 10, - "capital": 0, - "material": 458.17, - "industry": 0, - "population": 8.21, - "colonists": 0, - "production": "Nonstop", - "freeIndustry": 2.05 - }, - { - "x": 140.92, - "y": 580.39, - "number": 669, - "size": 727.71, - "name": "Tovty", - "resources": 2.84, - "capital": 0, - "material": 693.57, - "industry": 0, - "population": 8.21, - "colonists": 0, - "production": "Nonstop", - "freeIndustry": 2.05 - }, - { - "x": 146.22, - "y": 579.53, - "number": 507, - "size": 1000, - "name": "Tupo", - "resources": 10, - "capital": 0, - "material": 902.06, - "industry": 0, - "population": 8.21, - "colonists": 0, - "production": "Nonstop", - "freeIndustry": 2.05 - }, - { - "x": 167.56, - "y": 567.57, - "number": 298, - "size": 1325.17, - "name": "yppaIII", - "resources": 9.53, - "capital": 0, - "material": 858.23, - "industry": 12.4, - "population": 267.94, - "colonists": 0, - "production": "Capital", - "freeIndustry": 76.29 - }, - { - "x": 80.1, - "y": 501.7, - "number": 173, - "size": 1926.88, - "name": "Legenda", - "resources": 1.37, - "capital": 0, - "material": 1924.01, - "industry": 10.53, - "population": 38.88, - "colonists": 0, - "production": "Capital", - "freeIndustry": 17.62 - }, - { - "x": 107.38, - "y": 515.69, - "number": 535, - "size": 1000, - "name": "CAHKTyAPuu", - "resources": 10, - "capital": 0, - "material": 999.81, - "industry": 0, - "population": 9.5, - "colonists": 0, - "production": "Nonstop", - "freeIndustry": 2.38 - }, - { - "x": 114.64, - "y": 517.46, - "number": 446, - "size": 500, - "name": "ILS", - "resources": 10, - "capital": 0, - "material": 449.79, - "industry": 0, - "population": 9.5, - "colonists": 0, - "production": "Nonstop", - "freeIndustry": 2.38 - } - ], - "otherPlanet": [ - { - "owner": "Monstrai", - "x": 303.84, - "y": 579.23, - "number": 12, - "size": 618.95, - "name": "Normal-4826-0012", - "resources": 1.56, - "capital": 6.32, - "material": 43.01, - "industry": 28.78, - "population": 28.78, - "colonists": 0, - "production": "Capital", - "freeIndustry": 28.78 - }, - { - "owner": "Monstrai", - "x": 262.49, - "y": 508.26, - "number": 25, - "size": 1.06, - "name": "Rycar", - "resources": 0.82, - "capital": 0.2, - "material": 0, - "industry": 1.06, - "population": 1.06, - "colonists": 0.36, - "production": "Drive_Research", - "freeIndustry": 1.06 - }, - { - "owner": "Monstrai", - "x": 304.44, - "y": 574.57, - "number": 130, - "size": 500, - "name": "Skarabei", - "resources": 10, - "capital": 0, - "material": 0, - "industry": 356.78, - "population": 500, - "colonists": 5, - "production": "Capital", - "freeIndustry": 392.58 - }, - { - "owner": "Monstrai", - "x": 312.91, - "y": 565.56, - "number": 253, - "size": 819.93, - "name": "Hiena", - "resources": 0.17, - "capital": 2.33, - "material": 32.65, - "industry": 7.4, - "population": 7.4, - "colonists": 0, - "production": "Capital", - "freeIndustry": 7.4 - }, - { - "owner": "Monstrai", - "x": 310.41, - "y": 577.18, - "number": 366, - "size": 500, - "name": "DW-5754-0366", - "resources": 10, - "capital": 0, - "material": 466.61, - "industry": 131.57, - "population": 222.84, - "colonists": 0, - "production": "Capital", - "freeIndustry": 154.38 - }, - { - "owner": "TwelvePointedCross", - "x": 417.24, - "y": 582.13, - "number": 56, - "size": 930.77, - "name": "Medio-56", - "resources": 9.58, - "capital": 0, - "material": 787.65, - "industry": 277.51, - "population": 675.61, - "colonists": 0, - "production": "Capital", - "freeIndustry": 377.03 - }, - { - "owner": "TwelvePointedCross", - "x": 434.36, - "y": 592.79, - "number": 85, - "size": 865.81, - "name": "Source-85", - "resources": 5.15, - "capital": 166.69, - "material": 0, - "industry": 865.81, - "population": 865.81, - "colonists": 9.68, - "production": "Capital", - "freeIndustry": 865.81 - }, - { - "owner": "TwelvePointedCross", - "x": 416.19, - "y": 576.64, - "number": 196, - "size": 686.91, - "name": "Terminal-196", - "resources": 5.26, - "capital": 103.5, - "material": 386.38, - "industry": 686.91, - "population": 686.91, - "colonists": 43.26, - "production": "Weapons_Research", - "freeIndustry": 686.91 - }, - { - "owner": "TwelvePointedCross", - "x": 411, - "y": 582.44, - "number": 207, - "size": 1000, - "name": "Herward-207", - "resources": 10, - "capital": 0, - "material": 723.66, - "industry": 359, - "population": 1000, - "colonists": 12.59, - "production": "Capital", - "freeIndustry": 519.25 - }, - { - "owner": "TwelvePointedCross", - "x": 414.38, - "y": 580.92, - "number": 314, - "size": 500, - "name": "Greedy-314", - "resources": 10, - "capital": 0, - "material": 480.39, - "industry": 19.62, - "population": 21.76, - "colonists": 0, - "production": "Capital", - "freeIndustry": 20.15 - }, - { - "owner": "TwelvePointedCross", - "x": 415.39, - "y": 577.82, - "number": 459, - "size": 946.09, - "name": "Normal-8330-0459", - "resources": 3.38, - "capital": 0, - "material": 810.01, - "industry": 123.15, - "population": 669.85, - "colonists": 0, - "production": "Capital", - "freeIndustry": 259.82 - }, - { - "owner": "TwelvePointedCross", - "x": 436.61, - "y": 589.01, - "number": 663, - "size": 1938.58, - "name": "PowerCube-663", - "resources": 0.52, - "capital": 0, - "material": 0, - "industry": 1485.87, - "population": 1938.58, - "colonists": 30.49, - "production": "Weapons_Research", - "freeIndustry": 1599.05 - }, - { - "owner": "TwelvePointedCross", - "x": 418.42, - "y": 585.36, - "number": 690, - "size": 500, - "name": "Resist-690", - "resources": 10, - "capital": 0, - "material": 416.95, - "industry": 83.55, - "population": 375.97, - "colonists": 0, - "production": "Capital", - "freeIndustry": 156.66 - }, - { - "owner": "Orla", - "x": 293.03, - "y": 47.27, - "number": 95, - "size": 939.5, - "name": "Orl1", - "resources": 2.91, - "capital": 0, - "material": 0, - "industry": 939.5, - "population": 939.5, - "colonists": 169.11, - "production": "Orlperf_sh", - "freeIndustry": 939.5 - }, - { - "owner": "Orla", - "x": 229.3, - "y": 30.96, - "number": 449, - "size": 2329.46, - "name": "Orlenium", - "resources": 1.49, - "capital": 0, - "material": 1718.37, - "industry": 334.19, - "population": 624.4, - "colonists": 0, - "production": "Orlbum_sh", - "freeIndustry": 406.75 - }, - { - "owner": "Bumbastik", - "x": 299.03, - "y": 700.92, - "number": 24, - "size": 2278.86, - "name": "B-024", - "resources": 0.58, - "capital": 0, - "material": 30.67, - "industry": 38, - "population": 1302.67, - "colonists": 0, - "production": "BAX", - "freeIndustry": 354.17 - }, - { - "owner": "Zodiac", - "x": 337.19, - "y": 543.38, - "number": 108, - "size": 2340.94, - "name": "FatBoy", - "resources": 0.39, - "capital": 0, - "material": 640.01, - "industry": 2340.94, - "population": 2340.94, - "colonists": 70.23, - "production": "WS_45x55_Research", - "freeIndustry": 2340.94 - }, - { - "owner": "Zodiac", - "x": 305.62, - "y": 538.86, - "number": 116, - "size": 1966.14, - "name": "Armagedon", - "resources": 1.51, - "capital": 0, - "material": 1604.42, - "industry": 82.44, - "population": 1779.14, - "colonists": 0, - "production": "Capital", - "freeIndustry": 506.61 - }, - { - "owner": "Zodiac", - "x": 305.33, - "y": 570.48, - "number": 119, - "size": 1000, - "name": "Sirena", - "resources": 10, - "capital": 0, - "material": 900.41, - "industry": 0, - "population": 0.54, - "colonists": 0, - "production": "Drone", - "freeIndustry": 0.14 - }, - { - "owner": "Zodiac", - "x": 327.52, - "y": 554.61, - "number": 647, - "size": 1801.57, - "name": "Dracula", - "resources": 4.76, - "capital": 0, - "material": 0, - "industry": 291.68, - "population": 1801.57, - "colonists": 26.16, - "production": "Capital", - "freeIndustry": 669.15 - }, - { - "owner": "Slimes", - "x": 793.91, - "y": 471.82, - "number": 26, - "size": 733.6, - "name": "Normal-1075-0026", - "resources": 2.91, - "capital": 0, - "material": 0, - "industry": 733.6, - "population": 733.6, - "colonists": 43.23, - "production": "Perf_3", - "freeIndustry": 733.6 - }, - { - "owner": "Slimes", - "x": 8.72, - "y": 573.36, - "number": 73, - "size": 981.26, - "name": "Normal-5644-0073", - "resources": 5.85, - "capital": 0, - "material": 0, - "industry": 496.64, - "population": 981.26, - "colonists": 81.91, - "production": "Capital", - "freeIndustry": 617.79 - }, - { - "owner": "Slimes", - "x": 2.42, - "y": 566.52, - "number": 261, - "size": 468.64, - "name": "Rich-7400-0261", - "resources": 20.43, - "capital": 86.23, - "material": 6724.11, - "industry": 468.64, - "population": 468.64, - "colonists": 23.43, - "production": "Weapons_Research", - "freeIndustry": 468.64 - }, - { - "owner": "Slimes", - "x": 788.62, - "y": 470.18, - "number": 295, - "size": 1000, - "name": "LargeSwamp", - "resources": 10, - "capital": 0, - "material": 0, - "industry": 903.11, - "population": 1000, - "colonists": 20.07, - "production": "Capital", - "freeIndustry": 927.33 - }, - { - "owner": "Slimes", - "x": 780.46, - "y": 468.22, - "number": 358, - "size": 500, - "name": "DW-8870-0358", - "resources": 10, - "capital": 0, - "material": 7.92, - "industry": 344.13, - "population": 500, - "colonists": 15, - "production": "Drive_Research", - "freeIndustry": 383.1 - }, - { - "owner": "Slimes", - "x": 757.4, - "y": 470.13, - "number": 378, - "size": 1474.29, - "name": "Big-4227-0378", - "resources": 5.77, - "capital": 0, - "material": 0.98, - "industry": 1435.15, - "population": 1474.29, - "colonists": 39.24, - "production": "Drive_Research", - "freeIndustry": 1444.94 - }, - { - "owner": "Slimes", - "x": 17.24, - "y": 533.07, - "number": 528, - "size": 1266.43, - "name": "EguHOPOr", - "resources": 2.33, - "capital": 0, - "material": 0, - "industry": 542.17, - "population": 1266.43, - "colonists": 31.81, - "production": "Capital", - "freeIndustry": 723.24 - }, - { - "owner": "Slimes", - "x": 784.89, - "y": 465.75, - "number": 593, - "size": 106.6, - "name": "Rich-6646-0593", - "resources": 19.06, - "capital": 0, - "material": 18395.12, - "industry": 9.55, - "population": 106.6, - "colonists": 18.21, - "production": "Capital", - "freeIndustry": 33.82 - }, - { - "owner": "Slimes", - "x": 787.6, - "y": 464.38, - "number": 599, - "size": 500, - "name": "DW-5058-0599", - "resources": 10, - "capital": 52.3, - "material": 0, - "industry": 500, - "population": 500, - "colonists": 10, - "production": "Weapons_Research", - "freeIndustry": 500 - }, - { - "owner": "Flagist", - "x": 191.63, - "y": 535.12, - "number": 15, - "size": 243.6, - "name": "Rich-5201-0015", - "resources": 16.61, - "capital": 0, - "material": 0, - "industry": 0, - "population": 2.83, - "colonists": 0, - "production": "Drone", - "freeIndustry": 0.71 - }, - { - "owner": "Flagist", - "x": 282.41, - "y": 527.81, - "number": 27, - "size": 500, - "name": "Ksena", - "resources": 10, - "capital": 0, - "material": 512.11, - "industry": 0, - "population": 3.06, - "colonists": 0, - "production": "Drone", - "freeIndustry": 0.76 - }, - { - "owner": "Flagist", - "x": 272.24, - "y": 453.61, - "number": 29, - "size": 612.7, - "name": "Pormar", - "resources": 5.1, - "capital": 6.18, - "material": 0.09, - "industry": 612.7, - "population": 612.7, - "colonists": 50.73, - "production": "Weapons_Research", - "freeIndustry": 612.7 - }, - { - "owner": "Flagist", - "x": 189.39, - "y": 533.79, - "number": 72, - "size": 318.9, - "name": "Hlam", - "resources": 23.46, - "capital": 0, - "material": 0, - "industry": 0, - "population": 2.83, - "colonists": 0, - "production": "Drone", - "freeIndustry": 0.71 - }, - { - "owner": "Flagist", - "x": 257.77, - "y": 460.65, - "number": 74, - "size": 828.24, - "name": "Kinbin", - "resources": 3.41, - "capital": 37.65, - "material": 0.48, - "industry": 828.24, - "population": 828.24, - "colonists": 99.31, - "production": "Weapons_Research", - "freeIndustry": 828.24 - }, - { - "owner": "Flagist", - "x": 261.88, - "y": 506.61, - "number": 127, - "size": 1.68, - "name": "Super-1066-0127", - "resources": 0.92, - "capital": 0, - "material": 0, - "industry": 0.04, - "population": 0.54, - "colonists": 0, - "production": "Hi", - "freeIndustry": 0.16 - }, - { - "owner": "Flagist", - "x": 263.97, - "y": 453.38, - "number": 201, - "size": 1000, - "name": "Anlanband", - "resources": 10, - "capital": 0, - "material": 1.01, - "industry": 1000, - "population": 1000, - "colonists": 20, - "production": "Weapons_Research", - "freeIndustry": 1000 - }, - { - "owner": "Flagist", - "x": 242.15, - "y": 558.1, - "number": 222, - "size": 1638.46, - "name": "Goovin", - "resources": 1.09, - "capital": 0, - "material": 1588.2, - "industry": 38.11, - "population": 823.09, - "colonists": 0, - "production": "Capital", - "freeIndustry": 234.35 - }, - { - "owner": "Flagist", - "x": 189.7, - "y": 534.95, - "number": 251, - "size": 500, - "name": "Stun", - "resources": 10, - "capital": 0, - "material": 0.13, - "industry": 0, - "population": 2.83, - "colonists": 0, - "production": "Drone", - "freeIndustry": 0.71 - }, - { - "owner": "Flagist", - "x": 257.06, - "y": 473.01, - "number": 275, - "size": 0.89, - "name": "Porrond", - "resources": 0.51, - "capital": 0, - "material": 0, - "industry": 0.21, - "population": 0.89, - "colonists": 0.06, - "production": "Weapons_Research", - "freeIndustry": 0.38 - }, - { - "owner": "Flagist", - "x": 245.2, - "y": 535, - "number": 305, - "size": 1000, - "name": "Mikolin", - "resources": 10, - "capital": 0, - "material": 999.67, - "industry": 0, - "population": 2.74, - "colonists": 0, - "production": "Drone", - "freeIndustry": 0.69 - }, - { - "owner": "Flagist", - "x": 241.93, - "y": 538.14, - "number": 340, - "size": 500, - "name": "Heauru", - "resources": 10, - "capital": 93.19, - "material": 498.51, - "industry": 2.88, - "population": 2.88, - "colonists": 0, - "production": "Drone", - "freeIndustry": 2.88 - }, - { - "owner": "Flagist", - "x": 223.57, - "y": 416.79, - "number": 376, - "size": 522.31, - "name": "Andon", - "resources": 8.49, - "capital": 0, - "material": 0, - "industry": 522.31, - "population": 522.31, - "colonists": 41.78, - "production": "Weapons_Research", - "freeIndustry": 522.31 - }, - { - "owner": "Flagist", - "x": 280.9, - "y": 519.51, - "number": 377, - "size": 500, - "name": "Atkabin", - "resources": 10, - "capital": 0, - "material": 443.72, - "industry": 0, - "population": 3.06, - "colonists": 0, - "production": "Drone", - "freeIndustry": 0.76 - }, - { - "owner": "Flagist", - "x": 237.52, - "y": 528.94, - "number": 409, - "size": 741.42, - "name": "Altinopi", - "resources": 2.45, - "capital": 0, - "material": 743.74, - "industry": 0.3, - "population": 0.63, - "colonists": 0, - "production": "Drone", - "freeIndustry": 0.38 - }, - { - "owner": "Flagist", - "x": 244.54, - "y": 540.74, - "number": 434, - "size": 980.94, - "name": "Vennio", - "resources": 9.54, - "capital": 4.31, - "material": 981.86, - "industry": 0.63, - "population": 0.63, - "colonists": 0, - "production": "Drone", - "freeIndustry": 0.63 - }, - { - "owner": "Flagist", - "x": 257.82, - "y": 504.58, - "number": 436, - "size": 1227.52, - "name": "Koscei", - "resources": 6.42, - "capital": 0, - "material": 683.15, - "industry": 442.52, - "population": 1227.52, - "colonists": 26.51, - "production": "Capital", - "freeIndustry": 638.77 - }, - { - "owner": "Flagist", - "x": 278.57, - "y": 522.31, - "number": 438, - "size": 1000, - "name": "Apokalipse", - "resources": 10, - "capital": 0, - "material": 752.8, - "industry": 183.21, - "population": 898.18, - "colonists": 0, - "production": "Capital", - "freeIndustry": 361.95 - }, - { - "owner": "Flagist", - "x": 261.38, - "y": 457.21, - "number": 471, - "size": 500, - "name": "Avnir", - "resources": 10, - "capital": 0, - "material": 1.51, - "industry": 500, - "population": 500, - "colonists": 120, - "production": "Weapons_Research", - "freeIndustry": 500 - }, - { - "owner": "Flagist", - "x": 271.31, - "y": 525.7, - "number": 569, - "size": 984.48, - "name": "Furija", - "resources": 3.85, - "capital": 0, - "material": 894.44, - "industry": 134.18, - "population": 772.6, - "colonists": 0, - "production": "Capital", - "freeIndustry": 293.78 - }, - { - "owner": "Flagist", - "x": 250.68, - "y": 533.74, - "number": 624, - "size": 500, - "name": "Arafiel", - "resources": 10, - "capital": 0, - "material": 499.64, - "industry": 0, - "population": 2.88, - "colonists": 0, - "production": "Drone", - "freeIndustry": 0.72 - }, - { - "owner": "Flagist", - "x": 266.71, - "y": 490.96, - "number": 646, - "size": 1797.08, - "name": "Vakain", - "resources": 9.67, - "capital": 95.99, - "material": 0, - "industry": 1797.08, - "population": 1797.08, - "colonists": 75.05, - "production": "Vakain_Turr", - "freeIndustry": 1797.08 - }, - { - "owner": "Flagist", - "x": 257.12, - "y": 449.3, - "number": 661, - "size": 696.81, - "name": "Tannas", - "resources": 8.1, - "capital": 43.4, - "material": 0.84, - "industry": 696.81, - "population": 696.81, - "colonists": 62.99, - "production": "Weapons_Research", - "freeIndustry": 696.81 - }, - { - "owner": "Flagist", - "x": 268.48, - "y": 448.69, - "number": 664, - "size": 500, - "name": "Varomar", - "resources": 10, - "capital": 0, - "material": 1.51, - "industry": 500, - "population": 500, - "colonists": 32.96, - "production": "Weapons_Research", - "freeIndustry": 500 - }, - { - "owner": "Flagist", - "x": 284.36, - "y": 527.15, - "number": 665, - "size": 807.61, - "name": "Devil", - "resources": 3.43, - "capital": 0, - "material": 762.82, - "industry": 0, - "population": 0.59, - "colonists": 0, - "production": "Drone", - "freeIndustry": 0.15 - }, - { - "owner": "Flagist", - "x": 272.79, - "y": 488.36, - "number": 694, - "size": 0.55, - "name": "Gana", - "resources": 0.82, - "capital": 0.07, - "material": 0, - "industry": 0.55, - "population": 0.55, - "colonists": 0.2, - "production": "Shields_Research", - "freeIndustry": 0.55 - }, - { - "owner": "Bupyc", - "x": 136.57, - "y": 49.85, - "number": 2, - "size": 601.86, - "name": "B2", - "resources": 8.66, - "capital": 0, - "material": 449.81, - "industry": 6, - "population": 205.66, - "colonists": 0, - "production": "drone", - "freeIndustry": 55.91 - }, - { - "owner": "Koreans", - "x": 117.87, - "y": 795.21, - "number": 9, - "size": 500, - "name": "Dw2", - "resources": 10, - "capital": 0, - "material": 499.91, - "industry": 0.09, - "population": 0.93, - "colonists": 0, - "production": "Capital", - "freeIndustry": 0.3 - }, - { - "owner": "Koreans", - "x": 25.41, - "y": 768, - "number": 28, - "size": 500, - "name": "DW-7156-0028", - "resources": 10, - "capital": 0, - "material": 233.34, - "industry": 0.07, - "population": 0.5, - "colonists": 0, - "production": "Capital", - "freeIndustry": 0.18 - }, - { - "owner": "Koreans", - "x": 30.05, - "y": 775.46, - "number": 45, - "size": 500, - "name": "DW-0690-0045", - "resources": 10, - "capital": 0, - "material": 240.81, - "industry": 0, - "population": 0.54, - "colonists": 0, - "production": "!", - "freeIndustry": 0.14 - }, - { - "owner": "Koreans", - "x": 145.88, - "y": 762.6, - "number": 49, - "size": 739.42, - "name": "Nnew49", - "resources": 2.16, - "capital": 0, - "material": 699.7, - "industry": 0, - "population": 1.01, - "colonists": 0, - "production": "!", - "freeIndustry": 0.25 - }, - { - "owner": "Koreans", - "x": 66.81, - "y": 733.6, - "number": 111, - "size": 973.04, - "name": "Norma", - "resources": 3.22, - "capital": 0, - "material": 1067.32, - "industry": 0.27, - "population": 0.5, - "colonists": 0, - "production": "d", - "freeIndustry": 0.33 - }, - { - "owner": "Koreans", - "x": 73.51, - "y": 729.44, - "number": 183, - "size": 1000, - "name": "HATUHA", - "resources": 10, - "capital": 34.61, - "material": 1098.88, - "industry": 0.5, - "population": 0.5, - "colonists": 0, - "production": "!", - "freeIndustry": 0.5 - }, - { - "owner": "Koreans", - "x": 70, - "y": 727.21, - "number": 190, - "size": 418.97, - "name": "MAL", - "resources": 23.21, - "capital": 0, - "material": 419.06, - "industry": 0, - "population": 0.5, - "colonists": 0, - "production": "!", - "freeIndustry": 0.13 - }, - { - "owner": "Koreans", - "x": 60.87, - "y": 774.17, - "number": 191, - "size": 2057.88, - "name": "S3", - "resources": 2.98, - "capital": 0, - "material": 0, - "industry": 347.89, - "population": 2057.88, - "colonists": 126.19, - "production": "MAPK2", - "freeIndustry": 775.39 - }, - { - "owner": "Koreans", - "x": 76.18, - "y": 738.51, - "number": 206, - "size": 680.27, - "name": "USPEL", - "resources": 1.74, - "capital": 0, - "material": 744.56, - "industry": 0.09, - "population": 0.5, - "colonists": 0, - "production": "d", - "freeIndustry": 0.19 - }, - { - "owner": "Koreans", - "x": 46.14, - "y": 693.57, - "number": 292, - "size": 775.46, - "name": "SmalGood", - "resources": 3.7, - "capital": 0, - "material": 737.18, - "industry": 0, - "population": 0.43, - "colonists": 0, - "production": "!", - "freeIndustry": 0.11 - }, - { - "owner": "Koreans", - "x": 42.43, - "y": 692.64, - "number": 369, - "size": 896.37, - "name": "SGood", - "resources": 9.74, - "capital": 0, - "material": 896.33, - "industry": 0.04, - "population": 0.93, - "colonists": 0, - "production": "!", - "freeIndustry": 0.26 - }, - { - "owner": "Koreans", - "x": 38.53, - "y": 691.01, - "number": 394, - "size": 500, - "name": "D1", - "resources": 10, - "capital": 0, - "material": 500.06, - "industry": 0, - "population": 0.86, - "colonists": 0, - "production": "!", - "freeIndustry": 0.22 - }, - { - "owner": "Koreans", - "x": 11.55, - "y": 12.44, - "number": 421, - "size": 724.52, - "name": "A6", - "resources": 4.32, - "capital": 3.45, - "material": 0, - "industry": 724.52, - "population": 724.52, - "colonists": 21.74, - "production": "stone", - "freeIndustry": 724.52 - }, - { - "owner": "Koreans", - "x": 73.33, - "y": 726.1, - "number": 474, - "size": 500, - "name": "VotEtoNychka", - "resources": 10, - "capital": 0, - "material": 443.4, - "industry": 0, - "population": 0.5, - "colonists": 0, - "production": "!", - "freeIndustry": 0.13 - }, - { - "owner": "Koreans", - "x": 47.17, - "y": 772.75, - "number": 504, - "size": 1630.54, - "name": "Big1", - "resources": 9.97, - "capital": 0, - "material": 1679.31, - "industry": 1, - "population": 10.08, - "colonists": 0, - "production": "Capital", - "freeIndustry": 3.27 - }, - { - "owner": "Koreans", - "x": 117.47, - "y": 0.33, - "number": 513, - "size": 500, - "name": "Dw1", - "resources": 10, - "capital": 0, - "material": 440.17, - "industry": 0.04, - "population": 0.86, - "colonists": 0, - "production": "Capital", - "freeIndustry": 0.25 - }, - { - "owner": "Koreans", - "x": 115.36, - "y": 2.73, - "number": 519, - "size": 1000, - "name": "HomeWorld", - "resources": 10, - "capital": 0, - "material": 1000.04, - "industry": 0, - "population": 0.54, - "colonists": 0, - "production": "!", - "freeIndustry": 0.14 - }, - { - "owner": "Koreans", - "x": 58.5, - "y": 779.42, - "number": 549, - "size": 696.28, - "name": "B3", - "resources": 4.09, - "capital": 0, - "material": 0, - "industry": 43.12, - "population": 539.02, - "colonists": 0, - "production": "d", - "freeIndustry": 167.1 - }, - { - "owner": "Koreans", - "x": 54.74, - "y": 1.37, - "number": 552, - "size": 643.35, - "name": "Normal-2036-0552", - "resources": 0.71, - "capital": 0, - "material": 0, - "industry": 209.51, - "population": 643.35, - "colonists": 40.12, - "production": "d", - "freeIndustry": 317.97 - }, - { - "owner": "Koreans", - "x": 74.01, - "y": 721.87, - "number": 559, - "size": 500, - "name": "POLHATI", - "resources": 10, - "capital": 0, - "material": 501.25, - "industry": 0.95, - "population": 1.01, - "colonists": 0, - "production": "!", - "freeIndustry": 0.96 - }, - { - "owner": "Koreans", - "x": 56.98, - "y": 796.85, - "number": 602, - "size": 1000, - "name": "Hw2-602", - "resources": 10, - "capital": 0, - "material": 407.94, - "industry": 35.55, - "population": 433.42, - "colonists": 0, - "production": "d", - "freeIndustry": 135.02 - }, - { - "owner": "Koreans", - "x": 29.29, - "y": 774.48, - "number": 612, - "size": 854.88, - "name": "Normal-5496-0612", - "resources": 2.95, - "capital": 0, - "material": 0, - "industry": 264.6, - "population": 854.88, - "colonists": 63.27, - "production": "d", - "freeIndustry": 412.17 - }, - { - "owner": "Koreans", - "x": 42.42, - "y": 695.7, - "number": 635, - "size": 451.34, - "name": "PGT", - "resources": 17.57, - "capital": 0, - "material": 450.27, - "industry": 0.04, - "population": 0.93, - "colonists": 0, - "production": "!", - "freeIndustry": 0.26 - }, - { - "owner": "Koreans", - "x": 72.41, - "y": 695.31, - "number": 654, - "size": 2066.7, - "name": "BedBig", - "resources": 0.25, - "capital": 0, - "material": 2155.1, - "industry": 0.04, - "population": 0.93, - "colonists": 0, - "production": "!", - "freeIndustry": 0.26 - }, - { - "owner": "Koreans", - "x": 37.67, - "y": 694.36, - "number": 693, - "size": 1000, - "name": "SSSanHom", - "resources": 10, - "capital": 0, - "material": 1100.05, - "industry": 0.04, - "population": 0.93, - "colonists": 0, - "production": "!", - "freeIndustry": 0.26 - }, - { - "owner": "Koreans", - "x": 61.35, - "y": 795.46, - "number": 697, - "size": 500, - "name": "DW-4659-0697", - "resources": 10, - "capital": 0, - "material": 0, - "industry": 54.06, - "population": 500, - "colonists": 30, - "production": "d", - "freeIndustry": 165.55 - }, - { - "owner": "Nails", - "x": 270.61, - "y": 687.23, - "number": 32, - "size": 799.11, - "name": "B-032", - "resources": 0.2, - "capital": 0, - "material": 559.02, - "industry": 0.42, - "population": 9.07, - "colonists": 0, - "production": "Capital", - "freeIndustry": 2.58 - }, - { - "owner": "Nails", - "x": 345.25, - "y": 644.4, - "number": 48, - "size": 1000, - "name": "CANCER", - "resources": 10, - "capital": 0, - "material": 0, - "industry": 0, - "population": 1000, - "colonists": 81.4, - "production": "pup", - "freeIndustry": 250 - }, - { - "owner": "Nails", - "x": 265.59, - "y": 701.11, - "number": 69, - "size": 787.38, - "name": "B-069", - "resources": 9.54, - "capital": 0, - "material": 786.97, - "industry": 0.96, - "population": 20.74, - "colonists": 0, - "production": "Capital", - "freeIndustry": 5.9 - }, - { - "owner": "Nails", - "x": 347.82, - "y": 651.21, - "number": 203, - "size": 83.47, - "name": "PISCES", - "resources": 15.25, - "capital": 0, - "material": 0, - "industry": 15.5, - "population": 83.47, - "colonists": 5.84, - "production": "pup", - "freeIndustry": 32.49 - }, - { - "owner": "Nails", - "x": 327.03, - "y": 692.1, - "number": 225, - "size": 964.8, - "name": "LEO", - "resources": 1.22, - "capital": 0, - "material": 950.11, - "industry": 56.16, - "population": 506.72, - "colonists": 0, - "production": "pup", - "freeIndustry": 168.8 - }, - { - "owner": "Nails", - "x": 338.79, - "y": 647.5, - "number": 344, - "size": 500, - "name": "TAURUS", - "resources": 10, - "capital": 0, - "material": 0, - "industry": 31.09, - "population": 500, - "colonists": 18.28, - "production": "pup", - "freeIndustry": 148.32 - }, - { - "owner": "Nails", - "x": 331.53, - "y": 699.98, - "number": 396, - "size": 500, - "name": "SCORPIO", - "resources": 10, - "capital": 0, - "material": 0, - "industry": 494.97, - "population": 500, - "colonists": 15.77, - "production": "F23", - "freeIndustry": 496.23 - }, - { - "owner": "Nails", - "x": 321.8, - "y": 691.93, - "number": 425, - "size": 920.76, - "name": "SAGITTARIUS", - "resources": 5.57, - "capital": 0, - "material": 425.11, - "industry": 260.11, - "population": 920.76, - "colonists": 55.17, - "production": "24", - "freeIndustry": 425.27 - }, - { - "owner": "Nails", - "x": 274.06, - "y": 696.52, - "number": 430, - "size": 500, - "name": "B-430", - "resources": 10, - "capital": 0, - "material": 327.38, - "industry": 0.94, - "population": 9.8, - "colonists": 0, - "production": "Capital", - "freeIndustry": 3.15 - }, - { - "owner": "Nails", - "x": 342.41, - "y": 643.3, - "number": 530, - "size": 500, - "name": "CAPRICORN", - "resources": 10, - "capital": 0, - "material": 0, - "industry": 16.4, - "population": 500, - "colonists": 53.46, - "production": "pup", - "freeIndustry": 137.3 - }, - { - "owner": "Nails", - "x": 301.16, - "y": 721.65, - "number": 587, - "size": 1051.7, - "name": "B-587", - "resources": 1.04, - "capital": 0, - "material": 116.49, - "industry": 0.42, - "population": 9.07, - "colonists": 0, - "production": "Capital", - "freeIndustry": 2.58 - }, - { - "owner": "Nails", - "x": 345.92, - "y": 651.52, - "number": 673, - "size": 872.46, - "name": "GEMINI", - "resources": 5.51, - "capital": 0, - "material": 0, - "industry": 57.69, - "population": 872.46, - "colonists": 100.87, - "production": "pup", - "freeIndustry": 261.39 - }, - { - "owner": "Nails", - "x": 322.35, - "y": 703.51, - "number": 691, - "size": 8.24, - "name": "LIBRA", - "resources": 0.17, - "capital": 0.1, - "material": 0, - "industry": 8.24, - "population": 8.24, - "colonists": 28.72, - "production": "Drive_Research", - "freeIndustry": 8.24 - }, - { - "owner": "Ricksha", - "x": 86.45, - "y": 513.1, - "number": 55, - "size": 816.39, - "name": "Antenna", - "resources": 2.68, - "capital": 0, - "material": 631.01, - "industry": 168.6, - "population": 196.66, - "colonists": 0, - "production": "Dron", - "freeIndustry": 175.62 - }, - { - "owner": "Ricksha", - "x": 113.02, - "y": 515.8, - "number": 332, - "size": 500, - "name": "PEHKE", - "resources": 10, - "capital": 0, - "material": 438.82, - "industry": 0, - "population": 181.51, - "colonists": 0, - "production": "Dron", - "freeIndustry": 45.38 - }, - { - "owner": "Ricksha", - "x": 63.7, - "y": 560.33, - "number": 489, - "size": 500, - "name": "DW-1737-0489", - "resources": 10, - "capital": 0, - "material": 4.64, - "industry": 0, - "population": 206.27, - "colonists": 0, - "production": "Dron", - "freeIndustry": 51.57 - }, - { - "owner": "Ricksha", - "x": 132.16, - "y": 569.5, - "number": 641, - "size": 1408.58, - "name": "Tyno", - "resources": 3.11, - "capital": 0, - "material": 1393.74, - "industry": 0.01, - "population": 0.3, - "colonists": 0, - "production": "Dron", - "freeIndustry": 0.08 - }, - { - "owner": "Frightners", - "x": 778.82, - "y": 395.75, - "number": 410, - "size": 7.78, - "name": "T-1", - "resources": 0.97, - "capital": 0, - "material": 0, - "industry": 4.86, - "population": 7.78, - "colonists": 0.62, - "production": "Capital", - "freeIndustry": 5.59 - }, - { - "owner": "Frightners", - "x": 788.73, - "y": 397.75, - "number": 585, - "size": 5.77, - "name": "T-2", - "resources": 0.39, - "capital": 0, - "material": 0, - "industry": 2.57, - "population": 5.77, - "colonists": 0.46, - "production": "Capital", - "freeIndustry": 3.37 - }, - { - "owner": "Enoxes", - "x": 175.41, - "y": 426.59, - "number": 538, - "size": 500, - "name": "Rp", - "resources": 10, - "capital": 0, - "material": 0, - "industry": 500, - "population": 500, - "colonists": 105, - "production": "FS-6", - "freeIndustry": 500 - }, - { - "owner": "Enoxes", - "x": 170.34, - "y": 432.61, - "number": 698, - "size": 500, - "name": "Dp", - "resources": 10, - "capital": 0, - "material": 0, - "industry": 500, - "population": 500, - "colonists": 131.85, - "production": "FS-6", - "freeIndustry": 500 - } - ], - "uninhabitedPlanet": [ - { - "x": 75.94, - "y": 565.36, - "number": 20, - "size": 500, - "name": "DW-1207-0020", - "resources": 10, - "capital": 0, - "material": 0 - }, - { - "x": 87.82, - "y": 569.26, - "number": 46, - "size": 1114.17, - "name": "Povezlp", - "resources": 2.03, - "capital": 0, - "material": 160.12 - }, - { - "x": 144.98, - "y": 48.16, - "number": 90, - "size": 500, - "name": "BDW1", - "resources": 10, - "capital": 0, - "material": 454.52 - }, - { - "x": 234.33, - "y": 763.77, - "number": 97, - "size": 828.76, - "name": "Y2K", - "resources": 8.71, - "capital": 0, - "material": 10.23 - }, - { - "x": 71.73, - "y": 561.86, - "number": 134, - "size": 1000, - "name": "HW-1259-0134", - "resources": 10, - "capital": 0, - "material": 0 - }, - { - "x": 49.38, - "y": 797.57, - "number": 141, - "size": 612.38, - "name": "B1", - "resources": 1.96, - "capital": 0, - "material": 52.6 - }, - { - "x": 41.51, - "y": 551.04, - "number": 227, - "size": 1638.83, - "name": "Sun", - "resources": 1.48, - "capital": 0, - "material": 970.88 - }, - { - "x": 44.31, - "y": 686.97, - "number": 231, - "size": 500, - "name": "D2", - "resources": 10, - "capital": 0, - "material": 484.29 - }, - { - "x": 61.94, - "y": 0.02, - "number": 243, - "size": 500, - "name": "Dw2-243", - "resources": 10, - "capital": 7.69, - "material": 499.68 - }, - { - "x": 118.17, - "y": 0.08, - "number": 268, - "size": 43.5, - "name": "R248", - "resources": 21.41, - "capital": 0.92, - "material": 43.5 - }, - { - "x": 62.01, - "y": 563.34, - "number": 343, - "size": 566.39, - "name": "BETO", - "resources": 2.67, - "capital": 0, - "material": 0.43 - }, - { - "x": 22.05, - "y": 797.27, - "number": 370, - "size": 2422.64, - "name": "S1", - "resources": 1.1, - "capital": 0, - "material": 2361.74 - }, - { - "x": 137.85, - "y": 63.39, - "number": 391, - "size": 757.09, - "name": "B391", - "resources": 3.41, - "capital": 0, - "material": 683.59 - }, - { - "x": 98.82, - "y": 516.82, - "number": 403, - "size": 675.77, - "name": "PAgOCTb", - "resources": 8.81, - "capital": 0, - "material": 659.85 - }, - { - "x": 120.65, - "y": 794.31, - "number": 431, - "size": 507.25, - "name": "N431", - "resources": 7.63, - "capital": 8.62, - "material": 504.06 - }, - { - "x": 89.75, - "y": 571.97, - "number": 432, - "size": 8.46, - "name": "1", - "resources": 0.7, - "capital": 0, - "material": 0.37 - }, - { - "x": 73.2, - "y": 556.76, - "number": 500, - "size": 797.02, - "name": "KPuT", - "resources": 8.21, - "capital": 139.4, - "material": 810.52 - }, - { - "x": 92.35, - "y": 572.22, - "number": 506, - "size": 292.5, - "name": "VVHTREWW", - "resources": 16.94, - "capital": 0, - "material": 68.45 - }, - { - "x": 88.04, - "y": 505.85, - "number": 525, - "size": 0.22, - "name": "Angel", - "resources": 0.63, - "capital": 0.21, - "material": 0.22 - }, - { - "x": 112.74, - "y": 797.74, - "number": 596, - "size": 754.1, - "name": "N596", - "resources": 6.58, - "capital": 0, - "material": 705.03 - }, - { - "x": 159.26, - "y": 532.61, - "number": 632, - "size": 659.52, - "name": "3BE3gA", - "resources": 2.12, - "capital": 0, - "material": 0.12 - }, - { - "x": 98.01, - "y": 516.69, - "number": 649, - "size": 831.72, - "name": "Labirint", - "resources": 6.32, - "capital": 0, - "material": 886.37 - }, - { - "x": 374.02, - "y": 11.39, - "number": 682, - "size": 500, - "name": "Ser_Arthur_2", - "resources": 10, - "capital": 0, - "material": 500 - } - ], - "unidentifiedPlanet": [ - { - "x": 738.08, - "y": 600.26, - "number": 0 - }, - { - "x": 579.12, - "y": 489.37, - "number": 1 - }, - { - "x": 679.78, - "y": 675.4, - "number": 3 - }, - { - "x": 749.22, - "y": 736.4, - "number": 4 - }, - { - "x": 746.13, - "y": 737.21, - "number": 5 - }, - { - "x": 627.55, - "y": 528.25, - "number": 6 - }, - { - "x": 271.69, - "y": 672.7, - "number": 7 - }, - { - "x": 657.2, - "y": 599.58, - "number": 8 - }, - { - "x": 83, - "y": 306.62, - "number": 10 - }, - { - "x": 127.62, - "y": 57.77, - "number": 11 - }, - { - "x": 12.04, - "y": 106.42, - "number": 13 - }, - { - "x": 327.08, - "y": 702.71, - "number": 14 - }, - { - "x": 495.86, - "y": 737.82, - "number": 16 - }, - { - "x": 373.72, - "y": 471.28, - "number": 18 - }, - { - "x": 535.08, - "y": 445.72, - "number": 19 - }, - { - "x": 498.76, - "y": 624.89, - "number": 21 - }, - { - "x": 171.39, - "y": 206.33, - "number": 22 - }, - { - "x": 500.82, - "y": 69.06, - "number": 23 - }, - { - "x": 438.37, - "y": 403.98, - "number": 30 - }, - { - "x": 711.64, - "y": 461.44, - "number": 31 - }, - { - "x": 373.11, - "y": 117.06, - "number": 33 - }, - { - "x": 82.94, - "y": 296.17, - "number": 34 - }, - { - "x": 196.1, - "y": 129.84, - "number": 35 - }, - { - "x": 491.28, - "y": 57.92, - "number": 36 - }, - { - "x": 770.4, - "y": 682.77, - "number": 37 - }, - { - "x": 681.65, - "y": 663, - "number": 39 - }, - { - "x": 405.24, - "y": 169.98, - "number": 40 - }, - { - "x": 200.84, - "y": 177.32, - "number": 41 - }, - { - "x": 463.85, - "y": 347.15, - "number": 42 - }, - { - "x": 293.44, - "y": 84.01, - "number": 43 - }, - { - "x": 738.6, - "y": 393.91, - "number": 44 - }, - { - "x": 745.85, - "y": 13.94, - "number": 47 - }, - { - "x": 749.58, - "y": 405.31, - "number": 50 - }, - { - "x": 454.71, - "y": 158.1, - "number": 51 - }, - { - "x": 317.8, - "y": 86.3, - "number": 52 - }, - { - "x": 435.88, - "y": 407.68, - "number": 53 - }, - { - "x": 251.01, - "y": 41.88, - "number": 54 - }, - { - "x": 505.79, - "y": 249.72, - "number": 57 - }, - { - "x": 652.61, - "y": 330.09, - "number": 58 - }, - { - "x": 546.7, - "y": 343.69, - "number": 59 - }, - { - "x": 363.53, - "y": 550.5, - "number": 60 - }, - { - "x": 441, - "y": 734.62, - "number": 61 - }, - { - "x": 653.45, - "y": 326.72, - "number": 62 - }, - { - "x": 730.81, - "y": 448.26, - "number": 63 - }, - { - "x": 489.59, - "y": 477.46, - "number": 64 - }, - { - "x": 188.83, - "y": 347.55, - "number": 65 - }, - { - "x": 403.89, - "y": 6.25, - "number": 66 - }, - { - "x": 757.57, - "y": 588.39, - "number": 67 - }, - { - "x": 191.54, - "y": 341.38, - "number": 68 - }, - { - "x": 506, - "y": 255.18, - "number": 70 - }, - { - "x": 537.59, - "y": 1.01, - "number": 71 - }, - { - "x": 718.99, - "y": 333.96, - "number": 75 - }, - { - "x": 117.65, - "y": 185.52, - "number": 76 - }, - { - "x": 375.11, - "y": 109.19, - "number": 77 - }, - { - "x": 202.26, - "y": 180.91, - "number": 78 - }, - { - "x": 498.69, - "y": 740.44, - "number": 80 - }, - { - "x": 479.43, - "y": 441.35, - "number": 81 - }, - { - "x": 15.71, - "y": 772.35, - "number": 82 - }, - { - "x": 253.71, - "y": 40.14, - "number": 83 - }, - { - "x": 538.56, - "y": 346.35, - "number": 84 - }, - { - "x": 490.92, - "y": 734.56, - "number": 86 - }, - { - "x": 592.2, - "y": 40.4, - "number": 88 - }, - { - "x": 723.29, - "y": 729.34, - "number": 89 - }, - { - "x": 296.01, - "y": 148.39, - "number": 91 - }, - { - "x": 585.53, - "y": 612.06, - "number": 92 - }, - { - "x": 380.68, - "y": 798.1, - "number": 93 - }, - { - "x": 635.49, - "y": 590.08, - "number": 94 - }, - { - "x": 659.02, - "y": 444.26, - "number": 96 - }, - { - "x": 649.08, - "y": 68.95, - "number": 98 - }, - { - "x": 716.98, - "y": 334.02, - "number": 99 - }, - { - "x": 650.08, - "y": 684.55, - "number": 100 - }, - { - "x": 567.25, - "y": 612.72, - "number": 101 - }, - { - "x": 74.61, - "y": 189.92, - "number": 102 - }, - { - "x": 531.61, - "y": 466.59, - "number": 103 - }, - { - "x": 184.83, - "y": 529.96, - "number": 104 - }, - { - "x": 763.96, - "y": 254.77, - "number": 105 - }, - { - "x": 578.4, - "y": 483.8, - "number": 106 - }, - { - "x": 449.31, - "y": 160.08, - "number": 107 - }, - { - "x": 242.28, - "y": 125.37, - "number": 109 - }, - { - "x": 587.44, - "y": 43.97, - "number": 110 - }, - { - "x": 108.16, - "y": 184.57, - "number": 112 - }, - { - "x": 482.84, - "y": 444.79, - "number": 113 - }, - { - "x": 779.73, - "y": 65.27, - "number": 115 - }, - { - "x": 424.82, - "y": 725.39, - "number": 117 - }, - { - "x": 694.75, - "y": 44.63, - "number": 118 - }, - { - "x": 589.01, - "y": 490.13, - "number": 120 - }, - { - "x": 578.8, - "y": 325.11, - "number": 121 - }, - { - "x": 718.75, - "y": 462.86, - "number": 122 - }, - { - "x": 774.24, - "y": 180.3, - "number": 123 - }, - { - "x": 496.77, - "y": 255.2, - "number": 124 - }, - { - "x": 340.09, - "y": 120.81, - "number": 125 - }, - { - "x": 779.91, - "y": 653.9, - "number": 126 - }, - { - "x": 786.08, - "y": 296.59, - "number": 128 - }, - { - "x": 327.97, - "y": 696.68, - "number": 129 - }, - { - "x": 632.56, - "y": 586.65, - "number": 131 - }, - { - "x": 536.32, - "y": 0.29, - "number": 132 - }, - { - "x": 670.83, - "y": 380.38, - "number": 133 - }, - { - "x": 501.2, - "y": 732.35, - "number": 135 - }, - { - "x": 791.5, - "y": 298.42, - "number": 136 - }, - { - "x": 180.18, - "y": 433.44, - "number": 137 - }, - { - "x": 474.92, - "y": 550.11, - "number": 138 - }, - { - "x": 151.65, - "y": 581.9, - "number": 139 - }, - { - "x": 789.69, - "y": 132.96, - "number": 140 - }, - { - "x": 362.21, - "y": 379.76, - "number": 142 - }, - { - "x": 757.59, - "y": 303.74, - "number": 143 - }, - { - "x": 662.93, - "y": 393.9, - "number": 144 - }, - { - "x": 453.43, - "y": 273.86, - "number": 145 - }, - { - "x": 388.91, - "y": 448.66, - "number": 146 - }, - { - "x": 496.57, - "y": 672.02, - "number": 147 - }, - { - "x": 617.74, - "y": 280.38, - "number": 148 - }, - { - "x": 621.44, - "y": 278.51, - "number": 149 - }, - { - "x": 104.7, - "y": 514, - "number": 150 - }, - { - "x": 478.41, - "y": 446.97, - "number": 151 - }, - { - "x": 633.42, - "y": 537.78, - "number": 152 - }, - { - "x": 403.99, - "y": 169.45, - "number": 153 - }, - { - "x": 419.74, - "y": 713.64, - "number": 154 - }, - { - "x": 496.26, - "y": 730.35, - "number": 155 - }, - { - "x": 395.36, - "y": 241.41, - "number": 156 - }, - { - "x": 355.23, - "y": 383.52, - "number": 157 - }, - { - "x": 770.85, - "y": 180.36, - "number": 158 - }, - { - "x": 642.38, - "y": 583.26, - "number": 159 - }, - { - "x": 203.53, - "y": 349.51, - "number": 160 - }, - { - "x": 356.19, - "y": 371.64, - "number": 161 - }, - { - "x": 337.59, - "y": 123.01, - "number": 162 - }, - { - "x": 533.41, - "y": 462.45, - "number": 163 - }, - { - "x": 267.44, - "y": 242.15, - "number": 164 - }, - { - "x": 622.34, - "y": 410.91, - "number": 165 - }, - { - "x": 781.41, - "y": 656.48, - "number": 166 - }, - { - "x": 154.45, - "y": 250.03, - "number": 167 - }, - { - "x": 270.15, - "y": 237.1, - "number": 168 - }, - { - "x": 273.49, - "y": 706.42, - "number": 169 - }, - { - "x": 539.42, - "y": 347.01, - "number": 170 - }, - { - "x": 16.41, - "y": 19.15, - "number": 171 - }, - { - "x": 548.47, - "y": 4.41, - "number": 172 - }, - { - "x": 16.31, - "y": 109.75, - "number": 174 - }, - { - "x": 76.38, - "y": 183.84, - "number": 175 - }, - { - "x": 679.93, - "y": 538.47, - "number": 178 - }, - { - "x": 611.05, - "y": 370.15, - "number": 179 - }, - { - "x": 630.67, - "y": 416.77, - "number": 180 - }, - { - "x": 609.88, - "y": 622.43, - "number": 181 - }, - { - "x": 229.52, - "y": 289.68, - "number": 182 - }, - { - "x": 460.01, - "y": 340.76, - "number": 184 - }, - { - "x": 640.68, - "y": 734.8, - "number": 185 - }, - { - "x": 415.56, - "y": 272.32, - "number": 186 - }, - { - "x": 757.66, - "y": 740.08, - "number": 187 - }, - { - "x": 332.29, - "y": 198.15, - "number": 188 - }, - { - "x": 618.7, - "y": 275.81, - "number": 189 - }, - { - "x": 513.56, - "y": 125.74, - "number": 192 - }, - { - "x": 494.93, - "y": 631.21, - "number": 193 - }, - { - "x": 368.98, - "y": 14.23, - "number": 194 - }, - { - "x": 743.39, - "y": 399.04, - "number": 195 - }, - { - "x": 204.87, - "y": 170.53, - "number": 197 - }, - { - "x": 363.59, - "y": 541.06, - "number": 198 - }, - { - "x": 757.69, - "y": 259.33, - "number": 199 - }, - { - "x": 287.32, - "y": 155.25, - "number": 200 - }, - { - "x": 632.08, - "y": 527.79, - "number": 202 - }, - { - "x": 576.6, - "y": 611.86, - "number": 204 - }, - { - "x": 416.57, - "y": 269.1, - "number": 205 - }, - { - "x": 724.32, - "y": 331.2, - "number": 208 - }, - { - "x": 769.13, - "y": 180.36, - "number": 209 - }, - { - "x": 161.45, - "y": 255.7, - "number": 210 - }, - { - "x": 534.22, - "y": 56.35, - "number": 211 - }, - { - "x": 787.14, - "y": 290.58, - "number": 212 - }, - { - "x": 253.73, - "y": 53.42, - "number": 213 - }, - { - "x": 384.34, - "y": 71.95, - "number": 214 - }, - { - "x": 655.96, - "y": 331.29, - "number": 215 - }, - { - "x": 200.95, - "y": 337.48, - "number": 216 - }, - { - "x": 766.53, - "y": 683.61, - "number": 217 - }, - { - "x": 388.73, - "y": 241.78, - "number": 218 - }, - { - "x": 778.17, - "y": 70.73, - "number": 219 - }, - { - "x": 490.1, - "y": 12.55, - "number": 220 - }, - { - "x": 250.19, - "y": 324.49, - "number": 221 - }, - { - "x": 260.28, - "y": 192.86, - "number": 224 - }, - { - "x": 514.86, - "y": 130.59, - "number": 226 - }, - { - "x": 354.87, - "y": 431.97, - "number": 228 - }, - { - "x": 767.33, - "y": 176.08, - "number": 229 - }, - { - "x": 639.57, - "y": 728.5, - "number": 230 - }, - { - "x": 487.61, - "y": 650.58, - "number": 232 - }, - { - "x": 270.76, - "y": 160.21, - "number": 233 - }, - { - "x": 514.62, - "y": 251.35, - "number": 234 - }, - { - "x": 473.64, - "y": 138.77, - "number": 235 - }, - { - "x": 560.51, - "y": 482.24, - "number": 236 - }, - { - "x": 789.55, - "y": 139.36, - "number": 237 - }, - { - "x": 370.54, - "y": 542.09, - "number": 238 - }, - { - "x": 409.17, - "y": 169.17, - "number": 239 - }, - { - "x": 572.78, - "y": 605.7, - "number": 240 - }, - { - "x": 734.06, - "y": 453.68, - "number": 241 - }, - { - "x": 199.93, - "y": 347.64, - "number": 242 - }, - { - "x": 751.85, - "y": 259.58, - "number": 244 - }, - { - "x": 395.47, - "y": 244.69, - "number": 245 - }, - { - "x": 205.33, - "y": 178.21, - "number": 246 - }, - { - "x": 584.81, - "y": 173.78, - "number": 247 - }, - { - "x": 372.3, - "y": 14.72, - "number": 248 - }, - { - "x": 341.22, - "y": 296.84, - "number": 249 - }, - { - "x": 546.65, - "y": 347.31, - "number": 250 - }, - { - "x": 758.58, - "y": 174.89, - "number": 252 - }, - { - "x": 438.03, - "y": 402.08, - "number": 254 - }, - { - "x": 171.2, - "y": 419.37, - "number": 255 - }, - { - "x": 62.96, - "y": 564.9, - "number": 256 - }, - { - "x": 600.43, - "y": 136.69, - "number": 257 - }, - { - "x": 371.35, - "y": 9.55, - "number": 258 - }, - { - "x": 359.82, - "y": 540.29, - "number": 259 - }, - { - "x": 339.78, - "y": 116.29, - "number": 260 - }, - { - "x": 653.51, - "y": 321.11, - "number": 262 - }, - { - "x": 661.48, - "y": 388.29, - "number": 263 - }, - { - "x": 481.71, - "y": 482.26, - "number": 264 - }, - { - "x": 710.28, - "y": 469.13, - "number": 265 - }, - { - "x": 451.6, - "y": 626.41, - "number": 266 - }, - { - "x": 664.2, - "y": 441.57, - "number": 267 - }, - { - "x": 681.25, - "y": 411.93, - "number": 269 - }, - { - "x": 799.31, - "y": 19.35, - "number": 270 - }, - { - "x": 627.73, - "y": 415.69, - "number": 271 - }, - { - "x": 510.97, - "y": 247.35, - "number": 272 - }, - { - "x": 478.33, - "y": 446.58, - "number": 273 - }, - { - "x": 105.86, - "y": 190.43, - "number": 274 - }, - { - "x": 688.94, - "y": 674.24, - "number": 276 - }, - { - "x": 769.51, - "y": 696.36, - "number": 277 - }, - { - "x": 619.26, - "y": 419.51, - "number": 278 - }, - { - "x": 667.04, - "y": 379.56, - "number": 279 - }, - { - "x": 643.77, - "y": 594.25, - "number": 280 - }, - { - "x": 264.84, - "y": 245.28, - "number": 281 - }, - { - "x": 275.98, - "y": 710.09, - "number": 283 - }, - { - "x": 459.14, - "y": 344.81, - "number": 284 - }, - { - "x": 418.99, - "y": 703.95, - "number": 285 - }, - { - "x": 741.65, - "y": 9.65, - "number": 286 - }, - { - "x": 782.67, - "y": 652.58, - "number": 287 - }, - { - "x": 604.97, - "y": 658.66, - "number": 288 - }, - { - "x": 164.38, - "y": 426.47, - "number": 289 - }, - { - "x": 425.59, - "y": 713.97, - "number": 290 - }, - { - "x": 490.23, - "y": 633.9, - "number": 291 - }, - { - "x": 130.28, - "y": 55.55, - "number": 293 - }, - { - "x": 169.51, - "y": 427.41, - "number": 294 - }, - { - "x": 259.51, - "y": 191.56, - "number": 297 - }, - { - "x": 157.42, - "y": 270.76, - "number": 299 - }, - { - "x": 629.57, - "y": 733.74, - "number": 300 - }, - { - "x": 745.45, - "y": 19.1, - "number": 301 - }, - { - "x": 7.79, - "y": 19.75, - "number": 302 - }, - { - "x": 418.18, - "y": 171.16, - "number": 303 - }, - { - "x": 561.36, - "y": 476.72, - "number": 304 - }, - { - "x": 181.78, - "y": 68.86, - "number": 306 - }, - { - "x": 4.17, - "y": 99.83, - "number": 307 - }, - { - "x": 244.3, - "y": 318.49, - "number": 308 - }, - { - "x": 386.67, - "y": 115.66, - "number": 309 - }, - { - "x": 555.63, - "y": 195.41, - "number": 310 - }, - { - "x": 82.17, - "y": 195.73, - "number": 311 - }, - { - "x": 254.45, - "y": 188.24, - "number": 312 - }, - { - "x": 454.36, - "y": 153.11, - "number": 313 - }, - { - "x": 87.14, - "y": 309.89, - "number": 315 - }, - { - "x": 644.12, - "y": 84.86, - "number": 316 - }, - { - "x": 655.15, - "y": 743.14, - "number": 317 - }, - { - "x": 697.87, - "y": 586.18, - "number": 318 - }, - { - "x": 499.33, - "y": 63.67, - "number": 319 - }, - { - "x": 520.84, - "y": 210.26, - "number": 320 - }, - { - "x": 786.23, - "y": 31.5, - "number": 321 - }, - { - "x": 315.96, - "y": 86.79, - "number": 322 - }, - { - "x": 666.13, - "y": 385.58, - "number": 323 - }, - { - "x": 761.72, - "y": 594, - "number": 324 - }, - { - "x": 275.21, - "y": 236.67, - "number": 325 - }, - { - "x": 491.93, - "y": 630.61, - "number": 326 - }, - { - "x": 159.56, - "y": 248.09, - "number": 327 - }, - { - "x": 765.62, - "y": 255.92, - "number": 328 - }, - { - "x": 486.38, - "y": 439.76, - "number": 329 - }, - { - "x": 520.41, - "y": 126.46, - "number": 330 - }, - { - "x": 355.21, - "y": 504.46, - "number": 331 - }, - { - "x": 561.91, - "y": 243.66, - "number": 333 - }, - { - "x": 265.76, - "y": 59.77, - "number": 334 - }, - { - "x": 381.99, - "y": 114.19, - "number": 335 - }, - { - "x": 520.28, - "y": 213.41, - "number": 336 - }, - { - "x": 647.46, - "y": 78.76, - "number": 337 - }, - { - "x": 425.31, - "y": 649.17, - "number": 339 - }, - { - "x": 165.83, - "y": 111.23, - "number": 341 - }, - { - "x": 246.76, - "y": 322.69, - "number": 342 - }, - { - "x": 186.95, - "y": 80.94, - "number": 345 - }, - { - "x": 723.64, - "y": 325.86, - "number": 346 - }, - { - "x": 403.02, - "y": 336.39, - "number": 347 - }, - { - "x": 450.99, - "y": 155.06, - "number": 348 - }, - { - "x": 540.28, - "y": 54, - "number": 349 - }, - { - "x": 499.61, - "y": 629.11, - "number": 350 - }, - { - "x": 292.09, - "y": 79.18, - "number": 351 - }, - { - "x": 479.07, - "y": 137.36, - "number": 352 - }, - { - "x": 364.75, - "y": 535.61, - "number": 353 - }, - { - "x": 770.79, - "y": 68.26, - "number": 354 - }, - { - "x": 423.38, - "y": 769.99, - "number": 355 - }, - { - "x": 474.62, - "y": 553.12, - "number": 356 - }, - { - "x": 763.79, - "y": 585.63, - "number": 357 - }, - { - "x": 736.58, - "y": 384.88, - "number": 359 - }, - { - "x": 687.46, - "y": 319.43, - "number": 360 - }, - { - "x": 750.35, - "y": 746.31, - "number": 361 - }, - { - "x": 195.2, - "y": 345.54, - "number": 362 - }, - { - "x": 357.67, - "y": 371.83, - "number": 363 - }, - { - "x": 335.1, - "y": 114.26, - "number": 364 - }, - { - "x": 391.3, - "y": 444.15, - "number": 365 - }, - { - "x": 643.98, - "y": 594.77, - "number": 367 - }, - { - "x": 677.53, - "y": 663.66, - "number": 368 - }, - { - "x": 712.4, - "y": 757.69, - "number": 371 - }, - { - "x": 774.17, - "y": 655.33, - "number": 372 - }, - { - "x": 119.54, - "y": 183.24, - "number": 373 - }, - { - "x": 420.5, - "y": 729.12, - "number": 374 - }, - { - "x": 754.39, - "y": 262.26, - "number": 375 - }, - { - "x": 540.45, - "y": 497.55, - "number": 379 - }, - { - "x": 160.17, - "y": 262.37, - "number": 380 - }, - { - "x": 377.84, - "y": 3.06, - "number": 381 - }, - { - "x": 542.34, - "y": 347.74, - "number": 382 - }, - { - "x": 596.73, - "y": 40.77, - "number": 383 - }, - { - "x": 609.6, - "y": 656.02, - "number": 384 - }, - { - "x": 144.38, - "y": 571.64, - "number": 385 - }, - { - "x": 14.77, - "y": 110.56, - "number": 386 - }, - { - "x": 291.51, - "y": 147.56, - "number": 387 - }, - { - "x": 487.07, - "y": 481.19, - "number": 388 - }, - { - "x": 375.84, - "y": 474.94, - "number": 389 - }, - { - "x": 619.35, - "y": 284.36, - "number": 390 - }, - { - "x": 244.95, - "y": 183.6, - "number": 392 - }, - { - "x": 343.03, - "y": 96.88, - "number": 393 - }, - { - "x": 400.54, - "y": 237.84, - "number": 395 - }, - { - "x": 694.3, - "y": 40.57, - "number": 397 - }, - { - "x": 141.16, - "y": 62.49, - "number": 398 - }, - { - "x": 145.78, - "y": 213.32, - "number": 399 - }, - { - "x": 79.35, - "y": 305.45, - "number": 400 - }, - { - "x": 16.99, - "y": 74.83, - "number": 401 - }, - { - "x": 71.6, - "y": 187.69, - "number": 402 - }, - { - "x": 564.1, - "y": 192.54, - "number": 404 - }, - { - "x": 484.89, - "y": 629.61, - "number": 405 - }, - { - "x": 444.36, - "y": 269.69, - "number": 406 - }, - { - "x": 536.34, - "y": 464.51, - "number": 407 - }, - { - "x": 253.52, - "y": 45.19, - "number": 408 - }, - { - "x": 6.47, - "y": 100.87, - "number": 411 - }, - { - "x": 157.52, - "y": 256.55, - "number": 412 - }, - { - "x": 787.33, - "y": 391.03, - "number": 413 - }, - { - "x": 601.24, - "y": 131.84, - "number": 414 - }, - { - "x": 259.46, - "y": 190.48, - "number": 415 - }, - { - "x": 398.62, - "y": 64.6, - "number": 416 - }, - { - "x": 11.4, - "y": 20.39, - "number": 417 - }, - { - "x": 588.86, - "y": 51.22, - "number": 418 - }, - { - "x": 497.64, - "y": 477.4, - "number": 419 - }, - { - "x": 606.75, - "y": 130.57, - "number": 420 - }, - { - "x": 486.68, - "y": 203.01, - "number": 422 - }, - { - "x": 682.81, - "y": 668.5, - "number": 423 - }, - { - "x": 280.06, - "y": 157.64, - "number": 424 - }, - { - "x": 281.67, - "y": 158.62, - "number": 426 - }, - { - "x": 790.24, - "y": 135.23, - "number": 427 - }, - { - "x": 339.65, - "y": 119.7, - "number": 428 - }, - { - "x": 650.63, - "y": 322.84, - "number": 429 - }, - { - "x": 357.77, - "y": 561.91, - "number": 433 - }, - { - "x": 755.87, - "y": 733.34, - "number": 435 - }, - { - "x": 511.2, - "y": 123.58, - "number": 437 - }, - { - "x": 455.08, - "y": 267.76, - "number": 439 - }, - { - "x": 533.97, - "y": 468.58, - "number": 440 - }, - { - "x": 412.15, - "y": 519.43, - "number": 441 - }, - { - "x": 451.99, - "y": 348.48, - "number": 442 - }, - { - "x": 492.55, - "y": 483.42, - "number": 443 - }, - { - "x": 741.4, - "y": 392.1, - "number": 444 - }, - { - "x": 192.95, - "y": 532.32, - "number": 445 - }, - { - "x": 422.68, - "y": 715.96, - "number": 448 - }, - { - "x": 786.19, - "y": 291.91, - "number": 450 - }, - { - "x": 512.42, - "y": 124.47, - "number": 451 - }, - { - "x": 552.56, - "y": 408.56, - "number": 452 - }, - { - "x": 719.46, - "y": 139.21, - "number": 453 - }, - { - "x": 772.73, - "y": 692.22, - "number": 454 - }, - { - "x": 80.38, - "y": 299.71, - "number": 455 - }, - { - "x": 478.24, - "y": 142.61, - "number": 456 - }, - { - "x": 388.17, - "y": 69.98, - "number": 457 - }, - { - "x": 4.98, - "y": 14.8, - "number": 460 - }, - { - "x": 141.95, - "y": 202.09, - "number": 462 - }, - { - "x": 754.71, - "y": 177.2, - "number": 463 - }, - { - "x": 166.97, - "y": 116.93, - "number": 464 - }, - { - "x": 357.29, - "y": 378.43, - "number": 465 - }, - { - "x": 559.33, - "y": 193.24, - "number": 466 - }, - { - "x": 240.96, - "y": 182.45, - "number": 467 - }, - { - "x": 539.08, - "y": 447.56, - "number": 468 - }, - { - "x": 412.39, - "y": 511.53, - "number": 469 - }, - { - "x": 186.63, - "y": 311.65, - "number": 470 - }, - { - "x": 394.88, - "y": 238.82, - "number": 472 - }, - { - "x": 573.09, - "y": 610.1, - "number": 473 - }, - { - "x": 616.38, - "y": 82.4, - "number": 475 - }, - { - "x": 537.06, - "y": 448.38, - "number": 476 - }, - { - "x": 393.75, - "y": 447.18, - "number": 477 - }, - { - "x": 70.84, - "y": 197.1, - "number": 478 - }, - { - "x": 323.84, - "y": 699.66, - "number": 479 - }, - { - "x": 592.46, - "y": 46.42, - "number": 480 - }, - { - "x": 636.81, - "y": 730.76, - "number": 481 - }, - { - "x": 644.53, - "y": 83.31, - "number": 482 - }, - { - "x": 631.22, - "y": 726.96, - "number": 483 - }, - { - "x": 797.07, - "y": 141.45, - "number": 484 - }, - { - "x": 334.5, - "y": 200.84, - "number": 485 - }, - { - "x": 381.22, - "y": 122.88, - "number": 486 - }, - { - "x": 350.93, - "y": 437.79, - "number": 487 - }, - { - "x": 760.88, - "y": 259.49, - "number": 488 - }, - { - "x": 448.27, - "y": 269.91, - "number": 490 - }, - { - "x": 343.1, - "y": 109.32, - "number": 491 - }, - { - "x": 176.42, - "y": 76.35, - "number": 492 - }, - { - "x": 651.69, - "y": 214.66, - "number": 493 - }, - { - "x": 143.05, - "y": 208.28, - "number": 494 - }, - { - "x": 411.27, - "y": 13.57, - "number": 496 - }, - { - "x": 689.35, - "y": 322.71, - "number": 497 - }, - { - "x": 543.84, - "y": 799.56, - "number": 498 - }, - { - "x": 582.56, - "y": 9.3, - "number": 499 - }, - { - "x": 765.66, - "y": 596.37, - "number": 501 - }, - { - "x": 628.71, - "y": 531.78, - "number": 502 - }, - { - "x": 639.48, - "y": 681.15, - "number": 503 - }, - { - "x": 697.95, - "y": 631.66, - "number": 505 - }, - { - "x": 769.55, - "y": 688.03, - "number": 508 - }, - { - "x": 283.31, - "y": 161.53, - "number": 509 - }, - { - "x": 719.75, - "y": 306.85, - "number": 510 - }, - { - "x": 730.08, - "y": 442.23, - "number": 511 - }, - { - "x": 572.48, - "y": 194.76, - "number": 512 - }, - { - "x": 635.99, - "y": 527.76, - "number": 514 - }, - { - "x": 656.77, - "y": 80.91, - "number": 515 - }, - { - "x": 741.17, - "y": 382.85, - "number": 516 - }, - { - "x": 739.01, - "y": 13.62, - "number": 517 - }, - { - "x": 291.37, - "y": 194.49, - "number": 518 - }, - { - "x": 181.76, - "y": 75.52, - "number": 520 - }, - { - "x": 291.75, - "y": 698.54, - "number": 521 - }, - { - "x": 93.92, - "y": 411.12, - "number": 522 - }, - { - "x": 564.25, - "y": 480.75, - "number": 524 - }, - { - "x": 256.31, - "y": 145.05, - "number": 526 - }, - { - "x": 762.17, - "y": 266.58, - "number": 527 - }, - { - "x": 453.81, - "y": 349.48, - "number": 529 - }, - { - "x": 129.42, - "y": 208.75, - "number": 531 - }, - { - "x": 483.9, - "y": 722.17, - "number": 533 - }, - { - "x": 779.04, - "y": 657.5, - "number": 534 - }, - { - "x": 376.33, - "y": 16.43, - "number": 536 - }, - { - "x": 139.82, - "y": 54.93, - "number": 537 - }, - { - "x": 609.69, - "y": 749.71, - "number": 539 - }, - { - "x": 759.91, - "y": 179.9, - "number": 540 - }, - { - "x": 83.18, - "y": 300, - "number": 541 - }, - { - "x": 789.57, - "y": 301.97, - "number": 542 - }, - { - "x": 548.63, - "y": 349, - "number": 543 - }, - { - "x": 356.75, - "y": 437.19, - "number": 544 - }, - { - "x": 414.74, - "y": 514.5, - "number": 545 - }, - { - "x": 453.36, - "y": 524.75, - "number": 546 - }, - { - "x": 342.31, - "y": 106.47, - "number": 547 - }, - { - "x": 36.87, - "y": 181.48, - "number": 548 - }, - { - "x": 309.48, - "y": 95.73, - "number": 550 - }, - { - "x": 775.51, - "y": 74.03, - "number": 551 - }, - { - "x": 429.35, - "y": 406.16, - "number": 553 - }, - { - "x": 631.04, - "y": 416.41, - "number": 554 - }, - { - "x": 340.75, - "y": 202.15, - "number": 555 - }, - { - "x": 393.76, - "y": 439.25, - "number": 556 - }, - { - "x": 717.18, - "y": 146.7, - "number": 557 - }, - { - "x": 520.09, - "y": 130.57, - "number": 560 - }, - { - "x": 134.18, - "y": 341.49, - "number": 561 - }, - { - "x": 348.93, - "y": 435.59, - "number": 562 - }, - { - "x": 281.98, - "y": 155.46, - "number": 563 - }, - { - "x": 777.09, - "y": 77.18, - "number": 564 - }, - { - "x": 427.07, - "y": 646.07, - "number": 565 - }, - { - "x": 197.11, - "y": 184.72, - "number": 566 - }, - { - "x": 396.55, - "y": 442.61, - "number": 567 - }, - { - "x": 241.98, - "y": 131.35, - "number": 568 - }, - { - "x": 348.97, - "y": 426.12, - "number": 570 - }, - { - "x": 290.98, - "y": 789.33, - "number": 571 - }, - { - "x": 459.25, - "y": 157.33, - "number": 573 - }, - { - "x": 507.28, - "y": 66.74, - "number": 574 - }, - { - "x": 586.25, - "y": 478.2, - "number": 575 - }, - { - "x": 627.99, - "y": 589, - "number": 576 - }, - { - "x": 582.39, - "y": 487.3, - "number": 577 - }, - { - "x": 380.74, - "y": 111.41, - "number": 578 - }, - { - "x": 592.92, - "y": 42.41, - "number": 579 - }, - { - "x": 39.21, - "y": 95.39, - "number": 580 - }, - { - "x": 34.23, - "y": 189.56, - "number": 581 - }, - { - "x": 238.39, - "y": 128.03, - "number": 582 - }, - { - "x": 750.98, - "y": 11.82, - "number": 583 - }, - { - "x": 179.45, - "y": 77.59, - "number": 584 - }, - { - "x": 755.9, - "y": 600.01, - "number": 586 - }, - { - "x": 713.1, - "y": 471.46, - "number": 588 - }, - { - "x": 638.86, - "y": 126.08, - "number": 589 - }, - { - "x": 332.93, - "y": 204.33, - "number": 590 - }, - { - "x": 643.62, - "y": 685.35, - "number": 591 - }, - { - "x": 720.87, - "y": 328.72, - "number": 592 - }, - { - "x": 649.6, - "y": 325.46, - "number": 594 - }, - { - "x": 141.1, - "y": 59.17, - "number": 595 - }, - { - "x": 411.75, - "y": 172.88, - "number": 597 - }, - { - "x": 599.09, - "y": 658.02, - "number": 598 - }, - { - "x": 130.08, - "y": 317.83, - "number": 600 - }, - { - "x": 393.35, - "y": 72.56, - "number": 601 - }, - { - "x": 636.22, - "y": 686.87, - "number": 603 - }, - { - "x": 736.46, - "y": 603.01, - "number": 604 - }, - { - "x": 650.19, - "y": 220.08, - "number": 605 - }, - { - "x": 798.85, - "y": 109.87, - "number": 606 - }, - { - "x": 534.85, - "y": 459.56, - "number": 607 - }, - { - "x": 22.97, - "y": 770.8, - "number": 608 - }, - { - "x": 249.57, - "y": 36.88, - "number": 609 - }, - { - "x": 184.32, - "y": 531.62, - "number": 610 - }, - { - "x": 0.66, - "y": 270.52, - "number": 611 - }, - { - "x": 1.36, - "y": 18.41, - "number": 613 - }, - { - "x": 149.11, - "y": 214.39, - "number": 614 - }, - { - "x": 547.48, - "y": 796.17, - "number": 615 - }, - { - "x": 5.39, - "y": 105.57, - "number": 616 - }, - { - "x": 781.17, - "y": 27.66, - "number": 617 - }, - { - "x": 696.04, - "y": 577.39, - "number": 618 - }, - { - "x": 378.66, - "y": 324.43, - "number": 619 - }, - { - "x": 644.29, - "y": 690.12, - "number": 620 - }, - { - "x": 687.26, - "y": 665.06, - "number": 621 - }, - { - "x": 379.11, - "y": 321.51, - "number": 623 - }, - { - "x": 788.99, - "y": 144.64, - "number": 625 - }, - { - "x": 159.6, - "y": 268.47, - "number": 626 - }, - { - "x": 380.44, - "y": 320.21, - "number": 627 - }, - { - "x": 150.56, - "y": 211.11, - "number": 628 - }, - { - "x": 5.25, - "y": 113.65, - "number": 629 - }, - { - "x": 270.66, - "y": 304.23, - "number": 630 - }, - { - "x": 604.41, - "y": 134.09, - "number": 631 - }, - { - "x": 441.22, - "y": 413.04, - "number": 633 - }, - { - "x": 245.79, - "y": 185.69, - "number": 634 - }, - { - "x": 581.98, - "y": 480.26, - "number": 637 - }, - { - "x": 602.09, - "y": 654.92, - "number": 638 - }, - { - "x": 395.15, - "y": 75.81, - "number": 639 - }, - { - "x": 312.78, - "y": 89.43, - "number": 640 - }, - { - "x": 495.38, - "y": 61.45, - "number": 642 - }, - { - "x": 766.72, - "y": 682.95, - "number": 643 - }, - { - "x": 450.49, - "y": 276.21, - "number": 644 - }, - { - "x": 398.63, - "y": 240.43, - "number": 645 - }, - { - "x": 791.17, - "y": 652.35, - "number": 648 - }, - { - "x": 253.16, - "y": 182.92, - "number": 650 - }, - { - "x": 137.86, - "y": 207.72, - "number": 651 - }, - { - "x": 643.32, - "y": 73.84, - "number": 652 - }, - { - "x": 386.34, - "y": 444.85, - "number": 653 - }, - { - "x": 249.59, - "y": 36.99, - "number": 655 - }, - { - "x": 265.51, - "y": 250.63, - "number": 656 - }, - { - "x": 799.02, - "y": 99.39, - "number": 657 - }, - { - "x": 456.54, - "y": 269.45, - "number": 658 - }, - { - "x": 40.58, - "y": 98.81, - "number": 659 - }, - { - "x": 378.53, - "y": 308.43, - "number": 660 - }, - { - "x": 274.28, - "y": 701.54, - "number": 662 - }, - { - "x": 389.96, - "y": 251.88, - "number": 666 - }, - { - "x": 545.94, - "y": 7.12, - "number": 667 - }, - { - "x": 569.79, - "y": 189.94, - "number": 668 - }, - { - "x": 15.8, - "y": 80.06, - "number": 670 - }, - { - "x": 183.7, - "y": 309.04, - "number": 671 - }, - { - "x": 758.49, - "y": 591.33, - "number": 672 - }, - { - "x": 491.71, - "y": 206.07, - "number": 674 - }, - { - "x": 385.66, - "y": 320.54, - "number": 675 - }, - { - "x": 601.57, - "y": 666.88, - "number": 676 - }, - { - "x": 713.79, - "y": 465.27, - "number": 677 - }, - { - "x": 426.02, - "y": 716.19, - "number": 678 - }, - { - "x": 538.13, - "y": 453.99, - "number": 680 - }, - { - "x": 381.84, - "y": 318.28, - "number": 681 - }, - { - "x": 626.89, - "y": 284.25, - "number": 683 - }, - { - "x": 428.36, - "y": 734.25, - "number": 684 - }, - { - "x": 268.74, - "y": 239.35, - "number": 686 - }, - { - "x": 683.03, - "y": 788.79, - "number": 687 - }, - { - "x": 334.72, - "y": 189.18, - "number": 688 - }, - { - "x": 114.19, - "y": 185.55, - "number": 689 - }, - { - "x": 417.48, - "y": 168.69, - "number": 692 - }, - { - "x": 577.93, - "y": 483.4, - "number": 695 - }, - { - "x": 368.57, - "y": 6.86, - "number": 696 - }, - { - "x": 501.95, - "y": 66.16, - "number": 699 - } - ], - "localGroup": [ - { - "number": 2, - "class": "Frontier", - "tech": { + "version": 1, + "report": { + "version": 0, + "turn": 41, + "mapWidth": 800, + "mapHeight": 800, + "mapPlanets": 700, + "race": "KnightErrants", + "votes": 17.1, + "voteFor": "KnightErrants", + "player": [ + { + "name": "3JO6HbIE", + "drive": 4.51, + "weapons": 2.24, + "shields": 1.8, "cargo": 1, - "drive": 8.27, - "shields": 0, - "weapons": 0 + "population": 2749.34, + "industry": 191.58, + "planets": 7, + "relation": "War", + "votes": 2.75, + "extinct": false }, - "cargo": "CAP", - "load": 1.05, - "destination": 458, - "speed": 0, - "mass": 13.42, - "id": "c1b96767-472f-5a96-8d83-369b5800b1c1", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 2, - "class": "Furgon10", - "tech": { + { + "name": "6PATBA", + "drive": 9.03, + "weapons": 5.62, + "shields": 4.27, + "cargo": 1.53, + "population": 18229.17, + "industry": 12684.71, + "planets": 31, + "relation": "War", + "votes": 18.23, + "extinct": false + }, + { + "name": "AbubaGerbographerPot", + "drive": 6.95, + "weapons": 3.26, + "shields": 4.18, "cargo": 1, - "drive": 10.62, - "shields": 0, - "weapons": 0 + "population": 0, + "industry": 0, + "planets": 0, + "relation": "Peace", + "votes": 0, + "extinct": false }, - "cargo": "-", - "load": 0, - "destination": 461, - "speed": 0, - "mass": 24.75, - "id": "d3c4e0e7-de33-5145-b28b-293b2e02c445", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "Nonstop", - "tech": { - "cargo": 0, - "drive": 0, - "shields": 0, - "weapons": 1.38 - }, - "cargo": "-", - "load": 0, - "destination": 114, - "speed": 0, - "mass": 1, - "id": "fe8805a6-d03c-5b66-a062-c9eaa2266d20", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "Nonstop", - "tech": { - "cargo": 0, - "drive": 0, - "shields": 0, - "weapons": 2.17 - }, - "cargo": "-", - "load": 0, - "destination": 223, - "speed": 0, - "mass": 1, - "id": "ce729a18-d695-5bed-857e-2806e576a1f1", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "Drone", - "tech": { - "cargo": 0, - "drive": 10.62, - "shields": 6.6, - "weapons": 4.76 - }, - "cargo": "-", - "load": 0, - "destination": 332, - "speed": 0, - "mass": 7.07, - "id": "0d0263b4-ff6b-5d55-b7cd-ac73d873812c", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "Nonstop", - "tech": { - "cargo": 0, - "drive": 0, - "shields": 0, - "weapons": 1.25 - }, - "cargo": "-", - "load": 0, - "destination": 495, - "speed": 0, - "mass": 1, - "id": "fde80508-8829-5e8f-afa4-e16d2ce3e24f", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "Nonstop", - "tech": { - "cargo": 0, - "drive": 0, - "shields": 0, - "weapons": 2.07 - }, - "cargo": "-", - "load": 0, - "destination": 447, - "speed": 0, - "mass": 1, - "id": "78449cc4-c2ec-53de-a0a3-87512990f742", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 62, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 8.71, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 332, - "speed": 0, - "mass": 1, - "id": "0f48d7f3-8e0d-539d-afbe-8a59f6ef2fcf", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "Nonstop", - "tech": { - "cargo": 0, - "drive": 0, - "shields": 0, - "weapons": 2.01 - }, - "cargo": "-", - "load": 0, - "destination": 223, - "speed": 0, - "mass": 1, - "id": "ee402052-9f78-5244-a57f-0c36e497ebef", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "Nonstop", - "tech": { - "cargo": 0, - "drive": 0, - "shields": 0, - "weapons": 1.67 - }, - "cargo": "-", - "load": 0, - "destination": 495, - "speed": 0, - "mass": 1, - "id": "25de95f9-580a-5135-9ad7-f6ee91e74c9f", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "Nonstop", - "tech": { - "cargo": 0, - "drive": 0, - "shields": 0, - "weapons": 4.76 - }, - "cargo": "-", - "load": 0, - "destination": 679, - "speed": 0, - "mass": 1, - "id": "74c19316-4e30-574d-b7a6-3c98c13342d7", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "Bow105", - "tech": { - "cargo": 1, + { + "name": "Acreators", "drive": 11.19, - "shields": 7.09, - "weapons": 4.76 - }, - "cargo": "COL", - "load": 0.3, - "destination": 227, - "speed": 0, - "mass": 148.79, - "id": "6875713d-719e-5740-ae2b-1dae8925a18d", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "CrossBow52x2", - "tech": { + "weapons": 4.01, + "shields": 4.69, "cargo": 1, - "drive": 11.19, - "shields": 7.09, - "weapons": 4.76 + "population": 11959.84, + "industry": 9725.58, + "planets": 19, + "relation": "War", + "votes": 11.96, + "extinct": false }, - "cargo": "COL", - "load": 1.05, - "destination": 649, - "speed": 0, - "mass": 149.54, - "id": "ae51be3a-e3f7-59c1-83bd-ee193e3a0b6a", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 2.24, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 635, - "speed": 0, - "mass": 1, - "id": "e9addad6-60b0-5401-8b2d-e77c7dcea116", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 2.23, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 431, - "speed": 0, - "mass": 1, - "id": "0ecedad6-87f3-5371-b0a5-1d8e44e934cd", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 2.23, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 183, - "speed": 0, - "mass": 1, - "id": "2a64b7aa-d58b-5a04-81c5-600d4743dd1a", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 2.23, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 190, - "speed": 0, - "mass": 1, - "id": "ee77f33d-5bf5-5935-81b1-ae0b4c80bd06", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 2.53, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 292, - "speed": 0, - "mass": 1, - "id": "407c3512-cff7-57fe-8c61-1492eedf2f38", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 2.53, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 504, - "speed": 0, - "mass": 1, - "id": "8aa2ce73-3bfe-5f70-8993-da801d34f6ab", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "Tormoz49", - "tech": { - "cargo": 1, - "drive": 11.19, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 282, - "origin": 79, - "range": 26.27, - "speed": 0, - "mass": 49.5, - "id": "0885e23e-96a9-53a4-87bf-7ffdc8d25a63", - "state": "In_Space", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 2.53, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 369, - "speed": 0, - "mass": 1, - "id": "db5a16d7-ea0b-5576-bbbf-2cf7086b74f6", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 2.83, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 231, - "speed": 0, - "mass": 1, - "id": "93151891-83e7-57ab-b22f-3ab7af738478", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "Catapult8x7", - "tech": { - "cargo": 0, - "drive": 11.19, - "shields": 3.3, - "weapons": 4.76 - }, - "cargo": "-", - "load": 0, - "destination": 500, - "speed": 0, - "mass": 99, - "id": "5f9fdb83-8163-56e2-a538-9cb04f860936", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "Invalid", - "tech": { - "cargo": 0, - "drive": 11.19, - "shields": 7.09, - "weapons": 4.76 - }, - "cargo": "-", - "load": 0, - "destination": 403, - "speed": 0, - "mass": 49.99, - "id": "4de87a01-538f-575b-aa07-5788768a44f7", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "Furgon10b", - "tech": { - "cargo": 1, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "COL", - "load": 4.16, - "destination": 685, - "speed": 0, - "mass": 28.91, - "id": "17d48fe8-b2cd-58b7-ada4-b16994cf0f91", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 3.23, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 693, - "speed": 0, - "mass": 1, - "id": "503d36af-4488-5ef0-b5de-9cd23cd41084", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 3.23, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 114, - "speed": 0, - "mass": 1, - "id": "64596118-d163-5699-ab59-c47355ed2cf1", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 3.23, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 654, - "speed": 0, - "mass": 1, - "id": "0e551f01-bea8-5499-9295-4edd11ce9275", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 3.23, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 559, - "speed": 0, - "mass": 1, - "id": "998ee779-660a-5105-b749-dcceeb29b700", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 3.49, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 95, - "speed": 0, - "mass": 1, - "id": "cdd558d3-b4b7-52e3-959a-01c9bfc653d6", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 3.49, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 49, - "speed": 0, - "mass": 1, - "id": "49870a7d-956f-5aa0-a0c9-66a0b661056e", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 3.49, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 206, - "speed": 0, - "mass": 1, - "id": "6873b5e0-2a1b-567e-b4b6-ba48ea48e802", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 3.49, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 519, - "speed": 0, - "mass": 1, - "id": "06925742-c92a-5d80-8754-f6352ccdfc6e", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 2, - "class": "Stop", - "tech": { - "cargo": 0, - "drive": 0, + { + "name": "Alike", + "drive": 5.26, + "weapons": 1, "shields": 1, - "weapons": 1.67 + "cargo": 1, + "population": 3586.02, + "industry": 3530.06, + "planets": 5, + "relation": "War", + "votes": 3.59, + "extinct": false }, - "cargo": "-", - "load": 0, - "destination": 523, - "speed": 0, - "mass": 2.26, - "id": "74bf52d3-1051-5785-b08e-d31561d7b2e8", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 10.62, - "shields": 0, - "weapons": 0 + { + "name": "Argon", + "drive": 8.64, + "weapons": 3.38, + "shields": 3.22, + "cargo": 1, + "population": 7751.72, + "industry": 4533.3, + "planets": 22, + "relation": "War", + "votes": 7.75, + "extinct": false }, - "cargo": "-", - "load": 0, - "destination": 20, - "speed": 0, - "mass": 1, - "id": "7e2aa02b-5dc4-5574-a33e-d4c216737347", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 3.77, - "shields": 0, - "weapons": 0 + { + "name": "AT-2560TX", + "drive": 16.29, + "weapons": 9.49, + "shields": 9.54, + "cargo": 1, + "population": 12738.06, + "industry": 12731.45, + "planets": 19, + "relation": "War", + "votes": 12.74, + "extinct": false }, - "cargo": "-", - "load": 0, - "destination": 111, - "speed": 0, - "mass": 1, - "id": "66380351-e3b3-54b1-9bb7-6615b9be62ca", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 4.17, - "shields": 0, - "weapons": 0 + { + "name": "Barcarols", + "drive": 10.01, + "weapons": 5.39, + "shields": 5.66, + "cargo": 1, + "population": 16795.48, + "industry": 13948.94, + "planets": 24, + "relation": "War", + "votes": 16.8, + "extinct": false }, - "cargo": "-", - "load": 0, - "destination": 391, - "speed": 0, - "mass": 1, - "id": "aa23b889-0780-5c75-be58-513f49d4a87e", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 4.17, - "shields": 0, - "weapons": 0 + { + "name": "Basilius_I", + "drive": 5.85, + "weapons": 2.54, + "shields": 2.2, + "cargo": 1.3, + "population": 994.64, + "industry": 751.59, + "planets": 6, + "relation": "War", + "votes": 0.99, + "extinct": false }, - "cargo": "-", - "load": 0, - "destination": 474, - "speed": 0, - "mass": 1, - "id": "87194948-6d67-5234-894d-25dbdea031db", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "Nonstop", - "tech": { - "cargo": 0, - "drive": 0, - "shields": 0, - "weapons": 1.67 + { + "name": "BlackCrows", + "drive": 8.4, + "weapons": 3.65, + "shields": 3.46, + "cargo": 1, + "population": 9526.4, + "industry": 7679.51, + "planets": 15, + "relation": "War", + "votes": 9.53, + "extinct": false }, - "cargo": "-", - "load": 0, - "destination": 572, - "speed": 0, - "mass": 1, - "id": "550e32b9-4068-5c7f-8237-a0dd1f26ece0", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 4.76, - "shields": 0, - "weapons": 0 + { + "name": "Bumbastik", + "drive": 5.16, + "weapons": 3.63, + "shields": 2.82, + "cargo": 1, + "population": 1760.37, + "industry": 38, + "planets": 3, + "relation": "War", + "votes": 1.76, + "extinct": false }, - "cargo": "-", - "load": 0, - "destination": 17, - "speed": 0, - "mass": 1, - "id": "d52f6245-4857-5703-8125-0ae3c3876baf", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 2, - "class": "Nonstop", - "tech": { - "cargo": 0, - "drive": 0, - "shields": 0, - "weapons": 1.67 + { + "name": "Bupyc", + "drive": 4.98, + "weapons": 3.79, + "shields": 1.8, + "cargo": 1, + "population": 3186.32, + "industry": 2970.8, + "planets": 4, + "relation": "Peace", + "votes": 3.19, + "extinct": false }, - "cargo": "-", - "load": 0, - "destination": 177, - "speed": 0, - "mass": 1, - "id": "9a818b63-4fc9-59d6-bfe3-03f683715a0e", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 4.76, - "shields": 0, - "weapons": 0 + { + "name": "Cidonia", + "drive": 5.22, + "weapons": 2.39, + "shields": 2.39, + "cargo": 1, + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": false }, - "cargo": "-", - "load": 0, - "destination": 9, - "speed": 0, - "mass": 1, - "id": "d2cd96c7-fb2f-5ea2-a0b0-23aadc221cb9", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 4.76, - "shields": 0, - "weapons": 0 + { + "name": "Civilians", + "drive": 10.03, + "weapons": 5.91, + "shields": 5.91, + "cargo": 1, + "population": 20336.2, + "industry": 14359.3, + "planets": 37, + "relation": "War", + "votes": 20.34, + "extinct": false }, - "cargo": "-", - "load": 0, - "destination": 394, - "speed": 0, - "mass": 1, - "id": "5a0ef736-42d3-5394-b385-6aa62527b0fc", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 5.34, - "shields": 0, - "weapons": 0 + { + "name": "CosmicMonkeys", + "drive": 9.39, + "weapons": 3.31, + "shields": 3.18, + "cargo": 1, + "population": 15493.63, + "industry": 12399.07, + "planets": 22, + "relation": "War", + "votes": 15.49, + "extinct": false }, - "cargo": "-", - "load": 0, - "destination": 519, - "speed": 0, - "mass": 1, - "id": "0561b727-bdca-5c26-865c-4845795e7edb", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 5.93, - "shields": 0, - "weapons": 0 + { + "name": "Enoxes", + "drive": 11.91, + "weapons": 6.69, + "shields": 5.64, + "cargo": 1, + "population": 11532.37, + "industry": 10105.96, + "planets": 15, + "relation": "War", + "votes": 11.53, + "extinct": false }, - "cargo": "-", - "load": 0, - "destination": 596, - "speed": 0, - "mass": 1, - "id": "58caa413-f1d5-5e5a-812c-e4c3977cd534", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "Nonstop", - "tech": { - "cargo": 0, - "drive": 0, - "shields": 0, - "weapons": 1.67 + { + "name": "Flagist", + "drive": 8.49, + "weapons": 6.69, + "shields": 7, + "cargo": 1.2, + "population": 14675.72, + "industry": 8966.36, + "planets": 42, + "relation": "Peace", + "votes": 14.68, + "extinct": false }, - "cargo": "-", - "load": 0, - "destination": 558, - "speed": 0, - "mass": 1, - "id": "f0890948-3c59-54b4-bdc6-092d383d5e62", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "Nonstop", - "tech": { - "cargo": 0, - "drive": 0, - "shields": 0, - "weapons": 1.67 + { + "name": "Folland", + "drive": 6.32, + "weapons": 1.9, + "shields": 1.98, + "cargo": 1.12, + "population": 6933.71, + "industry": 5463.58, + "planets": 11, + "relation": "War", + "votes": 8.2, + "extinct": false }, - "cargo": "-", - "load": 0, - "destination": 622, - "speed": 0, - "mass": 1, - "id": "45955281-0c7c-5e4c-9e11-c2c40efb3e58", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 6.52, - "shields": 0, - "weapons": 0 + { + "name": "Frightners", + "drive": 8.36, + "weapons": 5.41, + "shields": 5.75, + "cargo": 1, + "population": 11009.69, + "industry": 10105.18, + "planets": 18, + "relation": "War", + "votes": 11.01, + "extinct": false }, - "cargo": "-", - "load": 0, - "destination": 130, - "speed": 0, - "mass": 1, - "id": "86968f2e-fc10-5366-9336-af8ceec34f9d", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 6.52, - "shields": 0, - "weapons": 0 + { + "name": "Glaurung", + "drive": 10.47, + "weapons": 4.77, + "shields": 4.25, + "cargo": 1, + "population": 9661.72, + "industry": 7468.84, + "planets": 12, + "relation": "War", + "votes": 9.66, + "extinct": false }, - "cargo": "-", - "load": 0, - "destination": 268, - "speed": 0, - "mass": 1, - "id": "8f0956d0-f58e-52b3-97b3-5b77616680c7", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "Nonstop", - "tech": { - "cargo": 0, - "drive": 0, - "shields": 0, - "weapons": 1.67 + { + "name": "HAEMHuKu-2000", + "drive": 8.86, + "weapons": 5.61, + "shields": 7.03, + "cargo": 1, + "population": 13252.34, + "industry": 11387.7, + "planets": 17, + "relation": "Peace", + "votes": 13.25, + "extinct": false }, - "cargo": "-", - "load": 0, - "destination": 458, - "speed": 0, - "mass": 1, - "id": "ab3be9b6-f441-5687-8538-06be6837dd23", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 6.52, - "shields": 0, - "weapons": 0 + { + "name": "kenguri", + "drive": 5.77, + "weapons": 2.81, + "shields": 1.95, + "cargo": 1, + "population": 2796.91, + "industry": 1983.67, + "planets": 6, + "relation": "War", + "votes": 2.8, + "extinct": false }, - "cargo": "-", - "load": 0, - "destination": 48, - "speed": 0, - "mass": 1, - "id": "ce28e59d-1643-5c26-b3d1-74aaa3e796d6", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 7.25, - "shields": 0, - "weapons": 0 + { + "name": "KnightErrants", + "drive": 13.25, + "weapons": 6.11, + "shields": 7.09, + "cargo": 1, + "population": 17095.55, + "industry": 14757.14, + "planets": 29, + "relation": "-", + "votes": 17.1, + "extinct": false }, - "cargo": "-", - "load": 0, - "destination": 253, - "speed": 0, - "mass": 1, - "id": "2b76689e-2be9-5103-88b4-e929ac180b33", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 7.25, - "shields": 0, - "weapons": 0 + { + "name": "Koreans", + "drive": 9.87, + "weapons": 5.96, + "shields": 4.86, + "cargo": 1, + "population": 15654.53, + "industry": 9090.1, + "planets": 39, + "relation": "Peace", + "votes": 15.65, + "extinct": false }, - "cargo": "-", - "load": 0, - "destination": 513, - "speed": 0, - "mass": 1, - "id": "2a13adc9-41f1-5f1e-b1f4-f9f7709fcaa9", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 7.25, - "shields": 0, - "weapons": 0 + { + "name": "Manya", + "drive": 10.74, + "weapons": 7.9, + "shields": 6.34, + "cargo": 1, + "population": 12811.18, + "industry": 8723.31, + "planets": 21, + "relation": "War", + "votes": 12.81, + "extinct": false }, - "cargo": "-", - "load": 0, - "destination": 69, - "speed": 0, - "mass": 1, - "id": "42f76fd5-39ef-5881-9e96-3090979df3e2", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, + { + "name": "Meeps", + "drive": 14.83, + "weapons": 7.08, + "shields": 7.08, + "cargo": 1, + "population": 16694.05, + "industry": 12526.04, + "planets": 32, + "relation": "War", + "votes": 16.69, + "extinct": false + }, + { + "name": "Minbari", + "drive": 6.18, + "weapons": 2.6, + "shields": 3, + "cargo": 1, + "population": 1837.63, + "industry": 1107.06, + "planets": 12, + "relation": "War", + "votes": 1.84, + "extinct": false + }, + { + "name": "Monstrai", + "drive": 5.46, + "weapons": 2, + "shields": 3.08, + "cargo": 1, + "population": 760.07, + "industry": 525.58, + "planets": 5, + "relation": "Peace", + "votes": 0.76, + "extinct": false + }, + { + "name": "Nails", + "drive": 4.98, + "weapons": 3.97, + "shields": 3.19, + "cargo": 1, + "population": 5624.33, + "industry": 942.95, + "planets": 16, + "relation": "Peace", + "votes": 5.62, + "extinct": false + }, + { + "name": "Onix", + "drive": 8.32, + "weapons": 8.1, + "shields": 5.93, + "cargo": 1, + "population": 12822.63, + "industry": 12809.56, + "planets": 14, + "relation": "War", + "votes": 12.82, + "extinct": false + }, + { + "name": "Orla", "drive": 8.13, - "shields": 0, - "weapons": 0 + "weapons": 3.7, + "shields": 3.7, + "cargo": 2, + "population": 3179.79, + "industry": 2844.24, + "planets": 6, + "relation": "War", + "votes": 3.18, + "extinct": false }, - "cargo": "-", - "load": 0, - "destination": 243, - "speed": 0, - "mass": 1, - "id": "04c131cb-f3f1-53c3-9162-2865caae0119", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 8.13, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 191, - "speed": 0, - "mass": 1, - "id": "7bc54e58-b931-55df-8864-e4b58748f559", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 697, - "speed": 0, - "mass": 1, - "id": "4ef24cc5-69b3-51c8-a8be-e54c2f047fa5", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 430, - "speed": 0, - "mass": 1, - "id": "de8001eb-3bbd-5c4c-9b43-f57727b13d36", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 45, - "speed": 0, - "mass": 1, - "id": "43143f40-e0ed-5651-be78-4a59aea98398", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 549, - "speed": 0, - "mass": 1, - "id": "654d6549-470b-594f-bbf4-5f4b01b44597", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "Nonstop", - "tech": { - "cargo": 0, - "drive": 0, - "shields": 0, - "weapons": 1.67 - }, - "cargo": "-", - "load": 0, - "destination": 461, - "speed": 0, - "mass": 1, - "id": "6b748afc-108b-5933-b605-dbfd1283c605", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 24, - "speed": 0, - "mass": 1, - "id": "2018e46b-c2cf-56ee-99b6-4198525138bf", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 7.25, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 587, - "speed": 0, - "mass": 1, - "id": "855d3f4f-5a4e-5678-b438-5ad9a51c2723", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 7.25, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 691, - "speed": 0, - "mass": 1, - "id": "0cb8bb36-2707-55b8-9d29-1d880530a1d0", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 7.25, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 425, - "speed": 0, - "mass": 1, - "id": "33c78d02-ffc9-5df5-9017-918e005b5818", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 5.93, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 396, - "speed": 0, - "mass": 1, - "id": "5e0450e1-acec-5f13-bb51-ef5c727f5206", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 6.52, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 673, - "speed": 0, - "mass": 1, - "id": "0299ab68-b1d6-5c0d-98ec-a4dd0535c8e7", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 6.52, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 203, - "speed": 0, - "mass": 1, - "id": "f0a94be5-3af6-534b-a8cd-7e9c2d31ad0f", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 6.52, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 530, - "speed": 0, - "mass": 1, - "id": "353840c6-3720-5d10-86c7-d6667de4f529", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 161, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.1, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 227, - "speed": 0, - "mass": 1, - "id": "0ea4bdec-0e97-56e3-8bf9-9e5e2e303e91", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 141, - "speed": 0, - "mass": 1, - "id": "5515386b-054e-501e-84de-4e44adcab2ef", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 12, - "speed": 0, - "mass": 1, - "id": "19d4a93c-ae3e-59f3-9b84-3102cfe19579", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 46, - "speed": 0, - "mass": 1, - "id": "298455f2-a7c3-5019-b838-48dff1f77e90", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 602, - "speed": 0, - "mass": 1, - "id": "35f632d6-2f85-5862-8cbc-8be2efce421c", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 552, - "speed": 0, - "mass": 1, - "id": "f081f7e2-4f20-5fab-afc8-7ee9e51e7eee", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 28, - "speed": 0, - "mass": 1, - "id": "e4e83504-fc42-5e69-ae10-4f416a679c3d", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 370, - "speed": 0, - "mass": 1, - "id": "cff70000-645c-5f51-b811-39cb6caff8ff", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 532, - "speed": 0, - "mass": 1, - "id": "9fc146f9-586a-577e-b54c-761c9bde3fb2", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 612, - "speed": 0, - "mass": 1, - "id": "7a5bd189-caf0-5a9c-80f2-adc125936433", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 585, - "speed": 0, - "mass": 1, - "id": "1d92183d-f227-5431-950f-7aa289537315", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 366, - "speed": 0, - "mass": 1, - "id": "ea8a1391-c7b3-5d4b-b8bd-b18cd6eefb5d", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 78, - "class": "Buckler100", - "tech": { - "cargo": 0, - "drive": 11.19, - "shields": 5.65, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 500, - "speed": 0, - "mass": 2, - "id": "637e0bbb-7382-5fba-8ee6-cbd019498aa1", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 298, - "speed": 0, - "mass": 1, - "id": "00c3384d-233d-5df4-9900-a2acad0846f7", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 119, - "speed": 0, - "mass": 1, - "id": "80134b6e-30aa-58e6-a5c7-a5e1c82f06b4", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 507, - "speed": 0, - "mass": 1, - "id": "c5caab15-aaee-5db6-89c9-9e2d234002a5", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "Furgon5", - "tech": { + { + "name": "Oselots", + "drive": 10.34, + "weapons": 5.71, + "shields": 6.13, "cargo": 1, - "drive": 10.62, - "shields": 0, - "weapons": 0 + "population": 14777.79, + "industry": 14253.97, + "planets": 24, + "relation": "War", + "votes": 14.78, + "extinct": false }, - "cargo": "-", - "load": 0, - "destination": 461, - "speed": 0, - "mass": 12.37, - "id": "f3b90726-fffe-5d20-b43d-8d3204a03887", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 90, - "speed": 0, - "mass": 1, - "id": "f45acd56-3151-5882-a2dc-91d3cf3872f5", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 632, - "speed": 0, - "mass": 1, - "id": "2af0f802-d675-5687-803e-378b14e9ff58", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 506, - "speed": 0, - "mass": 1, - "id": "0343ea81-cc37-5562-bdc3-e00ecb42c577", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 2, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 227, - "speed": 0, - "mass": 1, - "id": "0a865579-da92-598a-8e05-03a7c891fc7d", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 343, - "speed": 0, - "mass": 1, - "id": "93873466-3dbb-5f00-ac9f-0beedc7afe33", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 2, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 403, - "speed": 0, - "mass": 1, - "id": "3ec33cc1-1e9c-5e0d-9c80-e584b286a82c", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 332, - "speed": 0, - "mass": 1, - "id": "c3e70e95-3844-59d2-982e-415525119c5f", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 525, - "speed": 0, - "mass": 1, - "id": "39cb4177-4aa4-58f4-99b1-70936f21a725", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 25, - "speed": 0, - "mass": 1, - "id": "7f5b8b02-78ef-5ca3-8884-15fc461d1a4c", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 432, - "speed": 0, - "mass": 1, - "id": "9681f47a-b083-5aef-aeab-6ead2bbeea80", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 2, - "class": "Nonstop", - "tech": { - "cargo": 0, - "drive": 0, - "shields": 0, - "weapons": 4.76 - }, - "cargo": "-", - "load": 0, - "destination": 685, - "speed": 0, - "mass": 1, - "id": "3179ae8e-1dae-53f0-9245-1cf1370a9287", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "Bow105", - "tech": { + { + "name": "Ricksha", + "drive": 7.63, + "weapons": 3.55, + "shields": 3.95, "cargo": 1, - "drive": 11.19, - "shields": 3.3, - "weapons": 4.76 + "population": 1493.3, + "industry": 382.05, + "planets": 7, + "relation": "War", + "votes": 1.49, + "extinct": false }, - "cargo": "COL", - "load": 0.5, - "destination": 403, - "speed": 0, - "mass": 148.99, - "id": "f6aaf22a-a5aa-50af-a535-9c90a757bb01", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 54, - "class": "Buckler100", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 4.84, - "weapons": 0 + { + "name": "Shuriki", + "drive": 7.98, + "weapons": 3.39, + "shields": 3.41, + "cargo": 1.42, + "population": 2030.1, + "industry": 1811.78, + "planets": 5, + "relation": "War", + "votes": 2.03, + "extinct": false }, - "cargo": "-", - "load": 0, - "destination": 649, - "speed": 0, - "mass": 2, - "id": "dd58d543-af7b-5e84-bfad-d164e99ec695", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 4.6, - "shields": 0, - "weapons": 0 + { + "name": "sidiki", + "drive": 8.5, + "weapons": 4.64, + "shields": 4.54, + "cargo": 1.1, + "population": 8196.29, + "industry": 7105.85, + "planets": 11, + "relation": "War", + "votes": 6.93, + "extinct": false }, - "cargo": "-", - "load": 0, - "destination": 134, - "speed": 0, - "mass": 1, - "id": "dba04345-ee08-54b5-abac-2c689810060a", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 + { + "name": "Slimes", + "drive": 6.33, + "weapons": 4.25, + "shields": 3.02, + "cargo": 1.73, + "population": 9232.1, + "industry": 6707.54, + "planets": 14, + "relation": "Peace", + "votes": 9.23, + "extinct": false }, - "cargo": "-", - "load": 0, - "destination": 207, - "speed": 0, - "mass": 1, - "id": "ffe92756-0d71-563f-8a65-579dbc46d30d", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 + { + "name": "SSSan", + "drive": 14.1, + "weapons": 8.23, + "shields": 6.37, + "cargo": 1.1, + "population": 0, + "industry": 0, + "planets": 0, + "relation": "Peace", + "votes": 0, + "extinct": false }, - "cargo": "-", - "load": 0, - "destination": 459, - "speed": 0, - "mass": 1, - "id": "d41a5222-66c4-5837-bb17-b95ad029bcf8", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 196, - "speed": 0, - "mass": 1, - "id": "ff88b8a3-d203-509e-ac66-aac4d5d4a319", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 85, - "speed": 0, - "mass": 1, - "id": "2d864b2e-2417-5e55-be45-ba66075dfb51", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 663, - "speed": 0, - "mass": 1, - "id": "8c435432-7389-55e1-af96-5b8887f36c93", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 56, - "speed": 0, - "mass": 1, - "id": "93b7cd69-4f68-52cc-983e-cf825d5848ca", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 314, - "speed": 0, - "mass": 1, - "id": "f68781ae-6827-53aa-806d-e922a6544e7e", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 690, - "speed": 0, - "mass": 1, - "id": "ad76f2da-a48a-5e80-8c17-1dede7bf6dad", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "Furgon20", - "tech": { + { + "name": "TwelvePointedCross", + "drive": 8.75, + "weapons": 5.86, + "shields": 4.2, "cargo": 1, - "drive": 9.45, - "shields": 0, - "weapons": 4.76 + "population": 17158.92, + "industry": 13880.69, + "planets": 24, + "relation": "Peace", + "votes": 17.16, + "extinct": false }, - "cargo": "COL", - "load": 20, - "destination": 669, - "speed": 0, - "mass": 69.3, - "id": "29b1c5a5-0093-5785-bc61-ef3f3d869826", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "Furgon100", - "tech": { + { + "name": "Umbra", + "drive": 11.37, + "weapons": 5.01, + "shields": 3.53, "cargo": 1, - "drive": 11.19, - "shields": 0, - "weapons": 0 + "population": 7272.35, + "industry": 6974.03, + "planets": 10, + "relation": "War", + "votes": 7.27, + "extinct": false }, - "cargo": "COL", - "load": 98.3, - "destination": 79, - "speed": 0, - "mass": 197.13, - "id": "b6de7be5-54a0-5c2b-8e91-94e7fe2dd9dd", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "Furgon20", - "tech": { + { + "name": "Zerg", + "drive": 5.22, + "weapons": 3.77, + "shields": 1.91, "cargo": 1, - "drive": 11.19, - "shields": 0, - "weapons": 4.76 + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": false }, - "cargo": "COL", - "load": 20, - "destination": 685, - "speed": 0, - "mass": 69.3, - "id": "7d8c85ae-6a1d-5500-b2fc-cd354713117c", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 669, - "speed": 0, - "mass": 1, - "id": "730a79a1-9432-5ab4-a5f9-f250892a5f87", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 4.58, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 647, - "speed": 0, - "mass": 1, - "id": "52db3931-bb37-5372-a13a-23b875a669f6", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 10.62, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 649, - "speed": 0, - "mass": 1, - "id": "31233623-71a9-5b29-858d-77dcb14a6c02", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 10.62, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 55, - "speed": 0, - "mass": 1, - "id": "7053a306-faa3-50ca-934b-bbdb82db0da0", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 10.62, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 79, - "speed": 0, - "mass": 1, - "id": "0fe2d695-eb19-5286-aa75-88562126a37d", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "Nonstop", - "tech": { - "cargo": 0, - "drive": 0, - "shields": 0, - "weapons": 4.77 - }, - "cargo": "-", - "load": 0, - "destination": 636, - "speed": 0, - "mass": 1, - "id": "1d9bd461-a532-5752-bc9f-77a6d4e76d95", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "Bow55", - "tech": { + { + "name": "Zodiac", + "drive": 10.14, + "weapons": 6.09, + "shields": 6.26, "cargo": 1, - "drive": 10.62, - "shields": 6.6, - "weapons": 4.76 + "population": 18644.88, + "industry": 11128.92, + "planets": 25, + "relation": "Peace", + "votes": 18.64, + "extinct": false }, - "cargo": "COL", - "load": 0.3, - "destination": 227, - "speed": 0, - "mass": 98.64, - "id": "d1531732-0e91-5043-ba68-ecf6655aa6ed", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "Catapult17x2.5", - "tech": { + { + "name": "argo", + "drive": 5, + "weapons": 1, + "shields": 1, "cargo": 1, - "drive": 10.62, - "shields": 6.6, - "weapons": 4.76 + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true }, - "cargo": "COL", - "load": 0.3, - "destination": 227, - "speed": 0, - "mass": 86.1, - "id": "b818a8cb-9e24-54a1-bbed-d69dafb2b7af", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "Nonstop", - "tech": { - "cargo": 0, - "drive": 0, - "shields": 0, - "weapons": 4.76 - }, - "cargo": "-", - "load": 0, - "destination": 176, - "speed": 0, - "mass": 1, - "id": "be2849c1-45a7-5cf3-995a-fc2d8057ce65", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "Bow49", - "tech": { + { + "name": "Arkoid", + "drive": 4.02, + "weapons": 1.12, + "shields": 1, "cargo": 1, - "drive": 10.62, - "shields": 6.6, - "weapons": 4.76 + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true }, - "cargo": "COL", - "load": 0.3, - "destination": 227, - "speed": 0, - "mass": 91.3, - "id": "5f89851c-6aac-5389-88e0-4bd965eebdb7", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "Sword1x24", - "tech": { + { + "name": "Atoms", + "drive": 3.2, + "weapons": 3.67, + "shields": 1, "cargo": 1, - "drive": 10.62, - "shields": 6.6, - "weapons": 4.76 + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true }, - "cargo": "COL", - "load": 0.3, - "destination": 227, - "speed": 0, - "mass": 90.6, - "id": "962e84a3-7147-5754-8ee4-dacc5fc0a033", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 12.35, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 296, - "speed": 0, - "mass": 1, - "id": "983fb832-b457-5c86-896e-65d0ba5c288e", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 10.62, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 108, - "speed": 0, - "mass": 1, - "id": "91f25671-93af-5bfb-af6c-6af2e25b93cf", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "Bow55", - "tech": { + { + "name": "Baravykai", + "drive": 5, + "weapons": 1, + "shields": 1, "cargo": 1, - "drive": 10.62, - "shields": 7.09, - "weapons": 4.76 + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true }, - "cargo": "COL", - "load": 0.3, - "destination": 332, - "speed": 0, - "mass": 98.64, - "id": "1210f8ec-7ca1-5c90-8ab2-8ed6555643f7", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "Catapult17x2.5", - "tech": { + { + "name": "Baton", + "drive": 6.8, + "weapons": 3.31, + "shields": 1.91, "cargo": 1, - "drive": 10.62, - "shields": 7.09, - "weapons": 4.76 + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true }, - "cargo": "COL", - "load": 0.5, - "destination": 649, - "speed": 0, - "mass": 86.3, - "id": "e98e75de-5217-5d02-8c68-8bcf4cbba97d", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "Bow49", - "tech": { + { + "name": "Believes", + "drive": 3.9, + "weapons": 1, + "shields": 1, "cargo": 1, - "drive": 10.62, - "shields": 7.09, - "weapons": 4.76 + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true }, - "cargo": "COL", - "load": 0.5, - "destination": 500, - "speed": 0, - "mass": 91.5, - "id": "b6dbc0b9-d524-59e8-a4ea-0bbde0d7956e", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "Sword1x24", - "tech": { - "cargo": 1, - "drive": 10.62, - "shields": 7.09, - "weapons": 4.76 - }, - "cargo": "COL", - "load": 0.5, - "destination": 500, - "speed": 0, - "mass": 90.8, - "id": "bc283cda-1d59-5a33-9518-53a2550b92ec", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 100, - "class": "PeaceShip", - "tech": { - "cargo": 0, + { + "name": "Boroda", "drive": 5.6, - "shields": 0, - "weapons": 0 + "weapons": 1.2, + "shields": 1.2, + "cargo": 1, + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true }, - "cargo": "-", - "load": 0, - "destination": 500, - "speed": 0, - "mass": 1, - "id": "bc7a17d7-938e-5032-bbdf-4777116f0abc", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 5.27, - "shields": 0, - "weapons": 0 + { + "name": "BrainLess", + "drive": 6.29, + "weapons": 4.13, + "shields": 1.45, + "cargo": 1, + "population": 0, + "industry": 0, + "planets": 0, + "relation": "Peace", + "votes": 0, + "extinct": true }, - "cargo": "-", - "load": 0, - "destination": 338, - "speed": 0, - "mass": 1, - "id": "3c4f0aca-5af9-55ed-88ef-022cd4d2c27a", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, + { + "name": "Cezar", + "drive": 3.2, + "weapons": 2.68, + "shields": 1, + "cargo": 1, + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true + }, + { + "name": "DevilMasters", + "drive": 5, + "weapons": 1, + "shields": 1, + "cargo": 1, + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true + }, + { + "name": "diminoid", + "drive": 5, + "weapons": 1, + "shields": 1, + "cargo": 1, + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true + }, + { + "name": "Fanatics", + "drive": 3.19, + "weapons": 1, + "shields": 1, + "cargo": 1, + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true + }, + { + "name": "FIREBART", + "drive": 3.9, + "weapons": 1.3, + "shields": 1.2, + "cargo": 1, + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true + }, + { + "name": "Fomi4", + "drive": 4.84, + "weapons": 1, + "shields": 1, + "cargo": 1, + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true + }, + { + "name": "FOX", + "drive": 3.92, + "weapons": 3.17, + "shields": 2.87, + "cargo": 3.37, + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true + }, + { + "name": "Fredoids", + "drive": 2, + "weapons": 1, + "shields": 1.57, + "cargo": 1.4, + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true + }, + { + "name": "garbage", + "drive": 1.4, + "weapons": 1, + "shields": 1, + "cargo": 1, + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true + }, + { + "name": "Ghost", + "drive": 3.8, + "weapons": 1, + "shields": 1, + "cargo": 1, + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true + }, + { + "name": "goodee", + "drive": 4.99, + "weapons": 1, + "shields": 1, + "cargo": 1, + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true + }, + { + "name": "Greedy", + "drive": 6.4, + "weapons": 2.45, + "shields": 3.05, + "cargo": 1.1, + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true + }, + { + "name": "Guardhogs", + "drive": 7.79, + "weapons": 1.3, + "shields": 1, + "cargo": 1, + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true + }, + { + "name": "Half-griffons", + "drive": 5, + "weapons": 1, + "shields": 1, + "cargo": 1, + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true + }, + { + "name": "Jedi", + "drive": 4.34, + "weapons": 1.52, + "shields": 1.6, + "cargo": 1.1, + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true + }, + { + "name": "Kellerants", + "drive": 4.25, + "weapons": 2.52, + "shields": 2.16, + "cargo": 1, + "population": 0, + "industry": 0, + "planets": 0, + "relation": "Peace", + "votes": 0, + "extinct": true + }, + { + "name": "killer", + "drive": 6.55, + "weapons": 3.65, + "shields": 1.35, + "cargo": 1, + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true + }, + { + "name": "KOBA", + "drive": 5, + "weapons": 1, + "shields": 1, + "cargo": 1, + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true + }, + { + "name": "KOPEW", + "drive": 4.2, + "weapons": 1.8, + "shields": 1.93, + "cargo": 1, + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true + }, + { + "name": "KRUTIE", + "drive": 2.9, + "weapons": 2.43, + "shields": 1, + "cargo": 1, + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true + }, + { + "name": "Lawyers", + "drive": 4.2, + "weapons": 1, + "shields": 7, + "cargo": 1, + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true + }, + { + "name": "Lox", + "drive": 5.6, + "weapons": 1, + "shields": 1, + "cargo": 1, + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true + }, + { + "name": "MiniDisc", + "drive": 5, + "weapons": 1, + "shields": 1, + "cargo": 1, + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true + }, + { + "name": "Morpheus", + "drive": 4.08, + "weapons": 1, + "shields": 1.68, + "cargo": 1, + "population": 0, + "industry": 0, + "planets": 0, + "relation": "Peace", + "votes": 0, + "extinct": true + }, + { + "name": "Nova", + "drive": 6.22, + "weapons": 3.82, + "shields": 3.82, + "cargo": 1.03, + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true + }, + { + "name": "OldRelikt", + "drive": 5, + "weapons": 1, + "shields": 1, + "cargo": 1, + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true + }, + { + "name": "Orda", + "drive": 6.62, + "weapons": 2.4, + "shields": 1.56, + "cargo": 1, + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true + }, + { + "name": "Paradox", + "drive": 5, + "weapons": 1, + "shields": 1, + "cargo": 1, + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true + }, + { + "name": "People", + "drive": 5, + "weapons": 1, + "shields": 1, + "cargo": 1, + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true + }, + { + "name": "Piligrims", + "drive": 7.1, + "weapons": 1, + "shields": 2.3, + "cargo": 1, + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true + }, + { + "name": "Protoss", + "drive": 3.3, + "weapons": 2.48, + "shields": 1, + "cargo": 1, + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true + }, + { + "name": "Relikt", + "drive": 4.99, + "weapons": 1, + "shields": 1, + "cargo": 1, + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true + }, + { + "name": "S-Lord", + "drive": 5, + "weapons": 1, + "shields": 1, + "cargo": 1, + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true + }, + { + "name": "Ser_Arthur_Empire", + "drive": 1.6, + "weapons": 1.01, + "shields": 1.61, + "cargo": 1, + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true + }, + { + "name": "ShivanDragon", + "drive": 7.01, + "weapons": 1.4, + "shields": 1, + "cargo": 1, + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true + }, + { + "name": "Smile", + "drive": 5, + "weapons": 1, + "shields": 1, + "cargo": 1, + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true + }, + { + "name": "Spag", "drive": 4.6, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 222, - "speed": 0, - "mass": 1, - "id": "958eadda-28f4-5966-9dc4-8ba2a99162e6", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 4.6, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 15, - "speed": 0, - "mass": 1, - "id": "57fc1395-9108-533d-a25a-13a001337d09", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 4.6, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 251, - "speed": 0, - "mass": 1, - "id": "ac28588d-07e3-5b90-8fb6-6401cf38c7db", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 4.6, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 72, - "speed": 0, - "mass": 1, - "id": "75cf0597-eb5d-5441-b83e-b75c41ba0aff", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 4.6, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 434, - "speed": 0, - "mass": 1, - "id": "c9757095-f5c1-502c-b842-1fcd1b93c226", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 4.6, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 340, - "speed": 0, - "mass": 1, - "id": "f4109d1a-9026-588f-b95e-d21b8b256130", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 4.6, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 305, - "speed": 0, - "mass": 1, - "id": "2a6941d9-e0c1-5c32-ab7d-a1f26fa74a59", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 4.6, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 409, - "speed": 0, - "mass": 1, - "id": "17f51955-c4f5-5fc6-9339-82e024fa835a", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 4.6, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 624, - "speed": 0, - "mass": 1, - "id": "532aee0b-6fb8-5c5c-ae3c-4f753e8aef20", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 57, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.11, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 500, - "speed": 0, - "mass": 1, - "id": "9ca8a80e-624f-54fa-91ab-44d2badb4bfa", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 96, - "class": "Buckler100", - "tech": { - "cargo": 0, - "drive": 11.19, - "shields": 4.84, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 227, - "speed": 0, - "mass": 2, - "id": "465703ad-7f21-520d-a3f6-4e49a72bb269", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 10.62, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 116, - "speed": 0, - "mass": 1, - "id": "3abc074b-4046-580b-8c72-197e6fa42e23", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 10.62, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 38, - "speed": 0, - "mass": 1, - "id": "49e9480a-6cfe-5ff5-99e4-8876bbec6882", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 11.19, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 438, - "speed": 0, - "mass": 1, - "id": "70381094-4273-5ec5-9d97-3a2daead4864", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 11.19, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 2, - "speed": 0, - "mass": 1, - "id": "6ee5da70-4255-5d2c-8ee2-f488a0118b96", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 11.19, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 421, - "speed": 0, - "mass": 1, - "id": "ac5cc7e9-4680-5078-80fd-edd56af41a11", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 11.19, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 569, - "speed": 0, - "mass": 1, - "id": "3fb60e08-66f1-5e2f-91e1-7a387f0f0c1d", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 11.19, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 436, - "speed": 0, - "mass": 1, - "id": "1258fd4e-661b-5c85-a2e7-f922a1aba59e", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "Furgon10", - "tech": { + "weapons": 1, + "shields": 1, "cargo": 1, - "drive": 10.62, - "shields": 0, - "weapons": 0 + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true }, - "cargo": "-", - "load": 0, - "destination": 523, - "speed": 0, - "mass": 24.75, - "id": "84775467-eac9-58b8-8466-88eb48cbba8c", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 2, - "class": "Furgon12", - "tech": { + { + "name": "SystemError", + "drive": 5.6, + "weapons": 1, + "shields": 1, "cargo": 1, - "drive": 8.56, - "shields": 0, - "weapons": 0 + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true }, - "cargo": "-", - "load": 0, - "destination": 495, - "speed": 0, - "mass": 24.72, - "id": "cbcb1b66-59a9-59ca-b2b8-7abf154dc6a6", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "Furgon10c", - "tech": { + { + "name": "UkrFerry", + "drive": 4.46, + "weapons": 1.44, + "shields": 1.44, "cargo": 1, - "drive": 7.96, - "shields": 0, - "weapons": 0 + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true }, - "cargo": "-", - "load": 0, - "destination": 495, - "origin": 502, - "range": 80.13, - "speed": 0, - "mass": 16.5, - "id": "ccd6f110-97a5-5081-a007-38f8e1387de7", - "state": "In_Space", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 11.19, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 225, - "speed": 0, - "mass": 1, - "id": "10f8b324-13a3-5912-a887-64d0e503c591", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 11.19, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 344, - "speed": 0, - "mass": 1, - "id": "6e6a5177-71de-5f7d-834d-4fe153bd0d73", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 11.19, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 127, - "speed": 0, - "mass": 1, - "id": "7d90339f-488f-58d8-a118-737dfe82eb0f", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "SpetsNaz", - "tech": { + { + "name": "Untochebal", + "drive": 4.88, + "weapons": 1, + "shields": 1, "cargo": 1, - "drive": 11.19, - "shields": 7.09, - "weapons": 6.11 + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true }, - "cargo": "COL", - "load": 1.05, - "destination": 632, - "speed": 0, - "mass": 8.15, - "id": "7d56f165-c2aa-51fa-84d3-239dfa277f79", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "SpetsNaz", - "tech": { + { + "name": "VlaSvr", + "drive": 1.6, + "weapons": 1, + "shields": 1, "cargo": 1, - "drive": 11.19, - "shields": 7.09, - "weapons": 6.11 + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true }, - "cargo": "COL", - "load": 0.1, - "destination": 20, - "speed": 0, - "mass": 7.2, - "id": "b66af58a-7039-57dd-96e6-f268d81dc80a", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "SpetsNaz", - "tech": { + { + "name": "WinDemons", + "drive": 5, + "weapons": 1, + "shields": 1, "cargo": 1, - "drive": 11.19, - "shields": 7.09, - "weapons": 6.11 - }, - "cargo": "COL", - "load": 0.1, - "destination": 134, - "speed": 0, - "mass": 7.2, - "id": "2aec44f4-b3fc-53f7-af01-06565eda6fa7", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "SpetsNaz", - "tech": { - "cargo": 1, - "drive": 11.19, - "shields": 7.09, - "weapons": 6.11 - }, - "cargo": "COL", - "load": 0.1, - "destination": 506, - "speed": 0, - "mass": 7.2, - "id": "e204b22e-3112-59d6-8571-2aecf3a0be4e", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "SpetsNaz", - "tech": { - "cargo": 1, - "drive": 11.19, - "shields": 7.09, - "weapons": 6.11 - }, - "cargo": "COL", - "load": 0.1, - "destination": 46, - "speed": 0, - "mass": 7.2, - "id": "4c565d59-f50a-5509-8765-bcaf42f056ec", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "SpetsNaz", - "tech": { - "cargo": 1, - "drive": 11.19, - "shields": 7.09, - "weapons": 6.11 - }, - "cargo": "COL", - "load": 0.71, - "destination": 343, - "speed": 0, - "mass": 7.81, - "id": "51288ce4-b69d-561a-a4a0-a4b408831118", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "Drone", - "tech": { - "cargo": 0, - "drive": 10.62, - "shields": 6.6, - "weapons": 4.76 - }, - "cargo": "-", - "load": 0, - "destination": 506, - "speed": 0, - "mass": 7.07, - "id": "f3aed80b-f85f-5cd1-b6c5-e5e99c03918d", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "Drone", - "tech": { - "cargo": 0, - "drive": 10.62, - "shields": 6.6, - "weapons": 4.76 - }, - "cargo": "-", - "load": 0, - "destination": 489, - "speed": 0, - "mass": 7.07, - "id": "e59329f5-4a55-59af-b48e-688d7dbb94b1", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "Drone", - "tech": { - "cargo": 0, - "drive": 10.62, - "shields": 6.6, - "weapons": 4.76 - }, - "cargo": "-", - "load": 0, - "destination": 525, - "speed": 0, - "mass": 7.07, - "id": "2e57764e-c658-562c-92da-299af97960d7", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "Furgon10b", - "tech": { - "cargo": 1, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "COL", - "load": 8.95, - "destination": 669, - "speed": 0, - "mass": 33.7, - "id": "8a4edf71-a9c0-5c2d-ab80-d7f7842e3fd2", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 100, - "class": "Buckler100", - "tech": { - "cargo": 0, - "drive": 11.19, - "shields": 5.65, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 403, - "speed": 0, - "mass": 2, - "id": "d0f02b60-afe1-5ad0-95f7-416c28486d19", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 99, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.1, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 649, - "speed": 0, - "mass": 1, - "id": "61dd202c-344a-595a-afcb-44a33ed76787", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "Drone", - "tech": { - "cargo": 0, - "drive": 10.62, - "shields": 6.6, - "weapons": 4.76 - }, - "cargo": "-", - "load": 0, - "destination": 500, - "speed": 0, - "mass": 7.07, - "id": "291c8956-14ab-5283-936c-08f84bf97a80", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "Drone", - "tech": { - "cargo": 0, - "drive": 10.62, - "shields": 6.6, - "weapons": 4.76 - }, - "cargo": "-", - "load": 0, - "destination": 403, - "speed": 0, - "mass": 7.07, - "id": "d72f12bc-7a7f-5dd0-bcab-0881081c1806", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 10.62, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 489, - "speed": 0, - "mass": 1, - "id": "13a322b6-93d4-53c8-ab6b-02b6bafc575b", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 8.71, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 500, - "speed": 0, - "mass": 1, - "id": "d39b1831-22e6-5131-bd25-4690f4277a23", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 8.71, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 646, - "speed": 0, - "mass": 1, - "id": "f96cd083-0e78-56e2-a2fd-79ca77ea635f", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 8.71, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 694, - "speed": 0, - "mass": 1, - "id": "3f4fbdbb-63e1-5055-977e-2921093fddc3", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 8.71, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 275, - "speed": 0, - "mass": 1, - "id": "33c431fa-5878-5fc0-9e3d-0ba3cd7c1b09", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 8.71, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 74, - "speed": 0, - "mass": 1, - "id": "5c133747-4900-5436-94a8-64cd06190a8c", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 8.71, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 661, - "speed": 0, - "mass": 1, - "id": "3a70f27e-4c13-5643-ba15-57cc89684d2a", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 8.71, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 201, - "speed": 0, - "mass": 1, - "id": "50361e29-9d6c-5d28-be0b-00c4d82b966f", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 8.71, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 29, - "speed": 0, - "mass": 1, - "id": "bc9e5a72-4f34-5c4f-910a-9b1e52393dd4", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 8.71, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 377, - "speed": 0, - "mass": 1, - "id": "35014c45-88d1-57f9-b40c-8f79519f8dff", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 8.71, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 665, - "speed": 0, - "mass": 1, - "id": "c61ba59f-e2ba-5c1b-bfe4-92ea3cdd00cd", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 8.71, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 27, - "speed": 0, - "mass": 1, - "id": "2328307c-3792-53cf-a84d-f1294cab0189", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 8.71, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 32, - "speed": 0, - "mass": 1, - "id": "cc45c6bc-b2ef-5ec1-be90-c3e0586ca304", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "CombatFlame1x30", - "tech": { - "cargo": 1, - "drive": 13.25, - "shields": 7.09, - "weapons": 6.11 - }, - "cargo": "COL", - "load": 1.05, - "destination": 669, - "speed": 0, - "mass": 100.06, - "id": "91090a79-7fbc-5fd9-ae7c-3550391f2aa5", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 43, - "class": "IceWall100", - "tech": { - "cargo": 0, - "drive": 13.25, - "shields": 7.09, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 669, - "speed": 0, - "mass": 2, - "id": "9ae98c52-5324-56d3-ac98-65995c1c2e0f", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "Paravozik20", - "tech": { - "cargo": 1, - "drive": 13.25, - "shields": 7.09, - "weapons": 6.11 - }, - "cargo": "COL", - "load": 20.02, - "destination": 669, - "speed": 0, - "mass": 69.52, - "id": "58db4d5f-ad25-5098-99bf-466bc4dec96c", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "FireWay100x1", - "tech": { - "cargo": 1, - "drive": 13.25, - "shields": 7.09, - "weapons": 6.11 - }, - "cargo": "COL", - "load": 1.05, - "destination": 461, - "speed": 0, - "mass": 158.01, - "id": "a1cecd6f-27a1-51b0-9d7f-28803ac6ae2d", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 13.25, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 97, - "speed": 0, - "mass": 1, - "id": "d4d24c73-a2d9-53bc-a6bf-1c89261084e6", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "ArrowsOfFire", - "tech": { - "cargo": 1, - "drive": 13.25, - "shields": 7.09, - "weapons": 6.11 - }, - "cargo": "COL", - "load": 1.05, - "destination": 461, - "speed": 0, - "mass": 94.08, - "id": "9a726455-7d55-5a64-a229-38c8c957b513", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 95, - "class": "IceWall101", - "tech": { - "cargo": 0, - "drive": 13.25, - "shields": 7.09, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 461, - "speed": 0, - "mass": 2.02, - "id": "c3865190-4716-5e3b-8704-c828d90f43b3", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 48, - "class": "IceWall103", - "tech": { - "cargo": 0, - "drive": 13.25, - "shields": 7.09, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 461, - "speed": 0, - "mass": 2.06, - "id": "6ee84555-12e2-578a-abd9-54c4d0276589", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 13.25, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 449, - "speed": 0, - "mass": 1, - "id": "350d3d10-78b4-5e79-a1d8-ac9838e56251", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "Titanik100", - "tech": { - "cargo": 1, - "drive": 13.25, - "shields": 7.09, - "weapons": 6.11 - }, - "cargo": "COL", - "load": 100.02, - "destination": 685, - "origin": 495, - "range": 95.14, - "speed": 0, - "mass": 226.18, - "id": "cd9a9406-459f-5bc2-a895-0483c5917c27", - "state": "In_Space", - "fleet": null - }, - { - "number": 1, - "class": "FireSnow57x1", - "tech": { - "cargo": 1, - "drive": 13.25, - "shields": 7.09, - "weapons": 6.11 - }, - "cargo": "COL", - "load": 1.05, - "destination": 461, - "speed": 0, - "mass": 100.6, - "id": "5d5f54c1-993b-52fe-9187-104198ef50a9", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 13.25, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 682, - "speed": 0, - "mass": 1, - "id": "79e1f511-7254-5072-a4bd-2256e8f6eff7", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "FireStorm20x5", - "tech": { - "cargo": 1, - "drive": 13.25, - "shields": 7.09, - "weapons": 6.11 - }, - "cargo": "COL", - "load": 1.05, - "destination": 461, - "speed": 0, - "mass": 165.77, - "id": "adfd2df2-fe26-5811-8a48-0b7b0cf4760a", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 13.25, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 685, - "speed": 0, - "mass": 1, - "id": "6b736c27-0a5e-5cf4-94ee-c81a9e43c434", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 50, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.1, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 403, - "speed": 0, - "mass": 1, - "id": "df096589-4b23-5156-82c5-27d5bfd50ce5", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 446, - "speed": 0, - "mass": 1, - "id": "38778841-5b4d-51a4-9765-2a42f2a6c61a", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 535, - "speed": 0, - "mass": 1, - "id": "169e12ff-a2b1-5010-bd05-a70049b5d284", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 173, - "speed": 0, - "mass": 1, - "id": "509fcd47-3d3a-5bc3-901d-ac3869d056da", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 641, - "speed": 0, - "mass": 1, - "id": "769d8820-2baa-5cc1-a2d1-decaac6e6e39", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 528, - "speed": 0, - "mass": 1, - "id": "aff5ca15-82a3-5424-88bd-030dcb6d1130", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 698, - "speed": 0, - "mass": 1, - "id": "7026f391-018a-5991-8e99-70bfcb261ac9", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 538, - "speed": 0, - "mass": 1, - "id": "cf41bf43-c875-5cba-8fba-f1fa3067870e", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 73, - "speed": 0, - "mass": 1, - "id": "fc8b445f-939b-5961-9869-89a010c9b9fa", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 261, - "speed": 0, - "mass": 1, - "id": "49233dcb-32e6-5e8e-b986-373658c35306", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 26, - "speed": 0, - "mass": 1, - "id": "8a3eef0f-26b6-5ce9-9c8b-a8b89325700d", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 295, - "speed": 0, - "mass": 1, - "id": "4d28e2de-c5b2-589c-be0d-b6e7ca70f231", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 599, - "speed": 0, - "mass": 1, - "id": "b8b47be5-4b11-51aa-baa2-5483c8f9975a", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 593, - "speed": 0, - "mass": 1, - "id": "374545f0-4bcf-5620-9889-c74a29458daf", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 358, - "speed": 0, - "mass": 1, - "id": "46cabe0d-cb7d-560b-840f-005445357416", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 376, - "speed": 0, - "mass": 1, - "id": "7d677af7-fb32-5fbd-ac9c-94348b1027e5", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 471, - "speed": 0, - "mass": 1, - "id": "ebae3df4-1e9b-5de6-9db8-a412c82dfaa4", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 378, - "speed": 0, - "mass": 1, - "id": "28f206c8-9ea1-57d9-9492-7076d9970d7c", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 664, - "speed": 0, - "mass": 1, - "id": "2e50b560-1497-599e-8360-c165e9867fd2", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.1, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 63, - "origin": 535, - "range": 7.01, - "speed": 0, - "mass": 1, - "id": "52d1646e-a78b-52e3-8e7e-9c452545ee99", - "state": "In_Space", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.1, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 511, - "origin": 535, - "range": 9.92, - "speed": 0, - "mass": 1, - "id": "6d9628be-7884-5da6-ae10-064423bc9005", - "state": "In_Space", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.1, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 50, - "origin": 535, - "range": 10.57, - "speed": 0, - "mass": 1, - "id": "65e88f1f-caf2-57ba-b412-da5def6e0b45", - "state": "In_Space", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.1, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 410, - "speed": 0, - "mass": 1, - "id": "9960a580-efc5-5ee5-a2f7-18f94c2281ee", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.1, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 65, - "origin": 535, - "range": 4.83, - "speed": 0, - "mass": 1, - "id": "2e0cd1ed-2579-54f4-9564-581528b5c474", - "state": "In_Space", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.1, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 68, - "origin": 535, - "range": 11.57, - "speed": 0, - "mass": 1, - "id": "53550698-fc7e-55b3-a36b-77a912116143", - "state": "In_Space", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.1, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 362, - "origin": 535, - "range": 9.48, - "speed": 0, - "mass": 1, - "id": "48343ed7-3ff2-5680-a59d-e5f5bb7a1eeb", - "state": "In_Space", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.1, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 242, - "origin": 535, - "range": 9.85, - "speed": 0, - "mass": 1, - "id": "aa9fa0a4-25da-557d-8c58-0f37de7a67c4", - "state": "In_Space", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.1, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 160, - "origin": 535, - "range": 9.99, - "speed": 0, - "mass": 1, - "id": "01a3fae0-6e6e-5d24-a2c6-d7b5f34fefde", - "state": "In_Space", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.1, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 380, - "origin": 535, - "range": 76.76, - "speed": 0, - "mass": 1, - "id": "67e328f5-f066-51b1-9bf1-d941b9f8d170", - "state": "In_Space", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.1, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 527, - "origin": 535, - "range": 106.34, - "speed": 0, - "mass": 1, - "id": "78077809-c920-5502-b23c-e3e75e6e4735", - "state": "In_Space", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.1, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 346, - "origin": 535, - "range": 82.19, - "speed": 0, - "mass": 1, - "id": "a6ad6c1c-da81-52d3-aeb2-b6be314867b1", - "state": "In_Space", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.1, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 478, - "origin": 535, - "range": 138.68, - "speed": 0, - "mass": 1, - "id": "aaac542c-ccca-5ed1-b6c4-d4a86462b9be", - "state": "In_Space", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.1, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 689, - "origin": 535, - "range": 148.21, - "speed": 0, - "mass": 1, - "id": "62ad9d00-ccde-5c0a-8e00-28d77f4f1382", - "state": "In_Space", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.1, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 494, - "origin": 535, - "range": 127.47, - "speed": 0, - "mass": 1, - "id": "4d8191b7-6ddc-5e23-9224-9c1ac15e7443", - "state": "In_Space", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.1, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 164, - "origin": 535, - "range": 134.93, - "speed": 0, - "mass": 1, - "id": "49b975eb-908c-59ef-90ba-d889adf1b758", - "state": "In_Space", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.1, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 221, - "origin": 535, - "range": 56.65, - "speed": 0, - "mass": 1, - "id": "f47cb79d-a1c7-5283-b96a-35e33475879a", - "state": "In_Space", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.1, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 142, - "origin": 535, - "range": 106.82, - "speed": 0, - "mass": 1, - "id": "9827abd5-0454-5632-b366-1c7c22e55601", - "state": "In_Space", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.1, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 312, - "origin": 535, - "range": 176.96, - "speed": 0, - "mass": 1, - "id": "b04c507a-e2b4-5887-879c-305fe8e91e3b", - "state": "In_Space", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.1, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 209, - "origin": 535, - "range": 180.71, - "speed": 0, - "mass": 1, - "id": "e0e00db1-29e4-515f-821a-89e1fe1b70b0", - "state": "In_Space", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.1, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 594, - "origin": 535, - "range": 138.38, - "speed": 0, - "mass": 1, - "id": "0fad5faf-9c6d-5265-84e2-d5d649f2eced", - "state": "In_Space", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.1, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 78, - "origin": 535, - "range": 165.96, - "speed": 0, - "mass": 1, - "id": "016c0596-ebd8-57be-9b6a-fa72595a2010", - "state": "In_Space", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.1, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 623, - "origin": 535, - "range": 151.98, - "speed": 0, - "mass": 1, - "id": "07919134-41a3-5a58-a1f9-98e40424ba7a", - "state": "In_Space", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.1, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 228, - "origin": 535, - "range": 79.27, - "speed": 0, - "mass": 1, - "id": "164e3a90-74ef-5cbd-b5bb-f78c79b2e9ae", - "state": "In_Space", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.1, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 477, - "origin": 535, - "range": 112.45, - "speed": 0, - "mass": 1, - "id": "13f3eede-a2a6-5924-b21a-0a22733ba83e", - "state": "In_Space", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.1, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 53, - "origin": 535, - "range": 163.8, - "speed": 0, - "mass": 1, - "id": "a5a90c23-0feb-5895-8ce3-e87176312a04", - "state": "In_Space", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.1, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 683, - "origin": 535, - "range": 181.65, - "speed": 0, - "mass": 1, - "id": "b4208d2a-8959-588a-80f2-de007751164d", - "state": "In_Space", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.1, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 143, - "origin": 535, - "range": 77.54, - "speed": 0, - "mass": 1, - "id": "dd4e8b6f-d2a7-5ba5-a348-2b8ece7a78dd", - "state": "In_Space", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.1, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 269, - "origin": 535, - "range": 66.8, - "speed": 0, - "mass": 1, - "id": "acb18d01-8671-5456-9e2b-4b7f67a9b20f", - "state": "In_Space", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.1, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 611, - "origin": 535, - "range": 85.39, - "speed": 0, - "mass": 1, - "id": "2e1bb879-b5c2-5bc5-ae75-f5dc8371840e", - "state": "In_Space", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.1, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 510, - "origin": 535, - "range": 98.75, - "speed": 0, - "mass": 1, - "id": "d7e9985e-3983-5a86-abf6-7657721f9750", - "state": "In_Space", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.1, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 516, - "origin": 535, - "range": 30.77, - "speed": 0, - "mass": 1, - "id": "c000a716-3604-52ea-ac35-139e6e21c04b", - "state": "In_Space", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.1, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 359, - "origin": 535, - "range": 33.14, - "speed": 0, - "mass": 1, - "id": "25daa7d2-1782-5fe6-a90f-ef0b2a04a33a", - "state": "In_Space", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.1, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 195, - "origin": 535, - "range": 19.25, - "speed": 0, - "mass": 1, - "id": "708ff4b5-27f4-5737-9362-6546c4959498", - "state": "In_Space", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.1, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 44, - "origin": 535, - "range": 26.12, - "speed": 0, - "mass": 1, - "id": "47486a43-b0c1-5f70-8386-ff21e55540d9", - "state": "In_Space", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.1, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 208, - "origin": 535, - "range": 77.9, - "speed": 0, - "mass": 1, - "id": "e3e4d91d-ce2b-5ff3-8be3-21a1b5b9defd", - "state": "In_Space", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.1, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 75, - "origin": 535, - "range": 79.76, - "speed": 0, - "mass": 1, - "id": "1db9842b-4b0c-5d31-bcd6-32445a88e738", - "state": "In_Space", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.1, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 592, - "origin": 535, - "range": 82.09, - "speed": 0, - "mass": 1, - "id": "e737e25b-773c-5423-8fec-906f61690042", - "state": "In_Space", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.1, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 99, - "origin": 535, - "range": 81.16, - "speed": 0, - "mass": 1, - "id": "72ee480b-c932-59df-9ec8-cbb4ad2f6a65", - "state": "In_Space", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.1, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 470, - "origin": 535, - "range": 36.89, - "speed": 0, - "mass": 1, - "id": "e798af87-055f-5745-81e3-2788d6ac499c", - "state": "In_Space", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.1, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 671, - "origin": 535, - "range": 38.29, - "speed": 0, - "mass": 1, - "id": "bcbafa36-3fdb-54e0-96c6-1e59d42938dd", - "state": "In_Space", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.1, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 182, - "origin": 535, - "range": 74.9, - "speed": 0, - "mass": 1, - "id": "10209860-d32f-56f7-833b-20391a0299ee", - "state": "In_Space", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.1, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 630, - "origin": 535, - "range": 85.16, - "speed": 0, - "mass": 1, - "id": "411af855-85bb-59ae-ae91-682bac107273", - "state": "In_Space", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.1, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 342, - "origin": 535, - "range": 56.07, - "speed": 0, - "mass": 1, - "id": "77da9a3b-afa2-5f13-81bb-2698b653e577", - "state": "In_Space", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.1, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 308, - "origin": 535, - "range": 58.07, - "speed": 0, - "mass": 1, - "id": "7f8045a1-1a35-5eb1-b2ff-58d7cb749ad1", - "state": "In_Space", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.1, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 216, - "origin": 535, - "range": 19.28, - "speed": 0, - "mass": 1, - "id": "8745bcb9-5738-51ed-9392-bb2fbf41afb3", - "state": "In_Space", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.1, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 570, - "origin": 535, - "range": 75.66, - "speed": 0, - "mass": 1, - "id": "514c69ff-50c6-599f-9992-18ebd055cd8c", - "state": "In_Space", - "fleet": null - }, - { - "number": 1, - "class": "Stop", - "tech": { - "cargo": 0, - "drive": 0, - "shields": 1.11, - "weapons": 1.67 - }, - "cargo": "-", - "load": 0, - "destination": 523, - "speed": 0, - "mass": 2.26, - "id": "62289ba3-3ed7-5038-9445-4bcb48cdc74b", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "Nonstop", - "tech": { - "cargo": 0, + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true + } + ], + "localScience": [ + { + "name": "Temp", + "drive": 0.3, + "weapons": 0.7, + "shields": 0, + "cargo": 0 + } + ], + "otherScience": [ + { + "race": "Zodiac", + "name": "WS_45x55", "drive": 0, + "weapons": 0.45, + "shields": 0.55, + "cargo": 0 + } + ], + "localShipClass": [ + { + "name": "Frontier", + "drive": 11.37, + "armament": 0, + "weapons": 0, "shields": 0, - "weapons": 2.57 - }, - "cargo": "-", - "load": 0, - "destination": 447, - "speed": 0, - "mass": 1, - "id": "af00a2ad-a24b-5401-a91a-b9c6a84c22a2", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "Nonstop", - "tech": { - "cargo": 0, - "drive": 0, - "shields": 0, - "weapons": 5.58 - }, - "cargo": "-", - "load": 0, - "destination": 176, - "speed": 0, - "mass": 1, - "id": "5ddf5b06-d550-5df7-a0ba-3a5d9f44b9a9", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "CombatFlame1x30", - "tech": { "cargo": 1, - "drive": 13.25, - "shields": 7.09, - "weapons": 6.11 + "mass": 12.37 }, - "cargo": "-", - "load": 0, - "destination": 17, - "speed": 0, - "mass": 99.01, - "id": "a8adb08d-5cb8-53a1-b44e-d98ddc8d5e82", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "KtoTronet-Zakopayu", - "tech": { - "cargo": 1, - "drive": 13.25, + { + "name": "Furgon5", + "drive": 8.22, + "armament": 0, + "weapons": 0, "shields": 0, - "weapons": 0 + "cargo": 4.15, + "mass": 12.37 }, - "cargo": "-", - "load": 0, - "destination": 38, - "speed": 0, - "mass": 86.39, - "id": "0f998df9-a71d-58fe-a417-4fc5ae5bdda1", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 24, - "class": "IceWall103", - "tech": { - "cargo": 0, - "drive": 13.25, - "shields": 7.09, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 87, - "speed": 0, - "mass": 2.06, - "id": "24d0b57c-eef0-54f8-804c-f6cf2158159e", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "FireWay100x1", - "tech": { - "cargo": 1, - "drive": 13.25, - "shields": 7.09, - "weapons": 6.11 - }, - "cargo": "-", - "load": 0, - "destination": 114, - "speed": 0, - "mass": 156.96, - "id": "c543c1e7-bf75-5166-936d-85e205f40e08", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 13.25, + { + "name": "Furgon10", + "drive": 17.14, + "armament": 0, + "weapons": 0, "shields": 0, - "weapons": 0 + "cargo": 7.61, + "mass": 24.75 }, - "cargo": "-", - "load": 0, - "destination": 176, - "speed": 0, - "mass": 1, - "id": "30266a09-a9a6-52a4-a74d-5ae9d025cf37", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 13.25, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 223, - "speed": 0, - "mass": 1, - "id": "c52da430-b8d5-58ca-a46a-45e5229db11b", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "ArrowsOfFire", - "tech": { - "cargo": 1, - "drive": 13.25, - "shields": 7.09, - "weapons": 6.11 - }, - "cargo": "-", - "load": 0, - "destination": 282, - "speed": 0, - "mass": 93.03, - "id": "bfd105c5-999c-5726-bf24-34e392780b82", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 45, - "class": "IceWall101", - "tech": { - "cargo": 0, - "drive": 13.25, - "shields": 7.09, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 296, - "speed": 0, - "mass": 2.02, - "id": "f92f17a9-42cc-5197-9c55-74a0791389a5", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 24, - "class": "IceWall103", - "tech": { - "cargo": 0, - "drive": 13.25, - "shields": 7.09, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 338, - "speed": 0, - "mass": 2.06, - "id": "deafac4a-ce58-5420-a78f-5a172fbd0cee", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "Nonstop", - "tech": { - "cargo": 0, + { + "name": "Nonstop", "drive": 0, + "armament": 1, + "weapons": 1, "shields": 0, - "weapons": 6.11 - }, - "cargo": "-", - "load": 0, - "destination": 446, - "speed": 0, - "mass": 1, - "id": "5deafca8-eb6b-5931-be45-05ded30e8f98", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { "cargo": 0, - "drive": 13.25, + "mass": 1 + }, + { + "name": "Drone", + "drive": 2.5, + "armament": 1, + "weapons": 2.08, + "shields": 2.49, + "cargo": 0, + "mass": 7.07 + }, + { + "name": "PeaceShip", + "drive": 1, + "armament": 0, + "weapons": 0, "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 447, - "speed": 0, - "mass": 1, - "id": "d4d73402-bd32-5d01-bfa5-9f41ede0ba3a", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 63, - "class": "IceWall100", - "tech": { "cargo": 0, - "drive": 13.25, - "shields": 7.09, - "weapons": 0 + "mass": 1 }, - "cargo": "-", - "load": 0, - "destination": 495, - "speed": 0, - "mass": 2, - "id": "c889d72f-ad40-56d8-9907-a789a95d0e4a", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "Nonstop", - "tech": { - "cargo": 0, - "drive": 0, - "shields": 0, - "weapons": 6.11 - }, - "cargo": "-", - "load": 0, - "destination": 507, - "speed": 0, - "mass": 1, - "id": "5353f355-7b04-5b0c-b788-e3a95b616dc5", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 24, - "class": "IceWall103", - "tech": { - "cargo": 0, - "drive": 13.25, - "shields": 7.09, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 523, - "speed": 0, - "mass": 2.06, - "id": "97c4d8da-fba5-5a50-a824-dc266c95d09b", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "Nonstop", - "tech": { - "cargo": 0, - "drive": 0, - "shields": 0, - "weapons": 6.11 - }, - "cargo": "-", - "load": 0, - "destination": 532, - "speed": 0, - "mass": 1, - "id": "5f57860f-c7bb-5814-8c72-1b50d7d29aa8", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "Nonstop", - "tech": { - "cargo": 0, - "drive": 0, - "shields": 0, - "weapons": 6.11 - }, - "cargo": "-", - "load": 0, - "destination": 535, - "speed": 0, - "mass": 1, - "id": "de535a00-ff5c-50ce-ac08-2b59b616ae79", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "FireSnow57x1", - "tech": { + { + "name": "Bow105", + "drive": 74.77, + "armament": 105, + "weapons": 1, + "shields": 19.72, "cargo": 1, - "drive": 13.25, - "shields": 7.09, - "weapons": 6.11 + "mass": 148.49 }, - "cargo": "-", - "load": 0, - "destination": 572, - "speed": 0, - "mass": 99.55, - "id": "205440a2-16bc-5bea-8b11-87aac240a7be", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 35, - "class": "IceWall102", - "tech": { - "cargo": 0, - "drive": 13.25, - "shields": 7.09, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 622, - "speed": 0, - "mass": 2.04, - "id": "63f96192-6da0-5893-9990-1f489505b3ed", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 13.25, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 636, - "speed": 0, - "mass": 1, - "id": "f656f713-f27d-5dee-b4a8-5410045e105a", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "Nonstop", - "tech": { - "cargo": 0, - "drive": 0, - "shields": 0, - "weapons": 6.11 - }, - "cargo": "-", - "load": 0, - "destination": 669, - "speed": 0, - "mass": 1, - "id": "3993de6e-18b2-503a-a52d-3338c79e5026", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "FireStorm20x5", - "tech": { + { + "name": "CrossBow52x2", + "drive": 74.77, + "armament": 52, + "weapons": 2, + "shields": 19.72, "cargo": 1, - "drive": 13.25, - "shields": 7.09, - "weapons": 6.11 + "mass": 148.49 }, - "cargo": "-", - "load": 0, - "destination": 679, - "speed": 0, - "mass": 164.72, - "id": "796fa3f5-b229-5fa8-8389-757e90c7c437", - "state": "In_Orbit", - "fleet": null + { + "name": "Catapult5x25", + "drive": 99.53, + "armament": 5, + "weapons": 25.3, + "shields": 21.57, + "cargo": 1, + "mass": 198 + }, + { + "name": "Tormoz49", + "drive": 26.63, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 22.87, + "mass": 49.5 + }, + { + "name": "Catapult8x7", + "drive": 49.5, + "armament": 8, + "weapons": 7, + "shields": 18, + "cargo": 0, + "mass": 99 + }, + { + "name": "Invalid", + "drive": 25, + "armament": 1, + "weapons": 17, + "shields": 7.99, + "cargo": 0, + "mass": 49.99 + }, + { + "name": "Furgon10b", + "drive": 17.42, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 7.33, + "mass": 24.75 + }, + { + "name": "Stop", + "drive": 0, + "armament": 1, + "weapons": 1, + "shields": 1.26, + "cargo": 0, + "mass": 2.26 + }, + { + "name": "Buckler100", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 1, + "cargo": 0, + "mass": 2 + }, + { + "name": "Furgon20", + "drive": 35.94, + "armament": 1, + "weapons": 1, + "shields": 0, + "cargo": 12.36, + "mass": 49.3 + }, + { + "name": "Furgon100", + "drive": 63, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 35.83, + "mass": 98.83 + }, + { + "name": "Bow55", + "drive": 49.17, + "armament": 55, + "weapons": 1, + "shields": 20.17, + "cargo": 1, + "mass": 98.34 + }, + { + "name": "Sword1x24", + "drive": 45.16, + "armament": 1, + "weapons": 24.67, + "shields": 19.47, + "cargo": 1, + "mass": 90.3 + }, + { + "name": "Catapult17x2.5", + "drive": 42.9, + "armament": 17, + "weapons": 2.53, + "shields": 19.13, + "cargo": 1, + "mass": 85.8 + }, + { + "name": "Bow49", + "drive": 45.51, + "armament": 49, + "weapons": 1, + "shields": 19.49, + "cargo": 1, + "mass": 91 + }, + { + "name": "SpetsNaz", + "drive": 3.3, + "armament": 1, + "weapons": 1, + "shields": 1.8, + "cargo": 1, + "mass": 7.1 + }, + { + "name": "Furgon12", + "drive": 16.28, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 8.44, + "mass": 24.72 + }, + { + "name": "Furgon10c", + "drive": 9.18, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 7.32, + "mass": 16.5 + }, + { + "name": "Paravozik20", + "drive": 34.24, + "armament": 1, + "weapons": 1, + "shields": 1.89, + "cargo": 12.37, + "mass": 49.5 + }, + { + "name": "Titanik100", + "drive": 81.93, + "armament": 1, + "weapons": 3, + "shields": 5.4, + "cargo": 35.83, + "mass": 126.16 + }, + { + "name": "FireWay100x1", + "drive": 78.5, + "armament": 100, + "weapons": 1, + "shields": 26.96, + "cargo": 1, + "mass": 156.96 + }, + { + "name": "FireStorm20x5", + "drive": 82.38, + "armament": 20, + "weapons": 5, + "shields": 28.84, + "cargo": 1, + "mass": 164.72 + }, + { + "name": "CombatFlame1x30", + "drive": 49.51, + "armament": 1, + "weapons": 29.7, + "shields": 18.8, + "cargo": 1, + "mass": 99.01 + }, + { + "name": "FireSnow57x1", + "drive": 49.79, + "armament": 57, + "weapons": 1, + "shields": 19.76, + "cargo": 1, + "mass": 99.55 + }, + { + "name": "IceWall103", + "drive": 1.03, + "armament": 0, + "weapons": 0, + "shields": 1.03, + "cargo": 0, + "mass": 2.06 + }, + { + "name": "ArrowsOfFire", + "drive": 46.52, + "armament": 6, + "weapons": 7.71, + "shields": 18.52, + "cargo": 1, + "mass": 93.03 + }, + { + "name": "IceWall100", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 1, + "cargo": 0, + "mass": 2 + }, + { + "name": "IceWall101", + "drive": 1.01, + "armament": 0, + "weapons": 0, + "shields": 1.01, + "cargo": 0, + "mass": 2.02 + }, + { + "name": "KtoTronet-Zakopayu", + "drive": 50.56, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 35.83, + "mass": 86.39 + }, + { + "name": "IceWall102", + "drive": 1.02, + "armament": 0, + "weapons": 0, + "shields": 1.02, + "cargo": 0, + "mass": 2.04 + } + ], + "otherShipClass": [ + { + "race": "Monstrai", + "name": "Dragon", + "drive": 16.7, + "armament": 1, + "weapons": 1.1, + "shields": 1, + "cargo": 1, + "mass": 19.8 + }, + { + "race": "Monstrai", + "name": "Muxa_CC", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 0, + "mass": 1 + }, + { + "race": "Monstrai", + "name": "UrodX151", + "drive": 99, + "armament": 151, + "weapons": 1, + "shields": 23, + "cargo": 0, + "mass": 198 + }, + { + "race": "Monstrai", + "name": "UrodX70", + "drive": 95.95, + "armament": 70, + "weapons": 2, + "shields": 24.95, + "cargo": 0, + "mass": 191.9 + }, + { + "race": "Monstrai", + "name": "UrodX10", + "drive": 78.47, + "armament": 10, + "weapons": 10, + "shields": 23.47, + "cargo": 0, + "mass": 156.94 + }, + { + "race": "Monstrai", + "name": "Igla", + "drive": 48.48, + "armament": 1, + "weapons": 32.48, + "shields": 15, + "cargo": 0, + "mass": 95.96 + }, + { + "race": "Monstrai", + "name": "Tocka", + "drive": 12.17, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 22, + "mass": 34.17 + }, + { + "race": "TwelvePointedCross", + "name": "DeadPig", + "drive": 31.5, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 17.93, + "mass": 49.43 + }, + { + "race": "TwelvePointedCross", + "name": "DeadHippo", + "drive": 44, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 54.03, + "mass": 98.03 + }, + { + "race": "TwelvePointedCross", + "name": "Drone", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 0, + "mass": 1 + }, + { + "race": "TwelvePointedCross", + "name": "Vanity", + "drive": 17.4, + "armament": 4, + "weapons": 9.2, + "shields": 9, + "cargo": 0, + "mass": 49.4 + }, + { + "race": "TwelvePointedCross", + "name": "Spiral", + "drive": 44.61, + "armament": 10, + "weapons": 7.4, + "shields": 11, + "cargo": 0, + "mass": 96.31 + }, + { + "race": "TwelvePointedCross", + "name": "DeadCow", + "drive": 62.2, + "armament": 1, + "weapons": 1, + "shields": 0, + "cargo": 35.61, + "mass": 98.81 + }, + { + "race": "TwelvePointedCross", + "name": "Drone-10", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 1, + "cargo": 0, + "mass": 2 + }, + { + "race": "HAEMHuKu-2000", + "name": "dr", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 0, + "mass": 1 + }, + { + "race": "Orla", + "name": "Orldr_sh", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 0, + "mass": 1 + }, + { + "race": "Orla", + "name": "Orlbum_sh", + "drive": 35, + "armament": 2, + "weapons": 30.53, + "shields": 18.21, + "cargo": 0, + "mass": 99 + }, + { + "race": "Orla", + "name": "Orlperf_sh", + "drive": 25, + "armament": 28, + "weapons": 3, + "shields": 30.5, + "cargo": 0, + "mass": 99 + }, + { + "race": "Bumbastik", + "name": "Pistolet", + "drive": 5.11, + "armament": 1, + "weapons": 3.11, + "shields": 8.27, + "cargo": 0, + "mass": 16.49 + }, + { + "race": "Bumbastik", + "name": "BAX", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 0, + "mass": 1 + }, + { + "race": "Bumbastik", + "name": "Tb-12_9.48", + "drive": 0, + "armament": 12, + "weapons": 9.48, + "shields": 54.63, + "cargo": 0, + "mass": 116.25 + }, + { + "race": "Bumbastik", + "name": "Pb-125_56.94", + "drive": 0, + "armament": 125, + "weapons": 1, + "shields": 56.94, + "cargo": 0, + "mass": 119.94 + }, + { + "race": "Bumbastik", + "name": "P110", + "drive": 46.57, + "armament": 110, + "weapons": 1.04, + "shields": 13.81, + "cargo": 1, + "mass": 119.1 + }, + { + "race": "Bumbastik", + "name": "T9", + "drive": 38.76, + "armament": 9, + "weapons": 9.24, + "shields": 12.99, + "cargo": 1, + "mass": 98.95 + }, + { + "race": "Bumbastik", + "name": "D18.56", + "drive": 19.59, + "armament": 1, + "weapons": 18.56, + "shields": 10.35, + "cargo": 1, + "mass": 49.5 + }, + { + "race": "Bumbastik", + "name": "8-D", + "drive": 0, + "armament": 0, + "weapons": 0, + "shields": 1, + "cargo": 0, + "mass": 1 + }, + { + "race": "Bumbastik", + "name": "K-2", + "drive": 21.51, + "armament": 1, + "weapons": 4.8, + "shields": 5.86, + "cargo": 0, + "mass": 32.17 + }, + { + "race": "Bumbastik", + "name": "Gun", + "drive": 0, + "armament": 1, + "weapons": 1, + "shields": 0, + "cargo": 0, + "mass": 1 + }, + { + "race": "Bumbastik", + "name": "P-1.5", + "drive": 0, + "armament": 122, + "weapons": 1.5, + "shields": 27.57, + "cargo": 0, + "mass": 119.82 + }, + { + "race": "Bumbastik", + "name": "Dst", + "drive": 0, + "armament": 1, + "weapons": 63.65, + "shields": 56.28, + "cargo": 0, + "mass": 119.93 + }, + { + "race": "Zodiac", + "name": "Makar", + "drive": 0, + "armament": 1, + "weapons": 1, + "shields": 0, + "cargo": 0, + "mass": 1 + }, + { + "race": "Zodiac", + "name": "Drone", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 0, + "mass": 1 + }, + { + "race": "Zodiac", + "name": "Gruz_35", + "drive": 65, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 35, + "mass": 100 + }, + { + "race": "Zodiac", + "name": "Gruz_58", + "drive": 141, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 58, + "mass": 199 + }, + { + "race": "Zodiac", + "name": "Perf_156x1", + "drive": 99.5, + "armament": 156, + "weapons": 1, + "shields": 15, + "cargo": 1, + "mass": 194 + }, + { + "race": "Zodiac", + "name": "3axBaT", + "drive": 3.5, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 1, + "mass": 4.5 + }, + { + "race": "Zodiac", + "name": "Tur_8x7", + "drive": 54.5, + "armament": 8, + "weapons": 7, + "shields": 19, + "cargo": 1, + "mass": 106 + }, + { + "race": "Zodiac", + "name": "Krysha", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 1, + "cargo": 0, + "mass": 2 + }, + { + "race": "Zodiac", + "name": "Perf_100x1", + "drive": 34, + "armament": 100, + "weapons": 1, + "shields": 10, + "cargo": 1, + "mass": 95.5 + }, + { + "race": "Zodiac", + "name": "Ataker_1x15", + "drive": 115.73, + "armament": 1, + "weapons": 15, + "shields": 103.27, + "cargo": 1, + "mass": 235 + }, + { + "race": "Zodiac", + "name": "Gruz_55W", + "drive": 160, + "armament": 1, + "weapons": 10, + "shields": 10, + "cargo": 55, + "mass": 235 + }, + { + "race": "Oselots", + "name": "DDD", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 0, + "mass": 1 + }, + { + "race": "Slimes", + "name": "Settler_1", + "drive": 10, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 4, + "mass": 14 + }, + { + "race": "Slimes", + "name": "Far_Settler_1", + "drive": 12.67, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 3.85, + "mass": 16.52 + }, + { + "race": "Slimes", + "name": "Striker_1", + "drive": 2, + "armament": 4, + "weapons": 1.3, + "shields": 3, + "cargo": 0, + "mass": 8.25 + }, + { + "race": "Slimes", + "name": "Fly_1", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 0, + "mass": 1 + }, + { + "race": "Slimes", + "name": "Perf_1", + "drive": 14.39, + "armament": 32, + "weapons": 2, + "shields": 2.11, + "cargo": 0, + "mass": 49.5 + }, + { + "race": "Slimes", + "name": "NoAccess_1", + "drive": 0, + "armament": 30, + "weapons": 2, + "shields": 4.23, + "cargo": 0, + "mass": 35.23 + }, + { + "race": "Slimes", + "name": "Perf_2", + "drive": 34.15, + "armament": 120, + "weapons": 1.6, + "shields": 9, + "cargo": 1, + "mass": 140.95 + }, + { + "race": "Slimes", + "name": "Far_Settler_2", + "drive": 20.67, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 12.45, + "mass": 33.12 + }, + { + "race": "Slimes", + "name": "Small_Buravchik_1", + "drive": 3.44, + "armament": 1, + "weapons": 20, + "shields": 12, + "cargo": 0, + "mass": 35.44 + }, + { + "race": "Slimes", + "name": "Far_Settler_3", + "drive": 32.12, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 15.08, + "mass": 47.2 + }, + { + "race": "Slimes", + "name": "Fort_2", + "drive": 0, + "armament": 1, + "weapons": 42.1, + "shields": 0, + "cargo": 0, + "mass": 42.1 + }, + { + "race": "Slimes", + "name": "Sverlo_1", + "drive": 34.15, + "armament": 1, + "weapons": 12.57, + "shields": 17.43, + "cargo": 1, + "mass": 65.15 + }, + { + "race": "Slimes", + "name": "Fort_2_Perf", + "drive": 0, + "armament": 14, + "weapons": 1, + "shields": 0, + "cargo": 0, + "mass": 7.5 + }, + { + "race": "Slimes", + "name": "Perf_3", + "drive": 74.04, + "armament": 77, + "weapons": 1.2, + "shields": 20, + "cargo": 1, + "mass": 141.84 + }, + { + "race": "Slimes", + "name": "Fort_3_Perf", + "drive": 0, + "armament": 14, + "weapons": 1.4, + "shields": 1.08, + "cargo": 0, + "mass": 11.58 + }, + { + "race": "Slimes", + "name": "Far_Settler_4", + "drive": 31.86, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 15, + "mass": 46.86 + }, + { + "race": "Flagist", + "name": "BlockPost", + "drive": 39.47, + "armament": 1, + "weapons": 3, + "shields": 5, + "cargo": 2, + "mass": 49.47 + }, + { + "race": "Flagist", + "name": "ColoVoz", + "drive": 21.2, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 11.8, + "mass": 33 + }, + { + "race": "Flagist", + "name": "Drone", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 0, + "mass": 1 + }, + { + "race": "Flagist", + "name": "Small", + "drive": 4, + "armament": 1, + "weapons": 1, + "shields": 1, + "cargo": 0, + "mass": 6 + }, + { + "race": "Flagist", + "name": "Muxa_CC", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 0, + "mass": 1 + }, + { + "race": "Flagist", + "name": "CapaVoz", + "drive": 42.9, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 56.1, + "mass": 99 + }, + { + "race": "Flagist", + "name": "Kinbin_Cargo", + "drive": 33, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 16.5, + "mass": 49.5 + }, + { + "race": "Flagist", + "name": "Vakain_Perf", + "drive": 145.88, + "armament": 345, + "weapons": 1, + "shields": 36.55, + "cargo": 0, + "mass": 355.43 + }, + { + "race": "Flagist", + "name": "HDrone", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 1, + "cargo": 0, + "mass": 2 + }, + { + "race": "Flagist", + "name": "Hi", + "drive": 0, + "armament": 1, + "weapons": 1, + "shields": 0, + "cargo": 0, + "mass": 1 + }, + { + "race": "Flagist", + "name": "Anla_Gun", + "drive": 41, + "armament": 1, + "weapons": 42.3, + "shields": 14.7, + "cargo": 1, + "mass": 99 + }, + { + "race": "Flagist", + "name": "Vakain_TurretA", + "drive": 73.73, + "armament": 14, + "weapons": 10, + "shields": 28.04, + "cargo": 1, + "mass": 177.77 + }, + { + "race": "Flagist", + "name": "Kin_PerTu", + "drive": 66.77, + "armament": 28, + "weapons": 5, + "shields": 20.5, + "cargo": 1, + "mass": 160.77 + }, + { + "race": "Flagist", + "name": "Vacain_Gun", + "drive": 56, + "armament": 1, + "weapons": 10, + "shields": 83.41, + "cargo": 0, + "mass": 149.41 + }, + { + "race": "Flagist", + "name": "Cargo_67", + "drive": 74.03, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 24.9, + "mass": 98.93 + }, + { + "race": "Flagist", + "name": "Cargo_56", + "drive": 36.7, + "armament": 1, + "weapons": 1, + "shields": 0, + "cargo": 22.37, + "mass": 60.07 + }, + { + "race": "Flagist", + "name": "Cargo_82", + "drive": 50.9, + "armament": 1, + "weapons": 1, + "shields": 0, + "cargo": 28.4, + "mass": 80.3 + }, + { + "race": "Flagist", + "name": "Spores", + "drive": 3, + "armament": 1, + "weapons": 1, + "shields": 0, + "cargo": 1, + "mass": 5 + }, + { + "race": "Flagist", + "name": "Vakain_Turr", + "drive": 177.36, + "armament": 15, + "weapons": 15.51, + "shields": 53.22, + "cargo": 1, + "mass": 355.66 + }, + { + "race": "Manya", + "name": "Dron", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 0, + "mass": 1 + }, + { + "race": "Bupyc", + "name": "drone", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 0, + "mass": 1 + }, + { + "race": "Bupyc", + "name": "KuHa_He_6ygeT", + "drive": 1, + "armament": 1, + "weapons": 1, + "shields": 0, + "cargo": 0, + "mass": 2 + }, + { + "race": "CosmicMonkeys", + "name": "DPOH", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 0, + "mass": 1 + }, + { + "race": "CosmicMonkeys", + "name": "Drone", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 0, + "mass": 1 + }, + { + "race": "CosmicMonkeys", + "name": "d", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 0, + "mass": 1 + }, + { + "race": "Koreans", + "name": "Marker", + "drive": 14.5, + "armament": 1, + "weapons": 1, + "shields": 0, + "cargo": 1, + "mass": 16.5 + }, + { + "race": "Koreans", + "name": "Cargo:20", + "drive": 85.6, + "armament": 1, + "weapons": 1, + "shields": 0, + "cargo": 12.36, + "mass": 98.96 + }, + { + "race": "Koreans", + "name": "!", + "drive": 0, + "armament": 1, + "weapons": 1, + "shields": 0, + "cargo": 0, + "mass": 1 + }, + { + "race": "Koreans", + "name": "Capavoz100", + "drive": 63, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 36, + "mass": 99 + }, + { + "race": "Koreans", + "name": "colovoz10", + "drive": 42.14, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 7.32, + "mass": 49.46 + }, + { + "race": "Koreans", + "name": "d", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 0, + "mass": 1 + }, + { + "race": "Koreans", + "name": "TYPKA", + "drive": 25, + "armament": 3, + "weapons": 5.13, + "shields": 14.17, + "cargo": 0, + "mass": 49.43 + }, + { + "race": "Koreans", + "name": "Perfik", + "drive": 50.55, + "armament": 60, + "weapons": 1, + "shields": 17.86, + "cargo": 0, + "mass": 98.91 + }, + { + "race": "Koreans", + "name": "Col27", + "drive": 58.3, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 15.3, + "mass": 73.6 + }, + { + "race": "Koreans", + "name": "dd", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 1, + "cargo": 0, + "mass": 2 + }, + { + "race": "Koreans", + "name": "PolyGun:103x1.5", + "drive": 97.2, + "armament": 103, + "weapons": 1.5, + "shields": 18.69, + "cargo": 1, + "mass": 194.89 + }, + { + "race": "Koreans", + "name": "Cruiser:5x6.9", + "drive": 35, + "armament": 5, + "weapons": 6.9, + "shields": 13.16, + "cargo": 1, + "mass": 69.86 + }, + { + "race": "Koreans", + "name": "PolyGun:57x1", + "drive": 44, + "armament": 57, + "weapons": 1, + "shields": 14.12, + "cargo": 0, + "mass": 87.12 + }, + { + "race": "Koreans", + "name": "Cruiser:6x6", + "drive": 34.2, + "armament": 6, + "weapons": 6, + "shields": 12.99, + "cargo": 0, + "mass": 68.19 + }, + { + "race": "Koreans", + "name": "PolyCruiser:21x7.1", + "drive": 97.2, + "armament": 21, + "weapons": 7.1, + "shields": 18.69, + "cargo": 1, + "mass": 194.99 + }, + { + "race": "Koreans", + "name": "Drone", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 0, + "mass": 1 + }, + { + "race": "Koreans", + "name": "DPOH", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 0, + "mass": 1 + }, + { + "race": "Koreans", + "name": "Defender:1x7", + "drive": 28, + "armament": 1, + "weapons": 7, + "shields": 35.58, + "cargo": 0, + "mass": 70.58 + }, + { + "race": "Koreans", + "name": "Defender:1x6", + "drive": 23.51, + "armament": 1, + "weapons": 6, + "shields": 35.58, + "cargo": 0, + "mass": 65.09 + }, + { + "race": "Koreans", + "name": "dperf:54x1", + "drive": 19.3, + "armament": 54, + "weapons": 1, + "shields": 11.56, + "cargo": 0, + "mass": 58.36 + }, + { + "race": "Koreans", + "name": "stone", + "drive": 0, + "armament": 0, + "weapons": 0, + "shields": 1, + "cargo": 0, + "mass": 1 + }, + { + "race": "Koreans", + "name": "FortPoly:87x1.3", + "drive": 0, + "armament": 87, + "weapons": 1.3, + "shields": 13.12, + "cargo": 0, + "mass": 70.32 + }, + { + "race": "Koreans", + "name": "MAPK2", + "drive": 10.5, + "armament": 1, + "weapons": 1, + "shields": 0, + "cargo": 1, + "mass": 12.5 + }, + { + "race": "Barcarols", + "name": "Drone", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 0, + "mass": 1 + }, + { + "race": "Onix", + "name": "Drone", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 0, + "mass": 1 + }, + { + "race": "SSSan", + "name": "SMCol", + "drive": 10.69, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 5.81, + "mass": 16.5 + }, + { + "race": "SSSan", + "name": "Dr", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 0, + "mass": 1 + }, + { + "race": "SSSan", + "name": "DDRR", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 0, + "mass": 1 + }, + { + "race": "SSSan", + "name": "Per", + "drive": 76.55, + "armament": 90, + "weapons": 2, + "shields": 28.7, + "cargo": 0, + "mass": 196.25 + }, + { + "race": "SSSan", + "name": "SD", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 1.08, + "cargo": 0, + "mass": 2.08 + }, + { + "race": "SSSan", + "name": "SD1", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 1, + "cargo": 0, + "mass": 2 + }, + { + "race": "SSSan", + "name": "Dulko1", + "drive": 37.75, + "armament": 1, + "weapons": 25, + "shields": 25.96, + "cargo": 0, + "mass": 88.71 + }, + { + "race": "SSSan", + "name": "PE", + "drive": 21.04, + "armament": 31, + "weapons": 1.02, + "shields": 12.08, + "cargo": 0, + "mass": 49.44 + }, + { + "race": "Shuriki", + "name": "SDron", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 0, + "mass": 1 + }, + { + "race": "Shuriki", + "name": "MediumCol", + "drive": 18.75, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 13.5, + "mass": 32.25 + }, + { + "race": "Shuriki", + "name": "AntiDron", + "drive": 1, + "armament": 1, + "weapons": 1, + "shields": 0, + "cargo": 0, + "mass": 2 + }, + { + "race": "Shuriki", + "name": "DronS2-25", + "drive": 2, + "armament": 0, + "weapons": 0, + "shields": 2.25, + "cargo": 0, + "mass": 4.25 + }, + { + "race": "Shuriki", + "name": "Dulo1", + "drive": 15, + "armament": 1, + "weapons": 25, + "shields": 9, + "cargo": 0, + "mass": 49 + }, + { + "race": "Civilians", + "name": "Drone", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 0, + "mass": 1 + }, + { + "race": "AT-2560TX", + "name": "Drone", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 0, + "mass": 1 + }, + { + "race": "Acreators", + "name": "DPOH", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 0, + "mass": 1 + }, + { + "race": "BlackCrows", + "name": "Colo", + "drive": 5.18, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 1, + "mass": 6.18 + }, + { + "race": "BlackCrows", + "name": "Dron", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 0, + "mass": 1 + }, + { + "race": "BlackCrows", + "name": "Perf_60x1", + "drive": 52.4, + "armament": 60, + "weapons": 1, + "shields": 20, + "cargo": 1, + "mass": 103.9 + }, + { + "race": "BlackCrows", + "name": "Perf_115x1", + "drive": 99, + "armament": 115, + "weapons": 1, + "shields": 40, + "cargo": 1, + "mass": 198 + }, + { + "race": "BlackCrows", + "name": "Tura_4x15", + "drive": 73.5, + "armament": 4, + "weapons": 15, + "shields": 35, + "cargo": 1, + "mass": 147 + }, + { + "race": "BlackCrows", + "name": "Tura_x15", + "drive": 79.1, + "armament": 4, + "weapons": 15, + "shields": 40, + "cargo": 1, + "mass": 157.6 + }, + { + "race": "BlackCrows", + "name": "Perf_74x1", + "drive": 73.5, + "armament": 74, + "weapons": 1, + "shields": 35, + "cargo": 1, + "mass": 147 + }, + { + "race": "BlackCrows", + "name": "Dulo_1x40", + "drive": 73.5, + "armament": 1, + "weapons": 40, + "shields": 32.5, + "cargo": 1, + "mass": 147 + }, + { + "race": "BlackCrows", + "name": "Perf_60x2", + "drive": 99, + "armament": 60, + "weapons": 2, + "shields": 37, + "cargo": 1, + "mass": 198 + }, + { + "race": "BlackCrows", + "name": "Perf_100x2", + "drive": 147, + "armament": 100, + "weapons": 2, + "shields": 45, + "cargo": 1, + "mass": 294 + }, + { + "race": "BlackCrows", + "name": "Tura_3x18", + "drive": 79, + "armament": 3, + "weapons": 18, + "shields": 41.6, + "cargo": 1, + "mass": 157.6 + }, + { + "race": "BlackCrows", + "name": "Bodach", + "drive": 1, + "armament": 1, + "weapons": 1, + "shields": 0, + "cargo": 0, + "mass": 2 + }, + { + "race": "Zerg", + "name": "zond", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 0, + "mass": 1 + }, + { + "race": "Nails", + "name": "cargonoid2", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 1.4, + "mass": 2.4 + }, + { + "race": "Nails", + "name": "cargonoid3", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 1.6, + "mass": 2.6 + }, + { + "race": "Nails", + "name": "cargonoid4", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 2.5, + "mass": 3.5 + }, + { + "race": "Nails", + "name": "dron", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 0, + "mass": 1 + }, + { + "race": "Nails", + "name": "justcargo", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 1, + "mass": 2 + }, + { + "race": "Nails", + "name": "Aerosmith", + "drive": 1.8, + "armament": 1, + "weapons": 3.1, + "shields": 9.18, + "cargo": 0, + "mass": 14.08 + }, + { + "race": "Nails", + "name": "pup", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 0, + "mass": 1 + }, + { + "race": "Nails", + "name": "kil-VI-5", + "drive": 5.3, + "armament": 5, + "weapons": 7.1, + "shields": 39.9, + "cargo": 0, + "mass": 66.5 + }, + { + "race": "Nails", + "name": "at-AR-3", + "drive": 6, + "armament": 3, + "weapons": 5, + "shields": 33.5, + "cargo": 0, + "mass": 49.5 + }, + { + "race": "Nails", + "name": "perf-VI-30", + "drive": 42.72, + "armament": 30, + "weapons": 1, + "shields": 7.34, + "cargo": 1, + "mass": 66.56 + }, + { + "race": "Nails", + "name": "48", + "drive": 56.5, + "armament": 48, + "weapons": 1, + "shields": 7, + "cargo": 1, + "mass": 89 + }, + { + "race": "Nails", + "name": "1", + "drive": 42.7, + "armament": 1, + "weapons": 14, + "shields": 8.86, + "cargo": 1, + "mass": 66.56 + }, + { + "race": "Nails", + "name": "18a", + "drive": 32, + "armament": 18, + "weapons": 1, + "shields": 6.94, + "cargo": 1, + "mass": 49.44 + }, + { + "race": "Nails", + "name": "18b", + "drive": 32.85, + "armament": 18, + "weapons": 1, + "shields": 7.15, + "cargo": 0, + "mass": 49.5 + }, + { + "race": "Nails", + "name": "1a", + "drive": 56.35, + "armament": 1, + "weapons": 20.5, + "shields": 11.3, + "cargo": 1, + "mass": 89.15 + }, + { + "race": "Nails", + "name": "1b", + "drive": 32, + "armament": 1, + "weapons": 9.1, + "shields": 7.34, + "cargo": 1, + "mass": 49.44 + }, + { + "race": "Nails", + "name": "5", + "drive": 32, + "armament": 5, + "weapons": 3.4, + "shields": 6.2, + "cargo": 1, + "mass": 49.4 + }, + { + "race": "Nails", + "name": "54", + "drive": 53.3, + "armament": 54, + "weapons": 1, + "shields": 7.3, + "cargo": 1, + "mass": 89.1 + }, + { + "race": "Nails", + "name": "1big", + "drive": 41, + "armament": 1, + "weapons": 17, + "shields": 8.55, + "cargo": 0, + "mass": 66.55 + }, + { + "race": "Nails", + "name": "25", + "drive": 31.1, + "armament": 25, + "weapons": 1, + "shields": 4.9, + "cargo": 0, + "mass": 49 + }, + { + "race": "Nails", + "name": "40", + "drive": 40.8, + "armament": 40, + "weapons": 1, + "shields": 4.98, + "cargo": 0, + "mass": 66.28 + }, + { + "race": "Nails", + "name": "59_1", + "drive": 62, + "armament": 59, + "weapons": 1, + "shields": 6, + "cargo": 0, + "mass": 98 + }, + { + "race": "Nails", + "name": "_pup_", + "drive": 1.17, + "armament": 0, + "weapons": 0, + "shields": 1, + "cargo": 0, + "mass": 2.17 + }, + { + "race": "Nails", + "name": "24", + "drive": 23, + "armament": 24, + "weapons": 1, + "shields": 7.02, + "cargo": 0, + "mass": 42.52 + }, + { + "race": "Nails", + "name": "F23", + "drive": 32.3, + "armament": 23, + "weapons": 1, + "shields": 4.6, + "cargo": 0, + "mass": 48.9 + }, + { + "race": "kenguri", + "name": "b", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 0, + "mass": 1 + }, + { + "race": "AbubaGerbographerPot", + "name": "Drone", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 0, + "mass": 1 + }, + { + "race": "6PATBA", + "name": "6pamuwka", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 0, + "mass": 1 + }, + { + "race": "Ricksha", + "name": "Colonaizer", + "drive": 7.13, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 1.12, + "mass": 8.25 + }, + { + "race": "Ricksha", + "name": "Colovozka", + "drive": 37.13, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 12.37, + "mass": 49.5 + }, + { + "race": "Ricksha", + "name": "TAPAHTAuKA", + "drive": 63.6, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 35.4, + "mass": 99 + }, + { + "race": "Ricksha", + "name": "Dron", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 0, + "mass": 1 + }, + { + "race": "Ricksha", + "name": "HE_CMOTPETb", + "drive": 0, + "armament": 1, + "weapons": 1, + "shields": 0, + "cargo": 0, + "mass": 1 + }, + { + "race": "Ricksha", + "name": "OXPAHA", + "drive": 49.5, + "armament": 8, + "weapons": 8.3, + "shields": 12.15, + "cargo": 0, + "mass": 99 + }, + { + "race": "Ricksha", + "name": "ME4TA", + "drive": 100, + "armament": 150, + "weapons": 1, + "shields": 21.5, + "cargo": 1, + "mass": 198 + }, + { + "race": "Ricksha", + "name": "HDron", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 1, + "cargo": 0, + "mass": 2 + }, + { + "race": "Ricksha", + "name": "T541", + "drive": 25.65, + "armament": 1, + "weapons": 18, + "shields": 5.85, + "cargo": 0, + "mass": 49.5 + }, + { + "race": "Ricksha", + "name": "T16", + "drive": 25.91, + "armament": 1, + "weapons": 17.74, + "shields": 5.85, + "cargo": 0, + "mass": 49.5 + }, + { + "race": "Ricksha", + "name": "T717", + "drive": 125, + "armament": 8, + "weapons": 24, + "shields": 15, + "cargo": 1, + "mass": 249 + }, + { + "race": "Ricksha", + "name": "T6901", + "drive": 63, + "armament": 3, + "weapons": 22, + "shields": 16.33, + "cargo": 1, + "mass": 124.33 + }, + { + "race": "Ricksha", + "name": "SuperGuard", + "drive": 38.77, + "armament": 1, + "weapons": 14, + "shields": 45.23, + "cargo": 1, + "mass": 99 + }, + { + "race": "Ricksha", + "name": "T747", + "drive": 180, + "armament": 25, + "weapons": 11.91, + "shields": 23.3, + "cargo": 1, + "mass": 359.13 + }, + { + "race": "Ricksha", + "name": "T845", + "drive": 40, + "armament": 1, + "weapons": 23.7, + "shields": 14, + "cargo": 1, + "mass": 78.7 + }, + { + "race": "Ricksha", + "name": "T612", + "drive": 50, + "armament": 2, + "weapons": 20, + "shields": 18, + "cargo": 1, + "mass": 99 + }, + { + "race": "Argon", + "name": "Drone", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 0, + "mass": 1 + }, + { + "race": "Frightners", + "name": "Buka-2", + "drive": 14.28, + "armament": 1, + "weapons": 1.2, + "shields": 0, + "cargo": 1.02, + "mass": 16.5 + }, + { + "race": "Frightners", + "name": "Scream", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 0, + "mass": 1 + }, + { + "race": "Frightners", + "name": "Goblin-20", + "drive": 19.48, + "armament": 1, + "weapons": 1, + "shields": 1, + "cargo": 12.36, + "mass": 33.84 + }, + { + "race": "Frightners", + "name": "Gun*", + "drive": 84.14, + "armament": 1, + "weapons": 60, + "shields": 24.15, + "cargo": 1, + "mass": 169.29 + }, + { + "race": "Frightners", + "name": "Boom*", + "drive": 84.14, + "armament": 4, + "weapons": 24, + "shields": 24.15, + "cargo": 1, + "mass": 169.29 + }, + { + "race": "Frightners", + "name": "moan", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 1, + "cargo": 0, + "mass": 2 + }, + { + "race": "Frightners", + "name": "Hydra*", + "drive": 169.79, + "armament": 266, + "weapons": 1, + "shields": 36.29, + "cargo": 0, + "mass": 339.58 + }, + { + "race": "Frightners", + "name": "Lich", + "drive": 169.79, + "armament": 133, + "weapons": 2, + "shields": 35.79, + "cargo": 0, + "mass": 339.58 + }, + { + "race": "Frightners", + "name": "Naga", + "drive": 169.79, + "armament": 66, + "weapons": 4, + "shields": 35.79, + "cargo": 0, + "mass": 339.58 + }, + { + "race": "Frightners", + "name": "Turret", + "drive": 84.14, + "armament": 10, + "weapons": 10.91, + "shields": 24.15, + "cargo": 1, + "mass": 169.29 + }, + { + "race": "sidiki", + "name": "Drone", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 0, + "mass": 1 + }, + { + "race": "sidiki", + "name": "Drone_1", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 0, + "mass": 1 + }, + { + "race": "sidiki", + "name": "Fort_2", + "drive": 0, + "armament": 2, + "weapons": 70, + "shields": 209, + "cargo": 0, + "mass": 314 + }, + { + "race": "Enoxes", + "name": "FBlin", + "drive": 8.9, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 1, + "mass": 9.9 + }, + { + "race": "Enoxes", + "name": "Skok", + "drive": 33, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 16.5, + "mass": 49.5 + }, + { + "race": "Enoxes", + "name": "Gnat", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 0, + "mass": 1 + }, + { + "race": "Enoxes", + "name": "RangerA", + "drive": 13, + "armament": 1, + "weapons": 2.75, + "shields": 8, + "cargo": 1, + "mass": 24.75 + }, + { + "race": "Enoxes", + "name": "Maxim70a", + "drive": 45.15, + "armament": 70, + "weapons": 1, + "shields": 18.35, + "cargo": 0, + "mass": 99 + }, + { + "race": "Enoxes", + "name": "Pair", + "drive": 45.65, + "armament": 2, + "weapons": 22.1, + "shields": 19.2, + "cargo": 1, + "mass": 99 + }, + { + "race": "Enoxes", + "name": "Duzina", + "drive": 68.09, + "armament": 12, + "weapons": 8.17, + "shields": 26, + "cargo": 1, + "mass": 148.19 + }, + { + "race": "Enoxes", + "name": "Gruz40a", + "drive": 20.73, + "armament": 1, + "weapons": 1.42, + "shields": 7.35, + "cargo": 20, + "mass": 49.5 + }, + { + "race": "Enoxes", + "name": "Quadrat-A", + "drive": 34.3, + "armament": 4, + "weapons": 8.1, + "shields": 18.55, + "cargo": 1, + "mass": 74.1 + }, + { + "race": "Enoxes", + "name": "Maxim62a", + "drive": 41.17, + "armament": 62, + "weapons": 1, + "shields": 17.58, + "cargo": 0, + "mass": 90.25 + }, + { + "race": "Enoxes", + "name": "Gop", + "drive": 28.6, + "armament": 1, + "weapons": 1.5, + "shields": 4.9, + "cargo": 14.5, + "mass": 49.5 + }, + { + "race": "Enoxes", + "name": "Track", + "drive": 81.49, + "armament": 1, + "weapons": 2.1, + "shields": 12, + "cargo": 54, + "mass": 149.59 + }, + { + "race": "Enoxes", + "name": "Storm", + "drive": 69.38, + "armament": 8, + "weapons": 10.9, + "shields": 30.17, + "cargo": 1, + "mass": 149.6 + }, + { + "race": "Enoxes", + "name": "ZingerM80", + "drive": 92.05, + "armament": 80, + "weapons": 1.87, + "shields": 30.2, + "cargo": 0, + "mass": 197.99 + }, + { + "race": "Enoxes", + "name": "FS-6", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 1.06, + "cargo": 0, + "mass": 2.06 + }, + { + "race": "Enoxes", + "name": "ZingerM115", + "drive": 142.37, + "armament": 115, + "weapons": 1.9, + "shields": 46.6, + "cargo": 0, + "mass": 299.17 + }, + { + "race": "Enoxes", + "name": "Pinta", + "drive": 47.62, + "armament": 5, + "weapons": 10.16, + "shields": 19.9, + "cargo": 1, + "mass": 99 + }, + { + "race": "Enoxes", + "name": "BumA", + "drive": 43.45, + "armament": 1, + "weapons": 24.8, + "shields": 21, + "cargo": 1, + "mass": 90.25 + }, + { + "race": "Enoxes", + "name": "FS-0", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 1, + "cargo": 0, + "mass": 2 + }, + { + "race": "Enoxes", + "name": "FS-2", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 1.02, + "cargo": 0, + "mass": 2.02 + }, + { + "race": "Enoxes", + "name": "Quadrat-B", + "drive": 41.44, + "armament": 4, + "weapons": 10.01, + "shields": 18.56, + "cargo": 1, + "mass": 86.03 + }, + { + "race": "Enoxes", + "name": "Samara-A", + "drive": 43.45, + "armament": 9, + "weapons": 4.96, + "shields": 21, + "cargo": 1, + "mass": 90.25 + }, + { + "race": "3JO6HbIE", + "name": "MHE_BCE_uHTEPECHO", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 0, + "mass": 1 + } + ], + "battle": [ + { + "id": "867cdc3e-8bdf-57d2-8401-0b92af7151fa", + "planet": 129, + "shots": 1 + }, + { + "id": "97dae5d0-00f1-5ad6-b2ac-6094b605d5ad", + "planet": 7, + "shots": 2317 + }, + { + "id": "3bae45ff-10c5-5297-9c5a-d1039c944e76", + "planet": 20, + "shots": 5 + }, + { + "id": "5b487499-547f-5ea5-8ec8-c228bdfec129", + "planet": 26, + "shots": 1 + }, + { + "id": "748784c5-911f-509b-a6d8-25d984c7e2f3", + "planet": 46, + "shots": 2 + }, + { + "id": "60112197-fe47-5056-950a-1bec90737b6b", + "planet": 67, + "shots": 24 + }, + { + "id": "42e9f113-d436-553f-b8fa-60746eed7f3c", + "planet": 73, + "shots": 2 + }, + { + "id": "40d81f10-88b6-521a-9700-c2b6b1522b6b", + "planet": 85, + "shots": 1 + }, + { + "id": "e67d0a22-8096-55ec-8654-d0026ae7d7fb", + "planet": 90, + "shots": 1 + }, + { + "id": "1951c81b-6d0d-597c-8eb1-877a5dbb7317", + "planet": 97, + "shots": 2 + }, + { + "id": "efeacace-34e0-5551-8fe3-d7f62484a04c", + "planet": 104, + "shots": 1 + }, + { + "id": "1c8f40a1-4469-5aed-b6b1-c7557c864f07", + "planet": 114, + "shots": 1 + }, + { + "id": "a9968f83-5b80-5799-9ef1-fe87ce0a49db", + "planet": 119, + "shots": 1 + }, + { + "id": "f4ee8fc1-4e3b-5dc1-b0a0-cdb4fcbcc0ea", + "planet": 134, + "shots": 3 + }, + { + "id": "e0b9fe57-2772-5060-bdb1-0c18238745a0", + "planet": 137, + "shots": 1 + }, + { + "id": "a588d0e8-05c9-5484-a8bb-82dba7c32b47", + "planet": 139, + "shots": 2 + }, + { + "id": "e4a8b24e-6187-58b6-b256-1e727842563d", + "planet": 150, + "shots": 1 + }, + { + "id": "ac708e4f-1202-5f53-8a2f-09622a43025a", + "planet": 227, + "shots": 6 + }, + { + "id": "51f99594-35c0-5070-acaa-20cb079d695b", + "planet": 255, + "shots": 1 + }, + { + "id": "284aa96c-dad3-5a79-8627-cd779042b3de", + "planet": 256, + "shots": 2 + }, + { + "id": "8ae64d21-927c-5e14-aefb-6a133cd04329", + "planet": 261, + "shots": 2 + }, + { + "id": "8bc65ffe-c016-57d6-8cb0-5c5592530b6b", + "planet": 283, + "shots": 2 + }, + { + "id": "dad43ae8-d33a-5275-bdc2-3a09de0dc72a", + "planet": 289, + "shots": 1 + }, + { + "id": "831a3e55-7c55-52f9-8bdc-32680bac0d78", + "planet": 294, + "shots": 1 + }, + { + "id": "dd9d1fe8-a624-51e4-a11c-23564feadfd7", + "planet": 295, + "shots": 1 + }, + { + "id": "8a5eb73c-f3e1-5d18-ab58-80cb0d3fe78c", + "planet": 324, + "shots": 289 + }, + { + "id": "f319c219-9b3d-5e83-b4d5-8da594176a10", + "planet": 332, + "shots": 1 + }, + { + "id": "228d740f-64b0-5d27-a557-2d32d625ac53", + "planet": 343, + "shots": 5 + }, + { + "id": "6389ea2c-b89f-549e-ab54-883fe742272b", + "planet": 357, + "shots": 34 + }, + { + "id": "88d51235-2ade-5ce5-8866-c1a473a9993e", + "planet": 370, + "shots": 1148 + }, + { + "id": "26cda435-8216-58e4-b5d6-9f932d4a0f73", + "planet": 378, + "shots": 1 + }, + { + "id": "c94720e4-3073-5e99-be9c-df285ed7274b", + "planet": 391, + "shots": 1 + }, + { + "id": "0ede2f8d-598f-56d7-93f1-6bca6de97ed4", + "planet": 403, + "shots": 1 + }, + { + "id": "1e8a4d00-5d0d-5054-8e78-c522799c244f", + "planet": 413, + "shots": 1 + }, + { + "id": "2700dc80-907f-5b5e-80d4-286fa3b73f0f", + "planet": 425, + "shots": 2 + }, + { + "id": "37d42ae6-06d9-5baf-8a74-deeb7a8a8964", + "planet": 445, + "shots": 1 + }, + { + "id": "10aadb7c-1b8b-57ba-bfdf-fd89ba64dfa8", + "planet": 458, + "shots": 1 + }, + { + "id": "211866d5-057b-5c82-a6ca-35e44baea45b", + "planet": 489, + "shots": 1 + }, + { + "id": "f995a51d-f45e-57fb-b146-c538a45c1d88", + "planet": 500, + "shots": 1 + }, + { + "id": "bcfaa090-86da-50d8-aa2f-4112ee9cc166", + "planet": 501, + "shots": 50 + }, + { + "id": "5a95f6c4-1ea2-5178-b071-ce3a1b0e3b62", + "planet": 506, + "shots": 1 + }, + { + "id": "7a51822b-6d57-5949-8a55-958b54d528a1", + "planet": 521, + "shots": 4 + }, + { + "id": "e82cff85-de85-597f-a145-c62bfbe36d0f", + "planet": 522, + "shots": 1 + }, + { + "id": "10e7131c-baa0-5c04-af98-f01958fe3a75", + "planet": 528, + "shots": 2 + }, + { + "id": "acc4f395-d4fa-54ba-9324-ddf0736aaf2d", + "planet": 558, + "shots": 1 + }, + { + "id": "624a9976-53df-5567-ae74-50429cce0b4d", + "planet": 561, + "shots": 1 + }, + { + "id": "ca900c7d-3ed8-555f-b75b-b4cd42c09b7e", + "planet": 571, + "shots": 1 + }, + { + "id": "85f0c551-0739-5ba8-b09b-4150c5e6c963", + "planet": 572, + "shots": 1 + }, + { + "id": "3916d343-b7ce-5fd1-8f68-b5f821b4e399", + "planet": 610, + "shots": 1 + }, + { + "id": "7a458c02-02dc-5652-942e-3d5ca35c2ad7", + "planet": 632, + "shots": 2 + }, + { + "id": "2ef60ab0-a4f4-516e-8024-d22a9e144540", + "planet": 649, + "shots": 6 + }, + { + "id": "591a65e9-2ba2-5883-a142-fc6e928f4e7e", + "planet": 669, + "shots": 1 + }, + { + "id": "ce30ac26-e1ce-50ab-a7d7-821727079a0e", + "planet": 672, + "shots": 1 + }, + { + "id": "8f923650-d6a7-5d55-964e-9deebfa31b8b", + "planet": 679, + "shots": 1 + }, + { + "id": "26633687-f60b-5211-94fc-a1d72919434f", + "planet": 690, + "shots": 1 + }, + { + "id": "140d0086-a74a-55f1-80da-30b9dddb832a", + "planet": 691, + "shots": 2 + } + ], + "bombing": [ + { + "planet": 20, + "planetName": "DW-1207-0020", + "owner": "Ricksha", + "attacker": "KnightErrants", + "production": "Dron", + "industry": 0, + "population": 1.56, + "colonists": 0, + "capital": 0, + "material": 0, + "attack": 7.62, + "wiped": true + }, + { + "planet": 139, + "planetName": "#139", + "owner": "KnightErrants", + "attacker": "Ricksha", + "production": "Nonstop", + "industry": 0, + "population": 7.6, + "colonists": 0, + "capital": 0, + "material": 459.72, + "attack": 3113.92, + "wiped": true + }, + { + "planet": 141, + "planetName": "B1", + "owner": "SSSan", + "attacker": "Koreans", + "production": "Capital", + "industry": 0.04, + "population": 0.95, + "colonists": 0, + "capital": 0, + "material": 52.56, + "attack": 289.75, + "wiped": true + }, + { + "planet": 227, + "planetName": "Sun", + "owner": "Ricksha", + "attacker": "KnightErrants", + "production": "Dron", + "industry": 970.88, + "population": 1638.83, + "colonists": 107.68, + "capital": 0, + "material": 0, + "attack": 1732.34, + "wiped": true + }, + { + "planet": 332, + "planetName": "PEHKE", + "owner": "Ricksha", + "attacker": "KnightErrants", + "production": "Dron", + "industry": 258.64, + "population": 500, + "colonists": 6.42, + "capital": 0, + "material": 184.39, + "attack": 331.93, + "wiped": false + }, + { + "planet": 343, + "planetName": "BETO", + "owner": "Ricksha", + "attacker": "KnightErrants", + "production": "Dron", + "industry": 0.43, + "population": 0.87, + "colonists": 0, + "capital": 0, + "material": 0, + "attack": 7.62, + "wiped": true + }, + { + "planet": 403, + "planetName": "PAgOCTb", + "owner": "Ricksha", + "attacker": "KnightErrants", + "production": "Dron", + "industry": 300.47, + "population": 675.77, + "colonists": 7.25, + "capital": 0, + "material": 359.38, + "attack": 775.57, + "wiped": true + }, + { + "planet": 489, + "planetName": "DW-1737-0489", + "owner": "Ricksha", + "attacker": "KnightErrants", + "production": "Dron", + "industry": 9.42, + "population": 204.01, + "colonists": 0, + "capital": 0, + "material": 0, + "attack": 13.02, + "wiped": false + }, + { + "planet": 500, + "planetName": "KPuT", + "owner": "Ricksha", + "attacker": "KnightErrants", + "production": "Dron", + "industry": 797.02, + "population": 797.02, + "colonists": 99.81, + "capital": 139.4, + "material": 13.5, + "attack": 962.25, + "wiped": true + }, + { + "planet": 632, + "planetName": "3BE3gA", + "owner": "Ricksha", + "attacker": "KnightErrants", + "production": "Dron", + "industry": 0.05, + "population": 0.17, + "colonists": 0, + "capital": 0, + "material": 0.07, + "attack": 7.62, + "wiped": true + }, + { + "planet": 649, + "planetName": "Labirint", + "owner": "Ricksha", + "attacker": "KnightErrants", + "production": "Dron", + "industry": 452.01, + "population": 831.72, + "colonists": 51.84, + "capital": 0, + "material": 434.36, + "attack": 923.56, + "wiped": true + }, + { + "planet": 682, + "planetName": "Ser_Arthur_2", + "owner": "Manya", + "attacker": "TwelvePointedCross", + "production": "Kamikadze", + "industry": 500, + "population": 500, + "colonists": 62.48, + "capital": 0, + "material": 0, + "attack": 569.7, + "wiped": true + } + ], + "incomingGroup": [ + { + "origin": 98, + "destination": 223, + "distance": 136.16, + "speed": 190, + "mass": 1 + }, + { + "origin": 98, + "destination": 447, + "distance": 128.03, + "speed": 190, + "mass": 1 + }, + { + "origin": 98, + "destination": 495, + "distance": 133.16, + "speed": 190, + "mass": 1 + }, + { + "origin": 673, + "destination": 558, + "distance": 42.12, + "speed": 99.4, + "mass": 1 + }, + { + "origin": 571, + "destination": 176, + "distance": 69.38, + "speed": 99.6, + "mass": 1 + }, + { + "origin": 571, + "destination": 338, + "distance": 53.92, + "speed": 99.6, + "mass": 1 + }, + { + "origin": 571, + "destination": 282, + "distance": 58.44, + "speed": 99.6, + "mass": 1 + }, + { + "origin": 571, + "destination": 38, + "distance": 53.03, + "speed": 99.6, + "mass": 1 + }, + { + "origin": 571, + "destination": 87, + "distance": 54.45, + "speed": 99.6, + "mass": 1 + }, + { + "origin": 571, + "destination": 17, + "distance": 49.8, + "speed": 99.6, + "mass": 1 + }, + { + "origin": 571, + "destination": 679, + "distance": 27.74, + "speed": 99.6, + "mass": 1 + }, + { + "origin": 571, + "destination": 114, + "distance": 25.76, + "speed": 99.6, + "mass": 1 + } + ], + "localPlanet": [ + { + "x": 171.05, + "y": 700.24, + "number": 17, + "size": 1000, + "name": "Castle", + "resources": 10, + "capital": 0, + "material": 0, + "industry": 1000, + "population": 1000, + "colonists": 107.73, + "production": "CombatFlame1x30", + "freeIndustry": 1000 + }, + { + "x": 169.59, + "y": 694.49, + "number": 87, + "size": 500, + "name": "NorthFortress", + "resources": 10, + "capital": 0, + "material": 0, + "industry": 500, + "population": 500, + "colonists": 25.74, + "production": "IceWall103", + "freeIndustry": 500 + }, + { + "x": 163.99, + "y": 703.07, + "number": 338, + "size": 500, + "name": "WestFortress", + "resources": 10, + "capital": 15.8, + "material": 0, + "industry": 500, + "population": 500, + "colonists": 78.97, + "production": "IceWall103", + "freeIndustry": 500 + }, + { + "x": 161.5, + "y": 698.7, + "number": 282, + "size": 977.87, + "name": "DayBreak", + "resources": 6.62, + "capital": 0, + "material": 0, + "industry": 933.28, + "population": 977.87, + "colonists": 86.14, + "production": "ArrowsOfFire", + "freeIndustry": 944.43 + }, + { + "x": 163.56, + "y": 705.31, + "number": 38, + "size": 956.94, + "name": "Afterglow", + "resources": 1.18, + "capital": 0, + "material": 0, + "industry": 930.56, + "population": 956.94, + "colonists": 121.48, + "production": "KtoTronet-Zakopayu", + "freeIndustry": 937.15 + }, + { + "x": 179.07, + "y": 704, + "number": 296, + "size": 928.74, + "name": "PochtiHom", + "resources": 4.78, + "capital": 18.78, + "material": 0, + "industry": 928.74, + "population": 928.74, + "colonists": 84.38, + "production": "IceWall101", + "freeIndustry": 928.74 + }, + { + "x": 188.8, + "y": 716.7, + "number": 114, + "size": 1879.68, + "name": "HighWay", + "resources": 0.53, + "capital": 0, + "material": 0, + "industry": 1856.44, + "population": 1879.68, + "colonists": 94.88, + "production": "FireWay100x1", + "freeIndustry": 1862.25 + }, + { + "x": 129.66, + "y": 702.65, + "number": 223, + "size": 9.76, + "name": "SuperGig", + "resources": 0.18, + "capital": 0, + "material": 0, + "industry": 0, + "population": 9.76, + "colonists": 0.16, + "production": "PeaceShip", + "freeIndustry": 2.44 + }, + { + "x": 127.81, + "y": 705.42, + "number": 495, + "size": 1405.32, + "name": "Asteroid", + "resources": 1.09, + "capital": 0, + "material": 0, + "industry": 1368.3, + "population": 1405.32, + "colonists": 72.51, + "production": "IceWall100", + "freeIndustry": 1377.56 + }, + { + "x": 114.94, + "y": 694.43, + "number": 447, + "size": 7.9, + "name": "DbIPKA_OT_6Y6JIUKA", + "resources": 0.14, + "capital": 0, + "material": 0, + "industry": 0, + "population": 7.9, + "colonists": 2.62, + "production": "PeaceShip", + "freeIndustry": 1.98 + }, + { + "x": 152.03, + "y": 693.16, + "number": 176, + "size": 6.95, + "name": "Monstr", + "resources": 0.42, + "capital": 0, + "material": 0, + "industry": 0, + "population": 6.39, + "colonists": 0, + "production": "PeaceShip", + "freeIndustry": 1.6 + }, + { + "x": 177.32, + "y": 731.91, + "number": 679, + "size": 1668.72, + "name": "SteelPower", + "resources": 7.79, + "capital": 0, + "material": 0, + "industry": 1668.67, + "population": 1668.72, + "colonists": 181.43, + "production": "FireStorm20x5", + "freeIndustry": 1668.69 + }, + { + "x": 189.12, + "y": 654.88, + "number": 523, + "size": 500, + "name": "NorthAlpha", + "resources": 10, + "capital": 0, + "material": 0, + "industry": 500, + "population": 500, + "colonists": 14.53, + "production": "IceWall103", + "freeIndustry": 500 + }, + { + "x": 197.71, + "y": 655, + "number": 572, + "size": 1000, + "name": "NorthPrime", + "resources": 10, + "capital": 0, + "material": 0, + "industry": 1000, + "population": 1000, + "colonists": 10, + "production": "FireSnow57x1", + "freeIndustry": 1000 + }, + { + "x": 195.98, + "y": 651.58, + "number": 177, + "size": 500, + "name": "NorthBeta", + "resources": 10, + "capital": 0, + "material": 270.06, + "industry": 344.35, + "population": 500, + "colonists": 5.2, + "production": "Capital", + "freeIndustry": 383.26 + }, + { + "x": 192.54, + "y": 656.4, + "number": 622, + "size": 764.66, + "name": "NorthS", + "resources": 1.59, + "capital": 21.74, + "material": 0, + "industry": 764.66, + "population": 764.66, + "colonists": 19.65, + "production": "IceWall102", + "freeIndustry": 764.66 + }, + { + "x": 204.46, + "y": 655.59, + "number": 558, + "size": 998.5, + "name": "NorthE", + "resources": 9.19, + "capital": 0, + "material": 0, + "industry": 704.33, + "population": 998.5, + "colonists": 9.99, + "production": "Capital", + "freeIndustry": 777.87 + }, + { + "x": 198.71, + "y": 648.74, + "number": 458, + "size": 935.27, + "name": "NorthN", + "resources": 3.87, + "capital": 0, + "material": 0, + "industry": 305.32, + "population": 935.27, + "colonists": 16.07, + "production": "Capital", + "freeIndustry": 462.81 + }, + { + "x": 149.59, + "y": 659.18, + "number": 461, + "size": 1023.35, + "name": "AGdeDW?", + "resources": 8.46, + "capital": 11.53, + "material": 0, + "industry": 1023.35, + "population": 1023.35, + "colonists": 30.67, + "production": "IceWall101", + "freeIndustry": 1023.35 + }, + { + "x": 273.89, + "y": 582.17, + "number": 685, + "size": 1980.42, + "name": "Trofei", + "resources": 2.98, + "capital": 39.69, + "material": 42.37, + "industry": 103.33, + "population": 103.33, + "colonists": 0, + "production": "Capital", + "freeIndustry": 103.33 + }, + { + "x": 267.37, + "y": 597.19, + "number": 79, + "size": 1899.01, + "name": "PriceOfVictory", + "resources": 2.19, + "capital": 0, + "material": 143.42, + "industry": 302.88, + "population": 1058.11, + "colonists": 0, + "production": "Capital", + "freeIndustry": 491.68 + }, + { + "x": 307.83, + "y": 564.19, + "number": 636, + "size": 950.07, + "name": "Vedma", + "resources": 5.69, + "capital": 0, + "material": 182.19, + "industry": 0, + "population": 20.57, + "colonists": 0, + "production": "PeaceShip", + "freeIndustry": 5.14 + }, + { + "x": 151.54, + "y": 578.44, + "number": 532, + "size": 500, + "name": "Golo", + "resources": 10, + "capital": 0, + "material": 458.17, + "industry": 0, + "population": 8.21, + "colonists": 0, + "production": "Nonstop", + "freeIndustry": 2.05 + }, + { + "x": 140.92, + "y": 580.39, + "number": 669, + "size": 727.71, + "name": "Tovty", + "resources": 2.84, + "capital": 0, + "material": 693.57, + "industry": 0, + "population": 8.21, + "colonists": 0, + "production": "Nonstop", + "freeIndustry": 2.05 + }, + { + "x": 146.22, + "y": 579.53, + "number": 507, + "size": 1000, + "name": "Tupo", + "resources": 10, + "capital": 0, + "material": 902.06, + "industry": 0, + "population": 8.21, + "colonists": 0, + "production": "Nonstop", + "freeIndustry": 2.05 + }, + { + "x": 167.56, + "y": 567.57, + "number": 298, + "size": 1325.17, + "name": "yppaIII", + "resources": 9.53, + "capital": 0, + "material": 858.23, + "industry": 12.4, + "population": 267.94, + "colonists": 0, + "production": "Capital", + "freeIndustry": 76.29 + }, + { + "x": 80.1, + "y": 501.7, + "number": 173, + "size": 1926.88, + "name": "Legenda", + "resources": 1.37, + "capital": 0, + "material": 1924.01, + "industry": 10.53, + "population": 38.88, + "colonists": 0, + "production": "Capital", + "freeIndustry": 17.62 + }, + { + "x": 107.38, + "y": 515.69, + "number": 535, + "size": 1000, + "name": "CAHKTyAPuu", + "resources": 10, + "capital": 0, + "material": 999.81, + "industry": 0, + "population": 9.5, + "colonists": 0, + "production": "Nonstop", + "freeIndustry": 2.38 + }, + { + "x": 114.64, + "y": 517.46, + "number": 446, + "size": 500, + "name": "ILS", + "resources": 10, + "capital": 0, + "material": 449.79, + "industry": 0, + "population": 9.5, + "colonists": 0, + "production": "Nonstop", + "freeIndustry": 2.38 + } + ], + "shipProduction": [ + { + "planet": 17, + "class": "CombatFlame1x30", + "cost": 990.1, + "prodUsed": 70, + "percent": 0.07, + "free": 1000 + }, + { + "planet": 87, + "class": "IceWall103", + "cost": 20.6, + "prodUsed": 13.732, + "percent": 0.66, + "free": 500 + }, + { + "planet": 338, + "class": "IceWall103", + "cost": 20.6, + "prodUsed": 1.873, + "percent": 0.09, + "free": 500 + }, + { + "planet": 282, + "class": "ArrowsOfFire", + "cost": 930.25, + "prodUsed": 358.835, + "percent": 0.38, + "free": 944.43 + }, + { + "planet": 38, + "class": "KtoTronet-Zakopayu", + "cost": 863.9, + "prodUsed": 224.907, + "percent": 0.24, + "free": 937.15 + }, + { + "planet": 296, + "class": "IceWall101", + "cost": 20.2, + "prodUsed": 4.537, + "percent": 0.22, + "free": 928.74 + }, + { + "planet": 114, + "class": "FireWay100x1", + "cost": 1569.6, + "prodUsed": 18.658, + "percent": 0.01, + "free": 1862.25 + }, + { + "planet": 223, + "class": "PeaceShip", + "cost": 10, + "prodUsed": 0.311, + "percent": 0.02, + "free": 2.44 + }, + { + "planet": 495, + "class": "IceWall100", + "cost": 20, + "prodUsed": 3.057, + "percent": 0.14, + "free": 1377.56 + }, + { + "planet": 447, + "class": "PeaceShip", + "cost": 10, + "prodUsed": 0.343, + "percent": 0.02, + "free": 1.98 + }, + { + "planet": 176, + "class": "PeaceShip", + "cost": 10, + "prodUsed": 0.124, + "percent": 0.01, + "free": 1.6 + }, + { + "planet": 679, + "class": "FireStorm20x5", + "cost": 1647.2, + "prodUsed": 1167.842, + "percent": 0.7, + "free": 1668.69 + }, + { + "planet": 523, + "class": "IceWall103", + "cost": 20.6, + "prodUsed": 1.456, + "percent": 0.07, + "free": 500 + }, + { + "planet": 572, + "class": "FireSnow57x1", + "cost": 995.5, + "prodUsed": 10.055, + "percent": 0.01, + "free": 1000 + }, + { + "planet": 622, + "class": "IceWall102", + "cost": 20.4, + "prodUsed": 122.292, + "percent": 5.64, + "free": 764.66 + }, + { + "planet": 461, + "class": "IceWall101", + "cost": 20.2, + "prodUsed": 28.819, + "percent": 1.41, + "free": 1023.35 + }, + { + "planet": 636, + "class": "PeaceShip", + "cost": 10, + "prodUsed": 0.1, + "percent": 0.01, + "free": 5.14 + }, + { + "planet": 532, + "class": "Nonstop", + "cost": 10, + "prodUsed": 0.1, + "percent": 0.01, + "free": 2.05 + }, + { + "planet": 669, + "class": "Nonstop", + "cost": 10, + "prodUsed": 0.1, + "percent": 0.01, + "free": 2.05 + }, + { + "planet": 507, + "class": "Nonstop", + "cost": 10, + "prodUsed": 0.1, + "percent": 0.01, + "free": 2.05 + }, + { + "planet": 535, + "class": "Nonstop", + "cost": 10, + "prodUsed": 0.1, + "percent": 0.01, + "free": 2.38 + }, + { + "planet": 446, + "class": "Nonstop", + "cost": 10, + "prodUsed": 0.1, + "percent": 0.01, + "free": 2.38 + } + ], + "otherPlanet": [ + { + "owner": "Monstrai", + "x": 303.84, + "y": 579.23, + "number": 12, + "size": 618.95, + "name": "Normal-4826-0012", + "resources": 1.56, + "capital": 6.32, + "material": 43.01, + "industry": 28.78, + "population": 28.78, + "colonists": 0, + "production": "Capital", + "freeIndustry": 28.78 + }, + { + "owner": "Monstrai", + "x": 262.49, + "y": 508.26, + "number": 25, + "size": 1.06, + "name": "Rycar", + "resources": 0.82, + "capital": 0.2, + "material": 0, + "industry": 1.06, + "population": 1.06, + "colonists": 0.36, + "production": "Drive_Research", + "freeIndustry": 1.06 + }, + { + "owner": "Monstrai", + "x": 304.44, + "y": 574.57, + "number": 130, + "size": 500, + "name": "Skarabei", + "resources": 10, + "capital": 0, + "material": 0, + "industry": 356.78, + "population": 500, + "colonists": 5, + "production": "Capital", + "freeIndustry": 392.58 + }, + { + "owner": "Monstrai", + "x": 312.91, + "y": 565.56, + "number": 253, + "size": 819.93, + "name": "Hiena", + "resources": 0.17, + "capital": 2.33, + "material": 32.65, + "industry": 7.4, + "population": 7.4, + "colonists": 0, + "production": "Capital", + "freeIndustry": 7.4 + }, + { + "owner": "Monstrai", + "x": 310.41, + "y": 577.18, + "number": 366, + "size": 500, + "name": "DW-5754-0366", + "resources": 10, + "capital": 0, + "material": 466.61, + "industry": 131.57, + "population": 222.84, + "colonists": 0, + "production": "Capital", + "freeIndustry": 154.38 + }, + { + "owner": "TwelvePointedCross", + "x": 417.24, + "y": 582.13, + "number": 56, + "size": 930.77, + "name": "Medio-56", + "resources": 9.58, + "capital": 0, + "material": 787.65, + "industry": 277.51, + "population": 675.61, + "colonists": 0, + "production": "Capital", + "freeIndustry": 377.03 + }, + { + "owner": "TwelvePointedCross", + "x": 434.36, + "y": 592.79, + "number": 85, + "size": 865.81, + "name": "Source-85", + "resources": 5.15, + "capital": 166.69, + "material": 0, + "industry": 865.81, + "population": 865.81, + "colonists": 9.68, + "production": "Capital", + "freeIndustry": 865.81 + }, + { + "owner": "TwelvePointedCross", + "x": 416.19, + "y": 576.64, + "number": 196, + "size": 686.91, + "name": "Terminal-196", + "resources": 5.26, + "capital": 103.5, + "material": 386.38, + "industry": 686.91, + "population": 686.91, + "colonists": 43.26, + "production": "Weapons_Research", + "freeIndustry": 686.91 + }, + { + "owner": "TwelvePointedCross", + "x": 411, + "y": 582.44, + "number": 207, + "size": 1000, + "name": "Herward-207", + "resources": 10, + "capital": 0, + "material": 723.66, + "industry": 359, + "population": 1000, + "colonists": 12.59, + "production": "Capital", + "freeIndustry": 519.25 + }, + { + "owner": "TwelvePointedCross", + "x": 414.38, + "y": 580.92, + "number": 314, + "size": 500, + "name": "Greedy-314", + "resources": 10, + "capital": 0, + "material": 480.39, + "industry": 19.62, + "population": 21.76, + "colonists": 0, + "production": "Capital", + "freeIndustry": 20.15 + }, + { + "owner": "TwelvePointedCross", + "x": 415.39, + "y": 577.82, + "number": 459, + "size": 946.09, + "name": "Normal-8330-0459", + "resources": 3.38, + "capital": 0, + "material": 810.01, + "industry": 123.15, + "population": 669.85, + "colonists": 0, + "production": "Capital", + "freeIndustry": 259.82 + }, + { + "owner": "TwelvePointedCross", + "x": 436.61, + "y": 589.01, + "number": 663, + "size": 1938.58, + "name": "PowerCube-663", + "resources": 0.52, + "capital": 0, + "material": 0, + "industry": 1485.87, + "population": 1938.58, + "colonists": 30.49, + "production": "Weapons_Research", + "freeIndustry": 1599.05 + }, + { + "owner": "TwelvePointedCross", + "x": 418.42, + "y": 585.36, + "number": 690, + "size": 500, + "name": "Resist-690", + "resources": 10, + "capital": 0, + "material": 416.95, + "industry": 83.55, + "population": 375.97, + "colonists": 0, + "production": "Capital", + "freeIndustry": 156.66 + }, + { + "owner": "Orla", + "x": 293.03, + "y": 47.27, + "number": 95, + "size": 939.5, + "name": "Orl1", + "resources": 2.91, + "capital": 0, + "material": 0, + "industry": 939.5, + "population": 939.5, + "colonists": 169.11, + "production": "Orlperf_sh", + "freeIndustry": 939.5 + }, + { + "owner": "Orla", + "x": 229.3, + "y": 30.96, + "number": 449, + "size": 2329.46, + "name": "Orlenium", + "resources": 1.49, + "capital": 0, + "material": 1718.37, + "industry": 334.19, + "population": 624.4, + "colonists": 0, + "production": "Orlbum_sh", + "freeIndustry": 406.75 + }, + { + "owner": "Bumbastik", + "x": 299.03, + "y": 700.92, + "number": 24, + "size": 2278.86, + "name": "B-024", + "resources": 0.58, + "capital": 0, + "material": 30.67, + "industry": 38, + "population": 1302.67, + "colonists": 0, + "production": "BAX", + "freeIndustry": 354.17 + }, + { + "owner": "Zodiac", + "x": 337.19, + "y": 543.38, + "number": 108, + "size": 2340.94, + "name": "FatBoy", + "resources": 0.39, + "capital": 0, + "material": 640.01, + "industry": 2340.94, + "population": 2340.94, + "colonists": 70.23, + "production": "WS_45x55_Research", + "freeIndustry": 2340.94 + }, + { + "owner": "Zodiac", + "x": 305.62, + "y": 538.86, + "number": 116, + "size": 1966.14, + "name": "Armagedon", + "resources": 1.51, + "capital": 0, + "material": 1604.42, + "industry": 82.44, + "population": 1779.14, + "colonists": 0, + "production": "Capital", + "freeIndustry": 506.61 + }, + { + "owner": "Zodiac", + "x": 305.33, + "y": 570.48, + "number": 119, + "size": 1000, + "name": "Sirena", + "resources": 10, + "capital": 0, + "material": 900.41, + "industry": 0, + "population": 0.54, + "colonists": 0, + "production": "Drone", + "freeIndustry": 0.14 + }, + { + "owner": "Zodiac", + "x": 327.52, + "y": 554.61, + "number": 647, + "size": 1801.57, + "name": "Dracula", + "resources": 4.76, + "capital": 0, + "material": 0, + "industry": 291.68, + "population": 1801.57, + "colonists": 26.16, + "production": "Capital", + "freeIndustry": 669.15 + }, + { + "owner": "Slimes", + "x": 793.91, + "y": 471.82, + "number": 26, + "size": 733.6, + "name": "Normal-1075-0026", + "resources": 2.91, + "capital": 0, + "material": 0, + "industry": 733.6, + "population": 733.6, + "colonists": 43.23, + "production": "Perf_3", + "freeIndustry": 733.6 + }, + { + "owner": "Slimes", + "x": 8.72, + "y": 573.36, + "number": 73, + "size": 981.26, + "name": "Normal-5644-0073", + "resources": 5.85, + "capital": 0, + "material": 0, + "industry": 496.64, + "population": 981.26, + "colonists": 81.91, + "production": "Capital", + "freeIndustry": 617.79 + }, + { + "owner": "Slimes", + "x": 2.42, + "y": 566.52, + "number": 261, + "size": 468.64, + "name": "Rich-7400-0261", + "resources": 20.43, + "capital": 86.23, + "material": 6724.11, + "industry": 468.64, + "population": 468.64, + "colonists": 23.43, + "production": "Weapons_Research", + "freeIndustry": 468.64 + }, + { + "owner": "Slimes", + "x": 788.62, + "y": 470.18, + "number": 295, + "size": 1000, + "name": "LargeSwamp", + "resources": 10, + "capital": 0, + "material": 0, + "industry": 903.11, + "population": 1000, + "colonists": 20.07, + "production": "Capital", + "freeIndustry": 927.33 + }, + { + "owner": "Slimes", + "x": 780.46, + "y": 468.22, + "number": 358, + "size": 500, + "name": "DW-8870-0358", + "resources": 10, + "capital": 0, + "material": 7.92, + "industry": 344.13, + "population": 500, + "colonists": 15, + "production": "Drive_Research", + "freeIndustry": 383.1 + }, + { + "owner": "Slimes", + "x": 757.4, + "y": 470.13, + "number": 378, + "size": 1474.29, + "name": "Big-4227-0378", + "resources": 5.77, + "capital": 0, + "material": 0.98, + "industry": 1435.15, + "population": 1474.29, + "colonists": 39.24, + "production": "Drive_Research", + "freeIndustry": 1444.94 + }, + { + "owner": "Slimes", + "x": 17.24, + "y": 533.07, + "number": 528, + "size": 1266.43, + "name": "EguHOPOr", + "resources": 2.33, + "capital": 0, + "material": 0, + "industry": 542.17, + "population": 1266.43, + "colonists": 31.81, + "production": "Capital", + "freeIndustry": 723.24 + }, + { + "owner": "Slimes", + "x": 784.89, + "y": 465.75, + "number": 593, + "size": 106.6, + "name": "Rich-6646-0593", + "resources": 19.06, + "capital": 0, + "material": 18395.12, + "industry": 9.55, + "population": 106.6, + "colonists": 18.21, + "production": "Capital", + "freeIndustry": 33.82 + }, + { + "owner": "Slimes", + "x": 787.6, + "y": 464.38, + "number": 599, + "size": 500, + "name": "DW-5058-0599", + "resources": 10, + "capital": 52.3, + "material": 0, + "industry": 500, + "population": 500, + "colonists": 10, + "production": "Weapons_Research", + "freeIndustry": 500 + }, + { + "owner": "Flagist", + "x": 191.63, + "y": 535.12, + "number": 15, + "size": 243.6, + "name": "Rich-5201-0015", + "resources": 16.61, + "capital": 0, + "material": 0, + "industry": 0, + "population": 2.83, + "colonists": 0, + "production": "Drone", + "freeIndustry": 0.71 + }, + { + "owner": "Flagist", + "x": 282.41, + "y": 527.81, + "number": 27, + "size": 500, + "name": "Ksena", + "resources": 10, + "capital": 0, + "material": 512.11, + "industry": 0, + "population": 3.06, + "colonists": 0, + "production": "Drone", + "freeIndustry": 0.76 + }, + { + "owner": "Flagist", + "x": 272.24, + "y": 453.61, + "number": 29, + "size": 612.7, + "name": "Pormar", + "resources": 5.1, + "capital": 6.18, + "material": 0.09, + "industry": 612.7, + "population": 612.7, + "colonists": 50.73, + "production": "Weapons_Research", + "freeIndustry": 612.7 + }, + { + "owner": "Flagist", + "x": 189.39, + "y": 533.79, + "number": 72, + "size": 318.9, + "name": "Hlam", + "resources": 23.46, + "capital": 0, + "material": 0, + "industry": 0, + "population": 2.83, + "colonists": 0, + "production": "Drone", + "freeIndustry": 0.71 + }, + { + "owner": "Flagist", + "x": 257.77, + "y": 460.65, + "number": 74, + "size": 828.24, + "name": "Kinbin", + "resources": 3.41, + "capital": 37.65, + "material": 0.48, + "industry": 828.24, + "population": 828.24, + "colonists": 99.31, + "production": "Weapons_Research", + "freeIndustry": 828.24 + }, + { + "owner": "Flagist", + "x": 261.88, + "y": 506.61, + "number": 127, + "size": 1.68, + "name": "Super-1066-0127", + "resources": 0.92, + "capital": 0, + "material": 0, + "industry": 0.04, + "population": 0.54, + "colonists": 0, + "production": "Hi", + "freeIndustry": 0.16 + }, + { + "owner": "Flagist", + "x": 263.97, + "y": 453.38, + "number": 201, + "size": 1000, + "name": "Anlanband", + "resources": 10, + "capital": 0, + "material": 1.01, + "industry": 1000, + "population": 1000, + "colonists": 20, + "production": "Weapons_Research", + "freeIndustry": 1000 + }, + { + "owner": "Flagist", + "x": 242.15, + "y": 558.1, + "number": 222, + "size": 1638.46, + "name": "Goovin", + "resources": 1.09, + "capital": 0, + "material": 1588.2, + "industry": 38.11, + "population": 823.09, + "colonists": 0, + "production": "Capital", + "freeIndustry": 234.35 + }, + { + "owner": "Flagist", + "x": 189.7, + "y": 534.95, + "number": 251, + "size": 500, + "name": "Stun", + "resources": 10, + "capital": 0, + "material": 0.13, + "industry": 0, + "population": 2.83, + "colonists": 0, + "production": "Drone", + "freeIndustry": 0.71 + }, + { + "owner": "Flagist", + "x": 257.06, + "y": 473.01, + "number": 275, + "size": 0.89, + "name": "Porrond", + "resources": 0.51, + "capital": 0, + "material": 0, + "industry": 0.21, + "population": 0.89, + "colonists": 0.06, + "production": "Weapons_Research", + "freeIndustry": 0.38 + }, + { + "owner": "Flagist", + "x": 245.2, + "y": 535, + "number": 305, + "size": 1000, + "name": "Mikolin", + "resources": 10, + "capital": 0, + "material": 999.67, + "industry": 0, + "population": 2.74, + "colonists": 0, + "production": "Drone", + "freeIndustry": 0.69 + }, + { + "owner": "Flagist", + "x": 241.93, + "y": 538.14, + "number": 340, + "size": 500, + "name": "Heauru", + "resources": 10, + "capital": 93.19, + "material": 498.51, + "industry": 2.88, + "population": 2.88, + "colonists": 0, + "production": "Drone", + "freeIndustry": 2.88 + }, + { + "owner": "Flagist", + "x": 223.57, + "y": 416.79, + "number": 376, + "size": 522.31, + "name": "Andon", + "resources": 8.49, + "capital": 0, + "material": 0, + "industry": 522.31, + "population": 522.31, + "colonists": 41.78, + "production": "Weapons_Research", + "freeIndustry": 522.31 + }, + { + "owner": "Flagist", + "x": 280.9, + "y": 519.51, + "number": 377, + "size": 500, + "name": "Atkabin", + "resources": 10, + "capital": 0, + "material": 443.72, + "industry": 0, + "population": 3.06, + "colonists": 0, + "production": "Drone", + "freeIndustry": 0.76 + }, + { + "owner": "Flagist", + "x": 237.52, + "y": 528.94, + "number": 409, + "size": 741.42, + "name": "Altinopi", + "resources": 2.45, + "capital": 0, + "material": 743.74, + "industry": 0.3, + "population": 0.63, + "colonists": 0, + "production": "Drone", + "freeIndustry": 0.38 + }, + { + "owner": "Flagist", + "x": 244.54, + "y": 540.74, + "number": 434, + "size": 980.94, + "name": "Vennio", + "resources": 9.54, + "capital": 4.31, + "material": 981.86, + "industry": 0.63, + "population": 0.63, + "colonists": 0, + "production": "Drone", + "freeIndustry": 0.63 + }, + { + "owner": "Flagist", + "x": 257.82, + "y": 504.58, + "number": 436, + "size": 1227.52, + "name": "Koscei", + "resources": 6.42, + "capital": 0, + "material": 683.15, + "industry": 442.52, + "population": 1227.52, + "colonists": 26.51, + "production": "Capital", + "freeIndustry": 638.77 + }, + { + "owner": "Flagist", + "x": 278.57, + "y": 522.31, + "number": 438, + "size": 1000, + "name": "Apokalipse", + "resources": 10, + "capital": 0, + "material": 752.8, + "industry": 183.21, + "population": 898.18, + "colonists": 0, + "production": "Capital", + "freeIndustry": 361.95 + }, + { + "owner": "Flagist", + "x": 261.38, + "y": 457.21, + "number": 471, + "size": 500, + "name": "Avnir", + "resources": 10, + "capital": 0, + "material": 1.51, + "industry": 500, + "population": 500, + "colonists": 120, + "production": "Weapons_Research", + "freeIndustry": 500 + }, + { + "owner": "Flagist", + "x": 271.31, + "y": 525.7, + "number": 569, + "size": 984.48, + "name": "Furija", + "resources": 3.85, + "capital": 0, + "material": 894.44, + "industry": 134.18, + "population": 772.6, + "colonists": 0, + "production": "Capital", + "freeIndustry": 293.78 + }, + { + "owner": "Flagist", + "x": 250.68, + "y": 533.74, + "number": 624, + "size": 500, + "name": "Arafiel", + "resources": 10, + "capital": 0, + "material": 499.64, + "industry": 0, + "population": 2.88, + "colonists": 0, + "production": "Drone", + "freeIndustry": 0.72 + }, + { + "owner": "Flagist", + "x": 266.71, + "y": 490.96, + "number": 646, + "size": 1797.08, + "name": "Vakain", + "resources": 9.67, + "capital": 95.99, + "material": 0, + "industry": 1797.08, + "population": 1797.08, + "colonists": 75.05, + "production": "Vakain_Turr", + "freeIndustry": 1797.08 + }, + { + "owner": "Flagist", + "x": 257.12, + "y": 449.3, + "number": 661, + "size": 696.81, + "name": "Tannas", + "resources": 8.1, + "capital": 43.4, + "material": 0.84, + "industry": 696.81, + "population": 696.81, + "colonists": 62.99, + "production": "Weapons_Research", + "freeIndustry": 696.81 + }, + { + "owner": "Flagist", + "x": 268.48, + "y": 448.69, + "number": 664, + "size": 500, + "name": "Varomar", + "resources": 10, + "capital": 0, + "material": 1.51, + "industry": 500, + "population": 500, + "colonists": 32.96, + "production": "Weapons_Research", + "freeIndustry": 500 + }, + { + "owner": "Flagist", + "x": 284.36, + "y": 527.15, + "number": 665, + "size": 807.61, + "name": "Devil", + "resources": 3.43, + "capital": 0, + "material": 762.82, + "industry": 0, + "population": 0.59, + "colonists": 0, + "production": "Drone", + "freeIndustry": 0.15 + }, + { + "owner": "Flagist", + "x": 272.79, + "y": 488.36, + "number": 694, + "size": 0.55, + "name": "Gana", + "resources": 0.82, + "capital": 0.07, + "material": 0, + "industry": 0.55, + "population": 0.55, + "colonists": 0.2, + "production": "Shields_Research", + "freeIndustry": 0.55 + }, + { + "owner": "Bupyc", + "x": 136.57, + "y": 49.85, + "number": 2, + "size": 601.86, + "name": "B2", + "resources": 8.66, + "capital": 0, + "material": 449.81, + "industry": 6, + "population": 205.66, + "colonists": 0, + "production": "drone", + "freeIndustry": 55.91 + }, + { + "owner": "Koreans", + "x": 117.87, + "y": 795.21, + "number": 9, + "size": 500, + "name": "Dw2", + "resources": 10, + "capital": 0, + "material": 499.91, + "industry": 0.09, + "population": 0.93, + "colonists": 0, + "production": "Capital", + "freeIndustry": 0.3 + }, + { + "owner": "Koreans", + "x": 25.41, + "y": 768, + "number": 28, + "size": 500, + "name": "DW-7156-0028", + "resources": 10, + "capital": 0, + "material": 233.34, + "industry": 0.07, + "population": 0.5, + "colonists": 0, + "production": "Capital", + "freeIndustry": 0.18 + }, + { + "owner": "Koreans", + "x": 30.05, + "y": 775.46, + "number": 45, + "size": 500, + "name": "DW-0690-0045", + "resources": 10, + "capital": 0, + "material": 240.81, + "industry": 0, + "population": 0.54, + "colonists": 0, + "production": "!", + "freeIndustry": 0.14 + }, + { + "owner": "Koreans", + "x": 145.88, + "y": 762.6, + "number": 49, + "size": 739.42, + "name": "Nnew49", + "resources": 2.16, + "capital": 0, + "material": 699.7, + "industry": 0, + "population": 1.01, + "colonists": 0, + "production": "!", + "freeIndustry": 0.25 + }, + { + "owner": "Koreans", + "x": 66.81, + "y": 733.6, + "number": 111, + "size": 973.04, + "name": "Norma", + "resources": 3.22, + "capital": 0, + "material": 1067.32, + "industry": 0.27, + "population": 0.5, + "colonists": 0, + "production": "d", + "freeIndustry": 0.33 + }, + { + "owner": "Koreans", + "x": 73.51, + "y": 729.44, + "number": 183, + "size": 1000, + "name": "HATUHA", + "resources": 10, + "capital": 34.61, + "material": 1098.88, + "industry": 0.5, + "population": 0.5, + "colonists": 0, + "production": "!", + "freeIndustry": 0.5 + }, + { + "owner": "Koreans", + "x": 70, + "y": 727.21, + "number": 190, + "size": 418.97, + "name": "MAL", + "resources": 23.21, + "capital": 0, + "material": 419.06, + "industry": 0, + "population": 0.5, + "colonists": 0, + "production": "!", + "freeIndustry": 0.13 + }, + { + "owner": "Koreans", + "x": 60.87, + "y": 774.17, + "number": 191, + "size": 2057.88, + "name": "S3", + "resources": 2.98, + "capital": 0, + "material": 0, + "industry": 347.89, + "population": 2057.88, + "colonists": 126.19, + "production": "MAPK2", + "freeIndustry": 775.39 + }, + { + "owner": "Koreans", + "x": 76.18, + "y": 738.51, + "number": 206, + "size": 680.27, + "name": "USPEL", + "resources": 1.74, + "capital": 0, + "material": 744.56, + "industry": 0.09, + "population": 0.5, + "colonists": 0, + "production": "d", + "freeIndustry": 0.19 + }, + { + "owner": "Koreans", + "x": 46.14, + "y": 693.57, + "number": 292, + "size": 775.46, + "name": "SmalGood", + "resources": 3.7, + "capital": 0, + "material": 737.18, + "industry": 0, + "population": 0.43, + "colonists": 0, + "production": "!", + "freeIndustry": 0.11 + }, + { + "owner": "Koreans", + "x": 42.43, + "y": 692.64, + "number": 369, + "size": 896.37, + "name": "SGood", + "resources": 9.74, + "capital": 0, + "material": 896.33, + "industry": 0.04, + "population": 0.93, + "colonists": 0, + "production": "!", + "freeIndustry": 0.26 + }, + { + "owner": "Koreans", + "x": 38.53, + "y": 691.01, + "number": 394, + "size": 500, + "name": "D1", + "resources": 10, + "capital": 0, + "material": 500.06, + "industry": 0, + "population": 0.86, + "colonists": 0, + "production": "!", + "freeIndustry": 0.22 + }, + { + "owner": "Koreans", + "x": 11.55, + "y": 12.44, + "number": 421, + "size": 724.52, + "name": "A6", + "resources": 4.32, + "capital": 3.45, + "material": 0, + "industry": 724.52, + "population": 724.52, + "colonists": 21.74, + "production": "stone", + "freeIndustry": 724.52 + }, + { + "owner": "Koreans", + "x": 73.33, + "y": 726.1, + "number": 474, + "size": 500, + "name": "VotEtoNychka", + "resources": 10, + "capital": 0, + "material": 443.4, + "industry": 0, + "population": 0.5, + "colonists": 0, + "production": "!", + "freeIndustry": 0.13 + }, + { + "owner": "Koreans", + "x": 47.17, + "y": 772.75, + "number": 504, + "size": 1630.54, + "name": "Big1", + "resources": 9.97, + "capital": 0, + "material": 1679.31, + "industry": 1, + "population": 10.08, + "colonists": 0, + "production": "Capital", + "freeIndustry": 3.27 + }, + { + "owner": "Koreans", + "x": 117.47, + "y": 0.33, + "number": 513, + "size": 500, + "name": "Dw1", + "resources": 10, + "capital": 0, + "material": 440.17, + "industry": 0.04, + "population": 0.86, + "colonists": 0, + "production": "Capital", + "freeIndustry": 0.25 + }, + { + "owner": "Koreans", + "x": 115.36, + "y": 2.73, + "number": 519, + "size": 1000, + "name": "HomeWorld", + "resources": 10, + "capital": 0, + "material": 1000.04, + "industry": 0, + "population": 0.54, + "colonists": 0, + "production": "!", + "freeIndustry": 0.14 + }, + { + "owner": "Koreans", + "x": 58.5, + "y": 779.42, + "number": 549, + "size": 696.28, + "name": "B3", + "resources": 4.09, + "capital": 0, + "material": 0, + "industry": 43.12, + "population": 539.02, + "colonists": 0, + "production": "d", + "freeIndustry": 167.1 + }, + { + "owner": "Koreans", + "x": 54.74, + "y": 1.37, + "number": 552, + "size": 643.35, + "name": "Normal-2036-0552", + "resources": 0.71, + "capital": 0, + "material": 0, + "industry": 209.51, + "population": 643.35, + "colonists": 40.12, + "production": "d", + "freeIndustry": 317.97 + }, + { + "owner": "Koreans", + "x": 74.01, + "y": 721.87, + "number": 559, + "size": 500, + "name": "POLHATI", + "resources": 10, + "capital": 0, + "material": 501.25, + "industry": 0.95, + "population": 1.01, + "colonists": 0, + "production": "!", + "freeIndustry": 0.96 + }, + { + "owner": "Koreans", + "x": 56.98, + "y": 796.85, + "number": 602, + "size": 1000, + "name": "Hw2-602", + "resources": 10, + "capital": 0, + "material": 407.94, + "industry": 35.55, + "population": 433.42, + "colonists": 0, + "production": "d", + "freeIndustry": 135.02 + }, + { + "owner": "Koreans", + "x": 29.29, + "y": 774.48, + "number": 612, + "size": 854.88, + "name": "Normal-5496-0612", + "resources": 2.95, + "capital": 0, + "material": 0, + "industry": 264.6, + "population": 854.88, + "colonists": 63.27, + "production": "d", + "freeIndustry": 412.17 + }, + { + "owner": "Koreans", + "x": 42.42, + "y": 695.7, + "number": 635, + "size": 451.34, + "name": "PGT", + "resources": 17.57, + "capital": 0, + "material": 450.27, + "industry": 0.04, + "population": 0.93, + "colonists": 0, + "production": "!", + "freeIndustry": 0.26 + }, + { + "owner": "Koreans", + "x": 72.41, + "y": 695.31, + "number": 654, + "size": 2066.7, + "name": "BedBig", + "resources": 0.25, + "capital": 0, + "material": 2155.1, + "industry": 0.04, + "population": 0.93, + "colonists": 0, + "production": "!", + "freeIndustry": 0.26 + }, + { + "owner": "Koreans", + "x": 37.67, + "y": 694.36, + "number": 693, + "size": 1000, + "name": "SSSanHom", + "resources": 10, + "capital": 0, + "material": 1100.05, + "industry": 0.04, + "population": 0.93, + "colonists": 0, + "production": "!", + "freeIndustry": 0.26 + }, + { + "owner": "Koreans", + "x": 61.35, + "y": 795.46, + "number": 697, + "size": 500, + "name": "DW-4659-0697", + "resources": 10, + "capital": 0, + "material": 0, + "industry": 54.06, + "population": 500, + "colonists": 30, + "production": "d", + "freeIndustry": 165.55 + }, + { + "owner": "Nails", + "x": 270.61, + "y": 687.23, + "number": 32, + "size": 799.11, + "name": "B-032", + "resources": 0.2, + "capital": 0, + "material": 559.02, + "industry": 0.42, + "population": 9.07, + "colonists": 0, + "production": "Capital", + "freeIndustry": 2.58 + }, + { + "owner": "Nails", + "x": 345.25, + "y": 644.4, + "number": 48, + "size": 1000, + "name": "CANCER", + "resources": 10, + "capital": 0, + "material": 0, + "industry": 0, + "population": 1000, + "colonists": 81.4, + "production": "pup", + "freeIndustry": 250 + }, + { + "owner": "Nails", + "x": 265.59, + "y": 701.11, + "number": 69, + "size": 787.38, + "name": "B-069", + "resources": 9.54, + "capital": 0, + "material": 786.97, + "industry": 0.96, + "population": 20.74, + "colonists": 0, + "production": "Capital", + "freeIndustry": 5.9 + }, + { + "owner": "Nails", + "x": 347.82, + "y": 651.21, + "number": 203, + "size": 83.47, + "name": "PISCES", + "resources": 15.25, + "capital": 0, + "material": 0, + "industry": 15.5, + "population": 83.47, + "colonists": 5.84, + "production": "pup", + "freeIndustry": 32.49 + }, + { + "owner": "Nails", + "x": 327.03, + "y": 692.1, + "number": 225, + "size": 964.8, + "name": "LEO", + "resources": 1.22, + "capital": 0, + "material": 950.11, + "industry": 56.16, + "population": 506.72, + "colonists": 0, + "production": "pup", + "freeIndustry": 168.8 + }, + { + "owner": "Nails", + "x": 338.79, + "y": 647.5, + "number": 344, + "size": 500, + "name": "TAURUS", + "resources": 10, + "capital": 0, + "material": 0, + "industry": 31.09, + "population": 500, + "colonists": 18.28, + "production": "pup", + "freeIndustry": 148.32 + }, + { + "owner": "Nails", + "x": 331.53, + "y": 699.98, + "number": 396, + "size": 500, + "name": "SCORPIO", + "resources": 10, + "capital": 0, + "material": 0, + "industry": 494.97, + "population": 500, + "colonists": 15.77, + "production": "F23", + "freeIndustry": 496.23 + }, + { + "owner": "Nails", + "x": 321.8, + "y": 691.93, + "number": 425, + "size": 920.76, + "name": "SAGITTARIUS", + "resources": 5.57, + "capital": 0, + "material": 425.11, + "industry": 260.11, + "population": 920.76, + "colonists": 55.17, + "production": "24", + "freeIndustry": 425.27 + }, + { + "owner": "Nails", + "x": 274.06, + "y": 696.52, + "number": 430, + "size": 500, + "name": "B-430", + "resources": 10, + "capital": 0, + "material": 327.38, + "industry": 0.94, + "population": 9.8, + "colonists": 0, + "production": "Capital", + "freeIndustry": 3.15 + }, + { + "owner": "Nails", + "x": 342.41, + "y": 643.3, + "number": 530, + "size": 500, + "name": "CAPRICORN", + "resources": 10, + "capital": 0, + "material": 0, + "industry": 16.4, + "population": 500, + "colonists": 53.46, + "production": "pup", + "freeIndustry": 137.3 + }, + { + "owner": "Nails", + "x": 301.16, + "y": 721.65, + "number": 587, + "size": 1051.7, + "name": "B-587", + "resources": 1.04, + "capital": 0, + "material": 116.49, + "industry": 0.42, + "population": 9.07, + "colonists": 0, + "production": "Capital", + "freeIndustry": 2.58 + }, + { + "owner": "Nails", + "x": 345.92, + "y": 651.52, + "number": 673, + "size": 872.46, + "name": "GEMINI", + "resources": 5.51, + "capital": 0, + "material": 0, + "industry": 57.69, + "population": 872.46, + "colonists": 100.87, + "production": "pup", + "freeIndustry": 261.39 + }, + { + "owner": "Nails", + "x": 322.35, + "y": 703.51, + "number": 691, + "size": 8.24, + "name": "LIBRA", + "resources": 0.17, + "capital": 0.1, + "material": 0, + "industry": 8.24, + "population": 8.24, + "colonists": 28.72, + "production": "Drive_Research", + "freeIndustry": 8.24 + }, + { + "owner": "Ricksha", + "x": 86.45, + "y": 513.1, + "number": 55, + "size": 816.39, + "name": "Antenna", + "resources": 2.68, + "capital": 0, + "material": 631.01, + "industry": 168.6, + "population": 196.66, + "colonists": 0, + "production": "Dron", + "freeIndustry": 175.62 + }, + { + "owner": "Ricksha", + "x": 113.02, + "y": 515.8, + "number": 332, + "size": 500, + "name": "PEHKE", + "resources": 10, + "capital": 0, + "material": 438.82, + "industry": 0, + "population": 181.51, + "colonists": 0, + "production": "Dron", + "freeIndustry": 45.38 + }, + { + "owner": "Ricksha", + "x": 63.7, + "y": 560.33, + "number": 489, + "size": 500, + "name": "DW-1737-0489", + "resources": 10, + "capital": 0, + "material": 4.64, + "industry": 0, + "population": 206.27, + "colonists": 0, + "production": "Dron", + "freeIndustry": 51.57 + }, + { + "owner": "Ricksha", + "x": 132.16, + "y": 569.5, + "number": 641, + "size": 1408.58, + "name": "Tyno", + "resources": 3.11, + "capital": 0, + "material": 1393.74, + "industry": 0.01, + "population": 0.3, + "colonists": 0, + "production": "Dron", + "freeIndustry": 0.08 + }, + { + "owner": "Frightners", + "x": 778.82, + "y": 395.75, + "number": 410, + "size": 7.78, + "name": "T-1", + "resources": 0.97, + "capital": 0, + "material": 0, + "industry": 4.86, + "population": 7.78, + "colonists": 0.62, + "production": "Capital", + "freeIndustry": 5.59 + }, + { + "owner": "Frightners", + "x": 788.73, + "y": 397.75, + "number": 585, + "size": 5.77, + "name": "T-2", + "resources": 0.39, + "capital": 0, + "material": 0, + "industry": 2.57, + "population": 5.77, + "colonists": 0.46, + "production": "Capital", + "freeIndustry": 3.37 + }, + { + "owner": "Enoxes", + "x": 175.41, + "y": 426.59, + "number": 538, + "size": 500, + "name": "Rp", + "resources": 10, + "capital": 0, + "material": 0, + "industry": 500, + "population": 500, + "colonists": 105, + "production": "FS-6", + "freeIndustry": 500 + }, + { + "owner": "Enoxes", + "x": 170.34, + "y": 432.61, + "number": 698, + "size": 500, + "name": "Dp", + "resources": 10, + "capital": 0, + "material": 0, + "industry": 500, + "population": 500, + "colonists": 131.85, + "production": "FS-6", + "freeIndustry": 500 + } + ], + "uninhabitedPlanet": [ + { + "x": 75.94, + "y": 565.36, + "number": 20, + "size": 500, + "name": "DW-1207-0020", + "resources": 10, + "capital": 0, + "material": 0 + }, + { + "x": 87.82, + "y": 569.26, + "number": 46, + "size": 1114.17, + "name": "Povezlp", + "resources": 2.03, + "capital": 0, + "material": 160.12 + }, + { + "x": 144.98, + "y": 48.16, + "number": 90, + "size": 500, + "name": "BDW1", + "resources": 10, + "capital": 0, + "material": 454.52 + }, + { + "x": 234.33, + "y": 763.77, + "number": 97, + "size": 828.76, + "name": "Y2K", + "resources": 8.71, + "capital": 0, + "material": 10.23 + }, + { + "x": 71.73, + "y": 561.86, + "number": 134, + "size": 1000, + "name": "HW-1259-0134", + "resources": 10, + "capital": 0, + "material": 0 + }, + { + "x": 49.38, + "y": 797.57, + "number": 141, + "size": 612.38, + "name": "B1", + "resources": 1.96, + "capital": 0, + "material": 52.6 + }, + { + "x": 41.51, + "y": 551.04, + "number": 227, + "size": 1638.83, + "name": "Sun", + "resources": 1.48, + "capital": 0, + "material": 970.88 + }, + { + "x": 44.31, + "y": 686.97, + "number": 231, + "size": 500, + "name": "D2", + "resources": 10, + "capital": 0, + "material": 484.29 + }, + { + "x": 61.94, + "y": 0.02, + "number": 243, + "size": 500, + "name": "Dw2-243", + "resources": 10, + "capital": 7.69, + "material": 499.68 + }, + { + "x": 118.17, + "y": 0.08, + "number": 268, + "size": 43.5, + "name": "R248", + "resources": 21.41, + "capital": 0.92, + "material": 43.5 + }, + { + "x": 62.01, + "y": 563.34, + "number": 343, + "size": 566.39, + "name": "BETO", + "resources": 2.67, + "capital": 0, + "material": 0.43 + }, + { + "x": 22.05, + "y": 797.27, + "number": 370, + "size": 2422.64, + "name": "S1", + "resources": 1.1, + "capital": 0, + "material": 2361.74 + }, + { + "x": 137.85, + "y": 63.39, + "number": 391, + "size": 757.09, + "name": "B391", + "resources": 3.41, + "capital": 0, + "material": 683.59 + }, + { + "x": 98.82, + "y": 516.82, + "number": 403, + "size": 675.77, + "name": "PAgOCTb", + "resources": 8.81, + "capital": 0, + "material": 659.85 + }, + { + "x": 120.65, + "y": 794.31, + "number": 431, + "size": 507.25, + "name": "N431", + "resources": 7.63, + "capital": 8.62, + "material": 504.06 + }, + { + "x": 89.75, + "y": 571.97, + "number": 432, + "size": 8.46, + "name": "1", + "resources": 0.7, + "capital": 0, + "material": 0.37 + }, + { + "x": 73.2, + "y": 556.76, + "number": 500, + "size": 797.02, + "name": "KPuT", + "resources": 8.21, + "capital": 139.4, + "material": 810.52 + }, + { + "x": 92.35, + "y": 572.22, + "number": 506, + "size": 292.5, + "name": "VVHTREWW", + "resources": 16.94, + "capital": 0, + "material": 68.45 + }, + { + "x": 88.04, + "y": 505.85, + "number": 525, + "size": 0.22, + "name": "Angel", + "resources": 0.63, + "capital": 0.21, + "material": 0.22 + }, + { + "x": 112.74, + "y": 797.74, + "number": 596, + "size": 754.1, + "name": "N596", + "resources": 6.58, + "capital": 0, + "material": 705.03 + }, + { + "x": 159.26, + "y": 532.61, + "number": 632, + "size": 659.52, + "name": "3BE3gA", + "resources": 2.12, + "capital": 0, + "material": 0.12 + }, + { + "x": 98.01, + "y": 516.69, + "number": 649, + "size": 831.72, + "name": "Labirint", + "resources": 6.32, + "capital": 0, + "material": 886.37 + }, + { + "x": 374.02, + "y": 11.39, + "number": 682, + "size": 500, + "name": "Ser_Arthur_2", + "resources": 10, + "capital": 0, + "material": 500 + } + ], + "unidentifiedPlanet": [ + { + "x": 738.08, + "y": 600.26, + "number": 0 + }, + { + "x": 579.12, + "y": 489.37, + "number": 1 + }, + { + "x": 679.78, + "y": 675.4, + "number": 3 + }, + { + "x": 749.22, + "y": 736.4, + "number": 4 + }, + { + "x": 746.13, + "y": 737.21, + "number": 5 + }, + { + "x": 627.55, + "y": 528.25, + "number": 6 + }, + { + "x": 271.69, + "y": 672.7, + "number": 7 + }, + { + "x": 657.2, + "y": 599.58, + "number": 8 + }, + { + "x": 83, + "y": 306.62, + "number": 10 + }, + { + "x": 127.62, + "y": 57.77, + "number": 11 + }, + { + "x": 12.04, + "y": 106.42, + "number": 13 + }, + { + "x": 327.08, + "y": 702.71, + "number": 14 + }, + { + "x": 495.86, + "y": 737.82, + "number": 16 + }, + { + "x": 373.72, + "y": 471.28, + "number": 18 + }, + { + "x": 535.08, + "y": 445.72, + "number": 19 + }, + { + "x": 498.76, + "y": 624.89, + "number": 21 + }, + { + "x": 171.39, + "y": 206.33, + "number": 22 + }, + { + "x": 500.82, + "y": 69.06, + "number": 23 + }, + { + "x": 438.37, + "y": 403.98, + "number": 30 + }, + { + "x": 711.64, + "y": 461.44, + "number": 31 + }, + { + "x": 373.11, + "y": 117.06, + "number": 33 + }, + { + "x": 82.94, + "y": 296.17, + "number": 34 + }, + { + "x": 196.1, + "y": 129.84, + "number": 35 + }, + { + "x": 491.28, + "y": 57.92, + "number": 36 + }, + { + "x": 770.4, + "y": 682.77, + "number": 37 + }, + { + "x": 681.65, + "y": 663, + "number": 39 + }, + { + "x": 405.24, + "y": 169.98, + "number": 40 + }, + { + "x": 200.84, + "y": 177.32, + "number": 41 + }, + { + "x": 463.85, + "y": 347.15, + "number": 42 + }, + { + "x": 293.44, + "y": 84.01, + "number": 43 + }, + { + "x": 738.6, + "y": 393.91, + "number": 44 + }, + { + "x": 745.85, + "y": 13.94, + "number": 47 + }, + { + "x": 749.58, + "y": 405.31, + "number": 50 + }, + { + "x": 454.71, + "y": 158.1, + "number": 51 + }, + { + "x": 317.8, + "y": 86.3, + "number": 52 + }, + { + "x": 435.88, + "y": 407.68, + "number": 53 + }, + { + "x": 251.01, + "y": 41.88, + "number": 54 + }, + { + "x": 505.79, + "y": 249.72, + "number": 57 + }, + { + "x": 652.61, + "y": 330.09, + "number": 58 + }, + { + "x": 546.7, + "y": 343.69, + "number": 59 + }, + { + "x": 363.53, + "y": 550.5, + "number": 60 + }, + { + "x": 441, + "y": 734.62, + "number": 61 + }, + { + "x": 653.45, + "y": 326.72, + "number": 62 + }, + { + "x": 730.81, + "y": 448.26, + "number": 63 + }, + { + "x": 489.59, + "y": 477.46, + "number": 64 + }, + { + "x": 188.83, + "y": 347.55, + "number": 65 + }, + { + "x": 403.89, + "y": 6.25, + "number": 66 + }, + { + "x": 757.57, + "y": 588.39, + "number": 67 + }, + { + "x": 191.54, + "y": 341.38, + "number": 68 + }, + { + "x": 506, + "y": 255.18, + "number": 70 + }, + { + "x": 537.59, + "y": 1.01, + "number": 71 + }, + { + "x": 718.99, + "y": 333.96, + "number": 75 + }, + { + "x": 117.65, + "y": 185.52, + "number": 76 + }, + { + "x": 375.11, + "y": 109.19, + "number": 77 + }, + { + "x": 202.26, + "y": 180.91, + "number": 78 + }, + { + "x": 498.69, + "y": 740.44, + "number": 80 + }, + { + "x": 479.43, + "y": 441.35, + "number": 81 + }, + { + "x": 15.71, + "y": 772.35, + "number": 82 + }, + { + "x": 253.71, + "y": 40.14, + "number": 83 + }, + { + "x": 538.56, + "y": 346.35, + "number": 84 + }, + { + "x": 490.92, + "y": 734.56, + "number": 86 + }, + { + "x": 592.2, + "y": 40.4, + "number": 88 + }, + { + "x": 723.29, + "y": 729.34, + "number": 89 + }, + { + "x": 296.01, + "y": 148.39, + "number": 91 + }, + { + "x": 585.53, + "y": 612.06, + "number": 92 + }, + { + "x": 380.68, + "y": 798.1, + "number": 93 + }, + { + "x": 635.49, + "y": 590.08, + "number": 94 + }, + { + "x": 659.02, + "y": 444.26, + "number": 96 + }, + { + "x": 649.08, + "y": 68.95, + "number": 98 + }, + { + "x": 716.98, + "y": 334.02, + "number": 99 + }, + { + "x": 650.08, + "y": 684.55, + "number": 100 + }, + { + "x": 567.25, + "y": 612.72, + "number": 101 + }, + { + "x": 74.61, + "y": 189.92, + "number": 102 + }, + { + "x": 531.61, + "y": 466.59, + "number": 103 + }, + { + "x": 184.83, + "y": 529.96, + "number": 104 + }, + { + "x": 763.96, + "y": 254.77, + "number": 105 + }, + { + "x": 578.4, + "y": 483.8, + "number": 106 + }, + { + "x": 449.31, + "y": 160.08, + "number": 107 + }, + { + "x": 242.28, + "y": 125.37, + "number": 109 + }, + { + "x": 587.44, + "y": 43.97, + "number": 110 + }, + { + "x": 108.16, + "y": 184.57, + "number": 112 + }, + { + "x": 482.84, + "y": 444.79, + "number": 113 + }, + { + "x": 779.73, + "y": 65.27, + "number": 115 + }, + { + "x": 424.82, + "y": 725.39, + "number": 117 + }, + { + "x": 694.75, + "y": 44.63, + "number": 118 + }, + { + "x": 589.01, + "y": 490.13, + "number": 120 + }, + { + "x": 578.8, + "y": 325.11, + "number": 121 + }, + { + "x": 718.75, + "y": 462.86, + "number": 122 + }, + { + "x": 774.24, + "y": 180.3, + "number": 123 + }, + { + "x": 496.77, + "y": 255.2, + "number": 124 + }, + { + "x": 340.09, + "y": 120.81, + "number": 125 + }, + { + "x": 779.91, + "y": 653.9, + "number": 126 + }, + { + "x": 786.08, + "y": 296.59, + "number": 128 + }, + { + "x": 327.97, + "y": 696.68, + "number": 129 + }, + { + "x": 632.56, + "y": 586.65, + "number": 131 + }, + { + "x": 536.32, + "y": 0.29, + "number": 132 + }, + { + "x": 670.83, + "y": 380.38, + "number": 133 + }, + { + "x": 501.2, + "y": 732.35, + "number": 135 + }, + { + "x": 791.5, + "y": 298.42, + "number": 136 + }, + { + "x": 180.18, + "y": 433.44, + "number": 137 + }, + { + "x": 474.92, + "y": 550.11, + "number": 138 + }, + { + "x": 151.65, + "y": 581.9, + "number": 139 + }, + { + "x": 789.69, + "y": 132.96, + "number": 140 + }, + { + "x": 362.21, + "y": 379.76, + "number": 142 + }, + { + "x": 757.59, + "y": 303.74, + "number": 143 + }, + { + "x": 662.93, + "y": 393.9, + "number": 144 + }, + { + "x": 453.43, + "y": 273.86, + "number": 145 + }, + { + "x": 388.91, + "y": 448.66, + "number": 146 + }, + { + "x": 496.57, + "y": 672.02, + "number": 147 + }, + { + "x": 617.74, + "y": 280.38, + "number": 148 + }, + { + "x": 621.44, + "y": 278.51, + "number": 149 + }, + { + "x": 104.7, + "y": 514, + "number": 150 + }, + { + "x": 478.41, + "y": 446.97, + "number": 151 + }, + { + "x": 633.42, + "y": 537.78, + "number": 152 + }, + { + "x": 403.99, + "y": 169.45, + "number": 153 + }, + { + "x": 419.74, + "y": 713.64, + "number": 154 + }, + { + "x": 496.26, + "y": 730.35, + "number": 155 + }, + { + "x": 395.36, + "y": 241.41, + "number": 156 + }, + { + "x": 355.23, + "y": 383.52, + "number": 157 + }, + { + "x": 770.85, + "y": 180.36, + "number": 158 + }, + { + "x": 642.38, + "y": 583.26, + "number": 159 + }, + { + "x": 203.53, + "y": 349.51, + "number": 160 + }, + { + "x": 356.19, + "y": 371.64, + "number": 161 + }, + { + "x": 337.59, + "y": 123.01, + "number": 162 + }, + { + "x": 533.41, + "y": 462.45, + "number": 163 + }, + { + "x": 267.44, + "y": 242.15, + "number": 164 + }, + { + "x": 622.34, + "y": 410.91, + "number": 165 + }, + { + "x": 781.41, + "y": 656.48, + "number": 166 + }, + { + "x": 154.45, + "y": 250.03, + "number": 167 + }, + { + "x": 270.15, + "y": 237.1, + "number": 168 + }, + { + "x": 273.49, + "y": 706.42, + "number": 169 + }, + { + "x": 539.42, + "y": 347.01, + "number": 170 + }, + { + "x": 16.41, + "y": 19.15, + "number": 171 + }, + { + "x": 548.47, + "y": 4.41, + "number": 172 + }, + { + "x": 16.31, + "y": 109.75, + "number": 174 + }, + { + "x": 76.38, + "y": 183.84, + "number": 175 + }, + { + "x": 679.93, + "y": 538.47, + "number": 178 + }, + { + "x": 611.05, + "y": 370.15, + "number": 179 + }, + { + "x": 630.67, + "y": 416.77, + "number": 180 + }, + { + "x": 609.88, + "y": 622.43, + "number": 181 + }, + { + "x": 229.52, + "y": 289.68, + "number": 182 + }, + { + "x": 460.01, + "y": 340.76, + "number": 184 + }, + { + "x": 640.68, + "y": 734.8, + "number": 185 + }, + { + "x": 415.56, + "y": 272.32, + "number": 186 + }, + { + "x": 757.66, + "y": 740.08, + "number": 187 + }, + { + "x": 332.29, + "y": 198.15, + "number": 188 + }, + { + "x": 618.7, + "y": 275.81, + "number": 189 + }, + { + "x": 513.56, + "y": 125.74, + "number": 192 + }, + { + "x": 494.93, + "y": 631.21, + "number": 193 + }, + { + "x": 368.98, + "y": 14.23, + "number": 194 + }, + { + "x": 743.39, + "y": 399.04, + "number": 195 + }, + { + "x": 204.87, + "y": 170.53, + "number": 197 + }, + { + "x": 363.59, + "y": 541.06, + "number": 198 + }, + { + "x": 757.69, + "y": 259.33, + "number": 199 + }, + { + "x": 287.32, + "y": 155.25, + "number": 200 + }, + { + "x": 632.08, + "y": 527.79, + "number": 202 + }, + { + "x": 576.6, + "y": 611.86, + "number": 204 + }, + { + "x": 416.57, + "y": 269.1, + "number": 205 + }, + { + "x": 724.32, + "y": 331.2, + "number": 208 + }, + { + "x": 769.13, + "y": 180.36, + "number": 209 + }, + { + "x": 161.45, + "y": 255.7, + "number": 210 + }, + { + "x": 534.22, + "y": 56.35, + "number": 211 + }, + { + "x": 787.14, + "y": 290.58, + "number": 212 + }, + { + "x": 253.73, + "y": 53.42, + "number": 213 + }, + { + "x": 384.34, + "y": 71.95, + "number": 214 + }, + { + "x": 655.96, + "y": 331.29, + "number": 215 + }, + { + "x": 200.95, + "y": 337.48, + "number": 216 + }, + { + "x": 766.53, + "y": 683.61, + "number": 217 + }, + { + "x": 388.73, + "y": 241.78, + "number": 218 + }, + { + "x": 778.17, + "y": 70.73, + "number": 219 + }, + { + "x": 490.1, + "y": 12.55, + "number": 220 + }, + { + "x": 250.19, + "y": 324.49, + "number": 221 + }, + { + "x": 260.28, + "y": 192.86, + "number": 224 + }, + { + "x": 514.86, + "y": 130.59, + "number": 226 + }, + { + "x": 354.87, + "y": 431.97, + "number": 228 + }, + { + "x": 767.33, + "y": 176.08, + "number": 229 + }, + { + "x": 639.57, + "y": 728.5, + "number": 230 + }, + { + "x": 487.61, + "y": 650.58, + "number": 232 + }, + { + "x": 270.76, + "y": 160.21, + "number": 233 + }, + { + "x": 514.62, + "y": 251.35, + "number": 234 + }, + { + "x": 473.64, + "y": 138.77, + "number": 235 + }, + { + "x": 560.51, + "y": 482.24, + "number": 236 + }, + { + "x": 789.55, + "y": 139.36, + "number": 237 + }, + { + "x": 370.54, + "y": 542.09, + "number": 238 + }, + { + "x": 409.17, + "y": 169.17, + "number": 239 + }, + { + "x": 572.78, + "y": 605.7, + "number": 240 + }, + { + "x": 734.06, + "y": 453.68, + "number": 241 + }, + { + "x": 199.93, + "y": 347.64, + "number": 242 + }, + { + "x": 751.85, + "y": 259.58, + "number": 244 + }, + { + "x": 395.47, + "y": 244.69, + "number": 245 + }, + { + "x": 205.33, + "y": 178.21, + "number": 246 + }, + { + "x": 584.81, + "y": 173.78, + "number": 247 + }, + { + "x": 372.3, + "y": 14.72, + "number": 248 + }, + { + "x": 341.22, + "y": 296.84, + "number": 249 + }, + { + "x": 546.65, + "y": 347.31, + "number": 250 + }, + { + "x": 758.58, + "y": 174.89, + "number": 252 + }, + { + "x": 438.03, + "y": 402.08, + "number": 254 + }, + { + "x": 171.2, + "y": 419.37, + "number": 255 + }, + { + "x": 62.96, + "y": 564.9, + "number": 256 + }, + { + "x": 600.43, + "y": 136.69, + "number": 257 + }, + { + "x": 371.35, + "y": 9.55, + "number": 258 + }, + { + "x": 359.82, + "y": 540.29, + "number": 259 + }, + { + "x": 339.78, + "y": 116.29, + "number": 260 + }, + { + "x": 653.51, + "y": 321.11, + "number": 262 + }, + { + "x": 661.48, + "y": 388.29, + "number": 263 + }, + { + "x": 481.71, + "y": 482.26, + "number": 264 + }, + { + "x": 710.28, + "y": 469.13, + "number": 265 + }, + { + "x": 451.6, + "y": 626.41, + "number": 266 + }, + { + "x": 664.2, + "y": 441.57, + "number": 267 + }, + { + "x": 681.25, + "y": 411.93, + "number": 269 + }, + { + "x": 799.31, + "y": 19.35, + "number": 270 + }, + { + "x": 627.73, + "y": 415.69, + "number": 271 + }, + { + "x": 510.97, + "y": 247.35, + "number": 272 + }, + { + "x": 478.33, + "y": 446.58, + "number": 273 + }, + { + "x": 105.86, + "y": 190.43, + "number": 274 + }, + { + "x": 688.94, + "y": 674.24, + "number": 276 + }, + { + "x": 769.51, + "y": 696.36, + "number": 277 + }, + { + "x": 619.26, + "y": 419.51, + "number": 278 + }, + { + "x": 667.04, + "y": 379.56, + "number": 279 + }, + { + "x": 643.77, + "y": 594.25, + "number": 280 + }, + { + "x": 264.84, + "y": 245.28, + "number": 281 + }, + { + "x": 275.98, + "y": 710.09, + "number": 283 + }, + { + "x": 459.14, + "y": 344.81, + "number": 284 + }, + { + "x": 418.99, + "y": 703.95, + "number": 285 + }, + { + "x": 741.65, + "y": 9.65, + "number": 286 + }, + { + "x": 782.67, + "y": 652.58, + "number": 287 + }, + { + "x": 604.97, + "y": 658.66, + "number": 288 + }, + { + "x": 164.38, + "y": 426.47, + "number": 289 + }, + { + "x": 425.59, + "y": 713.97, + "number": 290 + }, + { + "x": 490.23, + "y": 633.9, + "number": 291 + }, + { + "x": 130.28, + "y": 55.55, + "number": 293 + }, + { + "x": 169.51, + "y": 427.41, + "number": 294 + }, + { + "x": 259.51, + "y": 191.56, + "number": 297 + }, + { + "x": 157.42, + "y": 270.76, + "number": 299 + }, + { + "x": 629.57, + "y": 733.74, + "number": 300 + }, + { + "x": 745.45, + "y": 19.1, + "number": 301 + }, + { + "x": 7.79, + "y": 19.75, + "number": 302 + }, + { + "x": 418.18, + "y": 171.16, + "number": 303 + }, + { + "x": 561.36, + "y": 476.72, + "number": 304 + }, + { + "x": 181.78, + "y": 68.86, + "number": 306 + }, + { + "x": 4.17, + "y": 99.83, + "number": 307 + }, + { + "x": 244.3, + "y": 318.49, + "number": 308 + }, + { + "x": 386.67, + "y": 115.66, + "number": 309 + }, + { + "x": 555.63, + "y": 195.41, + "number": 310 + }, + { + "x": 82.17, + "y": 195.73, + "number": 311 + }, + { + "x": 254.45, + "y": 188.24, + "number": 312 + }, + { + "x": 454.36, + "y": 153.11, + "number": 313 + }, + { + "x": 87.14, + "y": 309.89, + "number": 315 + }, + { + "x": 644.12, + "y": 84.86, + "number": 316 + }, + { + "x": 655.15, + "y": 743.14, + "number": 317 + }, + { + "x": 697.87, + "y": 586.18, + "number": 318 + }, + { + "x": 499.33, + "y": 63.67, + "number": 319 + }, + { + "x": 520.84, + "y": 210.26, + "number": 320 + }, + { + "x": 786.23, + "y": 31.5, + "number": 321 + }, + { + "x": 315.96, + "y": 86.79, + "number": 322 + }, + { + "x": 666.13, + "y": 385.58, + "number": 323 + }, + { + "x": 761.72, + "y": 594, + "number": 324 + }, + { + "x": 275.21, + "y": 236.67, + "number": 325 + }, + { + "x": 491.93, + "y": 630.61, + "number": 326 + }, + { + "x": 159.56, + "y": 248.09, + "number": 327 + }, + { + "x": 765.62, + "y": 255.92, + "number": 328 + }, + { + "x": 486.38, + "y": 439.76, + "number": 329 + }, + { + "x": 520.41, + "y": 126.46, + "number": 330 + }, + { + "x": 355.21, + "y": 504.46, + "number": 331 + }, + { + "x": 561.91, + "y": 243.66, + "number": 333 + }, + { + "x": 265.76, + "y": 59.77, + "number": 334 + }, + { + "x": 381.99, + "y": 114.19, + "number": 335 + }, + { + "x": 520.28, + "y": 213.41, + "number": 336 + }, + { + "x": 647.46, + "y": 78.76, + "number": 337 + }, + { + "x": 425.31, + "y": 649.17, + "number": 339 + }, + { + "x": 165.83, + "y": 111.23, + "number": 341 + }, + { + "x": 246.76, + "y": 322.69, + "number": 342 + }, + { + "x": 186.95, + "y": 80.94, + "number": 345 + }, + { + "x": 723.64, + "y": 325.86, + "number": 346 + }, + { + "x": 403.02, + "y": 336.39, + "number": 347 + }, + { + "x": 450.99, + "y": 155.06, + "number": 348 + }, + { + "x": 540.28, + "y": 54, + "number": 349 + }, + { + "x": 499.61, + "y": 629.11, + "number": 350 + }, + { + "x": 292.09, + "y": 79.18, + "number": 351 + }, + { + "x": 479.07, + "y": 137.36, + "number": 352 + }, + { + "x": 364.75, + "y": 535.61, + "number": 353 + }, + { + "x": 770.79, + "y": 68.26, + "number": 354 + }, + { + "x": 423.38, + "y": 769.99, + "number": 355 + }, + { + "x": 474.62, + "y": 553.12, + "number": 356 + }, + { + "x": 763.79, + "y": 585.63, + "number": 357 + }, + { + "x": 736.58, + "y": 384.88, + "number": 359 + }, + { + "x": 687.46, + "y": 319.43, + "number": 360 + }, + { + "x": 750.35, + "y": 746.31, + "number": 361 + }, + { + "x": 195.2, + "y": 345.54, + "number": 362 + }, + { + "x": 357.67, + "y": 371.83, + "number": 363 + }, + { + "x": 335.1, + "y": 114.26, + "number": 364 + }, + { + "x": 391.3, + "y": 444.15, + "number": 365 + }, + { + "x": 643.98, + "y": 594.77, + "number": 367 + }, + { + "x": 677.53, + "y": 663.66, + "number": 368 + }, + { + "x": 712.4, + "y": 757.69, + "number": 371 + }, + { + "x": 774.17, + "y": 655.33, + "number": 372 + }, + { + "x": 119.54, + "y": 183.24, + "number": 373 + }, + { + "x": 420.5, + "y": 729.12, + "number": 374 + }, + { + "x": 754.39, + "y": 262.26, + "number": 375 + }, + { + "x": 540.45, + "y": 497.55, + "number": 379 + }, + { + "x": 160.17, + "y": 262.37, + "number": 380 + }, + { + "x": 377.84, + "y": 3.06, + "number": 381 + }, + { + "x": 542.34, + "y": 347.74, + "number": 382 + }, + { + "x": 596.73, + "y": 40.77, + "number": 383 + }, + { + "x": 609.6, + "y": 656.02, + "number": 384 + }, + { + "x": 144.38, + "y": 571.64, + "number": 385 + }, + { + "x": 14.77, + "y": 110.56, + "number": 386 + }, + { + "x": 291.51, + "y": 147.56, + "number": 387 + }, + { + "x": 487.07, + "y": 481.19, + "number": 388 + }, + { + "x": 375.84, + "y": 474.94, + "number": 389 + }, + { + "x": 619.35, + "y": 284.36, + "number": 390 + }, + { + "x": 244.95, + "y": 183.6, + "number": 392 + }, + { + "x": 343.03, + "y": 96.88, + "number": 393 + }, + { + "x": 400.54, + "y": 237.84, + "number": 395 + }, + { + "x": 694.3, + "y": 40.57, + "number": 397 + }, + { + "x": 141.16, + "y": 62.49, + "number": 398 + }, + { + "x": 145.78, + "y": 213.32, + "number": 399 + }, + { + "x": 79.35, + "y": 305.45, + "number": 400 + }, + { + "x": 16.99, + "y": 74.83, + "number": 401 + }, + { + "x": 71.6, + "y": 187.69, + "number": 402 + }, + { + "x": 564.1, + "y": 192.54, + "number": 404 + }, + { + "x": 484.89, + "y": 629.61, + "number": 405 + }, + { + "x": 444.36, + "y": 269.69, + "number": 406 + }, + { + "x": 536.34, + "y": 464.51, + "number": 407 + }, + { + "x": 253.52, + "y": 45.19, + "number": 408 + }, + { + "x": 6.47, + "y": 100.87, + "number": 411 + }, + { + "x": 157.52, + "y": 256.55, + "number": 412 + }, + { + "x": 787.33, + "y": 391.03, + "number": 413 + }, + { + "x": 601.24, + "y": 131.84, + "number": 414 + }, + { + "x": 259.46, + "y": 190.48, + "number": 415 + }, + { + "x": 398.62, + "y": 64.6, + "number": 416 + }, + { + "x": 11.4, + "y": 20.39, + "number": 417 + }, + { + "x": 588.86, + "y": 51.22, + "number": 418 + }, + { + "x": 497.64, + "y": 477.4, + "number": 419 + }, + { + "x": 606.75, + "y": 130.57, + "number": 420 + }, + { + "x": 486.68, + "y": 203.01, + "number": 422 + }, + { + "x": 682.81, + "y": 668.5, + "number": 423 + }, + { + "x": 280.06, + "y": 157.64, + "number": 424 + }, + { + "x": 281.67, + "y": 158.62, + "number": 426 + }, + { + "x": 790.24, + "y": 135.23, + "number": 427 + }, + { + "x": 339.65, + "y": 119.7, + "number": 428 + }, + { + "x": 650.63, + "y": 322.84, + "number": 429 + }, + { + "x": 357.77, + "y": 561.91, + "number": 433 + }, + { + "x": 755.87, + "y": 733.34, + "number": 435 + }, + { + "x": 511.2, + "y": 123.58, + "number": 437 + }, + { + "x": 455.08, + "y": 267.76, + "number": 439 + }, + { + "x": 533.97, + "y": 468.58, + "number": 440 + }, + { + "x": 412.15, + "y": 519.43, + "number": 441 + }, + { + "x": 451.99, + "y": 348.48, + "number": 442 + }, + { + "x": 492.55, + "y": 483.42, + "number": 443 + }, + { + "x": 741.4, + "y": 392.1, + "number": 444 + }, + { + "x": 192.95, + "y": 532.32, + "number": 445 + }, + { + "x": 422.68, + "y": 715.96, + "number": 448 + }, + { + "x": 786.19, + "y": 291.91, + "number": 450 + }, + { + "x": 512.42, + "y": 124.47, + "number": 451 + }, + { + "x": 552.56, + "y": 408.56, + "number": 452 + }, + { + "x": 719.46, + "y": 139.21, + "number": 453 + }, + { + "x": 772.73, + "y": 692.22, + "number": 454 + }, + { + "x": 80.38, + "y": 299.71, + "number": 455 + }, + { + "x": 478.24, + "y": 142.61, + "number": 456 + }, + { + "x": 388.17, + "y": 69.98, + "number": 457 + }, + { + "x": 4.98, + "y": 14.8, + "number": 460 + }, + { + "x": 141.95, + "y": 202.09, + "number": 462 + }, + { + "x": 754.71, + "y": 177.2, + "number": 463 + }, + { + "x": 166.97, + "y": 116.93, + "number": 464 + }, + { + "x": 357.29, + "y": 378.43, + "number": 465 + }, + { + "x": 559.33, + "y": 193.24, + "number": 466 + }, + { + "x": 240.96, + "y": 182.45, + "number": 467 + }, + { + "x": 539.08, + "y": 447.56, + "number": 468 + }, + { + "x": 412.39, + "y": 511.53, + "number": 469 + }, + { + "x": 186.63, + "y": 311.65, + "number": 470 + }, + { + "x": 394.88, + "y": 238.82, + "number": 472 + }, + { + "x": 573.09, + "y": 610.1, + "number": 473 + }, + { + "x": 616.38, + "y": 82.4, + "number": 475 + }, + { + "x": 537.06, + "y": 448.38, + "number": 476 + }, + { + "x": 393.75, + "y": 447.18, + "number": 477 + }, + { + "x": 70.84, + "y": 197.1, + "number": 478 + }, + { + "x": 323.84, + "y": 699.66, + "number": 479 + }, + { + "x": 592.46, + "y": 46.42, + "number": 480 + }, + { + "x": 636.81, + "y": 730.76, + "number": 481 + }, + { + "x": 644.53, + "y": 83.31, + "number": 482 + }, + { + "x": 631.22, + "y": 726.96, + "number": 483 + }, + { + "x": 797.07, + "y": 141.45, + "number": 484 + }, + { + "x": 334.5, + "y": 200.84, + "number": 485 + }, + { + "x": 381.22, + "y": 122.88, + "number": 486 + }, + { + "x": 350.93, + "y": 437.79, + "number": 487 + }, + { + "x": 760.88, + "y": 259.49, + "number": 488 + }, + { + "x": 448.27, + "y": 269.91, + "number": 490 + }, + { + "x": 343.1, + "y": 109.32, + "number": 491 + }, + { + "x": 176.42, + "y": 76.35, + "number": 492 + }, + { + "x": 651.69, + "y": 214.66, + "number": 493 + }, + { + "x": 143.05, + "y": 208.28, + "number": 494 + }, + { + "x": 411.27, + "y": 13.57, + "number": 496 + }, + { + "x": 689.35, + "y": 322.71, + "number": 497 + }, + { + "x": 543.84, + "y": 799.56, + "number": 498 + }, + { + "x": 582.56, + "y": 9.3, + "number": 499 + }, + { + "x": 765.66, + "y": 596.37, + "number": 501 + }, + { + "x": 628.71, + "y": 531.78, + "number": 502 + }, + { + "x": 639.48, + "y": 681.15, + "number": 503 + }, + { + "x": 697.95, + "y": 631.66, + "number": 505 + }, + { + "x": 769.55, + "y": 688.03, + "number": 508 + }, + { + "x": 283.31, + "y": 161.53, + "number": 509 + }, + { + "x": 719.75, + "y": 306.85, + "number": 510 + }, + { + "x": 730.08, + "y": 442.23, + "number": 511 + }, + { + "x": 572.48, + "y": 194.76, + "number": 512 + }, + { + "x": 635.99, + "y": 527.76, + "number": 514 + }, + { + "x": 656.77, + "y": 80.91, + "number": 515 + }, + { + "x": 741.17, + "y": 382.85, + "number": 516 + }, + { + "x": 739.01, + "y": 13.62, + "number": 517 + }, + { + "x": 291.37, + "y": 194.49, + "number": 518 + }, + { + "x": 181.76, + "y": 75.52, + "number": 520 + }, + { + "x": 291.75, + "y": 698.54, + "number": 521 + }, + { + "x": 93.92, + "y": 411.12, + "number": 522 + }, + { + "x": 564.25, + "y": 480.75, + "number": 524 + }, + { + "x": 256.31, + "y": 145.05, + "number": 526 + }, + { + "x": 762.17, + "y": 266.58, + "number": 527 + }, + { + "x": 453.81, + "y": 349.48, + "number": 529 + }, + { + "x": 129.42, + "y": 208.75, + "number": 531 + }, + { + "x": 483.9, + "y": 722.17, + "number": 533 + }, + { + "x": 779.04, + "y": 657.5, + "number": 534 + }, + { + "x": 376.33, + "y": 16.43, + "number": 536 + }, + { + "x": 139.82, + "y": 54.93, + "number": 537 + }, + { + "x": 609.69, + "y": 749.71, + "number": 539 + }, + { + "x": 759.91, + "y": 179.9, + "number": 540 + }, + { + "x": 83.18, + "y": 300, + "number": 541 + }, + { + "x": 789.57, + "y": 301.97, + "number": 542 + }, + { + "x": 548.63, + "y": 349, + "number": 543 + }, + { + "x": 356.75, + "y": 437.19, + "number": 544 + }, + { + "x": 414.74, + "y": 514.5, + "number": 545 + }, + { + "x": 453.36, + "y": 524.75, + "number": 546 + }, + { + "x": 342.31, + "y": 106.47, + "number": 547 + }, + { + "x": 36.87, + "y": 181.48, + "number": 548 + }, + { + "x": 309.48, + "y": 95.73, + "number": 550 + }, + { + "x": 775.51, + "y": 74.03, + "number": 551 + }, + { + "x": 429.35, + "y": 406.16, + "number": 553 + }, + { + "x": 631.04, + "y": 416.41, + "number": 554 + }, + { + "x": 340.75, + "y": 202.15, + "number": 555 + }, + { + "x": 393.76, + "y": 439.25, + "number": 556 + }, + { + "x": 717.18, + "y": 146.7, + "number": 557 + }, + { + "x": 520.09, + "y": 130.57, + "number": 560 + }, + { + "x": 134.18, + "y": 341.49, + "number": 561 + }, + { + "x": 348.93, + "y": 435.59, + "number": 562 + }, + { + "x": 281.98, + "y": 155.46, + "number": 563 + }, + { + "x": 777.09, + "y": 77.18, + "number": 564 + }, + { + "x": 427.07, + "y": 646.07, + "number": 565 + }, + { + "x": 197.11, + "y": 184.72, + "number": 566 + }, + { + "x": 396.55, + "y": 442.61, + "number": 567 + }, + { + "x": 241.98, + "y": 131.35, + "number": 568 + }, + { + "x": 348.97, + "y": 426.12, + "number": 570 + }, + { + "x": 290.98, + "y": 789.33, + "number": 571 + }, + { + "x": 459.25, + "y": 157.33, + "number": 573 + }, + { + "x": 507.28, + "y": 66.74, + "number": 574 + }, + { + "x": 586.25, + "y": 478.2, + "number": 575 + }, + { + "x": 627.99, + "y": 589, + "number": 576 + }, + { + "x": 582.39, + "y": 487.3, + "number": 577 + }, + { + "x": 380.74, + "y": 111.41, + "number": 578 + }, + { + "x": 592.92, + "y": 42.41, + "number": 579 + }, + { + "x": 39.21, + "y": 95.39, + "number": 580 + }, + { + "x": 34.23, + "y": 189.56, + "number": 581 + }, + { + "x": 238.39, + "y": 128.03, + "number": 582 + }, + { + "x": 750.98, + "y": 11.82, + "number": 583 + }, + { + "x": 179.45, + "y": 77.59, + "number": 584 + }, + { + "x": 755.9, + "y": 600.01, + "number": 586 + }, + { + "x": 713.1, + "y": 471.46, + "number": 588 + }, + { + "x": 638.86, + "y": 126.08, + "number": 589 + }, + { + "x": 332.93, + "y": 204.33, + "number": 590 + }, + { + "x": 643.62, + "y": 685.35, + "number": 591 + }, + { + "x": 720.87, + "y": 328.72, + "number": 592 + }, + { + "x": 649.6, + "y": 325.46, + "number": 594 + }, + { + "x": 141.1, + "y": 59.17, + "number": 595 + }, + { + "x": 411.75, + "y": 172.88, + "number": 597 + }, + { + "x": 599.09, + "y": 658.02, + "number": 598 + }, + { + "x": 130.08, + "y": 317.83, + "number": 600 + }, + { + "x": 393.35, + "y": 72.56, + "number": 601 + }, + { + "x": 636.22, + "y": 686.87, + "number": 603 + }, + { + "x": 736.46, + "y": 603.01, + "number": 604 + }, + { + "x": 650.19, + "y": 220.08, + "number": 605 + }, + { + "x": 798.85, + "y": 109.87, + "number": 606 + }, + { + "x": 534.85, + "y": 459.56, + "number": 607 + }, + { + "x": 22.97, + "y": 770.8, + "number": 608 + }, + { + "x": 249.57, + "y": 36.88, + "number": 609 + }, + { + "x": 184.32, + "y": 531.62, + "number": 610 + }, + { + "x": 0.66, + "y": 270.52, + "number": 611 + }, + { + "x": 1.36, + "y": 18.41, + "number": 613 + }, + { + "x": 149.11, + "y": 214.39, + "number": 614 + }, + { + "x": 547.48, + "y": 796.17, + "number": 615 + }, + { + "x": 5.39, + "y": 105.57, + "number": 616 + }, + { + "x": 781.17, + "y": 27.66, + "number": 617 + }, + { + "x": 696.04, + "y": 577.39, + "number": 618 + }, + { + "x": 378.66, + "y": 324.43, + "number": 619 + }, + { + "x": 644.29, + "y": 690.12, + "number": 620 + }, + { + "x": 687.26, + "y": 665.06, + "number": 621 + }, + { + "x": 379.11, + "y": 321.51, + "number": 623 + }, + { + "x": 788.99, + "y": 144.64, + "number": 625 + }, + { + "x": 159.6, + "y": 268.47, + "number": 626 + }, + { + "x": 380.44, + "y": 320.21, + "number": 627 + }, + { + "x": 150.56, + "y": 211.11, + "number": 628 + }, + { + "x": 5.25, + "y": 113.65, + "number": 629 + }, + { + "x": 270.66, + "y": 304.23, + "number": 630 + }, + { + "x": 604.41, + "y": 134.09, + "number": 631 + }, + { + "x": 441.22, + "y": 413.04, + "number": 633 + }, + { + "x": 245.79, + "y": 185.69, + "number": 634 + }, + { + "x": 581.98, + "y": 480.26, + "number": 637 + }, + { + "x": 602.09, + "y": 654.92, + "number": 638 + }, + { + "x": 395.15, + "y": 75.81, + "number": 639 + }, + { + "x": 312.78, + "y": 89.43, + "number": 640 + }, + { + "x": 495.38, + "y": 61.45, + "number": 642 + }, + { + "x": 766.72, + "y": 682.95, + "number": 643 + }, + { + "x": 450.49, + "y": 276.21, + "number": 644 + }, + { + "x": 398.63, + "y": 240.43, + "number": 645 + }, + { + "x": 791.17, + "y": 652.35, + "number": 648 + }, + { + "x": 253.16, + "y": 182.92, + "number": 650 + }, + { + "x": 137.86, + "y": 207.72, + "number": 651 + }, + { + "x": 643.32, + "y": 73.84, + "number": 652 + }, + { + "x": 386.34, + "y": 444.85, + "number": 653 + }, + { + "x": 249.59, + "y": 36.99, + "number": 655 + }, + { + "x": 265.51, + "y": 250.63, + "number": 656 + }, + { + "x": 799.02, + "y": 99.39, + "number": 657 + }, + { + "x": 456.54, + "y": 269.45, + "number": 658 + }, + { + "x": 40.58, + "y": 98.81, + "number": 659 + }, + { + "x": 378.53, + "y": 308.43, + "number": 660 + }, + { + "x": 274.28, + "y": 701.54, + "number": 662 + }, + { + "x": 389.96, + "y": 251.88, + "number": 666 + }, + { + "x": 545.94, + "y": 7.12, + "number": 667 + }, + { + "x": 569.79, + "y": 189.94, + "number": 668 + }, + { + "x": 15.8, + "y": 80.06, + "number": 670 + }, + { + "x": 183.7, + "y": 309.04, + "number": 671 + }, + { + "x": 758.49, + "y": 591.33, + "number": 672 + }, + { + "x": 491.71, + "y": 206.07, + "number": 674 + }, + { + "x": 385.66, + "y": 320.54, + "number": 675 + }, + { + "x": 601.57, + "y": 666.88, + "number": 676 + }, + { + "x": 713.79, + "y": 465.27, + "number": 677 + }, + { + "x": 426.02, + "y": 716.19, + "number": 678 + }, + { + "x": 538.13, + "y": 453.99, + "number": 680 + }, + { + "x": 381.84, + "y": 318.28, + "number": 681 + }, + { + "x": 626.89, + "y": 284.25, + "number": 683 + }, + { + "x": 428.36, + "y": 734.25, + "number": 684 + }, + { + "x": 268.74, + "y": 239.35, + "number": 686 + }, + { + "x": 683.03, + "y": 788.79, + "number": 687 + }, + { + "x": 334.72, + "y": 189.18, + "number": 688 + }, + { + "x": 114.19, + "y": 185.55, + "number": 689 + }, + { + "x": 417.48, + "y": 168.69, + "number": 692 + }, + { + "x": 577.93, + "y": 483.4, + "number": 695 + }, + { + "x": 368.57, + "y": 6.86, + "number": 696 + }, + { + "x": 501.95, + "y": 66.16, + "number": 699 + } + ], + "localGroup": [ + { + "number": 2, + "class": "Frontier", + "tech": { + "cargo": 1, + "drive": 8.27, + "shields": 0, + "weapons": 0 + }, + "cargo": "CAP", + "load": 1.05, + "destination": 458, + "speed": 0, + "mass": 13.42, + "id": "c1b96767-472f-5a96-8d83-369b5800b1c1", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 2, + "class": "Furgon10", + "tech": { + "cargo": 1, + "drive": 10.62, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 461, + "speed": 0, + "mass": 24.75, + "id": "d3c4e0e7-de33-5145-b28b-293b2e02c445", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "Nonstop", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 1.38 + }, + "cargo": "-", + "load": 0, + "destination": 114, + "speed": 0, + "mass": 1, + "id": "fe8805a6-d03c-5b66-a062-c9eaa2266d20", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "Nonstop", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 2.17 + }, + "cargo": "-", + "load": 0, + "destination": 223, + "speed": 0, + "mass": 1, + "id": "ce729a18-d695-5bed-857e-2806e576a1f1", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 10.62, + "shields": 6.6, + "weapons": 4.76 + }, + "cargo": "-", + "load": 0, + "destination": 332, + "speed": 0, + "mass": 7.07, + "id": "0d0263b4-ff6b-5d55-b7cd-ac73d873812c", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "Nonstop", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 1.25 + }, + "cargo": "-", + "load": 0, + "destination": 495, + "speed": 0, + "mass": 1, + "id": "fde80508-8829-5e8f-afa4-e16d2ce3e24f", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "Nonstop", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 2.07 + }, + "cargo": "-", + "load": 0, + "destination": 447, + "speed": 0, + "mass": 1, + "id": "78449cc4-c2ec-53de-a0a3-87512990f742", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 62, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 8.71, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 332, + "speed": 0, + "mass": 1, + "id": "0f48d7f3-8e0d-539d-afbe-8a59f6ef2fcf", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "Nonstop", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 2.01 + }, + "cargo": "-", + "load": 0, + "destination": 223, + "speed": 0, + "mass": 1, + "id": "ee402052-9f78-5244-a57f-0c36e497ebef", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "Nonstop", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 1.67 + }, + "cargo": "-", + "load": 0, + "destination": 495, + "speed": 0, + "mass": 1, + "id": "25de95f9-580a-5135-9ad7-f6ee91e74c9f", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "Nonstop", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 4.76 + }, + "cargo": "-", + "load": 0, + "destination": 679, + "speed": 0, + "mass": 1, + "id": "74c19316-4e30-574d-b7a6-3c98c13342d7", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "Bow105", + "tech": { + "cargo": 1, + "drive": 11.19, + "shields": 7.09, + "weapons": 4.76 + }, + "cargo": "COL", + "load": 0.3, + "destination": 227, + "speed": 0, + "mass": 148.79, + "id": "6875713d-719e-5740-ae2b-1dae8925a18d", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "CrossBow52x2", + "tech": { + "cargo": 1, + "drive": 11.19, + "shields": 7.09, + "weapons": 4.76 + }, + "cargo": "COL", + "load": 1.05, + "destination": 649, + "speed": 0, + "mass": 149.54, + "id": "ae51be3a-e3f7-59c1-83bd-ee193e3a0b6a", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 2.24, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 635, + "speed": 0, + "mass": 1, + "id": "e9addad6-60b0-5401-8b2d-e77c7dcea116", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 2.23, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 431, + "speed": 0, + "mass": 1, + "id": "0ecedad6-87f3-5371-b0a5-1d8e44e934cd", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 2.23, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 183, + "speed": 0, + "mass": 1, + "id": "2a64b7aa-d58b-5a04-81c5-600d4743dd1a", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 2.23, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 190, + "speed": 0, + "mass": 1, + "id": "ee77f33d-5bf5-5935-81b1-ae0b4c80bd06", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 2.53, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 292, + "speed": 0, + "mass": 1, + "id": "407c3512-cff7-57fe-8c61-1492eedf2f38", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 2.53, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 504, + "speed": 0, + "mass": 1, + "id": "8aa2ce73-3bfe-5f70-8993-da801d34f6ab", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "Tormoz49", + "tech": { + "cargo": 1, + "drive": 11.19, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 282, + "origin": 79, + "range": 26.27, + "speed": 0, + "mass": 49.5, + "id": "0885e23e-96a9-53a4-87bf-7ffdc8d25a63", + "state": "In_Space", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 2.53, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 369, + "speed": 0, + "mass": 1, + "id": "db5a16d7-ea0b-5576-bbbf-2cf7086b74f6", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 2.83, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 231, + "speed": 0, + "mass": 1, + "id": "93151891-83e7-57ab-b22f-3ab7af738478", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "Catapult8x7", + "tech": { + "cargo": 0, + "drive": 11.19, + "shields": 3.3, + "weapons": 4.76 + }, + "cargo": "-", + "load": 0, + "destination": 500, + "speed": 0, + "mass": 99, + "id": "5f9fdb83-8163-56e2-a538-9cb04f860936", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "Invalid", + "tech": { + "cargo": 0, + "drive": 11.19, + "shields": 7.09, + "weapons": 4.76 + }, + "cargo": "-", + "load": 0, + "destination": 403, + "speed": 0, + "mass": 49.99, + "id": "4de87a01-538f-575b-aa07-5788768a44f7", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "Furgon10b", + "tech": { + "cargo": 1, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "COL", + "load": 4.16, + "destination": 685, + "speed": 0, + "mass": 28.91, + "id": "17d48fe8-b2cd-58b7-ada4-b16994cf0f91", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 3.23, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 693, + "speed": 0, + "mass": 1, + "id": "503d36af-4488-5ef0-b5de-9cd23cd41084", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 3.23, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 114, + "speed": 0, + "mass": 1, + "id": "64596118-d163-5699-ab59-c47355ed2cf1", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 3.23, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 654, + "speed": 0, + "mass": 1, + "id": "0e551f01-bea8-5499-9295-4edd11ce9275", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 3.23, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 559, + "speed": 0, + "mass": 1, + "id": "998ee779-660a-5105-b749-dcceeb29b700", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 3.49, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 95, + "speed": 0, + "mass": 1, + "id": "cdd558d3-b4b7-52e3-959a-01c9bfc653d6", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 3.49, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 49, + "speed": 0, + "mass": 1, + "id": "49870a7d-956f-5aa0-a0c9-66a0b661056e", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 3.49, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 206, + "speed": 0, + "mass": 1, + "id": "6873b5e0-2a1b-567e-b4b6-ba48ea48e802", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 3.49, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 519, + "speed": 0, + "mass": 1, + "id": "06925742-c92a-5d80-8754-f6352ccdfc6e", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 2, + "class": "Stop", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 1, + "weapons": 1.67 + }, + "cargo": "-", + "load": 0, + "destination": 523, + "speed": 0, + "mass": 2.26, + "id": "74bf52d3-1051-5785-b08e-d31561d7b2e8", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 10.62, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 20, + "speed": 0, + "mass": 1, + "id": "7e2aa02b-5dc4-5574-a33e-d4c216737347", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 3.77, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 111, + "speed": 0, + "mass": 1, + "id": "66380351-e3b3-54b1-9bb7-6615b9be62ca", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 4.17, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 391, + "speed": 0, + "mass": 1, + "id": "aa23b889-0780-5c75-be58-513f49d4a87e", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 4.17, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 474, + "speed": 0, + "mass": 1, + "id": "87194948-6d67-5234-894d-25dbdea031db", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "Nonstop", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 1.67 + }, + "cargo": "-", + "load": 0, + "destination": 572, + "speed": 0, + "mass": 1, + "id": "550e32b9-4068-5c7f-8237-a0dd1f26ece0", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 4.76, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 17, + "speed": 0, + "mass": 1, + "id": "d52f6245-4857-5703-8125-0ae3c3876baf", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 2, + "class": "Nonstop", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 1.67 + }, + "cargo": "-", + "load": 0, + "destination": 177, + "speed": 0, + "mass": 1, + "id": "9a818b63-4fc9-59d6-bfe3-03f683715a0e", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 4.76, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 9, + "speed": 0, + "mass": 1, + "id": "d2cd96c7-fb2f-5ea2-a0b0-23aadc221cb9", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 4.76, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 394, + "speed": 0, + "mass": 1, + "id": "5a0ef736-42d3-5394-b385-6aa62527b0fc", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 5.34, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 519, + "speed": 0, + "mass": 1, + "id": "0561b727-bdca-5c26-865c-4845795e7edb", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 5.93, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 596, + "speed": 0, + "mass": 1, + "id": "58caa413-f1d5-5e5a-812c-e4c3977cd534", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "Nonstop", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 1.67 + }, + "cargo": "-", + "load": 0, + "destination": 558, + "speed": 0, + "mass": 1, + "id": "f0890948-3c59-54b4-bdc6-092d383d5e62", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "Nonstop", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 1.67 + }, + "cargo": "-", + "load": 0, + "destination": 622, + "speed": 0, + "mass": 1, + "id": "45955281-0c7c-5e4c-9e11-c2c40efb3e58", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 6.52, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 130, + "speed": 0, + "mass": 1, + "id": "86968f2e-fc10-5366-9336-af8ceec34f9d", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 6.52, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 268, + "speed": 0, + "mass": 1, + "id": "8f0956d0-f58e-52b3-97b3-5b77616680c7", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "Nonstop", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 1.67 + }, + "cargo": "-", + "load": 0, + "destination": 458, + "speed": 0, + "mass": 1, + "id": "ab3be9b6-f441-5687-8538-06be6837dd23", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 6.52, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 48, + "speed": 0, + "mass": 1, + "id": "ce28e59d-1643-5c26-b3d1-74aaa3e796d6", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 7.25, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 253, + "speed": 0, + "mass": 1, + "id": "2b76689e-2be9-5103-88b4-e929ac180b33", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 7.25, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 513, + "speed": 0, + "mass": 1, + "id": "2a13adc9-41f1-5f1e-b1f4-f9f7709fcaa9", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 7.25, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 69, + "speed": 0, + "mass": 1, + "id": "42f76fd5-39ef-5881-9e96-3090979df3e2", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 8.13, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 243, + "speed": 0, + "mass": 1, + "id": "04c131cb-f3f1-53c3-9162-2865caae0119", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 8.13, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 191, + "speed": 0, + "mass": 1, + "id": "7bc54e58-b931-55df-8864-e4b58748f559", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 697, + "speed": 0, + "mass": 1, + "id": "4ef24cc5-69b3-51c8-a8be-e54c2f047fa5", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 430, + "speed": 0, + "mass": 1, + "id": "de8001eb-3bbd-5c4c-9b43-f57727b13d36", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 45, + "speed": 0, + "mass": 1, + "id": "43143f40-e0ed-5651-be78-4a59aea98398", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 549, + "speed": 0, + "mass": 1, + "id": "654d6549-470b-594f-bbf4-5f4b01b44597", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "Nonstop", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 1.67 + }, + "cargo": "-", + "load": 0, + "destination": 461, + "speed": 0, + "mass": 1, + "id": "6b748afc-108b-5933-b605-dbfd1283c605", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 24, + "speed": 0, + "mass": 1, + "id": "2018e46b-c2cf-56ee-99b6-4198525138bf", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 7.25, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 587, + "speed": 0, + "mass": 1, + "id": "855d3f4f-5a4e-5678-b438-5ad9a51c2723", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 7.25, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 691, + "speed": 0, + "mass": 1, + "id": "0cb8bb36-2707-55b8-9d29-1d880530a1d0", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 7.25, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 425, + "speed": 0, + "mass": 1, + "id": "33c78d02-ffc9-5df5-9017-918e005b5818", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 5.93, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 396, + "speed": 0, + "mass": 1, + "id": "5e0450e1-acec-5f13-bb51-ef5c727f5206", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 6.52, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 673, + "speed": 0, + "mass": 1, + "id": "0299ab68-b1d6-5c0d-98ec-a4dd0535c8e7", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 6.52, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 203, + "speed": 0, + "mass": 1, + "id": "f0a94be5-3af6-534b-a8cd-7e9c2d31ad0f", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 6.52, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 530, + "speed": 0, + "mass": 1, + "id": "353840c6-3720-5d10-86c7-d6667de4f529", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 161, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.1, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 227, + "speed": 0, + "mass": 1, + "id": "0ea4bdec-0e97-56e3-8bf9-9e5e2e303e91", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 141, + "speed": 0, + "mass": 1, + "id": "5515386b-054e-501e-84de-4e44adcab2ef", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 12, + "speed": 0, + "mass": 1, + "id": "19d4a93c-ae3e-59f3-9b84-3102cfe19579", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 46, + "speed": 0, + "mass": 1, + "id": "298455f2-a7c3-5019-b838-48dff1f77e90", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 602, + "speed": 0, + "mass": 1, + "id": "35f632d6-2f85-5862-8cbc-8be2efce421c", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 552, + "speed": 0, + "mass": 1, + "id": "f081f7e2-4f20-5fab-afc8-7ee9e51e7eee", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 28, + "speed": 0, + "mass": 1, + "id": "e4e83504-fc42-5e69-ae10-4f416a679c3d", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 370, + "speed": 0, + "mass": 1, + "id": "cff70000-645c-5f51-b811-39cb6caff8ff", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 532, + "speed": 0, + "mass": 1, + "id": "9fc146f9-586a-577e-b54c-761c9bde3fb2", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 612, + "speed": 0, + "mass": 1, + "id": "7a5bd189-caf0-5a9c-80f2-adc125936433", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 585, + "speed": 0, + "mass": 1, + "id": "1d92183d-f227-5431-950f-7aa289537315", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 366, + "speed": 0, + "mass": 1, + "id": "ea8a1391-c7b3-5d4b-b8bd-b18cd6eefb5d", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 78, + "class": "Buckler100", + "tech": { + "cargo": 0, + "drive": 11.19, + "shields": 5.65, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 500, + "speed": 0, + "mass": 2, + "id": "637e0bbb-7382-5fba-8ee6-cbd019498aa1", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 298, + "speed": 0, + "mass": 1, + "id": "00c3384d-233d-5df4-9900-a2acad0846f7", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 119, + "speed": 0, + "mass": 1, + "id": "80134b6e-30aa-58e6-a5c7-a5e1c82f06b4", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 507, + "speed": 0, + "mass": 1, + "id": "c5caab15-aaee-5db6-89c9-9e2d234002a5", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "Furgon5", + "tech": { + "cargo": 1, + "drive": 10.62, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 461, + "speed": 0, + "mass": 12.37, + "id": "f3b90726-fffe-5d20-b43d-8d3204a03887", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 90, + "speed": 0, + "mass": 1, + "id": "f45acd56-3151-5882-a2dc-91d3cf3872f5", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 632, + "speed": 0, + "mass": 1, + "id": "2af0f802-d675-5687-803e-378b14e9ff58", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 506, + "speed": 0, + "mass": 1, + "id": "0343ea81-cc37-5562-bdc3-e00ecb42c577", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 2, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 227, + "speed": 0, + "mass": 1, + "id": "0a865579-da92-598a-8e05-03a7c891fc7d", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 343, + "speed": 0, + "mass": 1, + "id": "93873466-3dbb-5f00-ac9f-0beedc7afe33", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 2, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 403, + "speed": 0, + "mass": 1, + "id": "3ec33cc1-1e9c-5e0d-9c80-e584b286a82c", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 332, + "speed": 0, + "mass": 1, + "id": "c3e70e95-3844-59d2-982e-415525119c5f", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 525, + "speed": 0, + "mass": 1, + "id": "39cb4177-4aa4-58f4-99b1-70936f21a725", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 25, + "speed": 0, + "mass": 1, + "id": "7f5b8b02-78ef-5ca3-8884-15fc461d1a4c", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 432, + "speed": 0, + "mass": 1, + "id": "9681f47a-b083-5aef-aeab-6ead2bbeea80", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 2, + "class": "Nonstop", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 4.76 + }, + "cargo": "-", + "load": 0, + "destination": 685, + "speed": 0, + "mass": 1, + "id": "3179ae8e-1dae-53f0-9245-1cf1370a9287", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "Bow105", + "tech": { + "cargo": 1, + "drive": 11.19, + "shields": 3.3, + "weapons": 4.76 + }, + "cargo": "COL", + "load": 0.5, + "destination": 403, + "speed": 0, + "mass": 148.99, + "id": "f6aaf22a-a5aa-50af-a535-9c90a757bb01", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 54, + "class": "Buckler100", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 4.84, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 649, + "speed": 0, + "mass": 2, + "id": "dd58d543-af7b-5e84-bfad-d164e99ec695", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 4.6, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 134, + "speed": 0, + "mass": 1, + "id": "dba04345-ee08-54b5-abac-2c689810060a", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 207, + "speed": 0, + "mass": 1, + "id": "ffe92756-0d71-563f-8a65-579dbc46d30d", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 459, + "speed": 0, + "mass": 1, + "id": "d41a5222-66c4-5837-bb17-b95ad029bcf8", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 196, + "speed": 0, + "mass": 1, + "id": "ff88b8a3-d203-509e-ac66-aac4d5d4a319", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 85, + "speed": 0, + "mass": 1, + "id": "2d864b2e-2417-5e55-be45-ba66075dfb51", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 663, + "speed": 0, + "mass": 1, + "id": "8c435432-7389-55e1-af96-5b8887f36c93", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 56, + "speed": 0, + "mass": 1, + "id": "93b7cd69-4f68-52cc-983e-cf825d5848ca", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 314, + "speed": 0, + "mass": 1, + "id": "f68781ae-6827-53aa-806d-e922a6544e7e", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 690, + "speed": 0, + "mass": 1, + "id": "ad76f2da-a48a-5e80-8c17-1dede7bf6dad", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "Furgon20", + "tech": { + "cargo": 1, + "drive": 9.45, + "shields": 0, + "weapons": 4.76 + }, + "cargo": "COL", + "load": 20, + "destination": 669, + "speed": 0, + "mass": 69.3, + "id": "29b1c5a5-0093-5785-bc61-ef3f3d869826", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "Furgon100", + "tech": { + "cargo": 1, + "drive": 11.19, + "shields": 0, + "weapons": 0 + }, + "cargo": "COL", + "load": 98.3, + "destination": 79, + "speed": 0, + "mass": 197.13, + "id": "b6de7be5-54a0-5c2b-8e91-94e7fe2dd9dd", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "Furgon20", + "tech": { + "cargo": 1, + "drive": 11.19, + "shields": 0, + "weapons": 4.76 + }, + "cargo": "COL", + "load": 20, + "destination": 685, + "speed": 0, + "mass": 69.3, + "id": "7d8c85ae-6a1d-5500-b2fc-cd354713117c", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 669, + "speed": 0, + "mass": 1, + "id": "730a79a1-9432-5ab4-a5f9-f250892a5f87", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 4.58, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 647, + "speed": 0, + "mass": 1, + "id": "52db3931-bb37-5372-a13a-23b875a669f6", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 10.62, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 649, + "speed": 0, + "mass": 1, + "id": "31233623-71a9-5b29-858d-77dcb14a6c02", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 10.62, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 55, + "speed": 0, + "mass": 1, + "id": "7053a306-faa3-50ca-934b-bbdb82db0da0", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 10.62, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 79, + "speed": 0, + "mass": 1, + "id": "0fe2d695-eb19-5286-aa75-88562126a37d", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "Nonstop", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 4.77 + }, + "cargo": "-", + "load": 0, + "destination": 636, + "speed": 0, + "mass": 1, + "id": "1d9bd461-a532-5752-bc9f-77a6d4e76d95", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "Bow55", + "tech": { + "cargo": 1, + "drive": 10.62, + "shields": 6.6, + "weapons": 4.76 + }, + "cargo": "COL", + "load": 0.3, + "destination": 227, + "speed": 0, + "mass": 98.64, + "id": "d1531732-0e91-5043-ba68-ecf6655aa6ed", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "Catapult17x2.5", + "tech": { + "cargo": 1, + "drive": 10.62, + "shields": 6.6, + "weapons": 4.76 + }, + "cargo": "COL", + "load": 0.3, + "destination": 227, + "speed": 0, + "mass": 86.1, + "id": "b818a8cb-9e24-54a1-bbed-d69dafb2b7af", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "Nonstop", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 4.76 + }, + "cargo": "-", + "load": 0, + "destination": 176, + "speed": 0, + "mass": 1, + "id": "be2849c1-45a7-5cf3-995a-fc2d8057ce65", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "Bow49", + "tech": { + "cargo": 1, + "drive": 10.62, + "shields": 6.6, + "weapons": 4.76 + }, + "cargo": "COL", + "load": 0.3, + "destination": 227, + "speed": 0, + "mass": 91.3, + "id": "5f89851c-6aac-5389-88e0-4bd965eebdb7", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "Sword1x24", + "tech": { + "cargo": 1, + "drive": 10.62, + "shields": 6.6, + "weapons": 4.76 + }, + "cargo": "COL", + "load": 0.3, + "destination": 227, + "speed": 0, + "mass": 90.6, + "id": "962e84a3-7147-5754-8ee4-dacc5fc0a033", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 12.35, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 296, + "speed": 0, + "mass": 1, + "id": "983fb832-b457-5c86-896e-65d0ba5c288e", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 10.62, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 108, + "speed": 0, + "mass": 1, + "id": "91f25671-93af-5bfb-af6c-6af2e25b93cf", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "Bow55", + "tech": { + "cargo": 1, + "drive": 10.62, + "shields": 7.09, + "weapons": 4.76 + }, + "cargo": "COL", + "load": 0.3, + "destination": 332, + "speed": 0, + "mass": 98.64, + "id": "1210f8ec-7ca1-5c90-8ab2-8ed6555643f7", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "Catapult17x2.5", + "tech": { + "cargo": 1, + "drive": 10.62, + "shields": 7.09, + "weapons": 4.76 + }, + "cargo": "COL", + "load": 0.5, + "destination": 649, + "speed": 0, + "mass": 86.3, + "id": "e98e75de-5217-5d02-8c68-8bcf4cbba97d", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "Bow49", + "tech": { + "cargo": 1, + "drive": 10.62, + "shields": 7.09, + "weapons": 4.76 + }, + "cargo": "COL", + "load": 0.5, + "destination": 500, + "speed": 0, + "mass": 91.5, + "id": "b6dbc0b9-d524-59e8-a4ea-0bbde0d7956e", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "Sword1x24", + "tech": { + "cargo": 1, + "drive": 10.62, + "shields": 7.09, + "weapons": 4.76 + }, + "cargo": "COL", + "load": 0.5, + "destination": 500, + "speed": 0, + "mass": 90.8, + "id": "bc283cda-1d59-5a33-9518-53a2550b92ec", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 100, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 5.6, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 500, + "speed": 0, + "mass": 1, + "id": "bc7a17d7-938e-5032-bbdf-4777116f0abc", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 5.27, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 338, + "speed": 0, + "mass": 1, + "id": "3c4f0aca-5af9-55ed-88ef-022cd4d2c27a", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 4.6, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 222, + "speed": 0, + "mass": 1, + "id": "958eadda-28f4-5966-9dc4-8ba2a99162e6", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 4.6, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 15, + "speed": 0, + "mass": 1, + "id": "57fc1395-9108-533d-a25a-13a001337d09", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 4.6, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 251, + "speed": 0, + "mass": 1, + "id": "ac28588d-07e3-5b90-8fb6-6401cf38c7db", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 4.6, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 72, + "speed": 0, + "mass": 1, + "id": "75cf0597-eb5d-5441-b83e-b75c41ba0aff", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 4.6, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 434, + "speed": 0, + "mass": 1, + "id": "c9757095-f5c1-502c-b842-1fcd1b93c226", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 4.6, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 340, + "speed": 0, + "mass": 1, + "id": "f4109d1a-9026-588f-b95e-d21b8b256130", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 4.6, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 305, + "speed": 0, + "mass": 1, + "id": "2a6941d9-e0c1-5c32-ab7d-a1f26fa74a59", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 4.6, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 409, + "speed": 0, + "mass": 1, + "id": "17f51955-c4f5-5fc6-9339-82e024fa835a", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 4.6, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 624, + "speed": 0, + "mass": 1, + "id": "532aee0b-6fb8-5c5c-ae3c-4f753e8aef20", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 57, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.11, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 500, + "speed": 0, + "mass": 1, + "id": "9ca8a80e-624f-54fa-91ab-44d2badb4bfa", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 96, + "class": "Buckler100", + "tech": { + "cargo": 0, + "drive": 11.19, + "shields": 4.84, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 227, + "speed": 0, + "mass": 2, + "id": "465703ad-7f21-520d-a3f6-4e49a72bb269", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 10.62, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 116, + "speed": 0, + "mass": 1, + "id": "3abc074b-4046-580b-8c72-197e6fa42e23", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 10.62, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 38, + "speed": 0, + "mass": 1, + "id": "49e9480a-6cfe-5ff5-99e4-8876bbec6882", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 11.19, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 438, + "speed": 0, + "mass": 1, + "id": "70381094-4273-5ec5-9d97-3a2daead4864", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 11.19, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 2, + "speed": 0, + "mass": 1, + "id": "6ee5da70-4255-5d2c-8ee2-f488a0118b96", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 11.19, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 421, + "speed": 0, + "mass": 1, + "id": "ac5cc7e9-4680-5078-80fd-edd56af41a11", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 11.19, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 569, + "speed": 0, + "mass": 1, + "id": "3fb60e08-66f1-5e2f-91e1-7a387f0f0c1d", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 11.19, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 436, + "speed": 0, + "mass": 1, + "id": "1258fd4e-661b-5c85-a2e7-f922a1aba59e", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "Furgon10", + "tech": { + "cargo": 1, + "drive": 10.62, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 523, + "speed": 0, + "mass": 24.75, + "id": "84775467-eac9-58b8-8466-88eb48cbba8c", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 2, + "class": "Furgon12", + "tech": { + "cargo": 1, + "drive": 8.56, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 495, + "speed": 0, + "mass": 24.72, + "id": "cbcb1b66-59a9-59ca-b2b8-7abf154dc6a6", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "Furgon10c", + "tech": { + "cargo": 1, + "drive": 7.96, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 495, + "origin": 502, + "range": 80.13, + "speed": 0, + "mass": 16.5, + "id": "ccd6f110-97a5-5081-a007-38f8e1387de7", + "state": "In_Space", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 11.19, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 225, + "speed": 0, + "mass": 1, + "id": "10f8b324-13a3-5912-a887-64d0e503c591", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 11.19, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 344, + "speed": 0, + "mass": 1, + "id": "6e6a5177-71de-5f7d-834d-4fe153bd0d73", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 11.19, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 127, + "speed": 0, + "mass": 1, + "id": "7d90339f-488f-58d8-a118-737dfe82eb0f", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "SpetsNaz", + "tech": { + "cargo": 1, + "drive": 11.19, + "shields": 7.09, + "weapons": 6.11 + }, + "cargo": "COL", + "load": 1.05, + "destination": 632, + "speed": 0, + "mass": 8.15, + "id": "7d56f165-c2aa-51fa-84d3-239dfa277f79", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "SpetsNaz", + "tech": { + "cargo": 1, + "drive": 11.19, + "shields": 7.09, + "weapons": 6.11 + }, + "cargo": "COL", + "load": 0.1, + "destination": 20, + "speed": 0, + "mass": 7.2, + "id": "b66af58a-7039-57dd-96e6-f268d81dc80a", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "SpetsNaz", + "tech": { + "cargo": 1, + "drive": 11.19, + "shields": 7.09, + "weapons": 6.11 + }, + "cargo": "COL", + "load": 0.1, + "destination": 134, + "speed": 0, + "mass": 7.2, + "id": "2aec44f4-b3fc-53f7-af01-06565eda6fa7", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "SpetsNaz", + "tech": { + "cargo": 1, + "drive": 11.19, + "shields": 7.09, + "weapons": 6.11 + }, + "cargo": "COL", + "load": 0.1, + "destination": 506, + "speed": 0, + "mass": 7.2, + "id": "e204b22e-3112-59d6-8571-2aecf3a0be4e", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "SpetsNaz", + "tech": { + "cargo": 1, + "drive": 11.19, + "shields": 7.09, + "weapons": 6.11 + }, + "cargo": "COL", + "load": 0.1, + "destination": 46, + "speed": 0, + "mass": 7.2, + "id": "4c565d59-f50a-5509-8765-bcaf42f056ec", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "SpetsNaz", + "tech": { + "cargo": 1, + "drive": 11.19, + "shields": 7.09, + "weapons": 6.11 + }, + "cargo": "COL", + "load": 0.71, + "destination": 343, + "speed": 0, + "mass": 7.81, + "id": "51288ce4-b69d-561a-a4a0-a4b408831118", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 10.62, + "shields": 6.6, + "weapons": 4.76 + }, + "cargo": "-", + "load": 0, + "destination": 506, + "speed": 0, + "mass": 7.07, + "id": "f3aed80b-f85f-5cd1-b6c5-e5e99c03918d", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 10.62, + "shields": 6.6, + "weapons": 4.76 + }, + "cargo": "-", + "load": 0, + "destination": 489, + "speed": 0, + "mass": 7.07, + "id": "e59329f5-4a55-59af-b48e-688d7dbb94b1", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 10.62, + "shields": 6.6, + "weapons": 4.76 + }, + "cargo": "-", + "load": 0, + "destination": 525, + "speed": 0, + "mass": 7.07, + "id": "2e57764e-c658-562c-92da-299af97960d7", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "Furgon10b", + "tech": { + "cargo": 1, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "COL", + "load": 8.95, + "destination": 669, + "speed": 0, + "mass": 33.7, + "id": "8a4edf71-a9c0-5c2d-ab80-d7f7842e3fd2", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 100, + "class": "Buckler100", + "tech": { + "cargo": 0, + "drive": 11.19, + "shields": 5.65, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 403, + "speed": 0, + "mass": 2, + "id": "d0f02b60-afe1-5ad0-95f7-416c28486d19", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 99, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.1, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 649, + "speed": 0, + "mass": 1, + "id": "61dd202c-344a-595a-afcb-44a33ed76787", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 10.62, + "shields": 6.6, + "weapons": 4.76 + }, + "cargo": "-", + "load": 0, + "destination": 500, + "speed": 0, + "mass": 7.07, + "id": "291c8956-14ab-5283-936c-08f84bf97a80", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 10.62, + "shields": 6.6, + "weapons": 4.76 + }, + "cargo": "-", + "load": 0, + "destination": 403, + "speed": 0, + "mass": 7.07, + "id": "d72f12bc-7a7f-5dd0-bcab-0881081c1806", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 10.62, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 489, + "speed": 0, + "mass": 1, + "id": "13a322b6-93d4-53c8-ab6b-02b6bafc575b", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 8.71, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 500, + "speed": 0, + "mass": 1, + "id": "d39b1831-22e6-5131-bd25-4690f4277a23", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 8.71, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 646, + "speed": 0, + "mass": 1, + "id": "f96cd083-0e78-56e2-a2fd-79ca77ea635f", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 8.71, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 694, + "speed": 0, + "mass": 1, + "id": "3f4fbdbb-63e1-5055-977e-2921093fddc3", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 8.71, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 275, + "speed": 0, + "mass": 1, + "id": "33c431fa-5878-5fc0-9e3d-0ba3cd7c1b09", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 8.71, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 74, + "speed": 0, + "mass": 1, + "id": "5c133747-4900-5436-94a8-64cd06190a8c", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 8.71, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 661, + "speed": 0, + "mass": 1, + "id": "3a70f27e-4c13-5643-ba15-57cc89684d2a", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 8.71, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 201, + "speed": 0, + "mass": 1, + "id": "50361e29-9d6c-5d28-be0b-00c4d82b966f", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 8.71, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 29, + "speed": 0, + "mass": 1, + "id": "bc9e5a72-4f34-5c4f-910a-9b1e52393dd4", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 8.71, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 377, + "speed": 0, + "mass": 1, + "id": "35014c45-88d1-57f9-b40c-8f79519f8dff", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 8.71, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 665, + "speed": 0, + "mass": 1, + "id": "c61ba59f-e2ba-5c1b-bfe4-92ea3cdd00cd", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 8.71, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 27, + "speed": 0, + "mass": 1, + "id": "2328307c-3792-53cf-a84d-f1294cab0189", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 8.71, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 32, + "speed": 0, + "mass": 1, + "id": "cc45c6bc-b2ef-5ec1-be90-c3e0586ca304", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "CombatFlame1x30", + "tech": { + "cargo": 1, + "drive": 13.25, + "shields": 7.09, + "weapons": 6.11 + }, + "cargo": "COL", + "load": 1.05, + "destination": 669, + "speed": 0, + "mass": 100.06, + "id": "91090a79-7fbc-5fd9-ae7c-3550391f2aa5", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 43, + "class": "IceWall100", + "tech": { + "cargo": 0, + "drive": 13.25, + "shields": 7.09, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 669, + "speed": 0, + "mass": 2, + "id": "9ae98c52-5324-56d3-ac98-65995c1c2e0f", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "Paravozik20", + "tech": { + "cargo": 1, + "drive": 13.25, + "shields": 7.09, + "weapons": 6.11 + }, + "cargo": "COL", + "load": 20.02, + "destination": 669, + "speed": 0, + "mass": 69.52, + "id": "58db4d5f-ad25-5098-99bf-466bc4dec96c", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "FireWay100x1", + "tech": { + "cargo": 1, + "drive": 13.25, + "shields": 7.09, + "weapons": 6.11 + }, + "cargo": "COL", + "load": 1.05, + "destination": 461, + "speed": 0, + "mass": 158.01, + "id": "a1cecd6f-27a1-51b0-9d7f-28803ac6ae2d", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 13.25, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 97, + "speed": 0, + "mass": 1, + "id": "d4d24c73-a2d9-53bc-a6bf-1c89261084e6", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "ArrowsOfFire", + "tech": { + "cargo": 1, + "drive": 13.25, + "shields": 7.09, + "weapons": 6.11 + }, + "cargo": "COL", + "load": 1.05, + "destination": 461, + "speed": 0, + "mass": 94.08, + "id": "9a726455-7d55-5a64-a229-38c8c957b513", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 95, + "class": "IceWall101", + "tech": { + "cargo": 0, + "drive": 13.25, + "shields": 7.09, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 461, + "speed": 0, + "mass": 2.02, + "id": "c3865190-4716-5e3b-8704-c828d90f43b3", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 48, + "class": "IceWall103", + "tech": { + "cargo": 0, + "drive": 13.25, + "shields": 7.09, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 461, + "speed": 0, + "mass": 2.06, + "id": "6ee84555-12e2-578a-abd9-54c4d0276589", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 13.25, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 449, + "speed": 0, + "mass": 1, + "id": "350d3d10-78b4-5e79-a1d8-ac9838e56251", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "Titanik100", + "tech": { + "cargo": 1, + "drive": 13.25, + "shields": 7.09, + "weapons": 6.11 + }, + "cargo": "COL", + "load": 100.02, + "destination": 685, + "origin": 495, + "range": 95.14, + "speed": 0, + "mass": 226.18, + "id": "cd9a9406-459f-5bc2-a895-0483c5917c27", + "state": "In_Space", + "fleet": null + }, + { + "number": 1, + "class": "FireSnow57x1", + "tech": { + "cargo": 1, + "drive": 13.25, + "shields": 7.09, + "weapons": 6.11 + }, + "cargo": "COL", + "load": 1.05, + "destination": 461, + "speed": 0, + "mass": 100.6, + "id": "5d5f54c1-993b-52fe-9187-104198ef50a9", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 13.25, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 682, + "speed": 0, + "mass": 1, + "id": "79e1f511-7254-5072-a4bd-2256e8f6eff7", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "FireStorm20x5", + "tech": { + "cargo": 1, + "drive": 13.25, + "shields": 7.09, + "weapons": 6.11 + }, + "cargo": "COL", + "load": 1.05, + "destination": 461, + "speed": 0, + "mass": 165.77, + "id": "adfd2df2-fe26-5811-8a48-0b7b0cf4760a", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 13.25, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 685, + "speed": 0, + "mass": 1, + "id": "6b736c27-0a5e-5cf4-94ee-c81a9e43c434", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 50, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.1, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 403, + "speed": 0, + "mass": 1, + "id": "df096589-4b23-5156-82c5-27d5bfd50ce5", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 446, + "speed": 0, + "mass": 1, + "id": "38778841-5b4d-51a4-9765-2a42f2a6c61a", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 535, + "speed": 0, + "mass": 1, + "id": "169e12ff-a2b1-5010-bd05-a70049b5d284", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 173, + "speed": 0, + "mass": 1, + "id": "509fcd47-3d3a-5bc3-901d-ac3869d056da", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 641, + "speed": 0, + "mass": 1, + "id": "769d8820-2baa-5cc1-a2d1-decaac6e6e39", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 528, + "speed": 0, + "mass": 1, + "id": "aff5ca15-82a3-5424-88bd-030dcb6d1130", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 698, + "speed": 0, + "mass": 1, + "id": "7026f391-018a-5991-8e99-70bfcb261ac9", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 538, + "speed": 0, + "mass": 1, + "id": "cf41bf43-c875-5cba-8fba-f1fa3067870e", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 73, + "speed": 0, + "mass": 1, + "id": "fc8b445f-939b-5961-9869-89a010c9b9fa", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 261, + "speed": 0, + "mass": 1, + "id": "49233dcb-32e6-5e8e-b986-373658c35306", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 26, + "speed": 0, + "mass": 1, + "id": "8a3eef0f-26b6-5ce9-9c8b-a8b89325700d", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 295, + "speed": 0, + "mass": 1, + "id": "4d28e2de-c5b2-589c-be0d-b6e7ca70f231", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 599, + "speed": 0, + "mass": 1, + "id": "b8b47be5-4b11-51aa-baa2-5483c8f9975a", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 593, + "speed": 0, + "mass": 1, + "id": "374545f0-4bcf-5620-9889-c74a29458daf", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 358, + "speed": 0, + "mass": 1, + "id": "46cabe0d-cb7d-560b-840f-005445357416", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 376, + "speed": 0, + "mass": 1, + "id": "7d677af7-fb32-5fbd-ac9c-94348b1027e5", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 471, + "speed": 0, + "mass": 1, + "id": "ebae3df4-1e9b-5de6-9db8-a412c82dfaa4", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 378, + "speed": 0, + "mass": 1, + "id": "28f206c8-9ea1-57d9-9492-7076d9970d7c", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 664, + "speed": 0, + "mass": 1, + "id": "2e50b560-1497-599e-8360-c165e9867fd2", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.1, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 63, + "origin": 535, + "range": 7.01, + "speed": 0, + "mass": 1, + "id": "52d1646e-a78b-52e3-8e7e-9c452545ee99", + "state": "In_Space", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.1, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 511, + "origin": 535, + "range": 9.92, + "speed": 0, + "mass": 1, + "id": "6d9628be-7884-5da6-ae10-064423bc9005", + "state": "In_Space", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.1, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 50, + "origin": 535, + "range": 10.57, + "speed": 0, + "mass": 1, + "id": "65e88f1f-caf2-57ba-b412-da5def6e0b45", + "state": "In_Space", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.1, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 410, + "speed": 0, + "mass": 1, + "id": "9960a580-efc5-5ee5-a2f7-18f94c2281ee", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.1, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 65, + "origin": 535, + "range": 4.83, + "speed": 0, + "mass": 1, + "id": "2e0cd1ed-2579-54f4-9564-581528b5c474", + "state": "In_Space", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.1, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 68, + "origin": 535, + "range": 11.57, + "speed": 0, + "mass": 1, + "id": "53550698-fc7e-55b3-a36b-77a912116143", + "state": "In_Space", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.1, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 362, + "origin": 535, + "range": 9.48, + "speed": 0, + "mass": 1, + "id": "48343ed7-3ff2-5680-a59d-e5f5bb7a1eeb", + "state": "In_Space", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.1, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 242, + "origin": 535, + "range": 9.85, + "speed": 0, + "mass": 1, + "id": "aa9fa0a4-25da-557d-8c58-0f37de7a67c4", + "state": "In_Space", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.1, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 160, + "origin": 535, + "range": 9.99, + "speed": 0, + "mass": 1, + "id": "01a3fae0-6e6e-5d24-a2c6-d7b5f34fefde", + "state": "In_Space", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.1, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 380, + "origin": 535, + "range": 76.76, + "speed": 0, + "mass": 1, + "id": "67e328f5-f066-51b1-9bf1-d941b9f8d170", + "state": "In_Space", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.1, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 527, + "origin": 535, + "range": 106.34, + "speed": 0, + "mass": 1, + "id": "78077809-c920-5502-b23c-e3e75e6e4735", + "state": "In_Space", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.1, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 346, + "origin": 535, + "range": 82.19, + "speed": 0, + "mass": 1, + "id": "a6ad6c1c-da81-52d3-aeb2-b6be314867b1", + "state": "In_Space", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.1, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 478, + "origin": 535, + "range": 138.68, + "speed": 0, + "mass": 1, + "id": "aaac542c-ccca-5ed1-b6c4-d4a86462b9be", + "state": "In_Space", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.1, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 689, + "origin": 535, + "range": 148.21, + "speed": 0, + "mass": 1, + "id": "62ad9d00-ccde-5c0a-8e00-28d77f4f1382", + "state": "In_Space", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.1, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 494, + "origin": 535, + "range": 127.47, + "speed": 0, + "mass": 1, + "id": "4d8191b7-6ddc-5e23-9224-9c1ac15e7443", + "state": "In_Space", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.1, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 164, + "origin": 535, + "range": 134.93, + "speed": 0, + "mass": 1, + "id": "49b975eb-908c-59ef-90ba-d889adf1b758", + "state": "In_Space", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.1, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 221, + "origin": 535, + "range": 56.65, + "speed": 0, + "mass": 1, + "id": "f47cb79d-a1c7-5283-b96a-35e33475879a", + "state": "In_Space", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.1, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 142, + "origin": 535, + "range": 106.82, + "speed": 0, + "mass": 1, + "id": "9827abd5-0454-5632-b366-1c7c22e55601", + "state": "In_Space", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.1, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 312, + "origin": 535, + "range": 176.96, + "speed": 0, + "mass": 1, + "id": "b04c507a-e2b4-5887-879c-305fe8e91e3b", + "state": "In_Space", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.1, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 209, + "origin": 535, + "range": 180.71, + "speed": 0, + "mass": 1, + "id": "e0e00db1-29e4-515f-821a-89e1fe1b70b0", + "state": "In_Space", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.1, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 594, + "origin": 535, + "range": 138.38, + "speed": 0, + "mass": 1, + "id": "0fad5faf-9c6d-5265-84e2-d5d649f2eced", + "state": "In_Space", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.1, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 78, + "origin": 535, + "range": 165.96, + "speed": 0, + "mass": 1, + "id": "016c0596-ebd8-57be-9b6a-fa72595a2010", + "state": "In_Space", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.1, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 623, + "origin": 535, + "range": 151.98, + "speed": 0, + "mass": 1, + "id": "07919134-41a3-5a58-a1f9-98e40424ba7a", + "state": "In_Space", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.1, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 228, + "origin": 535, + "range": 79.27, + "speed": 0, + "mass": 1, + "id": "164e3a90-74ef-5cbd-b5bb-f78c79b2e9ae", + "state": "In_Space", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.1, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 477, + "origin": 535, + "range": 112.45, + "speed": 0, + "mass": 1, + "id": "13f3eede-a2a6-5924-b21a-0a22733ba83e", + "state": "In_Space", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.1, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 53, + "origin": 535, + "range": 163.8, + "speed": 0, + "mass": 1, + "id": "a5a90c23-0feb-5895-8ce3-e87176312a04", + "state": "In_Space", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.1, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 683, + "origin": 535, + "range": 181.65, + "speed": 0, + "mass": 1, + "id": "b4208d2a-8959-588a-80f2-de007751164d", + "state": "In_Space", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.1, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 143, + "origin": 535, + "range": 77.54, + "speed": 0, + "mass": 1, + "id": "dd4e8b6f-d2a7-5ba5-a348-2b8ece7a78dd", + "state": "In_Space", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.1, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 269, + "origin": 535, + "range": 66.8, + "speed": 0, + "mass": 1, + "id": "acb18d01-8671-5456-9e2b-4b7f67a9b20f", + "state": "In_Space", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.1, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 611, + "origin": 535, + "range": 85.39, + "speed": 0, + "mass": 1, + "id": "2e1bb879-b5c2-5bc5-ae75-f5dc8371840e", + "state": "In_Space", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.1, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 510, + "origin": 535, + "range": 98.75, + "speed": 0, + "mass": 1, + "id": "d7e9985e-3983-5a86-abf6-7657721f9750", + "state": "In_Space", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.1, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 516, + "origin": 535, + "range": 30.77, + "speed": 0, + "mass": 1, + "id": "c000a716-3604-52ea-ac35-139e6e21c04b", + "state": "In_Space", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.1, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 359, + "origin": 535, + "range": 33.14, + "speed": 0, + "mass": 1, + "id": "25daa7d2-1782-5fe6-a90f-ef0b2a04a33a", + "state": "In_Space", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.1, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 195, + "origin": 535, + "range": 19.25, + "speed": 0, + "mass": 1, + "id": "708ff4b5-27f4-5737-9362-6546c4959498", + "state": "In_Space", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.1, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 44, + "origin": 535, + "range": 26.12, + "speed": 0, + "mass": 1, + "id": "47486a43-b0c1-5f70-8386-ff21e55540d9", + "state": "In_Space", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.1, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 208, + "origin": 535, + "range": 77.9, + "speed": 0, + "mass": 1, + "id": "e3e4d91d-ce2b-5ff3-8be3-21a1b5b9defd", + "state": "In_Space", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.1, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 75, + "origin": 535, + "range": 79.76, + "speed": 0, + "mass": 1, + "id": "1db9842b-4b0c-5d31-bcd6-32445a88e738", + "state": "In_Space", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.1, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 592, + "origin": 535, + "range": 82.09, + "speed": 0, + "mass": 1, + "id": "e737e25b-773c-5423-8fec-906f61690042", + "state": "In_Space", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.1, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 99, + "origin": 535, + "range": 81.16, + "speed": 0, + "mass": 1, + "id": "72ee480b-c932-59df-9ec8-cbb4ad2f6a65", + "state": "In_Space", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.1, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 470, + "origin": 535, + "range": 36.89, + "speed": 0, + "mass": 1, + "id": "e798af87-055f-5745-81e3-2788d6ac499c", + "state": "In_Space", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.1, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 671, + "origin": 535, + "range": 38.29, + "speed": 0, + "mass": 1, + "id": "bcbafa36-3fdb-54e0-96c6-1e59d42938dd", + "state": "In_Space", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.1, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 182, + "origin": 535, + "range": 74.9, + "speed": 0, + "mass": 1, + "id": "10209860-d32f-56f7-833b-20391a0299ee", + "state": "In_Space", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.1, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 630, + "origin": 535, + "range": 85.16, + "speed": 0, + "mass": 1, + "id": "411af855-85bb-59ae-ae91-682bac107273", + "state": "In_Space", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.1, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 342, + "origin": 535, + "range": 56.07, + "speed": 0, + "mass": 1, + "id": "77da9a3b-afa2-5f13-81bb-2698b653e577", + "state": "In_Space", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.1, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 308, + "origin": 535, + "range": 58.07, + "speed": 0, + "mass": 1, + "id": "7f8045a1-1a35-5eb1-b2ff-58d7cb749ad1", + "state": "In_Space", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.1, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 216, + "origin": 535, + "range": 19.28, + "speed": 0, + "mass": 1, + "id": "8745bcb9-5738-51ed-9392-bb2fbf41afb3", + "state": "In_Space", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.1, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 570, + "origin": 535, + "range": 75.66, + "speed": 0, + "mass": 1, + "id": "514c69ff-50c6-599f-9992-18ebd055cd8c", + "state": "In_Space", + "fleet": null + }, + { + "number": 1, + "class": "Stop", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 1.11, + "weapons": 1.67 + }, + "cargo": "-", + "load": 0, + "destination": 523, + "speed": 0, + "mass": 2.26, + "id": "62289ba3-3ed7-5038-9445-4bcb48cdc74b", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "Nonstop", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 2.57 + }, + "cargo": "-", + "load": 0, + "destination": 447, + "speed": 0, + "mass": 1, + "id": "af00a2ad-a24b-5401-a91a-b9c6a84c22a2", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "Nonstop", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 5.58 + }, + "cargo": "-", + "load": 0, + "destination": 176, + "speed": 0, + "mass": 1, + "id": "5ddf5b06-d550-5df7-a0ba-3a5d9f44b9a9", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "CombatFlame1x30", + "tech": { + "cargo": 1, + "drive": 13.25, + "shields": 7.09, + "weapons": 6.11 + }, + "cargo": "-", + "load": 0, + "destination": 17, + "speed": 0, + "mass": 99.01, + "id": "a8adb08d-5cb8-53a1-b44e-d98ddc8d5e82", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "KtoTronet-Zakopayu", + "tech": { + "cargo": 1, + "drive": 13.25, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 38, + "speed": 0, + "mass": 86.39, + "id": "0f998df9-a71d-58fe-a417-4fc5ae5bdda1", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 24, + "class": "IceWall103", + "tech": { + "cargo": 0, + "drive": 13.25, + "shields": 7.09, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 87, + "speed": 0, + "mass": 2.06, + "id": "24d0b57c-eef0-54f8-804c-f6cf2158159e", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "FireWay100x1", + "tech": { + "cargo": 1, + "drive": 13.25, + "shields": 7.09, + "weapons": 6.11 + }, + "cargo": "-", + "load": 0, + "destination": 114, + "speed": 0, + "mass": 156.96, + "id": "c543c1e7-bf75-5166-936d-85e205f40e08", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 13.25, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 176, + "speed": 0, + "mass": 1, + "id": "30266a09-a9a6-52a4-a74d-5ae9d025cf37", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 13.25, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 223, + "speed": 0, + "mass": 1, + "id": "c52da430-b8d5-58ca-a46a-45e5229db11b", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "ArrowsOfFire", + "tech": { + "cargo": 1, + "drive": 13.25, + "shields": 7.09, + "weapons": 6.11 + }, + "cargo": "-", + "load": 0, + "destination": 282, + "speed": 0, + "mass": 93.03, + "id": "bfd105c5-999c-5726-bf24-34e392780b82", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 45, + "class": "IceWall101", + "tech": { + "cargo": 0, + "drive": 13.25, + "shields": 7.09, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 296, + "speed": 0, + "mass": 2.02, + "id": "f92f17a9-42cc-5197-9c55-74a0791389a5", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 24, + "class": "IceWall103", + "tech": { + "cargo": 0, + "drive": 13.25, + "shields": 7.09, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 338, + "speed": 0, + "mass": 2.06, + "id": "deafac4a-ce58-5420-a78f-5a172fbd0cee", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "Nonstop", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 6.11 + }, + "cargo": "-", + "load": 0, + "destination": 446, + "speed": 0, + "mass": 1, + "id": "5deafca8-eb6b-5931-be45-05ded30e8f98", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 13.25, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 447, + "speed": 0, + "mass": 1, + "id": "d4d73402-bd32-5d01-bfa5-9f41ede0ba3a", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 63, + "class": "IceWall100", + "tech": { + "cargo": 0, + "drive": 13.25, + "shields": 7.09, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 495, + "speed": 0, + "mass": 2, + "id": "c889d72f-ad40-56d8-9907-a789a95d0e4a", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "Nonstop", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 6.11 + }, + "cargo": "-", + "load": 0, + "destination": 507, + "speed": 0, + "mass": 1, + "id": "5353f355-7b04-5b0c-b788-e3a95b616dc5", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 24, + "class": "IceWall103", + "tech": { + "cargo": 0, + "drive": 13.25, + "shields": 7.09, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 523, + "speed": 0, + "mass": 2.06, + "id": "97c4d8da-fba5-5a50-a824-dc266c95d09b", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "Nonstop", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 6.11 + }, + "cargo": "-", + "load": 0, + "destination": 532, + "speed": 0, + "mass": 1, + "id": "5f57860f-c7bb-5814-8c72-1b50d7d29aa8", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "Nonstop", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 6.11 + }, + "cargo": "-", + "load": 0, + "destination": 535, + "speed": 0, + "mass": 1, + "id": "de535a00-ff5c-50ce-ac08-2b59b616ae79", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "FireSnow57x1", + "tech": { + "cargo": 1, + "drive": 13.25, + "shields": 7.09, + "weapons": 6.11 + }, + "cargo": "-", + "load": 0, + "destination": 572, + "speed": 0, + "mass": 99.55, + "id": "205440a2-16bc-5bea-8b11-87aac240a7be", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 35, + "class": "IceWall102", + "tech": { + "cargo": 0, + "drive": 13.25, + "shields": 7.09, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 622, + "speed": 0, + "mass": 2.04, + "id": "63f96192-6da0-5893-9990-1f489505b3ed", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 13.25, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 636, + "speed": 0, + "mass": 1, + "id": "f656f713-f27d-5dee-b4a8-5410045e105a", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "Nonstop", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 6.11 + }, + "cargo": "-", + "load": 0, + "destination": 669, + "speed": 0, + "mass": 1, + "id": "3993de6e-18b2-503a-a52d-3338c79e5026", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "FireStorm20x5", + "tech": { + "cargo": 1, + "drive": 13.25, + "shields": 7.09, + "weapons": 6.11 + }, + "cargo": "-", + "load": 0, + "destination": 679, + "speed": 0, + "mass": 164.72, + "id": "796fa3f5-b229-5fa8-8389-757e90c7c437", + "state": "In_Orbit", + "fleet": null + } + ] + }, + "battles": { + "0ede2f8d-598f-56d7-93f1-6bca6de97ed4": { + "id": "0ede2f8d-598f-56d7-93f1-6bca6de97ed4", + "planet": 403, + "planetName": "PAgOCTb", + "races": { + "0": "7df9743c-8f73-5105-bd5c-483255e7d079", + "1": "2929f814-6393-549e-a5b1-0ad1d097e03a", + "2": "eedb8b43-f4d0-5903-b2c3-5acd0190cd3a" + }, + "ships": { + "0": { + "race": "KnightErrants", + "className": "Invalid", + "tech": { + "DRIVE": 11.19, + "SHIELDS": 7.09, + "WEAPONS": 4.76 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "1": { + "race": "KnightErrants", + "className": "PeaceShip", + "tech": { + "DRIVE": 9.1 + }, + "num": 50, + "numLeft": 50, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "2": { + "race": "KnightErrants", + "className": "Bow105", + "tech": { + "CARGO": 1, + "DRIVE": 11.19, + "SHIELDS": 3.3, + "WEAPONS": 4.76 + }, + "num": 1, + "numLeft": 1, + "loadType": "COL", + "loadQuantity": 0.5, + "inBattle": true + }, + "3": { + "race": "KnightErrants", + "className": "Buckler100", + "tech": { + "DRIVE": 11.19, + "SHIELDS": 5.65 + }, + "num": 100, + "numLeft": 100, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "4": { + "race": "KnightErrants", + "className": "Drone", + "tech": { + "DRIVE": 10.62, + "SHIELDS": 6.6, + "WEAPONS": 4.76 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "5": { + "race": "Flagist", + "className": "Drone", + "tech": { + "DRIVE": 7.32 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "6": { + "race": "Ricksha", + "className": "Dron", + "tech": { + "DRIVE": 3.2 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + } + }, + "protocol": [ + { + "a": 0, + "sa": 0, + "d": 2, + "sd": 6, + "x": true + } + ] + }, + "10aadb7c-1b8b-57ba-bfdf-fd89ba64dfa8": { + "id": "10aadb7c-1b8b-57ba-bfdf-fd89ba64dfa8", + "planet": 458, + "planetName": "NorthN", + "races": { + "0": "7df9743c-8f73-5105-bd5c-483255e7d079", + "1": "77e28126-6c7a-55c2-87ff-25b02470c02a", + "2": "4b34c651-2636-5014-b486-72211e2ed65a", + "3": "2929f814-6393-549e-a5b1-0ad1d097e03a", + "4": "d9c5bcf6-bdd3-5fd8-be22-22fc57a63e07" + }, + "ships": { + "0": { + "race": "KnightErrants", + "className": "Frontier", + "tech": { + "CARGO": 1, + "DRIVE": 8.27 + }, + "num": 2, + "numLeft": 2, + "loadType": "CAP", + "loadQuantity": 1.05, + "inBattle": true + }, + "1": { + "race": "KnightErrants", + "className": "Nonstop", + "tech": { + "WEAPONS": 1.67 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "2": { + "race": "Bumbastik", + "className": "BAX", + "tech": { + "DRIVE": 5.16 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "3": { + "race": "Zodiac", + "className": "Drone", + "tech": { + "DRIVE": 5.84 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "4": { + "race": "Flagist", + "className": "Drone", + "tech": { + "DRIVE": 7.32 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "5": { + "race": "SSSan", + "className": "DDRR", + "tech": { + "DRIVE": 8.17 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + } + }, + "protocol": [ + { + "a": 0, + "sa": 1, + "d": 1, + "sd": 2, + "x": true + } + ] + }, + "10e7131c-baa0-5c04-af98-f01958fe3a75": { + "id": "10e7131c-baa0-5c04-af98-f01958fe3a75", + "planet": 528, + "planetName": "EguHOPOr", + "races": { + "0": "7df9743c-8f73-5105-bd5c-483255e7d079", + "1": "bff2f73a-ab26-5eb4-9a01-0cadb1360bc6", + "2": "baff723f-a20a-5e6f-91e5-d7351f013b93", + "3": "c4fdf804-6a25-5351-b059-3e76d105b9fc", + "4": "eedb8b43-f4d0-5903-b2c3-5acd0190cd3a" + }, + "ships": { + "0": { + "race": "KnightErrants", + "className": "PeaceShip", + "tech": { + "DRIVE": 9.09 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "1": { + "race": "Slimes", + "className": "Fly_1", + "tech": { + "DRIVE": 5.16 + }, + "num": 169, + "numLeft": 169, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "2": { + "race": "Slimes", + "className": "Small_Buravchik_1", + "tech": { + "DRIVE": 5.16, + "SHIELDS": 2.1, + "WEAPONS": 3.52 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "3": { + "race": "Slimes", + "className": "Far_Settler_4", + "tech": { + "CARGO": 1.73, + "DRIVE": 5.79 + }, + "num": 1, + "numLeft": 1, + "loadType": "CAP", + "loadQuantity": 45.41, + "inBattle": true + }, + "4": { + "race": "Barcarols", + "className": "Drone", + "tech": { + "DRIVE": 4.75 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "5": { + "race": "kenguri", + "className": "b", + "tech": { + "DRIVE": 4.25 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "6": { + "race": "Ricksha", + "className": "Dron", + "tech": { + "DRIVE": 7.63 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + } + }, + "protocol": [ + { + "a": 1, + "sa": 2, + "d": 3, + "sd": 5, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 4, + "sd": 6, + "x": true + } + ] + }, + "140d0086-a74a-55f1-80da-30b9dddb832a": { + "id": "140d0086-a74a-55f1-80da-30b9dddb832a", + "planet": 691, + "planetName": "LIBRA", + "races": { + "0": "fa4a40ef-292d-5bef-808a-fe163f9cf038", + "1": "7df9743c-8f73-5105-bd5c-483255e7d079", + "2": "77e28126-6c7a-55c2-87ff-25b02470c02a", + "3": "4b34c651-2636-5014-b486-72211e2ed65a", + "4": "24679346-ce5a-5c80-ad67-c7f082bf089a", + "5": "8cf165df-7fd5-5ce5-ba7a-6c49ddb64c85" + }, + "ships": { + "0": { + "race": "TwelvePointedCross", + "className": "Drone", + "tech": { + "DRIVE": 4.4 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "1": { + "race": "KnightErrants", + "className": "PeaceShip", + "tech": { + "DRIVE": 7.25 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "2": { + "race": "Bumbastik", + "className": "BAX", + "tech": { + "DRIVE": 5.16 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "3": { + "race": "Zodiac", + "className": "Drone", + "tech": { + "DRIVE": 4.04 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "4": { + "race": "Manya", + "className": "Dron", + "tech": { + "DRIVE": 7.7 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "5": { + "race": "Nails", + "className": "Aerosmith", + "tech": { + "DRIVE": 3.21, + "SHIELDS": 1, + "WEAPONS": 1.3 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + } + }, + "protocol": [ + { + "a": 5, + "sa": 5, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 5, + "sa": 5, + "d": 4, + "sd": 4, + "x": true + } + ] + }, + "1951c81b-6d0d-597c-8eb1-877a5dbb7317": { + "id": "1951c81b-6d0d-597c-8eb1-877a5dbb7317", + "planet": 97, + "planetName": "Y2K", + "races": { + "0": "bd502f3c-514d-5073-afe1-afab3b9df8a4", + "1": "7df9743c-8f73-5105-bd5c-483255e7d079", + "2": "77e28126-6c7a-55c2-87ff-25b02470c02a", + "3": "4cea13f9-e4e6-5bb7-bda9-9764cd37d413", + "4": "8cf165df-7fd5-5ce5-ba7a-6c49ddb64c85" + }, + "ships": { + "0": { + "race": "HAEMHuKu-2000", + "className": "dr", + "tech": { + "DRIVE": 6.31 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "1": { + "race": "KnightErrants", + "className": "PeaceShip", + "tech": { + "DRIVE": 13.25 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "2": { + "race": "Bumbastik", + "className": "BAX", + "tech": { + "DRIVE": 5.16 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "3": { + "race": "AT-2560TX", + "className": "Drone", + "tech": { + "DRIVE": 8.21 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "4": { + "race": "Nails", + "className": "pup", + "tech": { + "DRIVE": 4.97 + }, + "num": 25, + "numLeft": 25, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "5": { + "race": "Nails", + "className": "1", + "tech": { + "CARGO": 1, + "DRIVE": 4.97, + "SHIELDS": 3.19, + "WEAPONS": 3.97 + }, + "num": 1, + "numLeft": 1, + "loadType": "COL", + "loadQuantity": 1.05, + "inBattle": true + } + }, + "protocol": [ + { + "a": 4, + "sa": 5, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 4, + "sa": 5, + "d": 3, + "sd": 3, + "x": true + } + ] + }, + "1c8f40a1-4469-5aed-b6b1-c7557c864f07": { + "id": "1c8f40a1-4469-5aed-b6b1-c7557c864f07", + "planet": 114, + "planetName": "HighWay", + "races": { + "0": "bd502f3c-514d-5073-afe1-afab3b9df8a4", + "1": "7df9743c-8f73-5105-bd5c-483255e7d079", + "2": "77e28126-6c7a-55c2-87ff-25b02470c02a", + "3": "4b34c651-2636-5014-b486-72211e2ed65a", + "4": "d9c5bcf6-bdd3-5fd8-be22-22fc57a63e07" + }, + "ships": { + "0": { + "race": "HAEMHuKu-2000", + "className": "dr", + "tech": { + "DRIVE": 6.31 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "1": { + "race": "KnightErrants", + "className": "Nonstop", + "tech": { + "WEAPONS": 1.38 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "2": { + "race": "KnightErrants", + "className": "PeaceShip", + "tech": { + "DRIVE": 3.23 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "3": { + "race": "Bumbastik", + "className": "BAX", + "tech": { + "DRIVE": 5.16 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "4": { + "race": "Zodiac", + "className": "Drone", + "tech": { + "DRIVE": 5.84 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "5": { + "race": "SSSan", + "className": "Dr", + "tech": { + "DRIVE": 2.9 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + } + }, + "protocol": [ + { + "a": 1, + "sa": 1, + "d": 2, + "sd": 3, + "x": true + } + ] + }, + "1e8a4d00-5d0d-5054-8e78-c522799c244f": { + "id": "1e8a4d00-5d0d-5054-8e78-c522799c244f", + "planet": 413, + "planetName": "B-1738", + "races": { + "0": "7df9743c-8f73-5105-bd5c-483255e7d079", + "1": "2a7ff3f6-d899-5b01-a7f0-4d30a7ac783f", + "2": "c4fdf804-6a25-5351-b059-3e76d105b9fc", + "3": "5441019a-75c8-5a57-8b26-80cb2d201e35", + "4": "d9b8f5cd-1ebc-5407-af1b-2a36323d0fe0" + }, + "ships": { + "0": { + "race": "KnightErrants", + "className": "PeaceShip", + "tech": { + "DRIVE": 9.1 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "1": { + "race": "Zerg", + "className": "zond", + "tech": { + "DRIVE": 2.1 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "10": { + "race": "Frightners", + "className": "Naga", + "tech": { + "DRIVE": 7.5, + "SHIELDS": 4.85, + "WEAPONS": 4.51 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "11": { + "race": "Frightners", + "className": "Turret", + "tech": { + "CARGO": 1, + "DRIVE": 7.5, + "SHIELDS": 4.85, + "WEAPONS": 4.51 + }, + "num": 1, + "numLeft": 1, + "loadType": "COL", + "loadQuantity": 1.05, + "inBattle": true + }, + "12": { + "race": "Enoxes", + "className": "Gnat", + "tech": { + "DRIVE": 11.2 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "2": { + "race": "kenguri", + "className": "b", + "tech": { + "DRIVE": 5.77 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "3": { + "race": "Frightners", + "className": "Buka-2", + "tech": { + "CARGO": 1, + "DRIVE": 1.4, + "WEAPONS": 1 + }, + "num": 3, + "numLeft": 3, + "loadType": "COL", + "loadQuantity": 1.07, + "inBattle": true + }, + "4": { + "race": "Frightners", + "className": "Goblin-20", + "tech": { + "CARGO": 1, + "DRIVE": 7.21, + "SHIELDS": 4.55, + "WEAPONS": 4.21 + }, + "num": 2, + "numLeft": 2, + "loadType": "COL", + "loadQuantity": 20, + "inBattle": true + }, + "5": { + "race": "Frightners", + "className": "Gun*", + "tech": { + "CARGO": 1, + "DRIVE": 7.5, + "SHIELDS": 4.85, + "WEAPONS": 4.51 + }, + "num": 1, + "numLeft": 1, + "loadType": "COL", + "loadQuantity": 1.05, + "inBattle": true + }, + "6": { + "race": "Frightners", + "className": "Boom*", + "tech": { + "CARGO": 1, + "DRIVE": 7.5, + "SHIELDS": 4.85, + "WEAPONS": 4.51 + }, + "num": 1, + "numLeft": 1, + "loadType": "COL", + "loadQuantity": 1.05, + "inBattle": true + }, + "7": { + "race": "Frightners", + "className": "moan", + "tech": { + "DRIVE": 7.79, + "SHIELDS": 5.15 + }, + "num": 85, + "numLeft": 85, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "8": { + "race": "Frightners", + "className": "Hydra*", + "tech": { + "DRIVE": 7.5, + "SHIELDS": 4.85, + "WEAPONS": 4.51 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "9": { + "race": "Frightners", + "className": "Lich", + "tech": { + "DRIVE": 7.5, + "SHIELDS": 4.85, + "WEAPONS": 4.51 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + } + }, + "protocol": [ + { + "a": 3, + "sa": 4, + "d": 0, + "sd": 0, + "x": true + } + ] + }, + "211866d5-057b-5c82-a6ca-35e44baea45b": { + "id": "211866d5-057b-5c82-a6ca-35e44baea45b", + "planet": 489, + "planetName": "DW-1737-0489", + "races": { + "0": "7df9743c-8f73-5105-bd5c-483255e7d079", + "1": "2929f814-6393-549e-a5b1-0ad1d097e03a", + "2": "eedb8b43-f4d0-5903-b2c3-5acd0190cd3a" + }, + "ships": { + "0": { + "race": "KnightErrants", + "className": "Drone", + "tech": { + "DRIVE": 10.62, + "SHIELDS": 6.6, + "WEAPONS": 4.76 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "1": { + "race": "KnightErrants", + "className": "PeaceShip", + "tech": { + "DRIVE": 10.62 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "2": { + "race": "Flagist", + "className": "Drone", + "tech": { + "DRIVE": 7.32 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "3": { + "race": "Ricksha", + "className": "Dron", + "tech": { + "DRIVE": 7.63 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + } + }, + "protocol": [ + { + "a": 0, + "sa": 0, + "d": 2, + "sd": 3, + "x": true + } + ] + }, + "228d740f-64b0-5d27-a557-2d32d625ac53": { + "id": "228d740f-64b0-5d27-a557-2d32d625ac53", + "planet": 343, + "planetName": "BETO", + "races": { + "0": "7df9743c-8f73-5105-bd5c-483255e7d079", + "1": "2929f814-6393-549e-a5b1-0ad1d097e03a", + "2": "12ac1971-a391-528a-87d5-b40e331bce1a", + "3": "63492966-9c61-5ab5-86e9-0edeae824bb7", + "4": "eedb8b43-f4d0-5903-b2c3-5acd0190cd3a", + "5": "d9b8f5cd-1ebc-5407-af1b-2a36323d0fe0" + }, + "ships": { + "0": { + "race": "KnightErrants", + "className": "PeaceShip", + "tech": { + "DRIVE": 9.09 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "1": { + "race": "KnightErrants", + "className": "SpetsNaz", + "tech": { + "CARGO": 1, + "DRIVE": 11.19, + "SHIELDS": 7.09, + "WEAPONS": 6.11 + }, + "num": 1, + "numLeft": 1, + "loadType": "COL", + "loadQuantity": 0.71, + "inBattle": true + }, + "2": { + "race": "Flagist", + "className": "Drone", + "tech": { + "DRIVE": 7.32 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "3": { + "race": "Shuriki", + "className": "SDron", + "tech": { + "DRIVE": 1.91 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "4": { + "race": "BlackCrows", + "className": "Dron", + "tech": { + "DRIVE": 8.4 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "5": { + "race": "Ricksha", + "className": "HE_CMOTPETb", + "tech": { + "WEAPONS": 1 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "6": { + "race": "Ricksha", + "className": "Dron", + "tech": { + "DRIVE": 7.63 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "7": { + "race": "Enoxes", + "className": "Gnat", + "tech": { + "DRIVE": 9.07 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + } + }, + "protocol": [ + { + "a": 4, + "sa": 5, + "d": 3, + "sd": 4, + "x": true + }, + { + "a": 0, + "sa": 1, + "d": 4, + "sd": 5, + "x": true + }, + { + "a": 0, + "sa": 1, + "d": 5, + "sd": 7, + "x": true + }, + { + "a": 0, + "sa": 1, + "d": 4, + "sd": 6, + "x": true + }, + { + "a": 0, + "sa": 1, + "d": 2, + "sd": 3, + "x": true + } + ] + }, + "26633687-f60b-5211-94fc-a1d72919434f": { + "id": "26633687-f60b-5211-94fc-a1d72919434f", + "planet": 690, + "planetName": "Resist-690", + "races": { + "0": "fa4a40ef-292d-5bef-808a-fe163f9cf038", + "1": "7df9743c-8f73-5105-bd5c-483255e7d079", + "2": "4b34c651-2636-5014-b486-72211e2ed65a", + "3": "010dfa0c-f487-5d4f-8604-d67ad29cb0a0", + "4": "24679346-ce5a-5c80-ad67-c7f082bf089a", + "5": "baff723f-a20a-5e6f-91e5-d7351f013b93", + "6": "8cf165df-7fd5-5ce5-ba7a-6c49ddb64c85", + "7": "d9b8f5cd-1ebc-5407-af1b-2a36323d0fe0" + }, + "ships": { + "0": { + "race": "TwelvePointedCross", + "className": "Vanity", + "tech": { + "DRIVE": 8.75, + "SHIELDS": 3.92, + "WEAPONS": 5.26 + }, + "num": 2, + "numLeft": 2, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "1": { + "race": "KnightErrants", + "className": "PeaceShip", + "tech": { + "DRIVE": 9.09 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "2": { + "race": "Zodiac", + "className": "Drone", + "tech": { + "DRIVE": 5.84 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "3": { + "race": "Oselots", + "className": "DDD", + "tech": { + "DRIVE": 6.2 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "4": { + "race": "Manya", + "className": "Dron", + "tech": { + "DRIVE": 7.7 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "5": { + "race": "Barcarols", + "className": "Drone", + "tech": { + "DRIVE": 7.96 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "6": { + "race": "Nails", + "className": "dron", + "tech": { + "DRIVE": 2 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "7": { + "race": "Enoxes", + "className": "Gnat", + "tech": { + "DRIVE": 9.07 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + } + }, + "protocol": [ + { + "a": 0, + "sa": 0, + "d": 4, + "sd": 4, + "x": true + } + ] + }, + "26cda435-8216-58e4-b5d6-9f932d4a0f73": { + "id": "26cda435-8216-58e4-b5d6-9f932d4a0f73", + "planet": 378, + "planetName": "Big-4227-0378", + "races": { + "0": "7df9743c-8f73-5105-bd5c-483255e7d079", + "1": "bff2f73a-ab26-5eb4-9a01-0cadb1360bc6", + "2": "baff723f-a20a-5e6f-91e5-d7351f013b93", + "3": "c4fdf804-6a25-5351-b059-3e76d105b9fc", + "4": "5441019a-75c8-5a57-8b26-80cb2d201e35" + }, + "ships": { + "0": { + "race": "KnightErrants", + "className": "PeaceShip", + "tech": { + "DRIVE": 9.09 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "1": { + "race": "Slimes", + "className": "Striker_1", + "tech": { + "DRIVE": 5.16, + "SHIELDS": 2.1, + "WEAPONS": 1.92 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "10": { + "race": "Frightners", + "className": "Scream", + "tech": { + "DRIVE": 3.4 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "2": { + "race": "Slimes", + "className": "Settler_1", + "tech": { + "CARGO": 1.59, + "DRIVE": 5.16 + }, + "num": 3, + "numLeft": 3, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "3": { + "race": "Slimes", + "className": "Perf_2", + "tech": { + "CARGO": 1.73, + "DRIVE": 6.02, + "SHIELDS": 3.01, + "WEAPONS": 4.05 + }, + "num": 2, + "numLeft": 2, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "4": { + "race": "Slimes", + "className": "Perf_1", + "tech": { + "DRIVE": 6.02, + "SHIELDS": 3.01, + "WEAPONS": 4.05 + }, + "num": 2, + "numLeft": 2, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "5": { + "race": "Slimes", + "className": "Fly_1", + "tech": { + "DRIVE": 5.79 + }, + "num": 105, + "numLeft": 105, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "6": { + "race": "Slimes", + "className": "Sverlo_1", + "tech": { + "CARGO": 1.73, + "DRIVE": 6.02, + "SHIELDS": 3.01, + "WEAPONS": 4.05 + }, + "num": 6, + "numLeft": 6, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "7": { + "race": "Slimes", + "className": "Perf_3", + "tech": { + "CARGO": 1.73, + "DRIVE": 6.02, + "SHIELDS": 3.01, + "WEAPONS": 4.05 + }, + "num": 2, + "numLeft": 2, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "8": { + "race": "Barcarols", + "className": "Drone", + "tech": { + "DRIVE": 7.32 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "9": { + "race": "kenguri", + "className": "b", + "tech": { + "DRIVE": 4.25 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + } + }, + "protocol": [ + { + "a": 1, + "sa": 1, + "d": 3, + "sd": 9, + "x": true + } + ] + }, + "2700dc80-907f-5b5e-80d4-286fa3b73f0f": { + "id": "2700dc80-907f-5b5e-80d4-286fa3b73f0f", + "planet": 425, + "planetName": "SAGITTARIUS", + "races": { + "0": "7df9743c-8f73-5105-bd5c-483255e7d079", + "1": "77e28126-6c7a-55c2-87ff-25b02470c02a", + "2": "4b34c651-2636-5014-b486-72211e2ed65a", + "3": "24679346-ce5a-5c80-ad67-c7f082bf089a", + "4": "8cf165df-7fd5-5ce5-ba7a-6c49ddb64c85" + }, + "ships": { + "0": { + "race": "KnightErrants", + "className": "PeaceShip", + "tech": { + "DRIVE": 7.25 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "1": { + "race": "Bumbastik", + "className": "BAX", + "tech": { + "DRIVE": 5.16 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "2": { + "race": "Zodiac", + "className": "Drone", + "tech": { + "DRIVE": 5.84 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "3": { + "race": "Manya", + "className": "Dron", + "tech": { + "DRIVE": 7.7 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "4": { + "race": "Nails", + "className": "cargonoid4", + "tech": { + "CARGO": 1, + "DRIVE": 2 + }, + "num": 8, + "numLeft": 8, + "loadType": "COL", + "loadQuantity": 2.81, + "inBattle": true + }, + "5": { + "race": "Nails", + "className": "kil-VI-5", + "tech": { + "DRIVE": 4.96, + "SHIELDS": 3.19, + "WEAPONS": 3.97 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "6": { + "race": "Nails", + "className": "justcargo", + "tech": { + "CARGO": 1, + "DRIVE": 2 + }, + "num": 5, + "numLeft": 5, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + } + }, + "protocol": [ + { + "a": 4, + "sa": 5, + "d": 3, + "sd": 3, + "x": true + }, + { + "a": 4, + "sa": 5, + "d": 1, + "sd": 1, + "x": true + } + ] + }, + "284aa96c-dad3-5a79-8627-cd779042b3de": { + "id": "284aa96c-dad3-5a79-8627-cd779042b3de", + "planet": 256, + "planetName": "HE4TO", + "races": { + "0": "7df9743c-8f73-5105-bd5c-483255e7d079", + "1": "2929f814-6393-549e-a5b1-0ad1d097e03a", + "2": "12ac1971-a391-528a-87d5-b40e331bce1a", + "3": "63492966-9c61-5ab5-86e9-0edeae824bb7", + "4": "eedb8b43-f4d0-5903-b2c3-5acd0190cd3a", + "5": "d9b8f5cd-1ebc-5407-af1b-2a36323d0fe0" + }, + "ships": { + "0": { + "race": "KnightErrants", + "className": "PeaceShip", + "tech": { + "DRIVE": 9.09 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "1": { + "race": "Flagist", + "className": "Drone", + "tech": { + "DRIVE": 7.32 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "2": { + "race": "Shuriki", + "className": "SDron", + "tech": { + "DRIVE": 1.91 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "3": { + "race": "BlackCrows", + "className": "Dron", + "tech": { + "DRIVE": 8.4 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "4": { + "race": "Ricksha", + "className": "HE_CMOTPETb", + "tech": { + "WEAPONS": 1 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "5": { + "race": "Enoxes", + "className": "Gnat", + "tech": { + "DRIVE": 9.07 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + } + }, + "protocol": [ + { + "a": 4, + "sa": 4, + "d": 0, + "sd": 0, + "x": true + }, + { + "a": 4, + "sa": 4, + "d": 3, + "sd": 3, + "x": true + } + ] + }, + "2ef60ab0-a4f4-516e-8024-d22a9e144540": { + "id": "2ef60ab0-a4f4-516e-8024-d22a9e144540", + "planet": 649, + "planetName": "Labirint", + "races": { + "0": "7df9743c-8f73-5105-bd5c-483255e7d079", + "1": "2929f814-6393-549e-a5b1-0ad1d097e03a", + "2": "eedb8b43-f4d0-5903-b2c3-5acd0190cd3a", + "3": "d9b8f5cd-1ebc-5407-af1b-2a36323d0fe0" + }, + "ships": { + "0": { + "race": "KnightErrants", + "className": "CrossBow52x2", + "tech": { + "CARGO": 1, + "DRIVE": 11.19, + "SHIELDS": 7.09, + "WEAPONS": 4.76 + }, + "num": 1, + "numLeft": 1, + "loadType": "COL", + "loadQuantity": 1.05, + "inBattle": true + }, + "1": { + "race": "KnightErrants", + "className": "Buckler100", + "tech": { + "DRIVE": 9.09, + "SHIELDS": 4.84 + }, + "num": 54, + "numLeft": 54, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "2": { + "race": "KnightErrants", + "className": "PeaceShip", + "tech": { + "DRIVE": 9.1 + }, + "num": 99, + "numLeft": 99, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "3": { + "race": "KnightErrants", + "className": "Catapult17x2.5", + "tech": { + "CARGO": 1, + "DRIVE": 10.62, + "SHIELDS": 7.09, + "WEAPONS": 4.76 + }, + "num": 1, + "numLeft": 1, + "loadType": "COL", + "loadQuantity": 0.5, + "inBattle": true + }, + "4": { + "race": "Flagist", + "className": "Drone", + "tech": { + "DRIVE": 7.32 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "5": { + "race": "Ricksha", + "className": "T541", + "tech": { + "DRIVE": 6.88, + "SHIELDS": 3.95, + "WEAPONS": 1.5 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "6": { + "race": "Enoxes", + "className": "Gnat", + "tech": { + "DRIVE": 9.07 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + } + }, + "protocol": [ + { + "a": 0, + "sa": 0, + "d": 2, + "sd": 5, + "x": false + }, + { + "a": 0, + "sa": 0, + "d": 2, + "sd": 5, + "x": false + }, + { + "a": 0, + "sa": 0, + "d": 3, + "sd": 6, + "x": true + }, + { + "a": 0, + "sa": 0, + "d": 2, + "sd": 5, + "x": false + }, + { + "a": 0, + "sa": 0, + "d": 2, + "sd": 5, + "x": false + }, + { + "a": 0, + "sa": 0, + "d": 2, + "sd": 5, + "x": true + } + ] + }, + "37d42ae6-06d9-5baf-8a74-deeb7a8a8964": { + "id": "37d42ae6-06d9-5baf-8a74-deeb7a8a8964", + "planet": 445, + "planetName": "Maolin", + "races": { + "0": "7df9743c-8f73-5105-bd5c-483255e7d079", + "1": "2929f814-6393-549e-a5b1-0ad1d097e03a", + "2": "3195ed84-74af-5171-954a-19f9d1e84024", + "3": "d9b8f5cd-1ebc-5407-af1b-2a36323d0fe0" + }, + "ships": { + "0": { + "race": "KnightErrants", + "className": "PeaceShip", + "tech": { + "DRIVE": 9.09 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "1": { + "race": "Flagist", + "className": "Drone", + "tech": { + "DRIVE": 6.08 + }, + "num": 2, + "numLeft": 2, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "2": { + "race": "Flagist", + "className": "Spores", + "tech": { + "CARGO": 1.2, + "DRIVE": 7.64, + "WEAPONS": 4.53 + }, + "num": 1, + "numLeft": 1, + "loadType": "COL", + "loadQuantity": 1.26, + "inBattle": false + }, + "3": { + "race": "6PATBA", + "className": "6pamuwka", + "tech": { + "DRIVE": 7.69 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "4": { + "race": "Enoxes", + "className": "Gnat", + "tech": { + "DRIVE": 11.4 + }, + "num": 26, + "numLeft": 26, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "5": { + "race": "Enoxes", + "className": "Pinta", + "tech": { + "CARGO": 1, + "DRIVE": 11.4, + "SHIELDS": 5.1, + "WEAPONS": 5.44 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + } + }, + "protocol": [ + { + "a": 3, + "sa": 5, + "d": 0, + "sd": 0, + "x": true + } + ] + }, + "3916d343-b7ce-5fd1-8f68-b5f821b4e399": { + "id": "3916d343-b7ce-5fd1-8f68-b5f821b4e399", + "planet": 610, + "planetName": "TEMJIyC", + "races": { + "0": "7df9743c-8f73-5105-bd5c-483255e7d079", + "1": "2929f814-6393-549e-a5b1-0ad1d097e03a", + "2": "eedb8b43-f4d0-5903-b2c3-5acd0190cd3a", + "3": "d9b8f5cd-1ebc-5407-af1b-2a36323d0fe0" + }, + "ships": { + "0": { + "race": "KnightErrants", + "className": "PeaceShip", + "tech": { + "DRIVE": 5.34 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "1": { + "race": "Flagist", + "className": "Drone", + "tech": { + "DRIVE": 7.32 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "2": { + "race": "Ricksha", + "className": "HE_CMOTPETb", + "tech": { + "WEAPONS": 1 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "3": { + "race": "Ricksha", + "className": "Dron", + "tech": { + "DRIVE": 7.63 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "4": { + "race": "Enoxes", + "className": "Gnat", + "tech": { + "DRIVE": 9.07 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + } + }, + "protocol": [ + { + "a": 2, + "sa": 2, + "d": 0, + "sd": 0, + "x": true + } + ] + }, + "3bae45ff-10c5-5297-9c5a-d1039c944e76": { + "id": "3bae45ff-10c5-5297-9c5a-d1039c944e76", + "planet": 20, + "planetName": "DW-1207-0020", + "races": { + "0": "7df9743c-8f73-5105-bd5c-483255e7d079", + "1": "2929f814-6393-549e-a5b1-0ad1d097e03a", + "2": "baff723f-a20a-5e6f-91e5-d7351f013b93", + "3": "12ac1971-a391-528a-87d5-b40e331bce1a", + "4": "63492966-9c61-5ab5-86e9-0edeae824bb7", + "5": "eedb8b43-f4d0-5903-b2c3-5acd0190cd3a", + "6": "d9b8f5cd-1ebc-5407-af1b-2a36323d0fe0" + }, + "ships": { + "0": { + "race": "KnightErrants", + "className": "PeaceShip", + "tech": { + "DRIVE": 10.62 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "1": { + "race": "KnightErrants", + "className": "SpetsNaz", + "tech": { + "CARGO": 1, + "DRIVE": 11.19, + "SHIELDS": 7.09, + "WEAPONS": 6.11 + }, + "num": 1, + "numLeft": 1, + "loadType": "COL", + "loadQuantity": 0.1, + "inBattle": true + }, + "2": { + "race": "Flagist", + "className": "Drone", + "tech": { + "DRIVE": 7.31 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "3": { + "race": "Barcarols", + "className": "Drone", + "tech": { + "DRIVE": 8.56 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "4": { + "race": "Shuriki", + "className": "SDron", + "tech": { + "DRIVE": 1.91 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "5": { + "race": "BlackCrows", + "className": "Dron", + "tech": { + "DRIVE": 8 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "6": { + "race": "Ricksha", + "className": "Colonaizer", + "tech": { + "CARGO": 1, + "DRIVE": 1.01 + }, + "num": 1, + "numLeft": 0, + "loadType": "COL", + "loadQuantity": 1, + "inBattle": true + }, + "7": { + "race": "Enoxes", + "className": "Gnat", + "tech": { + "DRIVE": 9.07 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + } + }, + "protocol": [ + { + "a": 0, + "sa": 1, + "d": 3, + "sd": 4, + "x": true + }, + { + "a": 0, + "sa": 1, + "d": 6, + "sd": 7, + "x": true + }, + { + "a": 0, + "sa": 1, + "d": 2, + "sd": 3, + "x": true + }, + { + "a": 0, + "sa": 1, + "d": 4, + "sd": 5, + "x": true + }, + { + "a": 0, + "sa": 1, + "d": 5, + "sd": 6, + "x": true + } + ] + }, + "40d81f10-88b6-521a-9700-c2b6b1522b6b": { + "id": "40d81f10-88b6-521a-9700-c2b6b1522b6b", + "planet": 85, + "planetName": "Source-85", + "races": { + "0": "fa4a40ef-292d-5bef-808a-fe163f9cf038", + "1": "7df9743c-8f73-5105-bd5c-483255e7d079", + "2": "4b34c651-2636-5014-b486-72211e2ed65a", + "3": "010dfa0c-f487-5d4f-8604-d67ad29cb0a0", + "4": "24679346-ce5a-5c80-ad67-c7f082bf089a", + "5": "baff723f-a20a-5e6f-91e5-d7351f013b93", + "6": "8cf165df-7fd5-5ce5-ba7a-6c49ddb64c85" + }, + "ships": { + "0": { + "race": "TwelvePointedCross", + "className": "DeadHippo", + "tech": { + "CARGO": 1, + "DRIVE": 5.58 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "1": { + "race": "TwelvePointedCross", + "className": "DeadCow", + "tech": { + "CARGO": 1, + "DRIVE": 8.73, + "WEAPONS": 4.82 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "2": { + "race": "KnightErrants", + "className": "PeaceShip", + "tech": { + "DRIVE": 9.09 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "3": { + "race": "Zodiac", + "className": "Drone", + "tech": { + "DRIVE": 5.84 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "4": { + "race": "Oselots", + "className": "DDD", + "tech": { + "DRIVE": 7.33 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "5": { + "race": "Manya", + "className": "Dron", + "tech": { + "DRIVE": 7.7 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "6": { + "race": "Barcarols", + "className": "Drone", + "tech": { + "DRIVE": 4.08 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "7": { + "race": "Nails", + "className": "dron", + "tech": { + "DRIVE": 2 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + } + }, + "protocol": [ + { + "a": 0, + "sa": 1, + "d": 4, + "sd": 5, + "x": true + } + ] + }, + "42e9f113-d436-553f-b8fa-60746eed7f3c": { + "id": "42e9f113-d436-553f-b8fa-60746eed7f3c", + "planet": 73, + "planetName": "Normal-5644-0073", + "races": { + "0": "7df9743c-8f73-5105-bd5c-483255e7d079", + "1": "bff2f73a-ab26-5eb4-9a01-0cadb1360bc6", + "2": "baff723f-a20a-5e6f-91e5-d7351f013b93", + "3": "63492966-9c61-5ab5-86e9-0edeae824bb7", + "4": "eedb8b43-f4d0-5903-b2c3-5acd0190cd3a" + }, + "ships": { + "0": { + "race": "KnightErrants", + "className": "PeaceShip", + "tech": { + "DRIVE": 9.09 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "1": { + "race": "Slimes", + "className": "Striker_1", + "tech": { + "DRIVE": 3.6, + "SHIELDS": 1.1, + "WEAPONS": 1 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "2": { + "race": "Slimes", + "className": "Fly_1", + "tech": { + "DRIVE": 5.79 + }, + "num": 182, + "numLeft": 182, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "3": { + "race": "Slimes", + "className": "Settler_1", + "tech": { + "CARGO": 1.73, + "DRIVE": 5.79 + }, + "num": 3, + "numLeft": 3, + "loadType": "CAP", + "loadQuantity": 8.3, + "inBattle": true + }, + "4": { + "race": "Slimes", + "className": "Fort_3_Perf", + "tech": { + "SHIELDS": 3.01, + "WEAPONS": 4.05 + }, + "num": 4, + "numLeft": 4, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "5": { + "race": "Barcarols", + "className": "Drone", + "tech": { + "DRIVE": 7.32 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "6": { + "race": "BlackCrows", + "className": "Dron", + "tech": { + "DRIVE": 8.4 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "7": { + "race": "Ricksha", + "className": "Dron", + "tech": { + "DRIVE": 7.63 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + } + }, + "protocol": [ + { + "a": 1, + "sa": 4, + "d": 3, + "sd": 6, + "x": true + }, + { + "a": 1, + "sa": 4, + "d": 4, + "sd": 7, + "x": true + } + ] + }, + "51f99594-35c0-5070-acaa-20cb079d695b": { + "id": "51f99594-35c0-5070-acaa-20cb079d695b", + "planet": 255, + "planetName": "Normal-0325-0255", + "races": { + "0": "7df9743c-8f73-5105-bd5c-483255e7d079", + "1": "2929f814-6393-549e-a5b1-0ad1d097e03a", + "2": "9d3315bb-337a-553b-96bb-7d13546c48d8", + "3": "3195ed84-74af-5171-954a-19f9d1e84024", + "4": "eedb8b43-f4d0-5903-b2c3-5acd0190cd3a", + "5": "fbd3c148-4bec-5fbf-b46c-2a840dfd9645", + "6": "d9b8f5cd-1ebc-5407-af1b-2a36323d0fe0" + }, + "ships": { + "0": { + "race": "KnightErrants", + "className": "PeaceShip", + "tech": { + "DRIVE": 9.09 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "1": { + "race": "Flagist", + "className": "Drone", + "tech": { + "DRIVE": 3.7 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "10": { + "race": "Enoxes", + "className": "Quadrat-A", + "tech": { + "CARGO": 1, + "DRIVE": 9.07, + "SHIELDS": 1.3, + "WEAPONS": 3.16 + }, + "num": 1, + "numLeft": 1, + "loadType": "COL", + "loadQuantity": 1.05, + "inBattle": true + }, + "11": { + "race": "Enoxes", + "className": "Pair", + "tech": { + "CARGO": 1, + "DRIVE": 9.07, + "SHIELDS": 1.3, + "WEAPONS": 3.16 + }, + "num": 1, + "numLeft": 1, + "loadType": "COL", + "loadQuantity": 1.05, + "inBattle": true + }, + "12": { + "race": "Enoxes", + "className": "Maxim62a", + "tech": { + "DRIVE": 9.07, + "SHIELDS": 1.3, + "WEAPONS": 3.16 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "13": { + "race": "Enoxes", + "className": "FS-2", + "tech": { + "DRIVE": 11.4, + "SHIELDS": 5.64 + }, + "num": 25, + "numLeft": 25, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "14": { + "race": "Enoxes", + "className": "Samara-A", + "tech": { + "CARGO": 1, + "DRIVE": 11.4, + "SHIELDS": 5.64, + "WEAPONS": 6.69 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "2": { + "race": "CosmicMonkeys", + "className": "DPOH", + "tech": { + "DRIVE": 7.94 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "3": { + "race": "6PATBA", + "className": "6pamuwka", + "tech": { + "DRIVE": 8.36 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "4": { + "race": "Ricksha", + "className": "Dron", + "tech": { + "DRIVE": 3.2 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "5": { + "race": "sidiki", + "className": "Drone_1", + "tech": { + "DRIVE": 2.2 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "6": { + "race": "Enoxes", + "className": "FBlin", + "tech": { + "CARGO": 1, + "DRIVE": 6.46 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "7": { + "race": "Enoxes", + "className": "Gnat", + "tech": { + "DRIVE": 5.1 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "8": { + "race": "Enoxes", + "className": "Duzina", + "tech": { + "CARGO": 1, + "DRIVE": 9.07, + "SHIELDS": 1.3, + "WEAPONS": 3.16 + }, + "num": 1, + "numLeft": 1, + "loadType": "COL", + "loadQuantity": 1.05, + "inBattle": true + }, + "9": { + "race": "Enoxes", + "className": "Maxim70a", + "tech": { + "DRIVE": 9.07, + "SHIELDS": 1.3, + "WEAPONS": 3.16 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + } + }, + "protocol": [ + { + "a": 6, + "sa": 14, + "d": 0, + "sd": 0, + "x": true + } + ] + }, + "591a65e9-2ba2-5883-a142-fc6e928f4e7e": { + "id": "591a65e9-2ba2-5883-a142-fc6e928f4e7e", + "planet": 669, + "planetName": "Tovty", + "races": { + "0": "7df9743c-8f73-5105-bd5c-483255e7d079", + "1": "4b34c651-2636-5014-b486-72211e2ed65a", + "2": "2929f814-6393-549e-a5b1-0ad1d097e03a", + "3": "eedb8b43-f4d0-5903-b2c3-5acd0190cd3a" + }, + "ships": { + "0": { + "race": "KnightErrants", + "className": "Furgon20", + "tech": { + "CARGO": 1, + "DRIVE": 9.45, + "WEAPONS": 4.76 + }, + "num": 1, + "numLeft": 1, + "loadType": "COL", + "loadQuantity": 20, + "inBattle": true + }, + "1": { + "race": "KnightErrants", + "className": "PeaceShip", + "tech": { + "DRIVE": 9.09 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "2": { + "race": "KnightErrants", + "className": "Furgon10b", + "tech": { + "CARGO": 1, + "DRIVE": 9.09 + }, + "num": 1, + "numLeft": 1, + "loadType": "COL", + "loadQuantity": 8.95, + "inBattle": true + }, + "3": { + "race": "KnightErrants", + "className": "CombatFlame1x30", + "tech": { + "CARGO": 1, + "DRIVE": 13.25, + "SHIELDS": 7.09, + "WEAPONS": 6.11 + }, + "num": 1, + "numLeft": 1, + "loadType": "COL", + "loadQuantity": 1.05, + "inBattle": true + }, + "4": { + "race": "KnightErrants", + "className": "IceWall100", + "tech": { + "DRIVE": 13.25, + "SHIELDS": 7.09 + }, + "num": 43, + "numLeft": 43, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "5": { + "race": "KnightErrants", + "className": "Paravozik20", + "tech": { + "CARGO": 1, + "DRIVE": 13.25, + "SHIELDS": 7.09, + "WEAPONS": 6.11 + }, + "num": 1, + "numLeft": 1, + "loadType": "COL", + "loadQuantity": 20.02, + "inBattle": true + }, + "6": { + "race": "Zodiac", + "className": "Drone", + "tech": { + "DRIVE": 5.84 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "7": { + "race": "Flagist", + "className": "Drone", + "tech": { + "DRIVE": 7.31 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "8": { + "race": "Ricksha", + "className": "Dron", + "tech": { + "DRIVE": 3.2 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + } + }, + "protocol": [ + { + "a": 0, + "sa": 0, + "d": 3, + "sd": 8, + "x": true + } + ] + }, + "5a95f6c4-1ea2-5178-b071-ce3a1b0e3b62": { + "id": "5a95f6c4-1ea2-5178-b071-ce3a1b0e3b62", + "planet": 506, + "planetName": "VVHTREWW", + "races": { + "0": "7df9743c-8f73-5105-bd5c-483255e7d079", + "1": "2929f814-6393-549e-a5b1-0ad1d097e03a", + "2": "eedb8b43-f4d0-5903-b2c3-5acd0190cd3a" + }, + "ships": { + "0": { + "race": "KnightErrants", + "className": "PeaceShip", + "tech": { + "DRIVE": 9.09 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "1": { + "race": "KnightErrants", + "className": "SpetsNaz", + "tech": { + "CARGO": 1, + "DRIVE": 11.19, + "SHIELDS": 7.09, + "WEAPONS": 6.11 + }, + "num": 1, + "numLeft": 1, + "loadType": "COL", + "loadQuantity": 0.1, + "inBattle": true + }, + "2": { + "race": "KnightErrants", + "className": "Drone", + "tech": { + "DRIVE": 10.62, + "SHIELDS": 6.6, + "WEAPONS": 4.76 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "3": { + "race": "Flagist", + "className": "Drone", + "tech": { + "DRIVE": 6.08 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "4": { + "race": "Ricksha", + "className": "Dron", + "tech": { + "DRIVE": 3.2 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + } + }, + "protocol": [ + { + "a": 0, + "sa": 1, + "d": 2, + "sd": 4, + "x": true + } + ] + }, + "5b487499-547f-5ea5-8ec8-c228bdfec129": { + "id": "5b487499-547f-5ea5-8ec8-c228bdfec129", + "planet": 26, + "planetName": "Normal-1075-0026", + "races": { + "0": "7df9743c-8f73-5105-bd5c-483255e7d079", + "1": "bff2f73a-ab26-5eb4-9a01-0cadb1360bc6", + "2": "baff723f-a20a-5e6f-91e5-d7351f013b93", + "3": "c4fdf804-6a25-5351-b059-3e76d105b9fc", + "4": "d9b8f5cd-1ebc-5407-af1b-2a36323d0fe0" + }, + "ships": { + "0": { + "race": "KnightErrants", + "className": "PeaceShip", + "tech": { + "DRIVE": 9.09 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "1": { + "race": "Slimes", + "className": "Far_Settler_2", + "tech": { + "CARGO": 1.73, + "DRIVE": 5.16 + }, + "num": 1, + "numLeft": 1, + "loadType": "MAT", + "loadQuantity": 34.95, + "inBattle": true + }, + "2": { + "race": "Slimes", + "className": "Fort_2", + "tech": { + "WEAPONS": 3.92 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "3": { + "race": "Slimes", + "className": "Fly_1", + "tech": { + "DRIVE": 5.79 + }, + "num": 71, + "numLeft": 71, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "4": { + "race": "Barcarols", + "className": "Drone", + "tech": { + "DRIVE": 7.32 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "5": { + "race": "kenguri", + "className": "b", + "tech": { + "DRIVE": 5.67 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "6": { + "race": "Enoxes", + "className": "Gnat", + "tech": { + "DRIVE": 11.4 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + } + }, + "protocol": [ + { + "a": 1, + "sa": 2, + "d": 3, + "sd": 5, + "x": true + } + ] + }, + "60112197-fe47-5056-950a-1bec90737b6b": { + "id": "60112197-fe47-5056-950a-1bec90737b6b", + "planet": 67, + "planetName": "Golden", + "races": { + "0": "bd502f3c-514d-5073-afe1-afab3b9df8a4", + "1": "7df9743c-8f73-5105-bd5c-483255e7d079", + "2": "baff723f-a20a-5e6f-91e5-d7351f013b93", + "3": "12ac1971-a391-528a-87d5-b40e331bce1a", + "4": "63492966-9c61-5ab5-86e9-0edeae824bb7", + "5": "eedb8b43-f4d0-5903-b2c3-5acd0190cd3a", + "6": "43d748fc-074d-57b7-9fad-c9bd42586fce" + }, + "ships": { + "0": { + "race": "HAEMHuKu-2000", + "className": "dr", + "tech": { + "DRIVE": 6.31 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "1": { + "race": "KnightErrants", + "className": "PeaceShip", + "tech": { + "DRIVE": 9.09 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "2": { + "race": "Barcarols", + "className": "Drone", + "tech": { + "DRIVE": 7.32 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "3": { + "race": "Shuriki", + "className": "AntiDron", + "tech": { + "DRIVE": 7.67, + "WEAPONS": 3.19 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "4": { + "race": "Shuriki", + "className": "SDron", + "tech": { + "DRIVE": 7.98 + }, + "num": 13, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "5": { + "race": "BlackCrows", + "className": "Dulo_1x40", + "tech": { + "CARGO": 1, + "DRIVE": 8.2, + "SHIELDS": 2.49, + "WEAPONS": 2.72 + }, + "num": 1, + "numLeft": 1, + "loadType": "COL", + "loadQuantity": 0.5, + "inBattle": true + }, + "6": { + "race": "BlackCrows", + "className": "Dron", + "tech": { + "DRIVE": 8.2 + }, + "num": 50, + "numLeft": 41, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "7": { + "race": "Ricksha", + "className": "Dron", + "tech": { + "DRIVE": 4.4 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "8": { + "race": "Argon", + "className": "Drone", + "tech": { + "DRIVE": 2 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + } + }, + "protocol": [ + { + "a": 3, + "sa": 3, + "d": 4, + "sd": 6, + "x": true + }, + { + "a": 4, + "sa": 5, + "d": 3, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 3, + "d": 4, + "sd": 6, + "x": true + }, + { + "a": 4, + "sa": 5, + "d": 3, + "sd": 4, + "x": true + }, + { + "a": 4, + "sa": 5, + "d": 3, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 3, + "d": 4, + "sd": 6, + "x": true + }, + { + "a": 4, + "sa": 5, + "d": 3, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 3, + "d": 4, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 3, + "d": 4, + "sd": 6, + "x": true + }, + { + "a": 4, + "sa": 5, + "d": 1, + "sd": 1, + "x": true + }, + { + "a": 4, + "sa": 5, + "d": 3, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 3, + "d": 4, + "sd": 6, + "x": true + }, + { + "a": 4, + "sa": 5, + "d": 3, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 3, + "d": 4, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 3, + "d": 4, + "sd": 6, + "x": true + }, + { + "a": 4, + "sa": 5, + "d": 3, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 3, + "d": 4, + "sd": 6, + "x": true + }, + { + "a": 4, + "sa": 5, + "d": 3, + "sd": 3, + "x": true + }, + { + "a": 4, + "sa": 5, + "d": 3, + "sd": 4, + "x": true + }, + { + "a": 4, + "sa": 5, + "d": 3, + "sd": 4, + "x": true + }, + { + "a": 4, + "sa": 5, + "d": 3, + "sd": 4, + "x": true + }, + { + "a": 4, + "sa": 5, + "d": 3, + "sd": 4, + "x": true + }, + { + "a": 4, + "sa": 5, + "d": 3, + "sd": 4, + "x": true + }, + { + "a": 4, + "sa": 5, + "d": 3, + "sd": 4, + "x": true + } + ] + }, + "624a9976-53df-5567-ae74-50429cce0b4d": { + "id": "624a9976-53df-5567-ae74-50429cce0b4d", + "planet": 561, + "planetName": "Forpost3", + "races": { + "0": "7df9743c-8f73-5105-bd5c-483255e7d079", + "1": "47c803af-2855-5973-9141-b3887a6cf367", + "2": "fbd3c148-4bec-5fbf-b46c-2a840dfd9645", + "3": "d9b8f5cd-1ebc-5407-af1b-2a36323d0fe0" + }, + "ships": { + "0": { + "race": "KnightErrants", + "className": "PeaceShip", + "tech": { + "DRIVE": 9.1 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "1": { + "race": "Onix", + "className": "Drone", + "tech": { + "DRIVE": 6.18 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "2": { + "race": "sidiki", + "className": "Fort_2", + "tech": { + "SHIELDS": 3.57, + "WEAPONS": 2.53 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "3": { + "race": "sidiki", + "className": "Drone", + "tech": { + "DRIVE": 2.2 + }, + "num": 35, + "numLeft": 35, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "4": { + "race": "Enoxes", + "className": "Gnat", + "tech": { + "DRIVE": 5.1 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + } + }, + "protocol": [ + { + "a": 2, + "sa": 2, + "d": 0, + "sd": 0, + "x": true + } + ] + }, + "6389ea2c-b89f-549e-ab54-883fe742272b": { + "id": "6389ea2c-b89f-549e-ab54-883fe742272b", + "planet": 357, + "planetName": "Fastov", + "races": { + "0": "7df9743c-8f73-5105-bd5c-483255e7d079", + "1": "baff723f-a20a-5e6f-91e5-d7351f013b93", + "2": "12ac1971-a391-528a-87d5-b40e331bce1a", + "3": "63492966-9c61-5ab5-86e9-0edeae824bb7", + "4": "eedb8b43-f4d0-5903-b2c3-5acd0190cd3a", + "5": "43d748fc-074d-57b7-9fad-c9bd42586fce", + "6": "d9b8f5cd-1ebc-5407-af1b-2a36323d0fe0" + }, + "ships": { + "0": { + "race": "KnightErrants", + "className": "PeaceShip", + "tech": { + "DRIVE": 9.09 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "1": { + "race": "Barcarols", + "className": "Drone", + "tech": { + "DRIVE": 7.32 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "10": { + "race": "Argon", + "className": "Drone", + "tech": { + "DRIVE": 2 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "11": { + "race": "Enoxes", + "className": "Gnat", + "tech": { + "DRIVE": 9.07 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "2": { + "race": "Shuriki", + "className": "MediumCol", + "tech": { + "CARGO": 1, + "DRIVE": 2.1 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "3": { + "race": "Shuriki", + "className": "AntiDron", + "tech": { + "DRIVE": 7.67, + "WEAPONS": 3.19 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "4": { + "race": "Shuriki", + "className": "SDron", + "tech": { + "DRIVE": 7.98 + }, + "num": 31, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "5": { + "race": "BlackCrows", + "className": "Perf_74x1", + "tech": { + "CARGO": 1, + "DRIVE": 8.2, + "SHIELDS": 2.49, + "WEAPONS": 2.72 + }, + "num": 1, + "numLeft": 1, + "loadType": "COL", + "loadQuantity": 0.5, + "inBattle": true + }, + "6": { + "race": "BlackCrows", + "className": "Tura_x15", + "tech": { + "CARGO": 1, + "DRIVE": 8.2, + "SHIELDS": 2.49, + "WEAPONS": 2.72 + }, + "num": 1, + "numLeft": 1, + "loadType": "COL", + "loadQuantity": 1.05, + "inBattle": true + }, + "7": { + "race": "BlackCrows", + "className": "Tura_3x18", + "tech": { + "CARGO": 1, + "DRIVE": 8.2, + "SHIELDS": 2.49, + "WEAPONS": 2.72 + }, + "num": 2, + "numLeft": 2, + "loadType": "COL", + "loadQuantity": 0.25, + "inBattle": true + }, + "8": { + "race": "BlackCrows", + "className": "Dron", + "tech": { + "DRIVE": 8.2 + }, + "num": 300, + "numLeft": 300, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "9": { + "race": "Ricksha", + "className": "Dron", + "tech": { + "DRIVE": 4.4 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + } + }, + "protocol": [ + { + "a": 3, + "sa": 6, + "d": 2, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 6, + "d": 2, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 6, + "d": 2, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 6, + "d": 2, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 5, + "d": 2, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 5, + "d": 2, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 5, + "d": 0, + "sd": 0, + "x": true + }, + { + "a": 3, + "sa": 5, + "d": 2, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 5, + "d": 2, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 5, + "d": 2, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 5, + "d": 2, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 5, + "d": 2, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 5, + "d": 2, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 5, + "d": 2, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 5, + "d": 2, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 5, + "d": 2, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 5, + "d": 2, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 5, + "d": 2, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 5, + "d": 2, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 5, + "d": 2, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 5, + "d": 2, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 5, + "d": 2, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 5, + "d": 2, + "sd": 3, + "x": true + }, + { + "a": 3, + "sa": 5, + "d": 2, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 5, + "d": 2, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 5, + "d": 2, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 5, + "d": 2, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 5, + "d": 2, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 5, + "d": 2, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 5, + "d": 2, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 5, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 5, + "d": 2, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 5, + "d": 2, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 5, + "d": 2, + "sd": 4, + "x": true + } + ] + }, + "748784c5-911f-509b-a6d8-25d984c7e2f3": { + "id": "748784c5-911f-509b-a6d8-25d984c7e2f3", + "planet": 46, + "planetName": "Povezlp", + "races": { + "0": "7df9743c-8f73-5105-bd5c-483255e7d079", + "1": "2929f814-6393-549e-a5b1-0ad1d097e03a", + "2": "63492966-9c61-5ab5-86e9-0edeae824bb7", + "3": "eedb8b43-f4d0-5903-b2c3-5acd0190cd3a" + }, + "ships": { + "0": { + "race": "KnightErrants", + "className": "PeaceShip", + "tech": { + "DRIVE": 9.09 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "1": { + "race": "KnightErrants", + "className": "SpetsNaz", + "tech": { + "CARGO": 1, + "DRIVE": 11.19, + "SHIELDS": 7.09, + "WEAPONS": 6.11 + }, + "num": 1, + "numLeft": 1, + "loadType": "COL", + "loadQuantity": 0.1, + "inBattle": true + }, + "2": { + "race": "Flagist", + "className": "Drone", + "tech": { + "DRIVE": 6.08 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "3": { + "race": "BlackCrows", + "className": "Dron", + "tech": { + "DRIVE": 8.4 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "4": { + "race": "Ricksha", + "className": "Dron", + "tech": { + "DRIVE": 6.88 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + } + }, + "protocol": [ + { + "a": 0, + "sa": 1, + "d": 2, + "sd": 3, + "x": true + }, + { + "a": 0, + "sa": 1, + "d": 3, + "sd": 4, + "x": true + } + ] + }, + "7a458c02-02dc-5652-942e-3d5ca35c2ad7": { + "id": "7a458c02-02dc-5652-942e-3d5ca35c2ad7", + "planet": 632, + "planetName": "3BE3gA", + "races": { + "0": "7df9743c-8f73-5105-bd5c-483255e7d079", + "1": "2929f814-6393-549e-a5b1-0ad1d097e03a", + "2": "3195ed84-74af-5171-954a-19f9d1e84024", + "3": "d9b8f5cd-1ebc-5407-af1b-2a36323d0fe0" + }, + "ships": { + "0": { + "race": "KnightErrants", + "className": "PeaceShip", + "tech": { + "DRIVE": 9.09 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "1": { + "race": "KnightErrants", + "className": "SpetsNaz", + "tech": { + "CARGO": 1, + "DRIVE": 11.19, + "SHIELDS": 7.09, + "WEAPONS": 6.11 + }, + "num": 1, + "numLeft": 1, + "loadType": "COL", + "loadQuantity": 1.05, + "inBattle": true + }, + "2": { + "race": "Flagist", + "className": "Drone", + "tech": { + "DRIVE": 7.31 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "3": { + "race": "6PATBA", + "className": "6pamuwka", + "tech": { + "DRIVE": 5.38 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "4": { + "race": "Enoxes", + "className": "Gnat", + "tech": { + "DRIVE": 9.07 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + } + }, + "protocol": [ + { + "a": 0, + "sa": 1, + "d": 2, + "sd": 3, + "x": true + }, + { + "a": 0, + "sa": 1, + "d": 3, + "sd": 4, + "x": true + } + ] + }, + "7a51822b-6d57-5949-8a55-958b54d528a1": { + "id": "7a51822b-6d57-5949-8a55-958b54d528a1", + "planet": 521, + "planetName": "B-521", + "races": { + "0": "7df9743c-8f73-5105-bd5c-483255e7d079", + "1": "77e28126-6c7a-55c2-87ff-25b02470c02a", + "2": "24679346-ce5a-5c80-ad67-c7f082bf089a", + "3": "baff723f-a20a-5e6f-91e5-d7351f013b93", + "4": "8cf165df-7fd5-5ce5-ba7a-6c49ddb64c85" + }, + "ships": { + "0": { + "race": "KnightErrants", + "className": "PeaceShip", + "tech": { + "DRIVE": 7.25 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "1": { + "race": "Bumbastik", + "className": "BAX", + "tech": { + "DRIVE": 5.16 + }, + "num": 19, + "numLeft": 19, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "2": { + "race": "Bumbastik", + "className": "D18.56", + "tech": { + "CARGO": 1, + "DRIVE": 5.16, + "SHIELDS": 2.3, + "WEAPONS": 3.63 + }, + "num": 1, + "numLeft": 1, + "loadType": "COL", + "loadQuantity": 0.99, + "inBattle": true + }, + "3": { + "race": "Bumbastik", + "className": "P110", + "tech": { + "CARGO": 1, + "DRIVE": 5.16, + "SHIELDS": 2.82, + "WEAPONS": 3.63 + }, + "num": 1, + "numLeft": 1, + "loadType": "COL", + "loadQuantity": 1, + "inBattle": true + }, + "4": { + "race": "Bumbastik", + "className": "T9", + "tech": { + "CARGO": 1, + "DRIVE": 5.16, + "SHIELDS": 2.82, + "WEAPONS": 3.63 + }, + "num": 1, + "numLeft": 1, + "loadType": "COL", + "loadQuantity": 0.99, + "inBattle": true + }, + "5": { + "race": "Manya", + "className": "Dron", + "tech": { + "DRIVE": 7.7 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "6": { + "race": "Barcarols", + "className": "Drone", + "tech": { + "DRIVE": 7.96 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "7": { + "race": "Nails", + "className": "pup", + "tech": { + "DRIVE": 4.97 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + } + }, + "protocol": [ + { + "a": 1, + "sa": 2, + "d": 3, + "sd": 6, + "x": true + }, + { + "a": 1, + "sa": 4, + "d": 2, + "sd": 5, + "x": true + }, + { + "a": 1, + "sa": 4, + "d": 4, + "sd": 7, + "x": true + }, + { + "a": 1, + "sa": 4, + "d": 0, + "sd": 0, + "x": true + } + ] + }, + "831a3e55-7c55-52f9-8bdc-32680bac0d78": { + "id": "831a3e55-7c55-52f9-8bdc-32680bac0d78", + "planet": 294, + "planetName": "OAZIS", + "races": { + "0": "7df9743c-8f73-5105-bd5c-483255e7d079", + "1": "2929f814-6393-549e-a5b1-0ad1d097e03a", + "2": "9d3315bb-337a-553b-96bb-7d13546c48d8", + "3": "3195ed84-74af-5171-954a-19f9d1e84024", + "4": "eedb8b43-f4d0-5903-b2c3-5acd0190cd3a", + "5": "fbd3c148-4bec-5fbf-b46c-2a840dfd9645", + "6": "d9b8f5cd-1ebc-5407-af1b-2a36323d0fe0" + }, + "ships": { + "0": { + "race": "KnightErrants", + "className": "PeaceShip", + "tech": { + "DRIVE": 9.09 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "1": { + "race": "Flagist", + "className": "Drone", + "tech": { + "DRIVE": 3.7 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "2": { + "race": "CosmicMonkeys", + "className": "DPOH", + "tech": { + "DRIVE": 6.82 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "3": { + "race": "6PATBA", + "className": "6pamuwka", + "tech": { + "DRIVE": 5.89 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "4": { + "race": "Ricksha", + "className": "Dron", + "tech": { + "DRIVE": 3.2 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "5": { + "race": "sidiki", + "className": "Drone_1", + "tech": { + "DRIVE": 2.2 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "6": { + "race": "Enoxes", + "className": "RangerA", + "tech": { + "CARGO": 1, + "DRIVE": 5.8, + "SHIELDS": 1, + "WEAPONS": 2.2 + }, + "num": 1, + "numLeft": 1, + "loadType": "COL", + "loadQuantity": 1.05, + "inBattle": true + }, + "7": { + "race": "Enoxes", + "className": "Track", + "tech": { + "CARGO": 1, + "DRIVE": 11.2, + "SHIELDS": 2.13, + "WEAPONS": 4.22 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "8": { + "race": "Enoxes", + "className": "Gnat", + "tech": { + "DRIVE": 8.4 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + } + }, + "protocol": [ + { + "a": 6, + "sa": 7, + "d": 0, + "sd": 0, + "x": true + } + ] + }, + "85f0c551-0739-5ba8-b09b-4150c5e6c963": { + "id": "85f0c551-0739-5ba8-b09b-4150c5e6c963", + "planet": 572, + "planetName": "NorthPrime", + "races": { + "0": "7df9743c-8f73-5105-bd5c-483255e7d079", + "1": "77e28126-6c7a-55c2-87ff-25b02470c02a", + "2": "4b34c651-2636-5014-b486-72211e2ed65a", + "3": "2929f814-6393-549e-a5b1-0ad1d097e03a", + "4": "d9c5bcf6-bdd3-5fd8-be22-22fc57a63e07" + }, + "ships": { + "0": { + "race": "KnightErrants", + "className": "Nonstop", + "tech": { + "WEAPONS": 1.67 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "1": { + "race": "Bumbastik", + "className": "BAX", + "tech": { + "DRIVE": 5.16 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "2": { + "race": "Zodiac", + "className": "Drone", + "tech": { + "DRIVE": 5.84 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "3": { + "race": "Flagist", + "className": "Drone", + "tech": { + "DRIVE": 7.32 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "4": { + "race": "SSSan", + "className": "DDRR", + "tech": { + "DRIVE": 8.17 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + } + }, + "protocol": [ + { + "a": 0, + "sa": 0, + "d": 1, + "sd": 1, + "x": true + } + ] + }, + "867cdc3e-8bdf-57d2-8401-0b92af7151fa": { + "id": "867cdc3e-8bdf-57d2-8401-0b92af7151fa", + "planet": 129, + "planetName": "VIRGO", + "races": { + "0": "7df9743c-8f73-5105-bd5c-483255e7d079", + "1": "77e28126-6c7a-55c2-87ff-25b02470c02a" + }, + "ships": { + "0": { + "race": "KnightErrants", + "className": "PeaceShip", + "tech": { + "DRIVE": 11.19 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "1": { + "race": "Bumbastik", + "className": "Gun", + "tech": { + "WEAPONS": 3.63 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + } + }, + "protocol": [ + { + "a": 1, + "sa": 1, + "d": 0, + "sd": 0, + "x": true + } + ] + }, + "88d51235-2ade-5ce5-8866-c1a473a9993e": { + "id": "88d51235-2ade-5ce5-8866-c1a473a9993e", + "planet": 370, + "planetName": "S1", + "races": { + "0": "bd502f3c-514d-5073-afe1-afab3b9df8a4", + "1": "7df9743c-8f73-5105-bd5c-483255e7d079", + "2": "1c4e6a18-4d45-5242-9467-031cabe8ad55", + "3": "d9c5bcf6-bdd3-5fd8-be22-22fc57a63e07", + "4": "e7d5b8a1-69a4-521f-a5d5-643b1ccda246", + "5": "63492966-9c61-5ab5-86e9-0edeae824bb7" + }, + "ships": { + "0": { + "race": "HAEMHuKu-2000", + "className": "dr", + "tech": { + "DRIVE": 2.6 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "1": { + "race": "KnightErrants", + "className": "PeaceShip", + "tech": { + "DRIVE": 9.09 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "10": { + "race": "Koreans", + "className": "dd", + "tech": { + "DRIVE": 9.87, + "SHIELDS": 4.86 + }, + "num": 134, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "11": { + "race": "SSSan", + "className": "SMCol", + "tech": { + "CARGO": 1.1, + "DRIVE": 10.85 + }, + "num": 1, + "numLeft": 0, + "loadType": "COL", + "loadQuantity": 1.4, + "inBattle": true + }, + "12": { + "race": "SSSan", + "className": "SD", + "tech": { + "DRIVE": 14.1, + "SHIELDS": 6.37 + }, + "num": 176, + "numLeft": 44, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "13": { + "race": "SSSan", + "className": "Dulko1", + "tech": { + "DRIVE": 14.1, + "SHIELDS": 6.37, + "WEAPONS": 8.23 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "14": { + "race": "SSSan", + "className": "SD1", + "tech": { + "DRIVE": 14.1, + "SHIELDS": 6.37 + }, + "num": 24, + "numLeft": 5, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "15": { + "race": "SSSan", + "className": "PE", + "tech": { + "DRIVE": 14.1, + "SHIELDS": 6.37, + "WEAPONS": 8.23 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "16": { + "race": "SSSan", + "className": "Per", + "tech": { + "DRIVE": 14.1, + "SHIELDS": 6.37, + "WEAPONS": 8.23 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "17": { + "race": "Acreators", + "className": "DPOH", + "tech": { + "DRIVE": 9.5 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "18": { + "race": "BlackCrows", + "className": "Colo", + "tech": { + "CARGO": 1, + "DRIVE": 1.64 + }, + "num": 1, + "numLeft": 1, + "loadType": "COL", + "loadQuantity": 0.08, + "inBattle": false + }, + "19": { + "race": "BlackCrows", + "className": "Dron", + "tech": { + "DRIVE": 2.7 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "2": { + "race": "Koreans", + "className": "d", + "tech": { + "DRIVE": 9.87 + }, + "num": 112, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "3": { + "race": "Koreans", + "className": "Cruiser:6x6", + "tech": { + "DRIVE": 9.87, + "SHIELDS": 4.86, + "WEAPONS": 5.96 + }, + "num": 2, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "4": { + "race": "Koreans", + "className": "PolyGun:103x1.5", + "tech": { + "CARGO": 1, + "DRIVE": 9.87, + "SHIELDS": 4.86, + "WEAPONS": 5.96 + }, + "num": 1, + "numLeft": 0, + "loadType": "COL", + "loadQuantity": 0.7, + "inBattle": true + }, + "5": { + "race": "Koreans", + "className": "Cruiser:5x6.9", + "tech": { + "CARGO": 1, + "DRIVE": 9.87, + "SHIELDS": 4.86, + "WEAPONS": 5.96 + }, + "num": 1, + "numLeft": 0, + "loadType": "COL", + "loadQuantity": 1.05, + "inBattle": true + }, + "6": { + "race": "Koreans", + "className": "Drone", + "tech": { + "DRIVE": 6.62 + }, + "num": 91, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "7": { + "race": "Koreans", + "className": "PolyCruiser:21x7.1", + "tech": { + "CARGO": 1, + "DRIVE": 9.87, + "SHIELDS": 4.86, + "WEAPONS": 5.96 + }, + "num": 1, + "numLeft": 0, + "loadType": "COL", + "loadQuantity": 0.9, + "inBattle": true + }, + "8": { + "race": "Koreans", + "className": "PolyGun:57x1", + "tech": { + "DRIVE": 9.87, + "SHIELDS": 4.86, + "WEAPONS": 5.96 + }, + "num": 2, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "9": { + "race": "Koreans", + "className": "DPOH", + "tech": { + "DRIVE": 4.89 + }, + "num": 103, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + } + }, + "protocol": [ + { + "a": 3, + "sa": 13, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 14, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 11, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 11, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 11, + "x": true + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 7, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 7, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 7, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 7, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 7, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 7, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 7, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 7, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 7, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 7, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 7, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 7, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 7, + "d": 3, + "sd": 14, + "x": true + }, + { + "a": 2, + "sa": 7, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 7, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 7, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 7, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 7, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 7, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 7, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 7, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 3, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 3, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 3, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 3, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 3, + "d": 3, + "sd": 14, + "x": true + }, + { + "a": 2, + "sa": 3, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 3, + "sa": 15, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 15, + "d": 4, + "sd": 17, + "x": true + }, + { + "a": 3, + "sa": 15, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 15, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 15, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 15, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 15, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 15, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 15, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 15, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 15, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 15, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 15, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 15, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 15, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 15, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 15, + "d": 2, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 15, + "d": 2, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 15, + "d": 2, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 15, + "d": 2, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 15, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 15, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 15, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 15, + "d": 2, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 15, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 15, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 15, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 15, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 15, + "d": 2, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 15, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 2, + "sa": 5, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 5, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 5, + "d": 3, + "sd": 14, + "x": true + }, + { + "a": 2, + "sa": 5, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 5, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 14, + "x": true + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 3, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 2, + "sa": 3, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 3, + "d": 3, + "sd": 14, + "x": true + }, + { + "a": 2, + "sa": 3, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 3, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 3, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 3, + "d": 3, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 3, + "d": 3, + "sd": 14, + "x": true + }, + { + "a": 2, + "sa": 3, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 3, + "d": 3, + "sd": 14, + "x": true + }, + { + "a": 2, + "sa": 3, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 3, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 3, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 3, + "sa": 15, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 15, + "d": 2, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 15, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 15, + "d": 2, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 15, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 15, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 15, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 15, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 15, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 15, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 15, + "d": 2, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 15, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 15, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 15, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 15, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 15, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 15, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 15, + "d": 2, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 15, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 15, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 15, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 15, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 15, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 15, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 15, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 15, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 15, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 15, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 15, + "d": 2, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 15, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 15, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 3, + "sa": 13, + "d": 2, + "sd": 6, + "x": true + }, + { + "a": 2, + "sa": 5, + "d": 3, + "sd": 14, + "x": true + }, + { + "a": 2, + "sa": 5, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 5, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 5, + "d": 3, + "sd": 14, + "x": true + }, + { + "a": 2, + "sa": 5, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 8, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 2, + "sa": 3, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 3, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 3, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 3, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 3, + "d": 3, + "sd": 14, + "x": true + }, + { + "a": 2, + "sa": 3, + "d": 3, + "sd": 15, + "x": true + }, + { + "a": 2, + "sa": 3, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 3, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 3, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 3, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 3, + "d": 3, + "sd": 16, + "x": false + }, + { + "a": 2, + "sa": 3, + "d": 3, + "sd": 14, + "x": true + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 3, + "sa": 13, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 2, + "sa": 3, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 3, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 3, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 3, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 3, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 3, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 5, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 5, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 5, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 5, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 5, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 3, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 2, + "sa": 3, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 3, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 3, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 3, + "d": 3, + "sd": 14, + "x": true + }, + { + "a": 2, + "sa": 3, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 3, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 5, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 5, + "d": 3, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 5, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 5, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 5, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 8, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 13, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 14, + "x": true + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 14, + "x": true + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 14, + "x": true + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 3, + "sa": 13, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 2, + "sa": 5, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 5, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 5, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 5, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 5, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 8, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 8, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 3, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 14, + "x": true + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 8, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 3, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 3, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 3, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 3, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 3, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 3, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 3, + "sa": 13, + "d": 2, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 8, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 8, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 5, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 5, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 3, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 3, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 8, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 3, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 3, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 5, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 5, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 8, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 8, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 8, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 8, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 5, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 3, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 8, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 5, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 8, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 5, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 5, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 5, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 5, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 10, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 8, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 3, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 5, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 8, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 5, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 3, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 3, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 5, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 5, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 3, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 3, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 3, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 3, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 5, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 3, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 3, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 3, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 5, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 3, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 5, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 3, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 3, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 5, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 5, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 5, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 5, + "x": false + }, + { + "a": 2, + "sa": 5, + "d": 3, + "sd": 14, + "x": true + }, + { + "a": 2, + "sa": 5, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 5, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 5, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 5, + "d": 3, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 3, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 3, + "d": 3, + "sd": 16, + "x": false + }, + { + "a": 2, + "sa": 3, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 3, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 2, + "sa": 3, + "d": 3, + "sd": 14, + "x": true + }, + { + "a": 2, + "sa": 3, + "d": 3, + "sd": 12, + "x": true + }, + { + "a": 3, + "sa": 13, + "d": 2, + "sd": 3, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 2, + "sd": 5, + "x": true + } + ] + }, + "8a5eb73c-f3e1-5d18-ab58-80cb0d3fe78c": { + "id": "8a5eb73c-f3e1-5d18-ab58-80cb0d3fe78c", + "planet": 324, + "planetName": "Vinnitsa", + "races": { + "0": "bd502f3c-514d-5073-afe1-afab3b9df8a4", + "1": "7df9743c-8f73-5105-bd5c-483255e7d079", + "2": "baff723f-a20a-5e6f-91e5-d7351f013b93", + "3": "12ac1971-a391-528a-87d5-b40e331bce1a", + "4": "63492966-9c61-5ab5-86e9-0edeae824bb7", + "5": "eedb8b43-f4d0-5903-b2c3-5acd0190cd3a", + "6": "43d748fc-074d-57b7-9fad-c9bd42586fce" + }, + "ships": { + "0": { + "race": "HAEMHuKu-2000", + "className": "dr", + "tech": { + "DRIVE": 6.31 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "1": { + "race": "KnightErrants", + "className": "PeaceShip", + "tech": { + "DRIVE": 9.09 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "10": { + "race": "Argon", + "className": "Drone", + "tech": { + "DRIVE": 2 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "2": { + "race": "Barcarols", + "className": "Drone", + "tech": { + "DRIVE": 1.7 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "3": { + "race": "Shuriki", + "className": "AntiDron", + "tech": { + "DRIVE": 7.67, + "WEAPONS": 3.19 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "4": { + "race": "Shuriki", + "className": "Dulo1", + "tech": { + "DRIVE": 7.98, + "SHIELDS": 3.41, + "WEAPONS": 3.39 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "5": { + "race": "BlackCrows", + "className": "Perf_60x1", + "tech": { + "CARGO": 1, + "DRIVE": 8.2, + "SHIELDS": 1.79, + "WEAPONS": 2.72 + }, + "num": 1, + "numLeft": 0, + "loadType": "COL", + "loadQuantity": 0.5, + "inBattle": true + }, + "6": { + "race": "BlackCrows", + "className": "Perf_115x1", + "tech": { + "CARGO": 1, + "DRIVE": 8.2, + "SHIELDS": 2.49, + "WEAPONS": 2.72 + }, + "num": 1, + "numLeft": 0, + "loadType": "COL", + "loadQuantity": 0.5, + "inBattle": true + }, + "7": { + "race": "BlackCrows", + "className": "Perf_100x2", + "tech": { + "CARGO": 1, + "DRIVE": 8.2, + "SHIELDS": 2.49, + "WEAPONS": 2.72 + }, + "num": 2, + "numLeft": 0, + "loadType": "COL", + "loadQuantity": 1.05, + "inBattle": true + }, + "8": { + "race": "BlackCrows", + "className": "Dron", + "tech": { + "DRIVE": 8.4 + }, + "num": 282, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "9": { + "race": "Ricksha", + "className": "Dron", + "tech": { + "DRIVE": 3.2 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + } + }, + "protocol": [ + { + "a": 4, + "sa": 6, + "d": 1, + "sd": 1, + "x": true + }, + { + "a": 4, + "sa": 6, + "d": 3, + "sd": 3, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 5, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 7, + "x": false + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 8, + "x": true + } + ] + }, + "8ae64d21-927c-5e14-aefb-6a133cd04329": { + "id": "8ae64d21-927c-5e14-aefb-6a133cd04329", + "planet": 261, + "planetName": "Rich-7400-0261", + "races": { + "0": "7df9743c-8f73-5105-bd5c-483255e7d079", + "1": "bff2f73a-ab26-5eb4-9a01-0cadb1360bc6", + "2": "baff723f-a20a-5e6f-91e5-d7351f013b93", + "3": "63492966-9c61-5ab5-86e9-0edeae824bb7", + "4": "eedb8b43-f4d0-5903-b2c3-5acd0190cd3a" + }, + "ships": { + "0": { + "race": "KnightErrants", + "className": "PeaceShip", + "tech": { + "DRIVE": 9.09 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "1": { + "race": "Slimes", + "className": "NoAccess_1", + "tech": { + "SHIELDS": 2.6, + "WEAPONS": 3.98 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "2": { + "race": "Slimes", + "className": "Fort_3_Perf", + "tech": { + "SHIELDS": 3.01, + "WEAPONS": 4.05 + }, + "num": 4, + "numLeft": 4, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "3": { + "race": "Barcarols", + "className": "Drone", + "tech": { + "DRIVE": 7.32 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "4": { + "race": "BlackCrows", + "className": "Dron", + "tech": { + "DRIVE": 8.4 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "5": { + "race": "Ricksha", + "className": "Dron", + "tech": { + "DRIVE": 7.63 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + } + }, + "protocol": [ + { + "a": 1, + "sa": 2, + "d": 3, + "sd": 4, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 4, + "sd": 5, + "x": true + } + ] + }, + "8bc65ffe-c016-57d6-8cb0-5c5592530b6b": { + "id": "8bc65ffe-c016-57d6-8cb0-5c5592530b6b", + "planet": 283, + "planetName": "B-283", + "races": { + "0": "7df9743c-8f73-5105-bd5c-483255e7d079", + "1": "77e28126-6c7a-55c2-87ff-25b02470c02a", + "2": "8cf165df-7fd5-5ce5-ba7a-6c49ddb64c85" + }, + "ships": { + "0": { + "race": "KnightErrants", + "className": "PeaceShip", + "tech": { + "DRIVE": 6.52 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "1": { + "race": "Bumbastik", + "className": "K-2", + "tech": { + "DRIVE": 5.16, + "SHIELDS": 2.82, + "WEAPONS": 3.63 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "2": { + "race": "Bumbastik", + "className": "BAX", + "tech": { + "DRIVE": 5.16 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "3": { + "race": "Nails", + "className": "pup", + "tech": { + "DRIVE": 4.97 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + } + }, + "protocol": [ + { + "a": 1, + "sa": 1, + "d": 0, + "sd": 0, + "x": true + }, + { + "a": 1, + "sa": 1, + "d": 2, + "sd": 3, + "x": true + } + ] + }, + "8f923650-d6a7-5d55-964e-9deebfa31b8b": { + "id": "8f923650-d6a7-5d55-964e-9deebfa31b8b", + "planet": 679, + "planetName": "SteelPower", + "races": { + "0": "bd502f3c-514d-5073-afe1-afab3b9df8a4", + "1": "7df9743c-8f73-5105-bd5c-483255e7d079", + "2": "77e28126-6c7a-55c2-87ff-25b02470c02a", + "3": "4b34c651-2636-5014-b486-72211e2ed65a", + "4": "1c4e6a18-4d45-5242-9467-031cabe8ad55", + "5": "d9c5bcf6-bdd3-5fd8-be22-22fc57a63e07" + }, + "ships": { + "0": { + "race": "HAEMHuKu-2000", + "className": "dr", + "tech": { + "DRIVE": 6.31 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "1": { + "race": "KnightErrants", + "className": "Nonstop", + "tech": { + "WEAPONS": 4.76 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "2": { + "race": "Bumbastik", + "className": "BAX", + "tech": { + "DRIVE": 5.16 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "3": { + "race": "Zodiac", + "className": "Drone", + "tech": { + "DRIVE": 5.84 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "4": { + "race": "Koreans", + "className": "d", + "tech": { + "DRIVE": 3.9 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "5": { + "race": "SSSan", + "className": "Dr", + "tech": { + "DRIVE": 2.9 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + } + }, + "protocol": [ + { + "a": 1, + "sa": 1, + "d": 2, + "sd": 2, + "x": true + } + ] + }, + "97dae5d0-00f1-5ad6-b2ac-6094b605d5ad": { + "id": "97dae5d0-00f1-5ad6-b2ac-6094b605d5ad", + "planet": 7, + "planetName": "B-007", + "races": { + "0": "7df9743c-8f73-5105-bd5c-483255e7d079", + "1": "77e28126-6c7a-55c2-87ff-25b02470c02a", + "2": "4b34c651-2636-5014-b486-72211e2ed65a", + "3": "8cf165df-7fd5-5ce5-ba7a-6c49ddb64c85" + }, + "ships": { + "0": { + "race": "KnightErrants", + "className": "PeaceShip", + "tech": { + "DRIVE": 13.25 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "1": { + "race": "Bumbastik", + "className": "Pistolet", + "tech": { + "DRIVE": 1.6, + "SHIELDS": 1, + "WEAPONS": 1 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "10": { + "race": "Nails", + "className": "48", + "tech": { + "CARGO": 1, + "DRIVE": 4.97, + "SHIELDS": 3.19, + "WEAPONS": 3.97 + }, + "num": 1, + "numLeft": 0, + "loadType": "COL", + "loadQuantity": 1.05, + "inBattle": true + }, + "11": { + "race": "Nails", + "className": "18a", + "tech": { + "CARGO": 1, + "DRIVE": 4.97, + "SHIELDS": 3.19, + "WEAPONS": 3.97 + }, + "num": 1, + "numLeft": 0, + "loadType": "COL", + "loadQuantity": 1.05, + "inBattle": true + }, + "12": { + "race": "Nails", + "className": "1", + "tech": { + "CARGO": 1, + "DRIVE": 4.97, + "SHIELDS": 3.19, + "WEAPONS": 3.97 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "13": { + "race": "Nails", + "className": "18b", + "tech": { + "DRIVE": 4.97, + "SHIELDS": 3.19, + "WEAPONS": 3.97 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "14": { + "race": "Nails", + "className": "1b", + "tech": { + "CARGO": 1, + "DRIVE": 4.97, + "SHIELDS": 3.19, + "WEAPONS": 3.97 + }, + "num": 1, + "numLeft": 1, + "loadType": "COL", + "loadQuantity": 1.05, + "inBattle": true + }, + "15": { + "race": "Nails", + "className": "1a", + "tech": { + "CARGO": 1, + "DRIVE": 4.97, + "SHIELDS": 3.19, + "WEAPONS": 3.97 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "16": { + "race": "Nails", + "className": "5", + "tech": { + "CARGO": 1, + "DRIVE": 4.97, + "SHIELDS": 3.19, + "WEAPONS": 3.97 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "17": { + "race": "Nails", + "className": "pup", + "tech": { + "DRIVE": 4.98 + }, + "num": 88, + "numLeft": 6, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "18": { + "race": "Nails", + "className": "1big", + "tech": { + "DRIVE": 4.97, + "SHIELDS": 3.19, + "WEAPONS": 3.97 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "19": { + "race": "Nails", + "className": "54", + "tech": { + "CARGO": 1, + "DRIVE": 4.97, + "SHIELDS": 3.19, + "WEAPONS": 3.97 + }, + "num": 1, + "numLeft": 1, + "loadType": "COL", + "loadQuantity": 1.05, + "inBattle": true + }, + "2": { + "race": "Bumbastik", + "className": "Tb-12_9.48", + "tech": { + "SHIELDS": 2.3, + "WEAPONS": 3.63 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "20": { + "race": "Nails", + "className": "25", + "tech": { + "DRIVE": 4.97, + "SHIELDS": 3.19, + "WEAPONS": 3.97 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "21": { + "race": "Nails", + "className": "40", + "tech": { + "DRIVE": 4.97, + "SHIELDS": 3.19, + "WEAPONS": 3.97 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "22": { + "race": "Nails", + "className": "59_1", + "tech": { + "DRIVE": 4.98, + "SHIELDS": 3.19, + "WEAPONS": 3.97 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "23": { + "race": "Nails", + "className": "_pup_", + "tech": { + "DRIVE": 4.98, + "SHIELDS": 3.19 + }, + "num": 22, + "numLeft": 8, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "24": { + "race": "Nails", + "className": "F23", + "tech": { + "DRIVE": 4.98, + "SHIELDS": 3.19, + "WEAPONS": 3.97 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "25": { + "race": "Nails", + "className": "24", + "tech": { + "DRIVE": 4.98, + "SHIELDS": 3.19, + "WEAPONS": 3.97 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "3": { + "race": "Bumbastik", + "className": "Pb-125_56.94", + "tech": { + "SHIELDS": 2.3, + "WEAPONS": 3.63 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "4": { + "race": "Bumbastik", + "className": "8-D", + "tech": { + "SHIELDS": 2.82 + }, + "num": 238, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "5": { + "race": "Bumbastik", + "className": "P-1.5", + "tech": { + "SHIELDS": 2.82, + "WEAPONS": 3.63 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "6": { + "race": "Bumbastik", + "className": "Dst", + "tech": { + "SHIELDS": 2.82, + "WEAPONS": 3.63 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "7": { + "race": "Bumbastik", + "className": "BAX", + "tech": { + "DRIVE": 5.16 + }, + "num": 120, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "8": { + "race": "Zodiac", + "className": "Drone", + "tech": { + "DRIVE": 5.84 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "9": { + "race": "Nails", + "className": "perf-VI-30", + "tech": { + "CARGO": 1, + "DRIVE": 4.97, + "SHIELDS": 3.19, + "WEAPONS": 3.97 + }, + "num": 1, + "numLeft": 1, + "loadType": "COL", + "loadQuantity": 1.05, + "inBattle": true + } + }, + "protocol": [ + { + "a": 3, + "sa": 15, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 1, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 12, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 13, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 13, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 13, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 13, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 13, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 13, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 13, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 13, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 13, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 13, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 13, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 13, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 13, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 13, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 13, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 13, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 13, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 12, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 23, + "x": false + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 23, + "x": false + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 23, + "x": false + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 23, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 20, + "x": false + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 25, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 25, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 25, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 25, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 25, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 25, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 25, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 25, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 25, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 25, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 25, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 25, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 25, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 25, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 25, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 25, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 25, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 25, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 25, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 25, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 25, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 25, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 25, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 25, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 1, + "sa": 6, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 1, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 3, + "sa": 9, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 9, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 9, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 9, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 9, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 9, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 9, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 9, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 9, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 9, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 9, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 9, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 9, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 9, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 9, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 9, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 9, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 9, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 9, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 9, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 9, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 9, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 9, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 9, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 9, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 9, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 9, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 9, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 9, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 24, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 24, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 24, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 24, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 24, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 24, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 24, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 24, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 24, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 24, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 24, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 24, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 24, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 24, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 24, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 24, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 24, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 24, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 24, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 24, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 24, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 24, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 24, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 1, + "sa": 2, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 3, + "sa": 14, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 18, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 23, + "x": false + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 23, + "x": false + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 3, + "sa": 11, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 11, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 11, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 11, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 11, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 11, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 11, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 11, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 11, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 11, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 11, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 11, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 11, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 11, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 11, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 11, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 11, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 11, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 12, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 1, + "sa": 1, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 3, + "sd": 23, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 23, + "x": false + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 2, + "sd": 8, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 18, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 24, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 24, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 24, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 24, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 24, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 24, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 24, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 24, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 24, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 24, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 24, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 24, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 24, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 24, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 24, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 24, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 24, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 24, + "d": 1, + "sd": 1, + "x": false + }, + { + "a": 3, + "sa": 24, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 24, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 24, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 24, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 9, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 9, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 9, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 9, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 9, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 9, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 9, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 9, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 9, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 9, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 9, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 9, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 9, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 9, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 9, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 9, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 9, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 9, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 9, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 9, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 9, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 9, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 9, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 9, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 9, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 9, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 9, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 9, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 14, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 11, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 11, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 11, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 11, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 11, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 11, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 11, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 11, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 11, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 11, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 11, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 11, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 11, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 11, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 11, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 11, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 11, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 11, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 25, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 25, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 25, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 25, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 25, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 25, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 25, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 25, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 25, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 25, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 25, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 25, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 25, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 25, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 25, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 25, + "d": 1, + "sd": 1, + "x": false + }, + { + "a": 3, + "sa": 25, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 25, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 25, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 25, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 25, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 25, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 25, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 1, + "sa": 6, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 23, + "x": false + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 23, + "x": false + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 23, + "x": false + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 23, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 3, + "sa": 13, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 13, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 13, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 13, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 13, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 13, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 13, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 13, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 13, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 13, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 13, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 13, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 13, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 13, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 13, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 13, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 13, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 13, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 12, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 1, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 15, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 23, + "x": false + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 23, + "x": false + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 21, + "x": false + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 23, + "x": false + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 23, + "x": false + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 23, + "x": false + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 3, + "sa": 12, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 16, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 3, + "sd": 23, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 3, + "sa": 15, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 13, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 13, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 13, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 13, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 13, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 13, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 13, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 13, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 13, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 13, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 13, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 13, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 13, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 13, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 13, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 13, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 13, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 13, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 14, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 1, + "sa": 1, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 6, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 12, + "d": 1, + "sd": 5, + "x": false + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 11, + "x": false + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 23, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 19, + "x": false + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 14, + "x": false + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 23, + "x": false + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 11, + "x": false + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 3, + "sa": 11, + "d": 1, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 11, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 11, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 11, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 11, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 11, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 11, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 11, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 11, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 11, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 11, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 11, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 11, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 11, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 11, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 11, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 11, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 25, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 25, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 25, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 25, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 25, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 25, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 25, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 25, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 25, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 25, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 25, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 25, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 25, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 25, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 25, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 25, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 25, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 25, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 25, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 25, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 25, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 25, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 25, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 25, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 9, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 9, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 9, + "d": 1, + "sd": 1, + "x": false + }, + { + "a": 3, + "sa": 9, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 9, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 9, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 9, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 9, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 9, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 9, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 9, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 9, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 9, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 9, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 9, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 9, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 9, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 9, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 9, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 9, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 9, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 9, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 9, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 9, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 9, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 9, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 9, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 18, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 21, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 24, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 24, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 24, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 24, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 24, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 24, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 24, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 24, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 24, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 24, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 24, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 24, + "d": 1, + "sd": 1, + "x": false + }, + { + "a": 3, + "sa": 24, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 24, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 24, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 24, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 24, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 24, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 24, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 24, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 24, + "d": 1, + "sd": 1, + "x": false + }, + { + "a": 3, + "sa": 24, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 1, + "sa": 1, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 23, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 21, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 10, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 16, + "x": false + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 23, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 23, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 23, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 22, + "x": false + }, + { + "a": 1, + "sa": 5, + "d": 0, + "sd": 0, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 23, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 23, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 9, + "x": false + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 16, + "x": false + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 16, + "x": false + }, + { + "a": 3, + "sa": 12, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 3, + "sd": 23, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 1, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 19, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 1, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 1, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 1, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 1, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 1, + "x": true + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 22, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 20, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 18, + "d": 1, + "sd": 6, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 23, + "x": false + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 23, + "x": false + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 23, + "x": false + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 23, + "x": false + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 3, + "sa": 25, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 25, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 25, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 25, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 25, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 25, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 25, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 25, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 25, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 25, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 25, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 25, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 25, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 25, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 11, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 11, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 11, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 11, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 11, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 11, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 11, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 3, + "sa": 11, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 3, + "sa": 15, + "d": 1, + "sd": 3, + "x": true + }, + { + "a": 3, + "sa": 14, + "d": 1, + "sd": 5, + "x": false + }, + { + "a": 3, + "sa": 12, + "d": 1, + "sd": 5, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 1, + "sd": 5, + "x": false + }, + { + "a": 3, + "sa": 16, + "d": 1, + "sd": 5, + "x": false + }, + { + "a": 3, + "sa": 18, + "d": 1, + "sd": 5, + "x": false + }, + { + "a": 3, + "sa": 15, + "d": 1, + "sd": 2, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 9, + "x": false + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 23, + "x": false + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 18, + "x": false + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 23, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 23, + "x": false + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 23, + "x": false + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 23, + "x": false + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 23, + "x": false + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 18, + "x": false + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 14, + "x": false + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 23, + "x": false + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 23, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 23, + "x": false + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 11, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 12, + "x": false + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 23, + "x": false + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 23, + "x": false + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 23, + "x": false + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 1, + "sa": 5, + "d": 3, + "sd": 17, + "x": true + }, + { + "a": 3, + "sa": 12, + "d": 1, + "sd": 5, + "x": true + } + ] + }, + "a588d0e8-05c9-5484-a8bb-82dba7c32b47": { + "id": "a588d0e8-05c9-5484-a8bb-82dba7c32b47", + "planet": 139, + "planetName": "Wyi", + "races": { + "0": "7df9743c-8f73-5105-bd5c-483255e7d079", + "1": "4b34c651-2636-5014-b486-72211e2ed65a", + "2": "2929f814-6393-549e-a5b1-0ad1d097e03a", + "3": "eedb8b43-f4d0-5903-b2c3-5acd0190cd3a" + }, + "ships": { + "0": { + "race": "KnightErrants", + "className": "PeaceShip", + "tech": { + "DRIVE": 9.09 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "1": { + "race": "Zodiac", + "className": "Drone", + "tech": { + "DRIVE": 5.84 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "10": { + "race": "Ricksha", + "className": "T6901", + "tech": { + "CARGO": 1, + "DRIVE": 6.88, + "SHIELDS": 3.95, + "WEAPONS": 1.5 + }, + "num": 1, + "numLeft": 1, + "loadType": "COL", + "loadQuantity": 1.03, + "inBattle": true + }, + "11": { + "race": "Ricksha", + "className": "T845", + "tech": { + "CARGO": 1, + "DRIVE": 7.63, + "SHIELDS": 3.95, + "WEAPONS": 3.36 + }, + "num": 1, + "numLeft": 1, + "loadType": "COL", + "loadQuantity": 1.05, + "inBattle": true + }, + "12": { + "race": "Ricksha", + "className": "T612", + "tech": { + "CARGO": 1, + "DRIVE": 7.63, + "SHIELDS": 3.95, + "WEAPONS": 3.36 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "13": { + "race": "Ricksha", + "className": "T747", + "tech": { + "CARGO": 1, + "DRIVE": 7.63, + "SHIELDS": 3.95, + "WEAPONS": 3.36 + }, + "num": 1, + "numLeft": 1, + "loadType": "COL", + "loadQuantity": 1.05, + "inBattle": true + }, + "2": { + "race": "Flagist", + "className": "Drone", + "tech": { + "DRIVE": 7.31 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "3": { + "race": "Ricksha", + "className": "Dron", + "tech": { + "DRIVE": 7.63 + }, + "num": 647, + "numLeft": 647, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "4": { + "race": "Ricksha", + "className": "HDron", + "tech": { + "DRIVE": 7.63, + "SHIELDS": 3.95 + }, + "num": 88, + "numLeft": 88, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "5": { + "race": "Ricksha", + "className": "OXPAHA", + "tech": { + "DRIVE": 6.88, + "SHIELDS": 3.95, + "WEAPONS": 1.5 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "6": { + "race": "Ricksha", + "className": "ME4TA", + "tech": { + "CARGO": 1, + "DRIVE": 6.88, + "SHIELDS": 3.95, + "WEAPONS": 1.5 + }, + "num": 1, + "numLeft": 1, + "loadType": "COL", + "loadQuantity": 1.03, + "inBattle": true + }, + "7": { + "race": "Ricksha", + "className": "T717", + "tech": { + "CARGO": 1, + "DRIVE": 6.88, + "SHIELDS": 3.95, + "WEAPONS": 1.5 + }, + "num": 1, + "numLeft": 1, + "loadType": "COL", + "loadQuantity": 1.02, + "inBattle": true + }, + "8": { + "race": "Ricksha", + "className": "T16", + "tech": { + "DRIVE": 6.88, + "SHIELDS": 3.95, + "WEAPONS": 1.5 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "9": { + "race": "Ricksha", + "className": "T541", + "tech": { + "DRIVE": 6.88, + "SHIELDS": 3.95, + "WEAPONS": 1.5 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + } + }, + "protocol": [ + { + "a": 3, + "sa": 9, + "d": 0, + "sd": 0, + "x": true + }, + { + "a": 3, + "sa": 5, + "d": 1, + "sd": 1, + "x": true + } + ] + }, + "a9968f83-5b80-5799-9ef1-fe87ce0a49db": { + "id": "a9968f83-5b80-5799-9ef1-fe87ce0a49db", + "planet": 119, + "planetName": "Sirena", + "races": { + "0": "72081c93-d589-5964-bb56-51bd8c787e20", + "1": "fa4a40ef-292d-5bef-808a-fe163f9cf038", + "2": "7df9743c-8f73-5105-bd5c-483255e7d079", + "3": "77e28126-6c7a-55c2-87ff-25b02470c02a", + "4": "4b34c651-2636-5014-b486-72211e2ed65a", + "5": "2929f814-6393-549e-a5b1-0ad1d097e03a" + }, + "ships": { + "0": { + "race": "Monstrai", + "className": "Muxa_CC", + "tech": { + "DRIVE": 5.45 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "1": { + "race": "TwelvePointedCross", + "className": "Drone", + "tech": { + "DRIVE": 3.69 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "2": { + "race": "KnightErrants", + "className": "PeaceShip", + "tech": { + "DRIVE": 9.09 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "3": { + "race": "Bumbastik", + "className": "BAX", + "tech": { + "DRIVE": 5.16 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "4": { + "race": "Zodiac", + "className": "Makar", + "tech": { + "WEAPONS": 4.07 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "5": { + "race": "Flagist", + "className": "Drone", + "tech": { + "DRIVE": 6.08 + }, + "num": 2, + "numLeft": 2, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + } + }, + "protocol": [ + { + "a": 4, + "sa": 4, + "d": 3, + "sd": 3, + "x": true + } + ] + }, + "ac708e4f-1202-5f53-8a2f-09622a43025a": { + "id": "ac708e4f-1202-5f53-8a2f-09622a43025a", + "planet": 227, + "planetName": "Sun", + "races": { + "0": "7df9743c-8f73-5105-bd5c-483255e7d079", + "1": "bff2f73a-ab26-5eb4-9a01-0cadb1360bc6", + "2": "2929f814-6393-549e-a5b1-0ad1d097e03a", + "3": "12ac1971-a391-528a-87d5-b40e331bce1a", + "4": "63492966-9c61-5ab5-86e9-0edeae824bb7", + "5": "eedb8b43-f4d0-5903-b2c3-5acd0190cd3a", + "6": "d9b8f5cd-1ebc-5407-af1b-2a36323d0fe0" + }, + "ships": { + "0": { + "race": "KnightErrants", + "className": "Bow105", + "tech": { + "CARGO": 1, + "DRIVE": 11.19, + "SHIELDS": 7.09, + "WEAPONS": 4.76 + }, + "num": 1, + "numLeft": 1, + "loadType": "COL", + "loadQuantity": 0.3, + "inBattle": true + }, + "1": { + "race": "KnightErrants", + "className": "PeaceShip", + "tech": { + "DRIVE": 9.09 + }, + "num": 2, + "numLeft": 2, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "10": { + "race": "BlackCrows", + "className": "Dron", + "tech": { + "DRIVE": 8.4 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "11": { + "race": "Ricksha", + "className": "HE_CMOTPETb", + "tech": { + "WEAPONS": 1 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "12": { + "race": "Ricksha", + "className": "SuperGuard", + "tech": { + "CARGO": 1, + "DRIVE": 6.88, + "SHIELDS": 3.95, + "WEAPONS": 1.5 + }, + "num": 1, + "numLeft": 0, + "loadType": "COL", + "loadQuantity": 1.04, + "inBattle": true + }, + "13": { + "race": "Enoxes", + "className": "Gnat", + "tech": { + "DRIVE": 9.07 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "2": { + "race": "KnightErrants", + "className": "Bow55", + "tech": { + "CARGO": 1, + "DRIVE": 10.62, + "SHIELDS": 6.6, + "WEAPONS": 4.76 + }, + "num": 1, + "numLeft": 1, + "loadType": "COL", + "loadQuantity": 0.3, + "inBattle": true + }, + "3": { + "race": "KnightErrants", + "className": "Catapult17x2.5", + "tech": { + "CARGO": 1, + "DRIVE": 10.62, + "SHIELDS": 6.6, + "WEAPONS": 4.76 + }, + "num": 1, + "numLeft": 1, + "loadType": "COL", + "loadQuantity": 0.3, + "inBattle": true + }, + "4": { + "race": "KnightErrants", + "className": "Bow49", + "tech": { + "CARGO": 1, + "DRIVE": 10.62, + "SHIELDS": 6.6, + "WEAPONS": 4.76 + }, + "num": 1, + "numLeft": 1, + "loadType": "COL", + "loadQuantity": 0.3, + "inBattle": true + }, + "5": { + "race": "KnightErrants", + "className": "Sword1x24", + "tech": { + "CARGO": 1, + "DRIVE": 10.62, + "SHIELDS": 6.6, + "WEAPONS": 4.76 + }, + "num": 1, + "numLeft": 1, + "loadType": "COL", + "loadQuantity": 0.3, + "inBattle": true + }, + "6": { + "race": "KnightErrants", + "className": "Buckler100", + "tech": { + "DRIVE": 11.19, + "SHIELDS": 4.84 + }, + "num": 96, + "numLeft": 96, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "7": { + "race": "Slimes", + "className": "Fly_1", + "tech": { + "DRIVE": 5.79 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "8": { + "race": "Flagist", + "className": "Drone", + "tech": { + "DRIVE": 8.49 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "9": { + "race": "Shuriki", + "className": "SDron", + "tech": { + "DRIVE": 1.91 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + } + }, + "protocol": [ + { + "a": 0, + "sa": 0, + "d": 3, + "sd": 9, + "x": true + }, + { + "a": 0, + "sa": 0, + "d": 5, + "sd": 11, + "x": true + }, + { + "a": 0, + "sa": 0, + "d": 6, + "sd": 13, + "x": true + }, + { + "a": 0, + "sa": 0, + "d": 4, + "sd": 10, + "x": true + }, + { + "a": 5, + "sa": 12, + "d": 0, + "sd": 1, + "x": true + }, + { + "a": 0, + "sa": 5, + "d": 5, + "sd": 12, + "x": true + } + ] + }, + "acc4f395-d4fa-54ba-9324-ddf0736aaf2d": { + "id": "acc4f395-d4fa-54ba-9324-ddf0736aaf2d", + "planet": 558, + "planetName": "NorthE", + "races": { + "0": "7df9743c-8f73-5105-bd5c-483255e7d079", + "1": "77e28126-6c7a-55c2-87ff-25b02470c02a", + "2": "4b34c651-2636-5014-b486-72211e2ed65a", + "3": "2929f814-6393-549e-a5b1-0ad1d097e03a", + "4": "d9c5bcf6-bdd3-5fd8-be22-22fc57a63e07" + }, + "ships": { + "0": { + "race": "KnightErrants", + "className": "Nonstop", + "tech": { + "WEAPONS": 1.67 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "1": { + "race": "Bumbastik", + "className": "BAX", + "tech": { + "DRIVE": 5.16 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "2": { + "race": "Zodiac", + "className": "Drone", + "tech": { + "DRIVE": 5.84 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "3": { + "race": "Flagist", + "className": "Drone", + "tech": { + "DRIVE": 7.32 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "4": { + "race": "SSSan", + "className": "DDRR", + "tech": { + "DRIVE": 8.17 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + } + }, + "protocol": [ + { + "a": 0, + "sa": 0, + "d": 1, + "sd": 1, + "x": true + } + ] + }, + "bcfaa090-86da-50d8-aa2f-4112ee9cc166": { + "id": "bcfaa090-86da-50d8-aa2f-4112ee9cc166", + "planet": 501, + "planetName": "Odessa", + "races": { + "0": "bd502f3c-514d-5073-afe1-afab3b9df8a4", + "1": "7df9743c-8f73-5105-bd5c-483255e7d079", + "2": "baff723f-a20a-5e6f-91e5-d7351f013b93", + "3": "12ac1971-a391-528a-87d5-b40e331bce1a", + "4": "63492966-9c61-5ab5-86e9-0edeae824bb7", + "5": "eedb8b43-f4d0-5903-b2c3-5acd0190cd3a", + "6": "43d748fc-074d-57b7-9fad-c9bd42586fce", + "7": "d9b8f5cd-1ebc-5407-af1b-2a36323d0fe0" + }, + "ships": { + "0": { + "race": "HAEMHuKu-2000", + "className": "dr", + "tech": { + "DRIVE": 6.31 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "1": { + "race": "KnightErrants", + "className": "PeaceShip", + "tech": { + "DRIVE": 9.09 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "10": { + "race": "Argon", + "className": "Drone", + "tech": { + "DRIVE": 2 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "11": { + "race": "Enoxes", + "className": "Gnat", + "tech": { + "DRIVE": 6 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "2": { + "race": "Barcarols", + "className": "Drone", + "tech": { + "DRIVE": 7.32 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "3": { + "race": "Shuriki", + "className": "DronS2-25", + "tech": { + "DRIVE": 7.98, + "SHIELDS": 3.41 + }, + "num": 8, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "4": { + "race": "BlackCrows", + "className": "Tura_4x15", + "tech": { + "CARGO": 1, + "DRIVE": 8.2, + "SHIELDS": 2.49, + "WEAPONS": 2.72 + }, + "num": 1, + "numLeft": 1, + "loadType": "COL", + "loadQuantity": 0.5, + "inBattle": true + }, + "5": { + "race": "BlackCrows", + "className": "Perf_60x2", + "tech": { + "CARGO": 1, + "DRIVE": 8.2, + "SHIELDS": 2.49, + "WEAPONS": 2.72 + }, + "num": 2, + "numLeft": 2, + "loadType": "COL", + "loadQuantity": 1.05, + "inBattle": true + }, + "6": { + "race": "BlackCrows", + "className": "Bodach", + "tech": { + "DRIVE": 8.2, + "WEAPONS": 3.65 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "7": { + "race": "BlackCrows", + "className": "Tura_x15", + "tech": { + "CARGO": 1, + "DRIVE": 8.2, + "SHIELDS": 2.49, + "WEAPONS": 2.72 + }, + "num": 1, + "numLeft": 1, + "loadType": "COL", + "loadQuantity": 0.5, + "inBattle": true + }, + "8": { + "race": "BlackCrows", + "className": "Dron", + "tech": { + "DRIVE": 8.2 + }, + "num": 300, + "numLeft": 300, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "9": { + "race": "Ricksha", + "className": "Dron", + "tech": { + "DRIVE": 6.88 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + } + }, + "protocol": [ + { + "a": 4, + "sa": 4, + "d": 3, + "sd": 3, + "x": true + }, + { + "a": 4, + "sa": 4, + "d": 3, + "sd": 3, + "x": true + }, + { + "a": 4, + "sa": 4, + "d": 3, + "sd": 3, + "x": true + }, + { + "a": 4, + "sa": 4, + "d": 3, + "sd": 3, + "x": true + }, + { + "a": 4, + "sa": 5, + "d": 3, + "sd": 3, + "x": false + }, + { + "a": 4, + "sa": 5, + "d": 3, + "sd": 3, + "x": false + }, + { + "a": 4, + "sa": 5, + "d": 3, + "sd": 3, + "x": true + }, + { + "a": 4, + "sa": 5, + "d": 3, + "sd": 3, + "x": false + }, + { + "a": 4, + "sa": 5, + "d": 3, + "sd": 3, + "x": false + }, + { + "a": 4, + "sa": 5, + "d": 3, + "sd": 3, + "x": false + }, + { + "a": 4, + "sa": 5, + "d": 3, + "sd": 3, + "x": false + }, + { + "a": 4, + "sa": 5, + "d": 3, + "sd": 3, + "x": false + }, + { + "a": 4, + "sa": 5, + "d": 3, + "sd": 3, + "x": false + }, + { + "a": 4, + "sa": 5, + "d": 3, + "sd": 3, + "x": false + }, + { + "a": 4, + "sa": 5, + "d": 3, + "sd": 3, + "x": false + }, + { + "a": 4, + "sa": 5, + "d": 3, + "sd": 3, + "x": false + }, + { + "a": 4, + "sa": 5, + "d": 1, + "sd": 1, + "x": true + }, + { + "a": 4, + "sa": 5, + "d": 3, + "sd": 3, + "x": false + }, + { + "a": 4, + "sa": 5, + "d": 3, + "sd": 3, + "x": false + }, + { + "a": 4, + "sa": 5, + "d": 3, + "sd": 3, + "x": false + }, + { + "a": 4, + "sa": 5, + "d": 3, + "sd": 3, + "x": false + }, + { + "a": 4, + "sa": 5, + "d": 3, + "sd": 3, + "x": false + }, + { + "a": 4, + "sa": 5, + "d": 3, + "sd": 3, + "x": false + }, + { + "a": 4, + "sa": 5, + "d": 3, + "sd": 3, + "x": false + }, + { + "a": 4, + "sa": 5, + "d": 3, + "sd": 3, + "x": false + }, + { + "a": 4, + "sa": 5, + "d": 3, + "sd": 3, + "x": false + }, + { + "a": 4, + "sa": 5, + "d": 3, + "sd": 3, + "x": false + }, + { + "a": 4, + "sa": 5, + "d": 3, + "sd": 3, + "x": false + }, + { + "a": 4, + "sa": 5, + "d": 3, + "sd": 3, + "x": false + }, + { + "a": 4, + "sa": 5, + "d": 3, + "sd": 3, + "x": false + }, + { + "a": 4, + "sa": 5, + "d": 3, + "sd": 3, + "x": true + }, + { + "a": 4, + "sa": 5, + "d": 3, + "sd": 3, + "x": false + }, + { + "a": 4, + "sa": 5, + "d": 3, + "sd": 3, + "x": false + }, + { + "a": 4, + "sa": 5, + "d": 3, + "sd": 3, + "x": false + }, + { + "a": 4, + "sa": 5, + "d": 3, + "sd": 3, + "x": false + }, + { + "a": 4, + "sa": 5, + "d": 3, + "sd": 3, + "x": false + }, + { + "a": 4, + "sa": 5, + "d": 3, + "sd": 3, + "x": false + }, + { + "a": 4, + "sa": 5, + "d": 3, + "sd": 3, + "x": false + }, + { + "a": 4, + "sa": 5, + "d": 3, + "sd": 3, + "x": false + }, + { + "a": 4, + "sa": 5, + "d": 3, + "sd": 3, + "x": false + }, + { + "a": 4, + "sa": 5, + "d": 3, + "sd": 3, + "x": false + }, + { + "a": 4, + "sa": 5, + "d": 3, + "sd": 3, + "x": false + }, + { + "a": 4, + "sa": 5, + "d": 3, + "sd": 3, + "x": false + }, + { + "a": 4, + "sa": 5, + "d": 3, + "sd": 3, + "x": false + }, + { + "a": 4, + "sa": 5, + "d": 3, + "sd": 3, + "x": false + }, + { + "a": 4, + "sa": 5, + "d": 3, + "sd": 3, + "x": false + }, + { + "a": 4, + "sa": 5, + "d": 3, + "sd": 3, + "x": true + }, + { + "a": 4, + "sa": 5, + "d": 3, + "sd": 3, + "x": false + }, + { + "a": 4, + "sa": 5, + "d": 3, + "sd": 3, + "x": false + }, + { + "a": 4, + "sa": 5, + "d": 3, + "sd": 3, + "x": true + } + ] + }, + "c94720e4-3073-5e99-be9c-df285ed7274b": { + "id": "c94720e4-3073-5e99-be9c-df285ed7274b", + "planet": 391, + "planetName": "B391", + "races": { + "0": "bd502f3c-514d-5073-afe1-afab3b9df8a4", + "1": "7df9743c-8f73-5105-bd5c-483255e7d079", + "2": "c86db56c-9118-5d43-90b9-4cf846ba2c4b", + "3": "4cea13f9-e4e6-5bb7-bda9-9764cd37d413" + }, + "ships": { + "0": { + "race": "HAEMHuKu-2000", + "className": "dr", + "tech": { + "DRIVE": 7.1 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "1": { + "race": "KnightErrants", + "className": "PeaceShip", + "tech": { + "DRIVE": 4.17 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "2": { + "race": "Bupyc", + "className": "KuHa_He_6ygeT", + "tech": { + "DRIVE": 2, + "WEAPONS": 1 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "3": { + "race": "AT-2560TX", + "className": "Drone", + "tech": { + "DRIVE": 16.29 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + } + }, + "protocol": [ + { + "a": 2, + "sa": 2, + "d": 3, + "sd": 3, + "x": true + } + ] + }, + "ca900c7d-3ed8-555f-b75b-b4cd42c09b7e": { + "id": "ca900c7d-3ed8-555f-b75b-b4cd42c09b7e", + "planet": 571, + "planetName": "HYPNOTIC", + "races": { + "0": "bd502f3c-514d-5073-afe1-afab3b9df8a4", + "1": "7df9743c-8f73-5105-bd5c-483255e7d079", + "2": "77e28126-6c7a-55c2-87ff-25b02470c02a" + }, + "ships": { + "0": { + "race": "HAEMHuKu-2000", + "className": "dr", + "tech": { + "DRIVE": 6.31 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "1": { + "race": "KnightErrants", + "className": "PeaceShip", + "tech": { + "DRIVE": 11.19 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "2": { + "race": "Bumbastik", + "className": "K-2", + "tech": { + "DRIVE": 5.16, + "SHIELDS": 2.82, + "WEAPONS": 3.63 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "3": { + "race": "Bumbastik", + "className": "BAX", + "tech": { + "DRIVE": 5.16 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + } + }, + "protocol": [ + { + "a": 2, + "sa": 2, + "d": 1, + "sd": 1, + "x": true + } + ] + }, + "ce30ac26-e1ce-50ab-a7d7-821727079a0e": { + "id": "ce30ac26-e1ce-50ab-a7d7-821727079a0e", + "planet": 672, + "planetName": "Death_Shuriki", + "races": { + "0": "bd502f3c-514d-5073-afe1-afab3b9df8a4", + "1": "7df9743c-8f73-5105-bd5c-483255e7d079", + "2": "baff723f-a20a-5e6f-91e5-d7351f013b93", + "3": "63492966-9c61-5ab5-86e9-0edeae824bb7", + "4": "eedb8b43-f4d0-5903-b2c3-5acd0190cd3a", + "5": "43d748fc-074d-57b7-9fad-c9bd42586fce" + }, + "ships": { + "0": { + "race": "HAEMHuKu-2000", + "className": "dr", + "tech": { + "DRIVE": 6.31 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "1": { + "race": "KnightErrants", + "className": "PeaceShip", + "tech": { + "DRIVE": 9.09 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "2": { + "race": "Barcarols", + "className": "Drone", + "tech": { + "DRIVE": 5.19 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "3": { + "race": "BlackCrows", + "className": "Bodach", + "tech": { + "DRIVE": 8.2, + "WEAPONS": 3.65 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "4": { + "race": "Ricksha", + "className": "Dron", + "tech": { + "DRIVE": 6.88 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "5": { + "race": "Argon", + "className": "Drone", + "tech": { + "DRIVE": 2 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + } + }, + "protocol": [ + { + "a": 3, + "sa": 3, + "d": 1, + "sd": 1, + "x": true + } + ] + }, + "dad43ae8-d33a-5275-bdc2-3a09de0dc72a": { + "id": "dad43ae8-d33a-5275-bdc2-3a09de0dc72a", + "planet": 289, + "planetName": "Normal-1767-0289", + "races": { + "0": "7df9743c-8f73-5105-bd5c-483255e7d079", + "1": "2929f814-6393-549e-a5b1-0ad1d097e03a", + "2": "9d3315bb-337a-553b-96bb-7d13546c48d8", + "3": "3195ed84-74af-5171-954a-19f9d1e84024", + "4": "eedb8b43-f4d0-5903-b2c3-5acd0190cd3a", + "5": "fbd3c148-4bec-5fbf-b46c-2a840dfd9645", + "6": "d9b8f5cd-1ebc-5407-af1b-2a36323d0fe0" + }, + "ships": { + "0": { + "race": "KnightErrants", + "className": "PeaceShip", + "tech": { + "DRIVE": 9.09 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "1": { + "race": "Flagist", + "className": "Drone", + "tech": { + "DRIVE": 3.7 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "2": { + "race": "CosmicMonkeys", + "className": "DPOH", + "tech": { + "DRIVE": 6.82 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "3": { + "race": "6PATBA", + "className": "6pamuwka", + "tech": { + "DRIVE": 5.89 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "4": { + "race": "Ricksha", + "className": "Dron", + "tech": { + "DRIVE": 4.4 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "5": { + "race": "sidiki", + "className": "Drone_1", + "tech": { + "DRIVE": 2.2 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "6": { + "race": "Enoxes", + "className": "Gnat", + "tech": { + "DRIVE": 5.1 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "7": { + "race": "Enoxes", + "className": "Quadrat-B", + "tech": { + "CARGO": 1, + "DRIVE": 11.4, + "SHIELDS": 5.64, + "WEAPONS": 6.69 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + } + }, + "protocol": [ + { + "a": 6, + "sa": 7, + "d": 0, + "sd": 0, + "x": true + } + ] + }, + "dd9d1fe8-a624-51e4-a11c-23564feadfd7": { + "id": "dd9d1fe8-a624-51e4-a11c-23564feadfd7", + "planet": 295, + "planetName": "LargeSwamp", + "races": { + "0": "7df9743c-8f73-5105-bd5c-483255e7d079", + "1": "bff2f73a-ab26-5eb4-9a01-0cadb1360bc6", + "2": "c4fdf804-6a25-5351-b059-3e76d105b9fc", + "3": "d9b8f5cd-1ebc-5407-af1b-2a36323d0fe0" + }, + "ships": { + "0": { + "race": "KnightErrants", + "className": "PeaceShip", + "tech": { + "DRIVE": 9.09 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "1": { + "race": "Slimes", + "className": "Far_Settler_3", + "tech": { + "CARGO": 1.73, + "DRIVE": 5.16 + }, + "num": 2, + "numLeft": 2, + "loadType": "CAP", + "loadQuantity": 45.76, + "inBattle": true + }, + "2": { + "race": "Slimes", + "className": "Fort_2_Perf", + "tech": { + "WEAPONS": 4.05 + }, + "num": 12, + "numLeft": 12, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "3": { + "race": "Slimes", + "className": "Fly_1", + "tech": { + "DRIVE": 5.79 + }, + "num": 128, + "numLeft": 128, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "4": { + "race": "kenguri", + "className": "b", + "tech": { + "DRIVE": 5.71 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "5": { + "race": "Enoxes", + "className": "Gnat", + "tech": { + "DRIVE": 11.4 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + } + }, + "protocol": [ + { + "a": 1, + "sa": 2, + "d": 2, + "sd": 4, + "x": true + } + ] + }, + "e0b9fe57-2772-5060-bdb1-0c18238745a0": { + "id": "e0b9fe57-2772-5060-bdb1-0c18238745a0", + "planet": 137, + "planetName": "Big-7740-0137", + "races": { + "0": "7df9743c-8f73-5105-bd5c-483255e7d079", + "1": "2929f814-6393-549e-a5b1-0ad1d097e03a", + "2": "9d3315bb-337a-553b-96bb-7d13546c48d8", + "3": "3195ed84-74af-5171-954a-19f9d1e84024", + "4": "eedb8b43-f4d0-5903-b2c3-5acd0190cd3a", + "5": "fbd3c148-4bec-5fbf-b46c-2a840dfd9645", + "6": "d9b8f5cd-1ebc-5407-af1b-2a36323d0fe0" + }, + "ships": { + "0": { + "race": "KnightErrants", + "className": "PeaceShip", + "tech": { + "DRIVE": 9.09 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "1": { + "race": "Flagist", + "className": "Drone", + "tech": { + "DRIVE": 3.7 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "10": { + "race": "Enoxes", + "className": "Storm", + "tech": { + "CARGO": 1, + "DRIVE": 11.4, + "SHIELDS": 4.44, + "WEAPONS": 4.94 + }, + "num": 1, + "numLeft": 1, + "loadType": "COL", + "loadQuantity": 1.05, + "inBattle": true + }, + "11": { + "race": "Enoxes", + "className": "ZingerM80", + "tech": { + "DRIVE": 11.4, + "SHIELDS": 4.44, + "WEAPONS": 5.44 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "12": { + "race": "Enoxes", + "className": "ZingerM115", + "tech": { + "DRIVE": 11.4, + "SHIELDS": 5.64, + "WEAPONS": 6.69 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "2": { + "race": "CosmicMonkeys", + "className": "DPOH", + "tech": { + "DRIVE": 7.38 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "3": { + "race": "6PATBA", + "className": "6pamuwka", + "tech": { + "DRIVE": 9.03 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "4": { + "race": "Ricksha", + "className": "Dron", + "tech": { + "DRIVE": 6.88 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "5": { + "race": "sidiki", + "className": "Drone_1", + "tech": { + "DRIVE": 2.2 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "6": { + "race": "Enoxes", + "className": "Skok", + "tech": { + "CARGO": 1, + "DRIVE": 6.75 + }, + "num": 1, + "numLeft": 1, + "loadType": "COL", + "loadQuantity": 28.24, + "inBattle": true + }, + "7": { + "race": "Enoxes", + "className": "Gnat", + "tech": { + "DRIVE": 5.1 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "8": { + "race": "Enoxes", + "className": "RangerA", + "tech": { + "CARGO": 1, + "DRIVE": 5.8, + "SHIELDS": 1, + "WEAPONS": 2.2 + }, + "num": 1, + "numLeft": 1, + "loadType": "COL", + "loadQuantity": 1.05, + "inBattle": true + }, + "9": { + "race": "Enoxes", + "className": "Gruz40a", + "tech": { + "CARGO": 1, + "DRIVE": 9.07, + "SHIELDS": 1.3, + "WEAPONS": 3.16 + }, + "num": 1, + "numLeft": 1, + "loadType": "COL", + "loadQuantity": 40, + "inBattle": true + } + }, + "protocol": [ + { + "a": 6, + "sa": 10, + "d": 0, + "sd": 0, + "x": true + } + ] + }, + "e4a8b24e-6187-58b6-b256-1e727842563d": { + "id": "e4a8b24e-6187-58b6-b256-1e727842563d", + "planet": 150, + "planetName": "TuPA", + "races": { + "0": "7df9743c-8f73-5105-bd5c-483255e7d079", + "1": "2929f814-6393-549e-a5b1-0ad1d097e03a", + "2": "eedb8b43-f4d0-5903-b2c3-5acd0190cd3a", + "3": "d9b8f5cd-1ebc-5407-af1b-2a36323d0fe0" + }, + "ships": { + "0": { + "race": "KnightErrants", + "className": "PeaceShip", + "tech": { + "DRIVE": 10.62 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "1": { + "race": "Flagist", + "className": "Drone", + "tech": { + "DRIVE": 7.32 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "2": { + "race": "Ricksha", + "className": "Dron", + "tech": { + "DRIVE": 3.2 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "3": { + "race": "Ricksha", + "className": "HE_CMOTPETb", + "tech": { + "WEAPONS": 1 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "4": { + "race": "Enoxes", + "className": "Gnat", + "tech": { + "DRIVE": 9.07 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + } + }, + "protocol": [ + { + "a": 2, + "sa": 3, + "d": 0, + "sd": 0, + "x": true + } + ] + }, + "e67d0a22-8096-55ec-8654-d0026ae7d7fb": { + "id": "e67d0a22-8096-55ec-8654-d0026ae7d7fb", + "planet": 90, + "planetName": "BDW1", + "races": { + "0": "bd502f3c-514d-5073-afe1-afab3b9df8a4", + "1": "7df9743c-8f73-5105-bd5c-483255e7d079", + "2": "c86db56c-9118-5d43-90b9-4cf846ba2c4b", + "3": "4cea13f9-e4e6-5bb7-bda9-9764cd37d413" + }, + "ships": { + "0": { + "race": "HAEMHuKu-2000", + "className": "dr", + "tech": { + "DRIVE": 7.1 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "1": { + "race": "KnightErrants", + "className": "PeaceShip", + "tech": { + "DRIVE": 9.09 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "2": { + "race": "Bupyc", + "className": "KuHa_He_6ygeT", + "tech": { + "DRIVE": 2, + "WEAPONS": 1 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "3": { + "race": "AT-2560TX", + "className": "Drone", + "tech": { + "DRIVE": 16.29 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + } + }, + "protocol": [ + { + "a": 2, + "sa": 2, + "d": 3, + "sd": 3, + "x": true + } + ] + }, + "e82cff85-de85-597f-a145-c62bfbe36d0f": { + "id": "e82cff85-de85-597f-a145-c62bfbe36d0f", + "planet": 522, + "planetName": "Rich-6396-0522", + "races": { + "0": "7df9743c-8f73-5105-bd5c-483255e7d079", + "1": "bff2f73a-ab26-5eb4-9a01-0cadb1360bc6", + "2": "c4fdf804-6a25-5351-b059-3e76d105b9fc", + "3": "eedb8b43-f4d0-5903-b2c3-5acd0190cd3a", + "4": "5441019a-75c8-5a57-8b26-80cb2d201e35", + "5": "fbd3c148-4bec-5fbf-b46c-2a840dfd9645", + "6": "d9b8f5cd-1ebc-5407-af1b-2a36323d0fe0" + }, + "ships": { + "0": { + "race": "KnightErrants", + "className": "PeaceShip", + "tech": { + "DRIVE": 9.09 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "1": { + "race": "Slimes", + "className": "Fly_1", + "tech": { + "DRIVE": 5.16 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "10": { + "race": "Enoxes", + "className": "ZingerM115", + "tech": { + "DRIVE": 11.4, + "SHIELDS": 5.1, + "WEAPONS": 5.77 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "11": { + "race": "Enoxes", + "className": "Pinta", + "tech": { + "CARGO": 1, + "DRIVE": 11.4, + "SHIELDS": 5.1, + "WEAPONS": 5.77 + }, + "num": 1, + "numLeft": 1, + "loadType": "COL", + "loadQuantity": 1.05, + "inBattle": true + }, + "12": { + "race": "Enoxes", + "className": "FS-6", + "tech": { + "DRIVE": 11.4, + "SHIELDS": 5.64 + }, + "num": 48, + "numLeft": 48, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "2": { + "race": "kenguri", + "className": "b", + "tech": { + "DRIVE": 5.67 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "3": { + "race": "Ricksha", + "className": "Dron", + "tech": { + "DRIVE": 3.2 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "4": { + "race": "Frightners", + "className": "Scream", + "tech": { + "DRIVE": 2.6 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "5": { + "race": "sidiki", + "className": "Drone", + "tech": { + "DRIVE": 2.2 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "6": { + "race": "Enoxes", + "className": "Gnat", + "tech": { + "DRIVE": 11.4 + }, + "num": 100, + "numLeft": 100, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "7": { + "race": "Enoxes", + "className": "Gop", + "tech": { + "CARGO": 1, + "DRIVE": 11.2, + "SHIELDS": 2.13, + "WEAPONS": 4.22 + }, + "num": 1, + "numLeft": 1, + "loadType": "COL", + "loadQuantity": 5.73, + "inBattle": true + }, + "8": { + "race": "Enoxes", + "className": "BumA", + "tech": { + "CARGO": 1, + "DRIVE": 11.4, + "SHIELDS": 5.1, + "WEAPONS": 5.77 + }, + "num": 1, + "numLeft": 1, + "loadType": "COL", + "loadQuantity": 1.05, + "inBattle": true + }, + "9": { + "race": "Enoxes", + "className": "FS-0", + "tech": { + "DRIVE": 11.4, + "SHIELDS": 5.1 + }, + "num": 25, + "numLeft": 25, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + } + }, + "protocol": [ + { + "a": 6, + "sa": 10, + "d": 0, + "sd": 0, + "x": true + } + ] + }, + "efeacace-34e0-5551-8fe3-d7f62484a04c": { + "id": "efeacace-34e0-5551-8fe3-d7f62484a04c", + "planet": 104, + "planetName": "San", + "races": { + "0": "7df9743c-8f73-5105-bd5c-483255e7d079", + "1": "2929f814-6393-549e-a5b1-0ad1d097e03a", + "2": "3195ed84-74af-5171-954a-19f9d1e84024", + "3": "eedb8b43-f4d0-5903-b2c3-5acd0190cd3a", + "4": "d9b8f5cd-1ebc-5407-af1b-2a36323d0fe0" + }, + "ships": { + "0": { + "race": "KnightErrants", + "className": "PeaceShip", + "tech": { + "DRIVE": 9.09 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "1": { + "race": "Flagist", + "className": "Drone", + "tech": { + "DRIVE": 8.49 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "2": { + "race": "Flagist", + "className": "Hi", + "tech": { + "WEAPONS": 4.53 + }, + "num": 2, + "numLeft": 2, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "3": { + "race": "6PATBA", + "className": "6pamuwka", + "tech": { + "DRIVE": 8.36 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "4": { + "race": "Ricksha", + "className": "Dron", + "tech": { + "DRIVE": 7.63 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "5": { + "race": "Enoxes", + "className": "Gnat", + "tech": { + "DRIVE": 11.4 + }, + "num": 49, + "numLeft": 49, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "6": { + "race": "Enoxes", + "className": "Storm", + "tech": { + "CARGO": 1, + "DRIVE": 11.4, + "SHIELDS": 4.44, + "WEAPONS": 5.44 + }, + "num": 1, + "numLeft": 1, + "loadType": "COL", + "loadQuantity": 1.05, + "inBattle": true + }, + "7": { + "race": "Enoxes", + "className": "FS-6", + "tech": { + "DRIVE": 11.4, + "SHIELDS": 5.1 + }, + "num": 24, + "numLeft": 24, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + } + }, + "protocol": [ + { + "a": 4, + "sa": 6, + "d": 0, + "sd": 0, + "x": true + } + ] + }, + "f319c219-9b3d-5e83-b4d5-8da594176a10": { + "id": "f319c219-9b3d-5e83-b4d5-8da594176a10", + "planet": 332, + "planetName": "PEHKE", + "races": { + "0": "7df9743c-8f73-5105-bd5c-483255e7d079", + "1": "2929f814-6393-549e-a5b1-0ad1d097e03a", + "2": "eedb8b43-f4d0-5903-b2c3-5acd0190cd3a" + }, + "ships": { + "0": { + "race": "KnightErrants", + "className": "Drone", + "tech": { + "DRIVE": 10.62, + "SHIELDS": 6.6, + "WEAPONS": 4.76 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "1": { + "race": "KnightErrants", + "className": "PeaceShip", + "tech": { + "DRIVE": 9.09 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "2": { + "race": "KnightErrants", + "className": "Bow55", + "tech": { + "CARGO": 1, + "DRIVE": 10.62, + "SHIELDS": 7.09, + "WEAPONS": 4.76 + }, + "num": 1, + "numLeft": 1, + "loadType": "COL", + "loadQuantity": 0.3, + "inBattle": true + }, + "3": { + "race": "Flagist", + "className": "Drone", + "tech": { + "DRIVE": 7.32 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "4": { + "race": "Ricksha", + "className": "Dron", + "tech": { + "DRIVE": 3.2 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + } + }, + "protocol": [ + { + "a": 0, + "sa": 2, + "d": 2, + "sd": 4, + "x": true + } + ] + }, + "f4ee8fc1-4e3b-5dc1-b0a0-cdb4fcbcc0ea": { + "id": "f4ee8fc1-4e3b-5dc1-b0a0-cdb4fcbcc0ea", + "planet": 134, + "planetName": "HW-1259-0134", + "races": { + "0": "7df9743c-8f73-5105-bd5c-483255e7d079", + "1": "2929f814-6393-549e-a5b1-0ad1d097e03a", + "2": "63492966-9c61-5ab5-86e9-0edeae824bb7", + "3": "eedb8b43-f4d0-5903-b2c3-5acd0190cd3a", + "4": "d9b8f5cd-1ebc-5407-af1b-2a36323d0fe0" + }, + "ships": { + "0": { + "race": "KnightErrants", + "className": "PeaceShip", + "tech": { + "DRIVE": 4.6 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "1": { + "race": "KnightErrants", + "className": "SpetsNaz", + "tech": { + "CARGO": 1, + "DRIVE": 11.19, + "SHIELDS": 7.09, + "WEAPONS": 6.11 + }, + "num": 1, + "numLeft": 1, + "loadType": "COL", + "loadQuantity": 0.1, + "inBattle": true + }, + "2": { + "race": "Flagist", + "className": "Spores", + "tech": { + "CARGO": 1.2, + "DRIVE": 7.64, + "WEAPONS": 4.53 + }, + "num": 1, + "numLeft": 1, + "loadType": "COL", + "loadQuantity": 0.9, + "inBattle": true + }, + "3": { + "race": "Flagist", + "className": "Drone", + "tech": { + "DRIVE": 7.32 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "4": { + "race": "BlackCrows", + "className": "Dron", + "tech": { + "DRIVE": 8.4 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "5": { + "race": "Ricksha", + "className": "Colonaizer", + "tech": { + "CARGO": 1, + "DRIVE": 1 + }, + "num": 1, + "numLeft": 0, + "loadType": "COL", + "loadQuantity": 0.06, + "inBattle": true + }, + "6": { + "race": "Enoxes", + "className": "Gnat", + "tech": { + "DRIVE": 11.4 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + } + }, + "protocol": [ + { + "a": 1, + "sa": 2, + "d": 2, + "sd": 4, + "x": true + }, + { + "a": 0, + "sa": 1, + "d": 3, + "sd": 5, + "x": true + }, + { + "a": 0, + "sa": 1, + "d": 4, + "sd": 6, + "x": true + } + ] + }, + "f995a51d-f45e-57fb-b146-c538a45c1d88": { + "id": "f995a51d-f45e-57fb-b146-c538a45c1d88", + "planet": 500, + "planetName": "KPuT", + "races": { + "0": "7df9743c-8f73-5105-bd5c-483255e7d079", + "1": "2929f814-6393-549e-a5b1-0ad1d097e03a", + "2": "eedb8b43-f4d0-5903-b2c3-5acd0190cd3a" + }, + "ships": { + "0": { + "race": "KnightErrants", + "className": "Catapult8x7", + "tech": { + "DRIVE": 11.19, + "SHIELDS": 3.3, + "WEAPONS": 4.76 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "1": { + "race": "KnightErrants", + "className": "Buckler100", + "tech": { + "DRIVE": 11.19, + "SHIELDS": 5.65 + }, + "num": 78, + "numLeft": 78, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "2": { + "race": "KnightErrants", + "className": "Bow49", + "tech": { + "CARGO": 1, + "DRIVE": 10.62, + "SHIELDS": 7.09, + "WEAPONS": 4.76 + }, + "num": 1, + "numLeft": 1, + "loadType": "COL", + "loadQuantity": 0.5, + "inBattle": true + }, + "3": { + "race": "KnightErrants", + "className": "Sword1x24", + "tech": { + "CARGO": 1, + "DRIVE": 10.62, + "SHIELDS": 7.09, + "WEAPONS": 4.76 + }, + "num": 1, + "numLeft": 1, + "loadType": "COL", + "loadQuantity": 0.5, + "inBattle": true + }, + "4": { + "race": "KnightErrants", + "className": "PeaceShip", + "tech": { + "DRIVE": 8.71 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "5": { + "race": "KnightErrants", + "className": "Drone", + "tech": { + "DRIVE": 10.62, + "SHIELDS": 6.6, + "WEAPONS": 4.76 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "6": { + "race": "Flagist", + "className": "Drone", + "tech": { + "DRIVE": 7.32 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "7": { + "race": "Ricksha", + "className": "Dron", + "tech": { + "DRIVE": 3.2 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + } + }, + "protocol": [ + { + "a": 0, + "sa": 0, + "d": 2, + "sd": 7, + "x": true + } + ] } - ] + } } diff --git a/ui/frontend/src/api/synthetic-report.ts b/ui/frontend/src/api/synthetic-report.ts index 9189049..216711f 100644 --- a/ui/frontend/src/api/synthetic-report.ts +++ b/ui/frontend/src/api/synthetic-report.ts @@ -39,6 +39,8 @@ import type { } from "./game-state"; import type { CargoLoadType, Relation } from "../sync/order-types"; import { isCargoLoadType, isRelation } from "../sync/order-types"; +import type { BattleReport } from "./battle-fetch"; +import { registerSyntheticBattle } from "./synthetic-battle"; export const SYNTHETIC_GAME_ID_PREFIX = "synthetic-"; @@ -59,18 +61,71 @@ export class SyntheticReportError extends Error { * loadSyntheticReportFromJSON validates the passed payload, decodes * it into a `GameReport`, registers it in the in-memory map under a * fresh `synthetic-` id, and returns both the id and the - * decoded report. Throws `SyntheticReportError` for malformed input. + * decoded report. + * + * Accepts two on-disk shapes: + * + * 1. Envelope (Phase 27 legacy-report CLI): + * `{ "version": 1, "report": , "battles": { : } }` + * — battles are forwarded to `registerSyntheticBattle` so the + * Battle Viewer can resolve them offline. + * 2. Bare Report (pre-envelope synthetic JSON files) — same as + * before; battle UUIDs in the report can still be clicked, but + * the Viewer page will show "battle not found" because no + * fixture was registered. + * + * Throws `SyntheticReportError` for malformed input in either shape. */ export function loadSyntheticReportFromJSON(json: unknown): { gameId: string; report: GameReport; } { - const report = decodeSyntheticReport(json); + const { reportPayload, battles } = extractEnvelope(json); + const report = decodeSyntheticReport(reportPayload); + for (const battle of battles) { + registerSyntheticBattle(battle); + } const gameId = SYNTHETIC_GAME_ID_PREFIX + crypto.randomUUID(); SYNTHETIC_REPORTS.set(gameId, report); return { gameId, report }; } +interface SyntheticEnvelope { + version?: number; + report?: unknown; + battles?: Record; +} + +/** + * extractEnvelope distinguishes the v1 envelope shape from a bare + * Report payload. The envelope check is `version === 1` to leave room + * for future format bumps and to avoid mistaking a bare Report whose + * top-level fields happen to include `report`/`battles` (none do + * today) for an envelope. + */ +function extractEnvelope(json: unknown): { + reportPayload: unknown; + battles: BattleReport[]; +} { + if (typeof json !== "object" || json === null) { + // Defer the error to `decodeSyntheticReport`; it already + // raises a `SyntheticReportError` with the right message. + return { reportPayload: json, battles: [] }; + } + const env = json as SyntheticEnvelope; + if (env.version === 1 && env.report !== undefined) { + const battlesMap = env.battles ?? {}; + const battles: BattleReport[] = []; + for (const value of Object.values(battlesMap)) { + if (value && typeof value === "object") { + battles.push(value); + } + } + return { reportPayload: env.report, battles }; + } + return { reportPayload: json, battles: [] }; +} + /** getSyntheticReport returns the report registered under `gameId`, * or `undefined` if the entry was lost (e.g. page reload). */ export function getSyntheticReport(gameId: string): GameReport | undefined { diff --git a/ui/frontend/tests/synthetic-report.test.ts b/ui/frontend/tests/synthetic-report.test.ts index 0e4d288..ebbc707 100644 --- a/ui/frontend/tests/synthetic-report.test.ts +++ b/ui/frontend/tests/synthetic-report.test.ts @@ -16,6 +16,11 @@ import { isSyntheticGameId, loadSyntheticReportFromJSON, } from "../src/api/synthetic-report"; +import type { BattleReport } from "../src/api/battle-fetch"; +import { + lookupSyntheticBattle, + resetSyntheticBattles, +} from "../src/api/synthetic-battle"; function syntheticJSON(extra: Record = {}): unknown { return { @@ -244,3 +249,55 @@ describe("getSyntheticReport", () => { expect(getSyntheticReport("synthetic-missing")).toBeUndefined(); }); }); + +describe("envelope shape (v1)", () => { + test("forwards battles to the synthetic-battle registry", () => { + resetSyntheticBattles(); + const battle: BattleReport = { + id: "11111111-1111-1111-1111-111111111111", + planet: 17, + planetName: "Castle", + races: { "0": "aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa" }, + ships: { + "0": { + race: "KnightErrants", + className: "Drone", + tech: { DRIVE: 1 }, + num: 1, + numLeft: 0, + loadType: "", + loadQuantity: 0, + inBattle: true, + }, + }, + protocol: [], + }; + const envelope = { + version: 1, + report: syntheticJSON(), + battles: { [battle.id]: battle }, + }; + + const { gameId, report } = loadSyntheticReportFromJSON(envelope); + expect(gameId.startsWith(SYNTHETIC_GAME_ID_PREFIX)).toBe(true); + expect(report.turn).toBe(39); + expect(lookupSyntheticBattle(battle.id)).toEqual(battle); + }); + + test("missing battles field leaves the registry untouched", () => { + resetSyntheticBattles(); + const envelope = { + version: 1, + report: syntheticJSON(), + }; + loadSyntheticReportFromJSON(envelope); + expect(lookupSyntheticBattle("any")).toBeNull(); + }); + + test("bare Report (no envelope) still loads — backward compat", () => { + resetSyntheticBattles(); + const { report } = loadSyntheticReportFromJSON(syntheticJSON()); + expect(report.turn).toBe(39); + expect(lookupSyntheticBattle("any")).toBeNull(); + }); +});